/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.carousel-item {
  height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark overlay for better contrast */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Centered caption */
.carousel-caption {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* so indicators are clickable */
}

.carousel-caption a.btn {
  pointer-events: auto; /* enable button clicks */
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
  font-weight: 500;
}

.carousel-caption a.btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* Headings */
.carousel-caption h1 {
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.3;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  z-index: 3; /* ensures on top of overlay */
}

.carousel-indicators [data-bs-target] {
  background-color: rgba(255, 255, 255, 0.6);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 4px;
}

.carousel-indicators .active {
  background-color: #fff;
  width: 14px;
  height: 14px;
}

/* ---------- Tablet View ---------- */
@media (max-width: 992px) {
  .hero-slider,
  .carousel-item {
    height: 75vh;
  }
  .carousel-caption h1 {
    font-size: 2.8rem;
  }
}

/* ---------- Mobile View ---------- */
@media (max-width: 576px) {
  .hero-slider,
  .carousel-item {
    height: 70vh;
  }

  .carousel-caption {
    top: 40%;
    max-width: 95%;
    padding: 10px;
  }

  .carousel-caption h1 {
    font-size: 2.2rem; /* Increased from 1.8rem to 2.2rem */
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .carousel-caption a.btn {
    font-size: 1.1rem; /* Increased from 0.9rem to 1.1rem */
    padding: 10px 25px;
    border-radius: 25px;
  }
}

/* slider close */








  /* section content */
   .dection {
      font-family: 'Poppins', sans-serif;
      background: #fff;
      color: #333;
    }

    .why-choose {
      padding: 80px 0;
    }

    .why-choose h2 {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .why-choose h2 span {
      color: #000000;
    }

    .why-choose p {
      color: #555;
      line-height: 1.7;
    }

    .why-list {
      margin-top: 30px;
    }

    .why-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }

    .why-item i {
      font-size: 24px;
      color: #fff;
      background: #B1C4E5;
      padding: 14px;
      border-radius: 8px;
      margin-right: 15px;
    }

    .why-item h5 {
      font-weight: 700;
      margin-bottom: 5px;
    }

    .why-item p {
      margin: 0;
      color: #666;
    }

    .travel-image img {
      width: 100%;
      max-width: 600px;
      border-radius: 12px;
    }

    @media (max-width: 992px) {
      .why-choose h2 {
        font-size: 32px;
        text-align: center;
      }
      .why-choose p {
        text-align: center;
      }
      .why-list {
        margin-top: 40px;
      }
    }













/* about section */


.about-section {
      font-family: 'Poppins', sans-serif;
      background-color: #f8f9fa;
       padding: 10px 0;
    }

  

    .about-content {
      animation: fadeInLeft 1s ease forwards;
    }

    .about-image img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 5px 15px #B1C4E5;
      animation: fadeInRight 1s ease forwards;
    }

    .about-title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #000000;
    }

    .about-text {
      font-size: 16px;
      line-height: 1.7;
      color: #333;
    }

    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }







/* packages */
  .pachagesss {
      background: #f8f9fa;
      font-family: 'Poppins', sans-serif;
    }

    .packages-section {
      padding: 80px 0;
      text-align: center;
    }

    .packages-section h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #333;
    }

    .packages-section p {
      color: #666;
      margin-bottom: 50px;
    }

    .card {
      border: none;
      border-radius: 20px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px #B1C4E5;
      overflow: hidden;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px #B1C4E5;
    }

    .card img {
      height: 200px;
      object-fit: cover;
    }

    .card-title {
      font-size: 22px;
      font-weight: 600;
      margin-top: 10px;
      color: #000000;
    }

    .price {
      font-size: 20px;
      font-weight: 500;
      margin-top: 10px;
      color: #333;
    }

    .btn-custom {
      background: #000000;
      color: #fff;
      border-radius: 25px;
      padding: 10px 25px;
      transition: 0.3s;
    }

    .btn-custom:hover {
      background: #B1C4E5;
      color: #fff;
    }









/* contact form  */
  /* 🌿 Section Styling */
    .connect-us {
      background-image: url(assets/sliders/1.png);
      font-family: "Poppins", sans-serif;
      padding: 60px 15px;
      background-attachment: fixed;
      background-size:cover;
      width: 100%;
    }

    /* 🧭 Form Box */
    .contact-form-container {
      max-width: 850px;
      margin: auto;
      background: #fff;
      padding: 50px;
      border-radius: 15px;
      box-shadow: 0 8px 25px#B1C4E5;
      transition: 0.3s ease;
    }

    .contact-form-container:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px #B1C4E5;
    }

    /* ✨ Heading */
    .contact-heading {
      text-align: center;
      margin-bottom: 40px;
    }

    .contact-heading h2 {
      font-weight: 700;
      color: #222;
      font-size: 32px;
    }

    .contact-heading p {
      color: #666;
      font-size: 16px;
      margin-top: 10px;
    }

    .contact-heading i {
      color: #000000;
      font-size: 40px;
      margin-bottom: 10px;
    }

    /* 🧾 Form Fields */
    .form-label {
      font-weight: 600;
      color: #333;
    }

    .form-control {
      border-radius: 8px;
      border: 1px solid #ddd;
      transition: 0.3s;
    }

    .form-control:focus {
      border-color: #000000;
      box-shadow: 0 0 0 0.25rem #B1C4E5;
    }

    /* 🧡 Submit Button */
    .btn-submit {
      background-color: #000000;
      border: none;
      color: #fff;
      padding: 12px 35px;
      border-radius: 8px;
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
    }

    .btn-submit:hover {
      background-color: #cacaca;
      transform: translateY(-2px);
    }






 


    

