/********** Template CSS **********/
:root {
    --primary: #86B817;
    
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    /* color: #FFFFFF !important; */
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    /* max-height: 45px; */
    max-height: 65px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        /* max-height: 45px; */
        max-height: 65px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    background:  url(/img/pokhara2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    /* background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/* whatsapp */

        /* Style for the floating WhatsApp button */
        .whatsapp-float {
            position: fixed;
            bottom: 20px; /* Distance from the bottom */
            right: 20px; /* Distance from the right */
            background-color: #25D366; /* WhatsApp green */
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000; /* Ensures it appears on top of other elements */
            text-decoration: none;
        }

        .whatsapp-float:hover {
            background-color: #1DA851; /* Slightly darker green on hover */
        }

        .whatsapp-float i {
            font-size: 24px; /* Icon size */
        }









        /* adding somethimg new (enhancing..............) */
        




        /* new styles */
        .carousel-inner {
  position: relative;
}

.hero-img {
  height: 100vh;
  object-fit: cover;
}

.hero-caption {
  top: 30%;
  transform: translateX(-50%);
  text-align: center;
}

.hero-caption h1 {
  font-size: 5rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-caption p {
  font-size: 2.3rem;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* PACKAGE BOX */
.hero-package-box {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 320px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 22px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.hero-package-box .badge {
  background: #ffb703;
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.hero-package-box h4 {
  margin: 12px 0;
  font-size: 1.5rem;
}

.hero-package-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.hero-package-box ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.hero-package-box .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffd166;
  margin-bottom: 14px;
}

.hero-package-box .cta-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #ff7a18, #ffb703);
  color: #000;
  padding: 12px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-caption h1 { font-size: 2.5rem; }
  .hero-caption p { font-size: 1.3rem; }

  .hero-package-box {
    position: static;
    transform: none;
    margin: 15px auto;
    width: 90%;
  }
}





.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}
.carousel-caption,
.hero-package-box {
  z-index: 2;
}
.hero-caption h1 {
  color: #fff;
  letter-spacing: -1px;
}

.hero-caption p {
  color: #f1f1f1;
}
.hero-package-box {
  background: rgba(15, 15, 15, 0.75);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-package-box ul li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-package-box .cta-btn {
  box-shadow: 0 8px 20px rgba(255, 167, 38, 0.45);
}
@media (max-width: 992px) {
  .hero-package-box {
    right: 3%;
    width: 280px;
  }
}



/* FIX TEXT CUTTING ISSUE */
.carousel-caption {
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  overflow: visible !important;
  padding: 0 20px;
}

.hero-caption p {
  max-width: 900px;          /* like package card width */
  margin: 12px auto 0;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: center;
  background: rgba(0,0,0,0.45);   /* package-style background */
  padding: 12px 20px;
  border-radius: 12px;
  display: inline-block;
}



/* HERO CAPTION BASE */
.hero-caption {
  width: 100%;
  padding-left: 6%;
  padding-right: 38%; /* SPACE RESERVED FOR PACKAGE BOX */
  text-align: left;
}

/* FIX P TAG LIKE PACKAGE CARD */
.hero-caption p {
  display: inline-block;
  max-width: 520px;           /* like package width */
  background: rgba(0,0,0,0.65);
  padding: 14px 18px;
  border-radius: 14px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  margin-top: 14px;
  font-weight: 600;
}
.hero-caption h1 {
  max-width: 720px;
}
/* HERO CAPTION CONTAINER */
.hero-caption {
  width: 100%;
  padding-left: 6%;
  padding-right: 38%; /* reserves space for package card */
  text-align: left;
  top: 32%;
}

/* HERO HEADING */
.hero-caption h1 {
  max-width: 720px;
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.65);
}

/* HERO PARAGRAPH – PACKAGE STYLE */
.hero-caption p {
  display: inline-block;
  max-width: 520px;
  background: rgba(0,0,0,0.65);
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  color: #f1f1f1;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
  .hero-caption {
    padding-right: 6%;
    text-align: center;
  }

  .hero-caption h1 {
    font-size: 2.4rem;
    margin: 0 auto 10px;
  }

  .hero-caption p {
    max-width: 90%;
    margin: 0 auto;
  }
}
/* HERO HEADING */
.hero-caption h1 {
  max-width: 720px;
  font-size: 4.2rem;
  font-weight: 700;          /* clean & strong */
  line-height: 1.15;         /* tight, even lines */
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.6);
}

/* HERO PARAGRAPH */
.hero-caption p {
  max-width: 520px;
  font-size: 1.15rem;
  font-weight: 500;          /* balanced, readable */
  line-height: 1.6;          /* EVEN line spacing */
  background: rgba(0,0,0,0.65);
  padding: 14px 20px;
  border-radius: 14px;
  color: #f1f1f1;
  margin: 0;                 /* IMPORTANT: removes uneven gaps */
}

/* movile view fix */
/* ================================
   MOBILE HERO – FINAL FIX
================================ */
@media (max-width: 768px) {

    /* SHOW TEXT ONLY FOR ACTIVE SLIDE */
.carousel-item:not(.active) .carousel-caption {
  display: none !important;
}

  /* Slide structure */
  .carousel-item {
    position: relative;
  }

  /* IMAGE */
  .carousel-item img {
    height: 65vh;
    object-fit: cover;
    display: block;
  }

  /* TEXT OVER IMAGE */
  .carousel-caption {
    position: absolute !important;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    text-align: center;
    z-index: 2;
    padding: 0;
  }

  .hero-caption h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.7);
  }

  .hero-caption p {
    font-size: 1rem;
    line-height: 1.6;
    background: rgba(0,0,0,0.65);
    padding: 12px 16px;
    border-radius: 12px;
    color: #fff;
    margin: 0 auto;
    max-width: 100%;
  }

  /* PACKAGE BOX – BELOW IMAGE */
  .hero-package-box {
    position: static !important;
    transform: none !important;
    width: 92%;
    margin: 20px auto 24px;
    padding: 18px;
    z-index: 1;
  }

  /* IMAGE OVERLAY FOR READABILITY */
  .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.25) 40%,
      rgba(0,0,0,0.05) 70%
    );
    z-index: 1;
  }
}
@media (max-width: 768px) {

  /* Prevent duplicate captions */
  .carousel-item:not(.active) .carousel-caption {
    display: none !important;
  }

  .carousel-item {
    position: relative;
  }

  .carousel-item img {
    height: 65vh;
    object-fit: cover;
  }

  .carousel-caption {
    position: absolute !important;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    z-index: 2;
    text-align: center;
  }

  .hero-caption h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    color: #fff;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.7);
  }

  .hero-caption p {
    font-size: 1rem;
    line-height: 1.6;
    background: rgba(0,0,0,0.65);
    padding: 12px 16px;
    border-radius: 12px;
    color: #fff;
    margin: 0 auto;
  }

  .hero-package-box {
    position: static !important;
    width: 92%;
    margin: 16px auto 24px;
  }
}









/* =========================
   HERO CAPTION
========================= */
.hero-caption {
  max-width: 720px;
  text-align: left;
  animation: fadeUp 1s ease forwards;
}

/* HEADING */
.hero-caption h1 {
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.6);
}

.hero-caption h1 span {
  color: #ffb703;
}

/* SUBTEXT */
.hero-subtext {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: #f1f1f1;
  background: rgba(0,0,0,0.55);
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  margin-bottom: 14px;
}

/* TRUST LINE */
.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #eaeaea;
  margin-bottom: 22px;
}

/* CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #ff7a18, #ffb703);
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255,167,38,0.45);
}

.btn-outline-hero {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-caption {
    text-align: center;
    max-width: 100%;
  }

  .hero-caption h1 {
    font-size: 2.4rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .hero-cta {
    justify-content: center;
  }
}
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.1) 70%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}

.carousel-caption,
.hero-package-box {
  z-index: 2;
}











/* fixing  */
/* =========================
   HERO RESET (BOOTSTRAP SAFE)
========================= */
.hero-caption {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  text-align: left;
  color: #fff;
}

.hero-caption * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* =========================
   HERO TYPOGRAPHY
========================= */
.hero-caption h1 {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.6);
}

.hero-caption h1 span {
  color: #ffb703;
}

.hero-subtext {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 520px;
  background: rgba(0,0,0,0.55);
  padding: 10px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}
/* =========================
   HERO TRUST LINE
========================= */
.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 22px;
}

.hero-trust span {
  background: rgba(255,255,255,0.12);
  padding: 6px 12px;
  border-radius: 20px;
}
/* =========================
   HERO CTA
========================= */
.hero-cta {
  display: flex;
  gap: 14px;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #ff7a18, #ffb703);
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255,167,38,0.45);
}

.btn-outline-hero {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
/* =========================
   HERO IMAGE OVERLAY
========================= */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}

.carousel-caption,
.hero-package-box {
  z-index: 2;
}
.hero-package-box {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 320px;
  background: rgba(20,20,20,0.85);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.55);
}
@media (max-width: 768px) {
  .hero-caption {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 18%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
  }

  .hero-caption h1 {
    font-size: 2.4rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-package-box {
    position: static;
    transform: none;
    width: 92%;
    margin: 18px auto;
  }
}
/* =====================================
   HERO FINAL OVERRIDE (DESKTOP)
   Paste at END of style.css
===================================== */

/* Align hero text EXACTLY like package box */
.hero-caption {
  position: absolute !important;
  left: 6%;
  top: 50% !important;
  transform: translateY(-50%) !important;
  max-width: 620px;
  text-align: left;
  z-index: 2;
}

/* Heading size balanced with package box */
.hero-caption h1 {
  font-size: 3.4rem !important;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

/* Span highlight stays */
.hero-caption h1 span {
  color: #ffb703;
}

/* Paragraph — ONE LINE ONLY */
.hero-caption p,
.hero-subtext {
  font-size: 1rem !important;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;          /* ONE LINE */
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 420px;             /* equal visual weight to box */
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.55);
  margin-bottom: 14px;
}

/* Trust badges slightly smaller */
.hero-trust {
  font-size: 0.85rem;
  gap: 12px;
  margin-bottom: 18px;
}

/* CTA buttons slightly compact */
.hero-cta a {
  padding: 12px 24px;
  font-size: 0.95rem;
}
/* Keep package box perfectly centered */
.hero-package-box {
  position: absolute !important;
  top: 50% !important;
  right: 5%;
  transform: translateY(-50%) !important;
  width: 320px;
  z-index: 2;
}
@media (max-width: 768px) {

  .hero-caption {
    left: 50%;
    top: auto !important;
    bottom: 18%;
    transform: translateX(-50%) !important;
    text-align: center;
    max-width: 90%;
  }

  .hero-caption h1 {
    font-size: 2.2rem !important;
  }

  .hero-caption p {
    white-space: normal;   /* allow wrap on mobile */
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-package-box {
    position: static !important;
    transform: none !important;
    width: 92%;
    margin: 18px auto;
  }
}
/* =====================================================
   FINAL HERO OVERRIDE – KARVAAHH
   (Paste at END of style.css)
===================================================== */

/* ---------- HERO IMAGE ---------- */
.hero-img {
  height: 100vh;
  object-fit: cover;
}

/* ---------- OVERLAY FOR READABILITY ---------- */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.2) 70%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}

/* ---------- HERO TEXT (LEFT) ---------- */
.hero-caption {
  position: absolute !important;
  top: 50% !important;
  left: 6% !important;
  transform: translateY(-50%) !important;
  max-width: 620px;
  text-align: left;
  z-index: 2;
}

/* Heading */
.hero-caption h1 {
  font-size: 3.6rem !important;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.65);
}

.hero-caption h1 span {
  color: #ffb703;
}

/* Paragraph – SINGLE LINE, SMALLER */
.hero-caption p,
.hero-subtext {
  font-size: 1rem !important;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 420px;
  background: rgba(0,0,0,0.55);
  padding: 6px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  color: #f1f1f1;
}

/* ---------- TRUST BADGES ---------- */
.hero-trust {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 18px;
}

.hero-trust span {
  background: rgba(255,255,255,0.12);
  padding: 6px 12px;
  border-radius: 20px;
}

/* ---------- CTA BUTTONS ---------- */
.hero-cta {
  display: flex;
  gap: 14px;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #ff7a18, #ffb703);
  color: #000;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255,167,38,0.45);
}

.btn-outline-hero {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* ---------- PACKAGE BOX (RIGHT – SAME CENTER) ---------- */
.hero-package-box {
  position: absolute !important;
  top: 50% !important;
  right: 5% !important;
  transform: translateY(-50%) !important;
  width: 320px;
  background: rgba(20,20,20,0.88);
  border-radius: 18px;
  padding: 22px;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0,0,0,0.55);
}

/* nothing just fixing the mobile view */
/* ===============================
   MOBILE: PACKAGE NEXT TO HERO
   (Below Hero, Normal Flow)
=============================== */
@media (max-width: 768px) {

  /* Keep hero image reasonable */
  .hero-img {
    height: 60vh !important;
  }

  /* Hero text stays over image */
  .carousel-caption.hero-caption {
    position: absolute !important;
    left: 50%;
    bottom: 16%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    background: rgba(0,0,0,0.65);
    padding: 14px;
    border-radius: 14px;
    z-index: 2;
  }

  /* 🔑 PACKAGE COMES AFTER HERO */
  .hero-package-box {
    position: relative !important;   /* IMPORTANT */
    top: auto !important;
    right: auto !important;
    transform: none !important;

    width: 92%;
    max-width: 380px;
    margin: 20px auto 24px;
  }
}
/* =====================================
   MOBILE HERO – CLEAN TEXT ON IMAGE
===================================== */
@media (max-width: 768px) {

  /* Hero image */
  .hero-img {
    height: 60vh !important;
    object-fit: cover;
  }

  /* Hero text over image – NO BOX */
  .carousel-caption.hero-caption {
    position: absolute !important;
    left: 50%;
    bottom: 14%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 92%;
    text-align: center;
    background: none !important;   /* REMOVE BOX */
    padding: 0 !important;
  }

  /* Heading – smaller */
  .hero-caption h1 {
    font-size: 1.9rem !important;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  /* Paragraph – readable, no cut */
  .hero-caption p {
    font-size: 0.9rem !important;
    line-height: 1.4;
    white-space: normal;
    margin-bottom: 10px;
  }

  /* Trust badges – compact */
  .hero-trust {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .hero-trust span {
    background: rgba(0,0,0,0.35);
    padding: 4px 8px;
    border-radius: 12px;
  }

  /* CTA buttons – small & clean */
  .hero-cta {
    display: flex;
    gap: 8px;
    justify-content: center;
  }

  .hero-cta a {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  /* Package stays below hero */
  .hero-package-box {
    position: relative !important;
    width: 92%;
    max-width: 380px;
    margin: 20px auto 24px;
  }
}











/* package section design */
.hero-premium {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../img/nepal/nepal-spritual-hero.jpg') center/cover no-repeat;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.85)
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 120px 20px 60px;
  text-align: center;
}

.hero-inner h1 {
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-subtitle {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #e9dcc0;
}

.hero-badges {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,215,160,0.4);
  min-width: 230px;
}

.badge span {
  font-size: 1.8rem;
}

.badge strong {
  color: #ffd27a;
  font-size: 0.95rem;
}

.badge p {
  font-size: 0.85rem;
  opacity: 0.95;
}

.badge.highlight {
  background: rgba(255,215,160,0.25);
  border-color: #ffd27a;
}

.badge.theme {
  justify-content: center;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #ffd27a;
}

/* CTA */
.hero-cta {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.btn-primary {
  padding: 14px 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffd27a, #c9a24d);
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.btn-outline {
  padding: 14px 32px;
  border-radius: 30px;
  border: 1px solid #ffd27a;
  color: #ffd27a;
  text-decoration: none;
}

/* Image Gallery Strip */
.hero-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.hero-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,215,160,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner h1 {
    font-size: 2.4rem;
  }

  .hero-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .badge {
    min-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
  }
}




/* next section */
.package-highlights {
  background: #f8f9fb;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.highlights-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.highlight-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.highlight-card .icon {
  font-size: 2.2rem;
  color: #d4af37; /* Gold */
  margin-bottom: 10px;
}

.highlight-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0f1e3d; /* Navy */
  margin-bottom: 6px;
}

.highlight-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .highlights-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .highlights-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/*  next section */
.package-overview {
  background: linear-gradient(180deg, #f6f8fc, #ffffff);
  padding: 70px 20px;
  font-family: 'Poppins', sans-serif;
}

.overview-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.overview-container h2 {
  font-size: 2.1rem;
  font-weight: 500;
  color: #0f1e3d; /* Navy */
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.overview-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 45px;
}

.overview-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.overview-box {
  background: #ffffff;
  padding: 26px 24px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.overview-box h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #d4af37; /* Gold */
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

.overview-box p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .overview-highlights {
    grid-template-columns: 1fr;
  }

  .overview-container h2 {
    font-size: 1.8rem;
  }
}

/* next */
.itinerary-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.itinerary-container {
  max-width: 900px;
  margin: auto;
}

.itinerary-container h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  color: #0f1e3d;
  margin-bottom: 40px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.accordion-item {
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.accordion-header {
  width: 100%;
  background: #f9fafc;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 1rem;
  color: #0f1e3d;
  font-weight: 500;
}

.accordion-header:hover {
  background: #f2f5fb;
}

.day-icon {
  font-size: 1.6rem;
  color: #d4af37;
}

.day-title {
  flex: 1;
  text-align: left;
}

.toggle-icon {
  font-size: 1.6rem;
  color: #d4af37;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.4s ease;
}

.accordion-content p {
  padding: 22px 24px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

/* Active State */
.accordion-item.active .accordion-content {
  max-height: 300px;
}

.accordion-item.active .toggle-icon {
  transform: rotate(45deg);
}


/* next */
.inclusion-exclusion {
  background: linear-gradient(180deg, #f6f8fc, #ffffff);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.ie-container {
  max-width: 1100px;
  margin: auto;
}

.ie-container h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  color: #0f1e3d;
  margin-bottom: 50px;
}

.ie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ie-card {
  padding: 34px 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.ie-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
}

.ie-card.include h3 {
  color: #1f7a4d;
}

.ie-card.exclude h3 {
  color: #9b2c2c;
}

.ie-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ie-card li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: #333;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ie-card li:last-child {
  border-bottom: none;
}

.ie-card li span {
  font-size: 1.4rem;
  color: #d4af37; /* Gold */
}

/* Responsive */
@media (max-width: 768px) {
  .ie-grid {
    grid-template-columns: 1fr;
  }

  .ie-container h2 {
    font-size: 1.9rem;
  }
}

/* next */
.pricing-section {
  background: linear-gradient(180deg, #0f1e3d, #142850);
  padding: 90px 20px;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

.pricing-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.pricing-container h2 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.pricing-subtitle {
  font-size: 1rem;
  color: #e7d9b6;
  margin-bottom: 50px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: 26px;
  padding: 45px 30px;
  border: 2px solid #d4af37;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* Price */
.price-box {
  margin-bottom: 30px;
}

.currency {
  font-size: 1.4rem;
  vertical-align: top;
  color: #ffd27a;
}

.price {
  font-size: 3.8rem;
  font-weight: 600;
  color: #ffd27a;
}

.per {
  font-size: 1rem;
  color: #f0e6c8;
}

/* Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 35px 0 40px;
}

.pricing-features li {
  font-size: 0.95rem;
  padding: 10px 0;
  color: #ffffff;
}

/* CTA Buttons */
.pricing-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  padding: 15px 34px;
  border-radius: 40px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.btn-call {
  padding: 15px 34px;
  border-radius: 40px;
  border: 1px solid #ffd27a;
  color: #ffd27a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.btn-whatsapp:hover,
.btn-call:hover {
  transform: translateY(-2px);
}

/* Note */
.pricing-note {
  margin-top: 25px;
  font-size: 0.8rem;
  color: #e7d9b6;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-container h2 {
    font-size: 2rem;
  }

  .price {
    font-size: 3rem;
  }
}

/* next */
.why-karvaahh {
  background: #f8f9fc;
  padding: 90px 20px;
  font-family: 'Poppins', sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-container h2 {
  font-size: 2.3rem;
  font-weight: 500;
  color: #0f1e3d;
  margin-bottom: 10px;
}

.why-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 55px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.why-icon {
  font-size: 2.4rem;
  color: #d4af37;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #0f1e3d;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .why-container h2 {
    font-size: 1.9rem;
  }
}


/* next */
.gallery-section {
  background: #ffffff;
  padding: 90px 20px;
  font-family: 'Poppins', sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery-container h2 {
  font-size: 2.3rem;
  font-weight: 500;
  color: #0f1e3d;
  margin-bottom: 10px;
}

.gallery-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Slider */
.slider {
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  gap: 22px;
  animation: slide 28s infinite linear;
}

.slides img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

/* Auto sliding animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slides img {
    width: 260px;
    height: 180px;
  }

  .gallery-container h2 {
    font-size: 1.9rem;
  }
}


/* next */
.safety-support {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 85px 20px;
  font-family: 'Poppins', sans-serif;
}

.safety-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.safety-container h2 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #0f1e3d;
  margin-bottom: 10px;
}

.safety-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 55px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.safety-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 34px 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.12);
}

.safety-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 16px;
}

.safety-card h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #0f1e3d;
  margin-bottom: 10px;
}

.safety-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .safety-container h2 {
    font-size: 1.9rem;
  }
}


/* next */
.trust-strip {
  background: #f8f9fc;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 10px;
  font-family: 'Poppins', sans-serif;
}

.trust-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f1e3d;
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-icon {
  font-size: 1.2rem;
  color: #d4af37; /* Gold accent */
}

.trust-item p {
  margin: 0;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-container {
    justify-content: center;
    gap: 16px;
  }
}

/* next */
.reviews-section {
  background: #ffffff;
  padding: 90px 20px;
  font-family: 'Poppins', sans-serif;
}

.reviews-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.reviews-container h2 {
  font-size: 2.3rem;
  font-weight: 500;
  color: #0f1e3d;
  margin-bottom: 10px;
}

.reviews-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 55px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.review-card {
  background: #f9fafc;
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #d4af37;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-header h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0f1e3d;
  margin: 0;
}

.review-header span {
  font-size: 0.8rem;
  color: #777;
}

.review-stars {
  color: #fbbc04; /* Google-style star color */
  font-size: 1rem;
  margin: 8px 0 12px;
}

.review-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-container h2 {
    font-size: 1.9rem;
  }
}
/* next */
.faq-section {
  background: #f8f9fc;
  padding: 90px 20px;
  font-family: 'Poppins', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-container h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 500;
  color: #0f1e3d;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #0f1e3d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background: #f2f5fb;
}

.faq-icon {
  font-size: 1.4rem;
  color: #d4af37;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-container h2 {
    font-size: 1.9rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }
}

/* next */

.final-cta {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  background: linear-gradient(135deg, #0f1e3d, #142850);
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 215, 160, 0.12),
    transparent 60%
  );
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.cta-container h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 22px;
}

.cta-container h2 span {
  color: #ffd27a;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: #e7d9b6;
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* WhatsApp */
.cta-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #ffffff;
}

/* Call */
.cta-btn.call {
  border: 1px solid #ffd27a;
  color: #ffd27a;
  background: transparent;
}

/* Quote */
.cta-btn.quote {
  background: linear-gradient(135deg, #ffd27a, #c9a24d);
  color: #0f1e3d;
}

/* Hover Effects */
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 2.2rem;
  }

  .cta-subtitle {
    font-size: 0.95rem;
  }
}















/* package short overview */
/* ===== Travel Packages Hero Section ===== */

.packages-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470")
    center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.45)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-tagline {
  font-size: 1.05rem;
  color: #e6e6e6;
  max-width: 600px;
  margin-bottom: 26px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-chips span {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .packages-hero {
    height: 80vh;
    padding: 0 6%;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }
}






/* filter */
/* ===== Package Filter Strip ===== */

.package-filter {
  width: 100%;
  background: #ffffff;
  padding: 22px 0;
  border-bottom: 1px solid #eee;
}

.filter-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
  display: flex;
  gap: 14px;
  overflow-x: auto;
}

.filter-wrapper::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 10px 22px;
  font-size: 0.9rem;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  color: #444;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  border-color: #111;
  color: #111;
}

.filter-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Mobile polish */
@media (max-width: 768px) {
  .package-filter {
    padding: 18px 0;
  }

  .filter-btn {
    padding: 9px 18px;
    font-size: 0.85rem;
  }
}

/* package box grid */
/* ===== Package Grid Section ===== */

.package-grid-section {
  padding: 70px 6%;
  background: #fafafa;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Card */
.package-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* Image */
.package-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content */
.package-content {
  padding: 20px;
}

.package-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.duration {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 12px;
}

.inclusions {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.inclusions li {
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 6px;
}

.route {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 16px;
}

/* Buttons */
.package-actions {
  display: flex;
  gap: 10px;
}

.btn {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: 30px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn.enquire {
  background: #111;
  color: #fff;
}

.btn.enquire:hover {
  background: #000;
}

.btn.details {
  border: 1px solid #ccc;
  color: #333;
}

.btn.details:hover {
  border-color: #111;
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .package-grid-section {
    padding: 50px 5%;
  }

  .package-img img {
    height: 180px;
  }
}





/* polite */
/* why choose us  */
/* ===== Why Choose Our Packages ===== */

.why-choose {
  padding: 80px 6%;
  background: #ffffff;
}

.why-header {
  max-width: 700px;
  margin-bottom: 50px;
}

.why-header h2 {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-header p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

/* Card */
.why-card {
  padding: 26px 22px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose {
    padding: 60px 5%;
  }

  .why-header h2 {
    font-size: 1.8rem;
  }
}



/* ............. */
/* ===== Destinations Coverage Section ===== */

.destinations-coverage {
  padding: 80px 6%;
  background: #fafafa;
}

.destinations-header {
  max-width: 720px;
  margin-bottom: 50px;
}

.destinations-header h2 {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.destinations-header p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 26px;
}

/* Card */
.destination-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.destination-icon {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 10px;
}

.destination-card h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .destinations-coverage {
    padding: 60px 5%;
  }

  .destinations-header h2 {
    font-size: 1.8rem;
  }
}

/* traveller review */

/* ===== Traveller Reviews Section ===== */

.traveller-reviews {
  padding: 70px 6%;
  background: #ffffff;
}

.reviews-header {
  max-width: 620px;
  margin-bottom: 40px;
}

.reviews-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.reviews-header p {
  font-size: 0.95rem;
  color: #666;
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* Card */
.review-card {
  padding: 24px 22px;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fafafa;
  transition: all 0.3s ease;
}

.review-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.stars {
  color: #f5b400;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 14px;
}

.reviewer {
  font-size: 0.85rem;
  color: #777;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .traveller-reviews {
    padding: 55px 5%;
  }

  .reviews-header h2 {
    font-size: 1.7rem;
  }
}


/* midd page section */
/* ===== Mid Page CTA Section ===== */

.mid-cta {
  padding: 70px 6%;
  background: linear-gradient(135deg, #111, #000);
  color: #ffffff;
}

.cta-content {
  max-width: 900px;
}

.mid-cta h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.mid-cta p {
  font-size: 1rem;
  color: #dddddd;
  max-width: 650px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Buttons */
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

/* WhatsApp */
.cta-btn.whatsapp {
  background: #25d366;
  color: #000;
}

.cta-btn.whatsapp:hover {
  background: #1ebe5d;
}

/* Call */
.cta-btn.call {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.cta-btn.call:hover {
  background: #ffffff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .mid-cta {
    padding: 55px 5%;
  }

  .mid-cta h2 {
    font-size: 1.8rem;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}


/* final cta
 */
 /* ===== Final Call To Action Section ===== */

.final-cta {
  padding: 90px 6%;
  background: linear-gradient(135deg, #0f0f0f, #000);
  color: #ffffff;
}

.final-cta-content {
  max-width: 1000px;
}

.final-cta h2 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.final-cta p {
  font-size: 1.05rem;
  color: #dddddd;
  max-width: 700px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Buttons */
.final-cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.final-btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
} */

/* WhatsApp */
 .final-btn.whatsapp {
  background: #25d366;
  color: #000;
} */

 .final-btn.whatsapp:hover {
  background: #1ebe5d;
} 

/* Call */
 .final-btn.call {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.final-btn.call:hover {
  background: #ffffff;
  color: #000;
}


.final-btn.custom {
  background: #ffffff;
  color: #000;
}

.final-btn.custom:hover {
  background: #e5e5e5;
}


@media (max-width: 768px) {
  .final-cta {
    padding: 70px 5%;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .final-btn {
    width: 100%;
    justify-content: center;
  }
}


/* trending */
/* ===== Continue Exploring Section ===== */

.continue-exploring {
  padding: 70px 6%;
  background: #fafafa;
}

.explore-header {
  max-width: 700px;
  margin-bottom: 30px;
}

.explore-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.explore-header p {
  font-size: 0.95rem;
  color: #666;
}

/* Tabs */
.explore-tabs {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.explore-tab {
  padding: 9px 20px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: transparent;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.explore-tab.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.explore-tab:hover {
  border-color: #111;
}

/* Panels */
.explore-panel {
  display: none;
}

.explore-panel.active {
  display: block;
}

/* Mini grid */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.mini-card {
  padding: 18px 20px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #eee;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .continue-exploring {
    padding: 55px 5%;
  }

  .explore-header h2 {
    font-size: 1.7rem;
  }
}


/* ===== Package Filter Section ===== */

.package-filter {
  padding: 28px 0 36px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

/* Row styling */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* SPACE BETWEEN TWO ROWS */
.filter-row + .filter-row {
  margin-top: 22px;        /* 👈 MAIN SPACE CONTROL */
  padding-top: 22px;
  border-top: 1px solid #eee;  /* subtle divider */
}

/* Buttons */
.filter-btn {
  padding: 10px 22px;
  font-size: 0.88rem;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #fff;
  color: #444;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

/* Hover */
.filter-btn:hover {
  border-color: #111;
  color: #111;
}

/* Active */
.filter-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Mobile polish */
@media (max-width: 768px) {
  .package-filter {
    padding: 22px 0 28px;
  }

  .filter-row + .filter-row {
    margin-top: 18px;
    padding-top: 18px;
  }

  .filter-btn {
    padding: 9px 18px;
    font-size: 0.85rem;
  }
}


.itinerary-section {
  padding: 40px 0;
}

.route-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.route-btn {
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  cursor: pointer;
  font-weight: 600;
}

.route-btn.active {
  background: #2c7be5;
  color: #fff;
  border-color: #2c7be5;
}

.accordion-item {
  border: 1px solid #eee;
  margin-bottom: 12px;
  border-radius: 6px;
}

.accordion-header {
  width: 100%;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  background: #fafafa;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.accordion-content {
  display: block;
  padding: 14px;
  background: #fff;
}

.hidden {
  display: none;
}


/*  */
/* ===== ACCORDION FORCE OVERRIDE ===== */


/* =================================== */
.route-selector {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.route-btn {
  padding: 12px 22px;
  border-radius: 30px;
  border: 1.5px solid #e0e0e0;
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
  color: #333;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.route-btn:hover {
  background: linear-gradient(135deg, #e8f0ff, #ffffff);
  border-color: #2c7be5;
  color: #2c7be5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44,123,229,0.2);
}

/* Active (selected route) */
.route-btn.active {
  background: linear-gradient(135deg, #2c7be5, #1a5fd1);
  color: #fff;
  border-color: #2c7be5;
  box-shadow: 0 8px 20px rgba(44,123,229,0.35);
}

/* Optional glow dot (nice touch ✨) */
.route-btn.active::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}









/* view full itenary */
/* Hide itinerary after Day 5 */

.route-itinerary .accordion-item:nth-child(n+2) {
    display: none;
}


/* #kathmandu .accordion-item:nth-child(n+5) {
    display: none;
} */

/* View More Button */
.view-more-wrapper {
    text-align: center;
    margin-top: 25px;
}

.view-more-btn {
    background: #1da1f2;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.view-more-btn:hover {
    background: #0c7dc0;
}





.itinerary-section,
.route-itinerary,
.accordion-item,
.accordion-content {
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}











/* spritual packages */

.premium-spiritual-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(10,10,30,0.85));
    top: 0;
    left: 0;
    z-index: 2;
}

.premium-spiritual-section .container {
    position: relative;
    z-index: 3;
}

.subtitle {
    color: #ff9800;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.title {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0;
}

.divider {
    width: 80px;
    height: 3px;
    background: #ff9800;
    margin: 20px auto 60px;
}

/* Slider */
.slider {
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(320px * 12);
    animation: scroll 35s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Glass Card */
.package-card {
    width: 300px;
    margin: 0 20px;
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    position: relative;
    transition: 0.4s ease;
}

.package-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.package-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.package-card p {
    font-size: 14px;
    color: #ddd;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.15);
}

/* Price Ribbon */
.price-badge {
    position: absolute;
    top: 15px;
    right: -10px;
    background: #ff5722;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


@media (min-width: 992px) {
    #header ~ * {
        margin-top: 95px;
    }
}



/* ===== MOBILE VIEWPORT FIX ONLY ===== */
@media (max-width: 991px) {

  #carouselExampleDark,
  #carouselExampleDark .carousel-item {
      height: 90svh !important;
  }

  #carouselExampleDark img {
      height: 90% !important;
      object-fit: cover;
  }

}


/* ===== MOBILE FIXED NAVBAR ===== */
@media (max-width: 991px) {

  .navbar {
    position: fixed !important;
    top: 0;
    width: 100%;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  body {
    padding-top: 80px; /* adjust if navbar height changes */
  }

}





/* ================= MOBILE SCROLL FIX ================= */
@media (max-width: 991px) {

  .package-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 15px;
    scroll-behavior: smooth;
  }

  .package-grid::-webkit-scrollbar {
    height: 6px;
  }

  .package-grid::-webkit-scrollbar-thumb {
    background: #ff7a18;
    border-radius: 10px;
  }

  .package-card {
    flex: 0 0 80%;
    max-width: 80%;
  }

}



/* Hide ONLY "All" button in mobile view */
@media (max-width: 991px) {
  .package-section .package-filter li[data-filter="all"] {
    display: none;
  }
}




/* =========================
   MOBILE FILTER DESIGN
========================= */
@media (max-width: 991px) {

  .package-filter {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 5px;
    margin-bottom: 20px;
    list-style: none;
    scrollbar-width: none; /* Firefox */
  }

  .package-filter::-webkit-scrollbar {
    display: none; /* Chrome */
  }

  .package-filter li {
    flex: 0 0 auto;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    background: #f1f3f6;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .package-filter li.active {
    background: linear-gradient(45deg, #ff6600, #ff8c00);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  .package-filter li:active {
    transform: scale(0.95);
  }

}






/* ===============================
   MOBILE FIX – SPIRITUAL SECTION
================================ */
@media (max-width: 991px) {

  .premium-spiritual-section {
    padding: 40px 0;
  }

  .premium-spiritual-section .slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .premium-spiritual-section .slide-track {
    display: flex;
    gap: 15px;
    padding: 10px;
    scroll-snap-type: x mandatory;
  }

  .premium-spiritual-section .package-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 15px;
    text-align: center;
  }

  .premium-spiritual-section .package-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
  }

  .premium-spiritual-section .package-card h3 {
    font-size: 16px;
    margin-top: 12px;
    font-weight: 600;
  }

  /* Hide scrollbar */
  .premium-spiritual-section .slider::-webkit-scrollbar {
    display: none;
  }

}








/* =========================================
   SPIRITUAL SECTION - CLEAN MOBILE FIX
========================================= */
@media (max-width: 991px) {

  /* STOP old animation */
  .premium-spiritual-section .slide-track {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

  .premium-spiritual-section .slider {
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  /* Proper horizontal layout */
  .premium-spiritual-section .slide-track {
    display: flex !important;
    gap: 15px;
    padding: 0 15px;
    width: max-content !important;
  }

  /* Proper card size */
  .premium-spiritual-section .package-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    min-width: 85% !important;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    padding: 0 !important;
  }

  /* FIX IMAGE ISSUE */
  .premium-spiritual-section .package-card img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    display: block !important;
  }

  .premium-spiritual-section .package-card h3 {
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    text-align: center;
  }

  /* Hide scrollbar */
  .premium-spiritual-section .slider::-webkit-scrollbar {
    display: none;
  }
}






/* =========================================
   FIX SPIRITUAL SECTION – MOBILE ONLY
========================================= */
@media (max-width: 991px) {

  .premium-spiritual-section .slide-track {
    width: auto !important;           /* 🔥 remove calc width */
    animation: none !important;       /* 🔥 stop auto scroll */
    transform: none !important;
  }

  .premium-spiritual-section .slider {
    overflow-x: auto !important;
  }

  .premium-spiritual-section .slide-track {
    display: flex !important;
    gap: 15px;
    padding: 0 15px;
  }

  .premium-spiritual-section .package-card {
    flex: 0 0 85% !important;
    min-width: 85% !important;
    max-width: 85% !important;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
  }

  .premium-spiritual-section .package-card img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
  }

}

/* =========================================
   MOBILE SCROLL INDICATOR
========================================= */
@media (max-width: 991px) {

  .spiritual-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
  }

  .spiritual-dots span {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .spiritual-dots span.active {
    width: 18px;
    border-radius: 20px;
    background: #ff6600;
  }

}


@media (max-width: 991px){

  .package-card{
    height: auto !important;
  }

  .package-card img{
    width: 100% !important;
    height: 190px !important;
    max-height: 190px !important;
    object-fit: cover !important;
    display: block;
  }

}

/* ===== MOBILE ONLY – Popular Regions Slider ===== */
@media (max-width: 991px){

  .package-section #allPackages{
    overflow: hidden;
    width: 100%;
  }

  .package-section #allPackages .package-track{
    display: flex;
    width: 100%;
    transition: transform 0.4s ease-in-out;
  }

  .package-section #allPackages .package-track > .package-card{
    flex: 0 0 100%;
    width: 100%;
  }

  .package-section #allPackages .package-track > .package-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }

}


/* Only target cards inside slide-track */
.slide-track .package-card {
    display: block;
    text-decoration: none;
    color: #222;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Hover lift */
.slide-track .package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* Image wrapper */
.slide-track .card-img {
    position: relative;
    overflow: hidden;
}

/* Image styling */
.slide-track .card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Zoom effect */
.slide-track .package-card:hover img {
    transform: scale(1.1);
}

/* Overlay button */
.slide-track .overlay-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c89b3c, #a8741a);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: 0.4s ease;
}

/* Show button on hover */
.slide-track .package-card:hover .overlay-btn {
    opacity: 1;
}

/* Title styling */
.slide-track .package-card h3 {
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}