* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}

.top-nav a{
    padding-right: 15px;
    color: #ffffff;
    text-decoration: none;
    padding: 5px;
}

.top-nav{
    display: flex;
    justify-content: center;
    padding: inherit;
    background: #000000;
}


@media screen and (max-width: 600px){
    .top-nav a{
        font-size: 14px;
    }
}



.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}



.phone-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 20px;
    background-color: #090d81;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.phone-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}



nav {
  background: #000000;
  padding: 10px 20px;
}
.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
      left: 600px;
    position: absolute;
}


.navbar{
  display: flex;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  position: sticky;
  top: 0px;
  z-index: 99;
}


.logo-img{
  width: 100px;
  left: 50px;
    position: relative;
}


.menu li {
  position: relative;
}
.menu a {
  display: block;
  padding: 10px 20px;
  color: black;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}
.menu li:hover > a {
  color: red;
}
.submenu,
.submenu-right {
  display: none;
  position: absolute;
  background: #ffffff;
  min-width: 160px;
  list-style: none;
  z-index: 100;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.36); 
box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.36);
padding: inherit;
}


@media (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .menu {
        display: none;
        background: #ffffff;
        left: 235px;
        top: 50px;
    }

  #menu-toggle {
    display: none;
  }

  #menu-toggle:checked + label + ul {
    display: flex;
  }

  .menu li {
    width: 100%;
  }

  .submenu,
  .submenu-right {
    position: static;
    display: none;
    padding-left: 20px;
  }

  .menu li:hover > .submenu,
  .submenu li:hover > .submenu-right {
    display: block;
        left: -100px;
        position: relative;
  }

  .submenu .dropdown > a::after {
    content: "▸";
    float: right;
  }

  .submenu .dropdown:hover > a::after {
    content: "▼";
  }
}


@media (min-width: 769px) {
  .menu li:hover > .submenu {
    display: block;
    top: 100%;
    left: 0;
  }

  .submenu li:hover > .submenu-right {
    display: block;
    top: 0;
    left: 100%;
  }

  .submenu .dropdown > a:after {
    content: "▸";
    float: right;
  }

  .submenu .dropdown:hover > a::after {
    content: "▼";
  }

  .hamburger,
  #menu-toggle {
    display: none;
  }
}


    /* HERO */
.hero {
  position: relative;
  height: calc(100vh - 120px);
  /* allow room for topbar/nav */
  min-height: 600px;
  overflow: hidden;
}

.slides {
  height: 100%;
  position: relative
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 800ms ease, transform 800ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgb(0 0 0 / 57%), rgba(0, 0, 0, 0.45));
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10
}

/* Hero centered content */
.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 20;
  max-width: 1000px;
  padding: 40px;
    margin-top: 140px;
}

.hero-title {
  font-size: 38px;
  letter-spacing: 3px;
  margin: 0;
  font-weight: 800;
  text-transform: uppercase
}

.hero-title-alt {
  font-size: 46px;
  letter-spacing: 6px;
  margin: 10px 0 20px;
  font-weight: 800;
  text-transform: uppercase
}

.hero-text {
  max-width: 800px;
  margin: 0 auto 22px;
  opacity: 0.95;
  font-size: 16px;
  line-height: 1.6
}

.cta {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  transition: all 150ms;
  box-shadow: 0 6px 14px rgba(255, 90, 60, 0.14)
}

.cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(225, 75, 47, 0.16)
}

/* Dots */
.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 120px;
  display: flex;
  gap: 10px;
  z-index: 40
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.08)
}

.dot.active {
  background: white;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2)
}

/* Search Panel overlapping bottom */
.search-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  /* overlapping */
  width: 90%;
  max-width: 1300px;
  background: white;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 60;
    margin-top: 80px;
}

.search-form {
  display: flex;
  gap: 14px;
  align-items: end;
  flex-wrap: wrap
}

.field {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column
}

.field label {
  font-size: 12px;
  color: #555;
  margin-bottom: 6px;
  font-weight: 600
}

.field input,
.field select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  font-size: 14px
}

.submit-field {
  flex: 0 0 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px
}

.btn.inquire {
  background: red;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  border: 0;
  width: 100%;
  font-weight: 700
}

.btn.inquire:hover {
  background: green;
}

/* MOBILE / RESPONSIVE */
@media (max-width: 900px) {
  .nav-inner {
    padding: 12px 0
  }

  .main-nav {
    display: none
  }

  .hamburger {
    display: block
  }

  .buy-now {
    display: none
  }

  .hero {
    height: calc(100vh - 120px);
    min-height: 520px
  }

  .hero-title {
    font-size: 24px;
    letter-spacing: 2px
  }

  .hero-title-alt {
    font-size: 28px;
    letter-spacing: 3px
  }

  .dots {
    bottom: 100px
  }

  .search-panel {
    bottom: -70px;
    padding: 14px;
    width: 94%
  }

  .search-form {
    flex-direction: column;
    align-items: stretch
  }

  .submit-field {
    height: auto
  }

  .field {
    width: 100%
  }
}

/* MOBILE MENU (slide-out) */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 120;
}

.mobile-menu[aria-hidden="false"] {
  display: block
}

.mobile-menu-inner {
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: #fff;
  padding: 18px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.25);
  overflow: auto;
}

.mobile-close {
  background: transparent;
  border: 0;
  font-size: 22px;
  float: right;
  cursor: pointer
}

.mobile-nav {
  list-style: none;
  padding: 10px 0;
  margin: 0
}

.mobile-nav li {
  margin: 8px 0
}

.mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700
}

.mobile-submenu {
  list-style: none;
  padding-left: 12px;
  display: none
}

.mobile-submenu.deeper {
  padding-left: 12px
}

.mobile-submenu.open {
  display: block
}

.mobile-buy {
  display: block;
  text-align: center;
  margin-top: 10px
}

.section-header{
  text-align: center;
    padding-top: 35px;
    font-family: math;
    font-weight: bolder;
}



    .section-heading {
      text-align: center;
      font-size: 2rem;
      font-weight: 800;
      margin: 40px 0 24px;
    }

    /* each slide card */
    .dest-card {
      text-align: center;
      padding: 12px 8px;
      user-select: none;
    }

    .dest-img {
      width: 220px;
      height: 220px;
      object-fit: cover;
      border-radius: 50%;
      margin: 0 auto;
      display: block;
      box-shadow: 0 8px 20px rgba(8, 20, 40, 0.12);
      transition: transform .25s ease;
    }
    .dest-card:hover .dest-img { transform: translateY(-6px); }

    .dest-title {
      margin-top: 14px;
      font-weight: 700;
      font-size: 1.15rem;
      color: #1f2937;
    }

    .dest-rating {
      margin-top: 6px;
      color: #666;
      font-size: 0.95rem;
      display:flex;
      justify-content:center;
      gap:8px;
      align-items:center;
    }
    .dest-rating .star {
      color: #ff9600;
      font-size: 1.05rem;
      line-height: 1;
    }

    /* Swiper arrows (circular white buttons) */
    .swiper-button-prev, .swiper-button-next {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 6px 20px rgba(2,10,30,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #222;
    }
    .swiper-button-prev::after, .swiper-button-next::after {
      font-size: 18px;
      color: #222;
    }

    /* spacing under the carousel so nothing is clipped */
    .trending-wrap { padding-bottom: 28px; }

    /* responsive tweaks */
    @media (max-width: 1200px) {
      .dest-img { width: 180px; height: 180px; }
    }
    @media (max-width: 768px) {
      .dest-img { width: 140px; height: 140px; }
      .swiper-button-prev, .swiper-button-next { display: none; } /* hide arrows on small screens */
    }


/* Section Two styles (scoped) */
.section-two { 
  background: #f7f9fb; 
  border-radius: 6px; 
  padding: 48px 24px; 
  max-width: none;
}

/* Title */
.section-two .section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1f2937;
}

/* Card */
.pkg-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(8,20,40,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* media image area */
.pkg-media { width: 100%; height: 200px; overflow: hidden; }
.pkg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* body */
.pkg-body { padding: 18px 20px 22px; flex: 1; display:flex; flex-direction:column; }

/* meta and title */
.pkg-body .meta { display:flex; align-items:center; gap:6px; color:#9aa3ad; }
.pkg-title { margin: 8px 0 0; font-size:1.1rem; font-weight:700; color:#14324b; }

/* rating */
.pkg-body .star { color:#ff9600; font-size:1.05rem; margin-right:6px; }

/* separator */
.pkg-sep { border: 0; border-top: 1px solid #eee; margin: 14px 0; }

/* price/duration row */
.price strong { font-size:1.05rem; }
.duration { color:#9aa3ad; }

/* enquiry button */
.btn-primary.enquire-btn {
      background: #ff0000;
  border: none;
  border-radius: 40px;
  padding: 12px 18px;
  font-weight:700;
  letter-spacing: .6px;
  box-shadow: 0 8px 18px rgba(91,44,230,0.12);
}

/* small circular control button used top-right (optional) */
.btn-circle {
  width:44px; height:44px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  box-shadow:0 6px 20px rgba(2,10,30,0.06); border: none;
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .pkg-media { height: 180px; }
}
@media (max-width: 575.98px) {
  .pkg-media { height: 160px; }
  .section-two { padding: 28px 16px; }
}


.section-three { 
  background: #fffff; 
  border-radius: 6px; 
  padding: 48px 24px; 
  max-width: none;
}


.section-three .section-title{
  font-size: 2.25rem;
    font-weight: 800;
    color: #1f2937;
}



.stats-container {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 30px auto;
  max-width: 1000px;
  padding-inline: 16px;
}

.stats-container .stat {
  background: #6034ef;
  padding: 24px;
  text-align: center;
  color: white;
  border-radius:25px;
}

.stats-container .stat .odometer {
  font-size: 50px;
  font-weight: bold;
  display: inline-block;
}

.stats-container .stat .type {
  font-size: 20px;
}

.odometer.plus {
  position: relative;
}

.odometer.plus::after {
  content: "+";
  position: absolute;
  top: 0;
  right: -16px;
  font-size: 20px;
}

@media (max-width: 700px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}


/* Price Card  */




.price-card{
  background: #ffffff;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

.price-head{
    text-align: center;
    border-bottom: solid gray;
    padding-top: 10px;
    font-family: poppins;
}

.card-top{
  z-index: 1;
}

.price-content{
  list-style: none;
    gap: 25px;
    display: grid;
    padding-top: 21px;
}

.fa-check{
  color:#74C0FC;
}

.price-card:hover{
-moz-transform: scale(1.1) translate(4px, -4px);
-webkit-transform: scale(1.1) translate(4px, -4px);
-o-transform: scale(1.1) translate(4px, -4px);
-ms-transform: scale(1.1) translate(4px, -4px);
transform: scale(1.1) translate(4px, -4px);
}


.price-btn{
  display: flex;
  justify-content: center;
  padding-bottom: 15px;
}


.price-cost{
      color: #ffffff;
    background-color: #ff0000;
    font-size: 23px;
    border: 0px solid #2d63c8;
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
}


.why-choose-us {
    background: #ffffff;
}

.choose-box {
    padding: 10px 15px;
}

.choose-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.why-choose-us h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.choose-box p {
    font-size: 1rem;
    line-height: 1.6;
}







.section-four{
      background: #f7f9fb;
    border-radius: 6px;
    padding: 48px 24px;
    max-width: none;
    margin-top: 25px;
}


.section-five{
      background: #fffff;
    border-radius: 6px;
    padding: 48px 24px;
    max-width: none;
}




.carousel img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}

.carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  .carousel-inner {
    display: flex;
    width: 90%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }

  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 768px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}

.carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: grey;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}


.bg-body-tertiary{
  background: white !important;
}


.testimonial-text{
  text-align: center;
}

.testimonial-header{
  font-size: xxx-large;
}





/* Footer */

.footer {
    background: #111;
    color: #ccc;
    font-size: 13px;
}




.footer-top {
    margin-top: 30px;
    padding: 50px 0 30px;
    display: grid;
    gap: 30px;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
}

.footer-col h4 {
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-col p {
    margin-bottom: 8px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li + li {
    margin-top: 6px;
}

.footer-col a {
    color: #ccc;
}

.footer-bottom {
    background: #0b0b0b;
    padding: 15px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-payments i {
    font-size: 20px;
    margin-left: 10px;
}


@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}



/* Index Page End */



.about-image{
     width: 95%;
    -webkit-box-shadow: 5px 2px 10px 0px rgba(0, 0, 0, 0.28);
    box-shadow: 5px 2px 10px 0px rgba(0, 0, 0, 0.28);
}

#about-txt{
      padding-left: 105px;
    text-align: justify;
}


.why-us-head{
      text-align: center;
    text-decoration: underline red 5px;
}

.why-us-txt{
      text-align: center;
    margin-left: 130px;
    margin-right: 130px;
}



/* Section wrapper */
  .diff-section {
    padding: 48px 24px;
  }

  /* Two-column layout */
  .diff-inner {
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 34px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Left panel */
  .diff-left {
    background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.45)), var(--dark-bg);
    color: #fff;
    padding: 40px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
  }

  .diff-left .heading {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    line-height: 1;
  }
  .diff-left .accent-title {
    color: var(--accent);
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 800;
    margin: 8px 0 18px;
  }
  .diff-left p.lead {
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 22px;
  }

  /* image block inside left */
  .left-image-wrap {
    display:block;
    width:100%;
    max-width: 520px;
    border-radius: 6px;
    overflow: hidden;
    margin-top:12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  }
  .left-image-wrap img {
    display:block;
    width:100%;
    height: auto;
    object-fit:cover;
  }

  /* vertical label on the far left */
  .vertical-label {
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    color: rgba(255,255,255,0.7);
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 13px;
    background: transparent;
    padding: 6px 0;
  }

  /* Right card checklist */
  .diff-right {
    position: relative;
    background: var(--card-bg);
    border-radius: 14px;
    padding: 36px 34px;
    box-shadow: 0 18px 40px rgba(10,20,30,0.12);
    border-left: 4px solid rgba(0,0,0,0.02);
  }

  /* the thin accent vertical rule (inside card near left) */
  .diff-right::before {
    content:"";
    position:absolute;
    left:18px;
    top:18px;
    bottom:18px;
    width:2px;
    background: var(--accent);
    opacity: 0.12;
    border-radius:2px;
  }

  .check-list { list-style:none; padding:0; margin:0 0 0 18px; }
  .check-item {
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding: 14px 10px;
    border-bottom: 1px solid #f1f1f1;
  }
  .check-item:last-child { border-bottom: none; padding-bottom: 0; }

  .check-icon {
    flex: 0 0 40px;
    height:40px;
    width:40px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items:center;
    justify-content:center;
    color: #fff;
    font-size:18px;
    box-shadow: 0 6px 18px rgba(255,106,0,0.14);
    margin-top:6px;
  }

  .check-text {
    color: #222;
    font-size: 15px;
    line-height: 1.6;
  }

  /* spacing around the list inside right card */
  .diff-right .section-title {
    font-weight:700;
    margin-bottom: 18px;
    font-size: 18px;
    color: #222;
  }

  /* rounded corners huge bottom-right rounding to match screenshot */
  .diff-right { border-radius: 14px; }

  /* Responsive */
  @media (max-width: 1000px) {
    .diff-inner { grid-template-columns: 1fr; }
    .diff-right { order: 2; margin-top: 22px; }
    .diff-left { order: 1; }
    .diff-left { padding-bottom: 28px; }
    .diff-right::before { left: 12px; }
  }

  @media (max-width:560px){
    .diff-left .heading, .diff-left .accent-title { text-align:center; }
    .vertical-label { display:none; }
    .left-image-wrap { max-width: 100%; margin-left:auto; margin-right:auto; }
    .diff-right { padding: 20px; }
  }




    .faq .accordion-button { color:#111827; font-weight:600; }


    .cta {
      background: linear-gradient(90deg, rgba(91,44,230,0.12), rgba(106,66,255,0.05));
      padding: 36px;
      border-radius: 12px;
      display:flex;
      align-items:center;
      gap:18px;
      justify-content:space-between;
    }


    /* About Us Page End  */


    /* ========== HERO SECTION ========== */
.contact-hero {
    height: 420px;
    position: relative;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 41%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
}

/* ========== CONTACT CARDS ========== */
.contact-card {
    background: #faf4ea;
    padding: 22px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: auto;
    color: #333;
}

/* ========== FORM ========== */
.form-wrapper {
      max-width: 695px;
      margin: 40px auto;
      background: #fff;
      border: 1px solid #e2e8f0;
      padding: 26px;
      border-radius: 6px;
      box-shadow: 0 6px 24px rgba(15,23,42,0.06);
    }

.form-label{
  display: flex;
  font-weight: bold;
}


    .form-title {
      text-align: center;
      font-weight: 700;
      margin-bottom: 6px;
      font-size: 20px;
    }

    .accent-line {
      width: 64px;
      height: 4px;
      background: linear-gradient(90deg,#00a8ff,#0077cc);
      margin: 10px auto 22px;
      border-radius: 4px;
    }

    /* label + asterisk */
    label .req {
      color: #e11d48;
      margin-left: 6px;
      font-weight:700;
    }

    /* input style */
    .input-with-icon {
      position: relative;
    }
    .input-with-icon .form-control {
      padding-right: 44px;
      border: 1px solid #d1d5db;
      border-radius: 4px;
      height: 42px;
      background: #fff;
    }
    .input-with-icon .form-control:focus {
      box-shadow: none;
      border-color: #0ea5e9;
    }
    .input-with-icon .icon {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #9ca3af;
      font-size: 18px;
      pointer-events: none;
    }

    /* textarea */
    .text-area {
      min-height: 110px;
      border: 1px solid #d1d5db;
      border-radius: 4px;
      padding: 12px;
      resize: vertical;
      background:#fff;
    }

    /* date input icon (calendar) */
    input[type="date"].form-control { padding-right: 44px; }

    /* select style */
    .form-select {
      border: 1px solid #d1d5db;
      border-radius: 4px;
      height: 42px;
      background:#fff;
    }

    /* CTA button */
    .btn-cta {
      background: linear-gradient(180deg,#2b6be6,#5b2ce6);
      color:#fff;
      border: none;
      padding: 12px 30px;
      border-radius: 8px;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(43,67,217,0.12);
      width: 100%;
    }

    /* success box */
    .success-box {
      display: none;
      opacity: 0;
      transition: opacity .4s ease, transform .4s ease;
      transform: translateY(6px);
      background: #e6ffed;
      border: 1px solid #bff0c7;
      color: #064e3b;
      padding: 10px 14px;
      border-radius: 8px;
      margin-top: 12px;
      text-align:center;
      font-weight: 600;
    }
    .success-box.show {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    /* two-column layout inside the box */
    .form-grid { gap: 14px; }

    /* Small icons in left of form fields (optional if you want) */
    .left-icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #9ca3af;
      font-size: 14px;
    }
    .has-left-icon .form-control { padding-left: 34px; }

    /* small helper */
    .small-muted { color: #6b7280; font-size: 0.95rem; }

    /* responsive tweak */
    @media (max-width: 767.98px) {
      .form-wrapper { margin: 20px; padding: 18px; }
    }




    .mt-3{
      text-align: justify;
      top: 230px;
      position: relative;
    }



/* Contact Page End */






.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
}

.hero h1 {
  position: relative;
  color: #fff;
  font-size: 50px;
  letter-spacing: 2px;
  font-weight: 700;
}



 .intro{
    text-align:center
}
 .intro h2{
    font-size:40px;
    margin:6px 0
}
 .intro p{
    color:var(--muted);
    max-width:900px;
    margin:10px auto;
    line-height:1.6
}
/* Layout */
 .layout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:26px;
    margin-top:24px
}
/* Filter */
 .filter{
    background:#fff;
    border:1px solid #e9e9e9;
    padding:18px;
    border-radius:var(--radius);
    box-shadow:var(--shadow)
}
 .filter-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px
}
 .filter h4{
    margin:0
}
 .link-btn{
    background:none;
    border:0;
    color:var(--brand-red);
    cursor:pointer;
    font-weight:700
}
 .range-wrap{
    margin-bottom:18px
}
 .range-wrap label{
    display:block;
    margin-bottom:6px;
    font-weight:600
}
 .range-wrap input[type="range"]{
    width:100%
}
 .range-values{
    display:flex;
    justify-content:space-between;
    font-size:13px;
    color:var(--muted)
}
 .durations h5,.stars-filter h5{
    margin-top:12px;
    margin-bottom:8px
}
 .row{
    display:flex;
    justify-content:flex-start;
    padding:8px 0;
    border-bottom:1px solid #f6f6f6
}
/* Packages */
 .content{
    padding:0
}
 .packages{
    display:flex;
    flex-direction:column;
    gap:18px
}
 .card{
    display:flex;
    gap:18px;
    border:2px solid rgba(243,160,0,0.14);
    padding:12px;
    border-radius:10px;
    align-items:center;
    background:#fff;
    box-shadow:0 1px 0 rgba(0,0,0,0.02);
    flex-direction:row;
}
 .thumb{
    width:200px;
    height:120px;
    border-radius:6px;
    overflow:hidden;
    flex-shrink:0
}
 .thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block
}
 .card-body{
    flex:1
}
 .card-body h3{
    margin:0;
    font-size:20px
}
 .meta{
    color:var(--muted);
    font-size:13px;
    margin:6px 0
}
 .icons{
    display:flex;
    gap:18px;
    margin-top:8px;
    flex-wrap:wrap
}
 .icons div{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px
}
 .pricebox{
    width:200px;
    text-align:right
}
 .pricebox .type{
    background:#fff;
    border:1px solid #f0c27a;
    padding:6px 8px;
    border-radius:4px;
    font-size:13px;
    color:#2b2b2b;
    display:inline-block
}
 .pricebox .price{
    color:var(--brand-red);
    font-weight:700;
    margin:8px 0
}
 .btn{
    display:inline-block;
    background: red;
    color:#fff;
    padding:10px 14px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600
}
/* Modal */
 .modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999
}
 .modal[aria-hidden="false"]{
    display:flex
}
 .modal-content{
    background:#fff;
    max-width:600px;
    width:90%;
    padding:20px;
    border-radius:10px;
    position:relative;
    box-shadow:var(--shadow)
}
 .modal-close{
    position:absolute;
    right:10px;
    top:6px;
    border:0;
    background:none;
    font-size:28px;
    cursor:pointer
}

/* Responsive */
 @media(max-width:900px){
     .hero{
        height:260px
    }
     .hero h1{
        font-size:48px
    }
     .layout{
        grid-template-columns:1fr
    }
     .filter{
        order:2
    }
     .pricebox{
        width:140px;
        text-align:left
    }
     .cols{
        grid-template-columns:1fr
    }
     .topbar{
        flex-direction:column;
        align-items:flex-start;
        gap:8px
    }
}
 @media(max-width:520px){
     .thumb{
        width:120px;
        height:80px
    }
    
     .card{
        flex-direction:row;
        align-items:center;
        padding:0;

    }
    
     .pricebox{
        width: fit-content;
    }
}




canvas {
  display: block;
  vertical-align: bottom;
}






h2 span {
  color: #ff4d4d;
}

/* NAVBAR */
.navbar {
  padding: 15px 0;
}

/* HERO */
.hero-leads {
  background: linear-gradient(to right, rgb(7 21 63 / 55%), rgb(7 21 63 / 29%)),
    url("https://images.unsplash.com/photo-1507720708252-1ddeb1dbff34?q=80&w=1267&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0 160px;
}

.hero h1 {
  font-weight: 700;
}

.hero p {
  max-width: 760px;
}

.hero .btn-primary {
  background: #2d5cff;
  border: none;
}

.hero .btn-danger {
  background: #ff4d4d;
  border: none;
}

.text-muted{
  display: grid;
  gap: 15px;
}

/* FEATURE CARDS */
.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform .3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* ABOUT */
.about-img {
  position: relative;
}

.about-img::before,
.about-img::after {
  content: "";
  position: absolute;
  border: 3px solid #2d5cff;
  width: 100%;
  height: 100%;
  top: -15px;
  left: -15px;
  z-index: -1;
}

.about-img::after {
  border-color: #ff4d4d;
  top: 15px;
  left: 15px;
}

/* SERVICES */
.service-box {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: all .3s;
}

.container-fluid{
padding: inherit;
}


.service-box:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* DARK SECTION */
.dark-section {
  background: linear-gradient(
      to right,
      rgba(7, 21, 63, 0.95),
      rgba(7, 21, 63, 0.85)
    ),
    url("https://images.unsplash.com/photo-1523958203904-cdcb402031fd");
  background-size: cover;
  color: #fff;
}




/* Package Page */

.d-img{
      margin-top: 50px;
    border-radius: 4px;
}




.hero-package {
  background: url('https://images.unsplash.com/photo-1521354719423-661a3204204f?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-package img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}
.price-tag {
  position: absolute;
  right: 5%;
  bottom: 10%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.price-tag h2 {
  color: #e63946;
}
.price-tag button {
  background: #0077ff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
}
.price-tag button:hover {
  background: #005fcb;
}


.boder-para{
    border-radius: 20px;
    border-color: #d1d1d1;
}

/* Itinerary */
.itinerary h2,
.overview h2,
.tour-info h2 {
  margin-bottom: 20px;
  color: #222;
  font-size: 24px;
}
.day {
  background: #fff7f0;
  border-left: 5px solid #ff914d;
  border-right: 5px solid #ff914d;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
}
.day h3 {
  color: #333;
  margin-bottom: 8px;
}
.day p {
  color: #555;
  font-size: 15px;
}

/* Tour Info */
.tour-info ul {
  list-style: disc;
  padding-left: 20px;
  color: #444;
}
.tour-info li {
  margin-bottom: 10px;
}










.package-title {
  font-weight: 700;
}

.badge-seller {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
}

.nav-tabs .nav-link {
  font-weight: 600;
}

.section-box {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}

.section-box h6 {
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 15px;
}

ul.checklist li {
  margin-bottom: 8px;
}

ul.checklist li::marker {
  color: green;
}

ul.crosslist li::marker {
  color: red;
}

.enquiry-box {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  top: 20px;
}

.enquiry-box button {
  width: 100%;
}

.icon-box {
  text-align: center;
  padding: 15px;
}

.icon-box img {
  width: 40px;
  margin-bottom: 8px;
}

.how-it-works img {
  width: 35px;
}





.enquiry-form-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.enquiry-form-box h5 {
    font-weight: 700;
    border-bottom: 3px solid #4f46e5;
    display: inline-block;
    padding-bottom: 5px;
}
