/* -----------------------------
   FONT IMPORT
----------------------------- */
@font-face {
  font-family: 'Optima';
  src: url('fonts/optima/Optima-Regular.ttf') format('truetype');
}

body {
  font-family: 'Optima', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* -----------------------------
   NAVBAR
----------------------------- */
.navbar {
  background: transparent !important;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.navbar-brand {
  font-weight: 700;
  color: #fff !important;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin-right: 15px;
}

.btn-trip {
  background: #ffc107;
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
}

/* -----------------------------
   HERO SECTION
----------------------------- */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80')
    no-repeat center center / cover;
  padding-block: 220px 60px;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.tagline {
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 16px;
  max-width: 600px;
  margin: 15px 0 30px;
}

/* -----------------------------
   RESPONSIVE
----------------------------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 38px;
  }

  .logo {
    text-align: center;
    width: 100% !important;
  }

  .hero-content {
    text-align: center;
  }

  .modal-dialog.modal-dialog-centered {
    width: 385px !important;
  }

  .destination-section {
    padding: 25px 10px !important;
  }

  .mob.col-md-4 {
    margin-bottom: 25px;
  }

  .card img {
    height: 280px;
  }
}

/* -----------------------------
   HANDPICKED PACKAGES
----------------------------- */
section.packages {
  color: #000;
  margin-top: 50px;
}

.card img {
  height: 380px;
  object-fit: cover;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* -----------------------------
   LOGO / ABOUT
----------------------------- */
.logo img {
  width: 40%;
}

.logo {
  width: 40%;
}

.about-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.col-md-6.mb-4.content-head {
  color: #000;
}

.about-hero-sec {
  margin-bottom: 60px;
}

/* -----------------------------
   FEATURES SECTION
----------------------------- */
.features-section {
  background: #f9fbfc;
  padding: 60px 20px;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}

.feature-item {
  background: #ffffff;
  padding: 20px 25px;
  border-left: 5px solid #00bfa5;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-left-color: #00796b;
}

.feature-item strong {
  color: #00796b;
}


        .destination-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .destination-card .card-body {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border-radius: 15px;
            padding: 10px;
            text-align: center;
        }

        .destination-section {
            padding: 60px 0;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 40px;
        }

        .destination-card-container {
            margin-bottom: 30px;
        }

        .btn-warning {
            margin-top: 2px;
            padding: 10px 30px;
            font-size: 16px;
        }

        .popular-destinations .row {
            margin-top: 40px;
        }
          /* ✅ Destinations Section */
    section#destinations {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    #destinations h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #222;
    }

    .destination-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .destination {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .destination:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .destination img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .destination-content {
      padding: 20px;
    }

    .destination h3 {
      margin-top: 0;
      font-size: 1.5rem;
      color: #0077b6;
    }

    .destination p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #555;
    }
    
        
    
    
    
    
    
    
    

    /* Handpicked Packages Section */
    section.packages {
      color: #000;
      margin-top: 50px;
    }

    .card img {
      height: 380px;
      object-fit: cover;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }

    @media (max-width: 768px) {
      .card img {
        height: 280px;
      }
    }
    .logo img {
    width: 40%;
}
.logo {
    width: 40%;
}
.about-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px 10px 10px 10px;
}
.content-head {
    color: #000;
}
.about-hero-sec {
    margin-bottom: 60px;
}

 /* Tours Section */
    .tours {
      padding: 60px 20px 80px;
      background-color: #fff;
    }

    .tours h1 {
      text-align: center;
      color: #004aad;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .tours p.lead {
      text-align: center;
      color: #666;
      margin-bottom: 50px;
      font-size: 1.1rem;
    }

    .card {
      border: none;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .card img {
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      height: 250px;
      object-fit: cover;
    }

    .card-body {
      padding: 20px;
    }

    .btn-book {
      background-color: #004aad;
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      padding: 8px 20px;
      border: none;
    }

    .btn-book:hover {
      background-color: #003680;
    }

    body {
      font-family: 'Arial', sans-serif;
      background-color: #f9f9f9;
      overflow-x: hidden;
    }

    /* Navbar */
    .navbar {
      background-color: #0d1b2a !important;
    }

    .navbar-brand img {
      height: 50px;
    }

    .navbar-nav .nav-link {
      color: #fff !important;
      font-weight: 500;
      margin-right: 15px;
    }

    .btn-trip {
      background: #ffc107;
      color: #fff !important;
      font-weight: 600;
      border-radius: 8px;
      padding: 10px 20px;
    }

   
    /* Footer */
    .footer {
      background-color: #0d1b2a;
      color: #ffffff;
      padding: 60px 0 20px;
    }

    .footer h5 {
      color: #fca311;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .footer a {
      color: #ffffff;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
      color: #fca311;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 15px;
      text-align: center;
      font-size: 14px;
      margin-top: 30px;
    }
     /* Hero Section */
    .hero {
      position: relative;
      background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
     padding-block: 220px 60px;
 
      display: flex;
      align-items: center;
      color: #fff;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .tagline {
      background: rgba(255, 255, 255, 0.2);
      display: inline-block;
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 14px;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: 58px;
      font-weight: 700;
      line-height: 1.2;
    }

    .hero p {
      font-size: 16px;
      max-width: 600px;
      margin-top: 15px;
      margin-bottom: 30px;
    }
 /* Terms Section */
    section.terms {
      padding: 100px 20px 60px;
      background: #fff;
      color: #333;
    }

    .terms h1 {
      text-align: center;
      color: #004aad;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .terms h2 {
      color: #004aad;
      font-size: 1.4rem;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .terms p, .terms ul {
      line-height: 1.7;
      font-size: 16px;
    }

    .terms ul {
      padding-left: 20px;
    }
       /* Support Section */
    .support {
      padding: 120px 20px 80px;
      background-color: #fff;
    }

    .support h1 {
      text-align: center;
      color: #004aad;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .support p.lead {
      text-align: center;
      color: #666;
      margin-bottom: 50px;
      font-size: 1.1rem;
    }

    .support .card {
      border: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      border-radius: 8px;
      padding: 25px;
    }

    .support .form-control {
      border-radius: 8px;
      border: 1px solid #ccc;
      padding: 12px;
    }

    .support .btn-submit {
      background-color: #004aad;
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      padding: 10px 20px;
      border: none;
    }

    .support .btn-submit:hover {
      background-color: #003680;
    }


/* -----------------------------
   FOOTER
----------------------------- */
.footer {
  background-color: #0d1b2a;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer h5 {
  color: #fca311;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
  color: #fca311;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
}
