   :root{
      --yellow:#E1D10F;        /* main yellow from figma */
      --yellow-2:#FCC208;      /* CTA yellow */
      --ink:#0f0f0f;
      --muted:#4B4B4B;
    }

    html,body{overflow-x:hidden;}
    body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif; color:var(--ink);}
    .ff-playfair{font-family:"Playfair Display",serif;}
    .ff-sourcesans{font-family:"Source Sans Pro",sans-serif;}
    .ff-poppins{font-family:Poppins,sans-serif;}

    /* Navbar */
    .navbar-glass{
      background: rgba(255,255,255,0.19);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255,255,255,0.35);
	  font-size: 18px;
		font-family: Inter;
    }
    .navbar .nav-link{font-weight:500; font-size:15px; color:#000;}
    .navbar .nav-link:hover{color:#000; opacity:.7;}

    /* Hero */
    .hero{
  position: relative;
  height: min(100vh, 900px);  /* 👈 max 768px, but smaller on mobiles */
  background: url('../images/header.svg') center/cover no-repeat;
  color: #fff;
}

.hero-content{
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
  height: 100%;              /* so content respects hero height */
  display: flex;
  flex-direction: column;
  justify-content: center;   /* nicely center the content vertically */
}
    .hero::after{
      content:"";
      position:absolute; inset:0;
      background:linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,0) 100%);
    }
    .hero-content{position:relative; z-index:2; padding-top:140px; padding-bottom:80px;}
    .hero-title{font-size:clamp(32px, 3.6vw, 68px); font-weight:600; line-height:1.2;}
    .hero-sub{font-size:clamp(16px, 1.7vw, 28px); font-weight:300; line-height:1.4;}

    /* Search CTA bar */
    .search-bar{
      max-width:1000px;
      background:#fff;
      border-radius:50px;
      border:1.36px solid rgba(0,0,0,.5);
      display:flex; align-items:center; justify-content:space-between;
      padding:12px;
      gap:12px;
    }
    .search-input{display:flex; align-items:center; gap:12px; padding-left:14px; flex:1; min-width:0;}
    .search-placeholder{color:rgba(79,79,79,.66); font-size:clamp(14px, 1.2vw, 24px); white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
    .btn-yellow{
      background:var(--yellow-2); color:#000;
      border:none; border-radius:50px;
      padding:14px 30px;
      font-size:clamp(16px, 1.1vw, 22px);
      font-weight:400;
      white-space:nowrap;
    }

    /* About stats circles */
    .stat-circle{
      width:136px; height:136px; border-radius:999px;
      background:var(--yellow);
      border:3px solid #6B6A6A;
      display:flex; flex-direction:column; align-items:center; justify-content:center;
      color:#fff; text-align:center;
    }
    .stat-circle .num{font-size:32px; font-weight:900; font-family:"Playfair Display",serif;}
    .stat-circle .lab{font-size:14px; font-weight:500;}

    /* Mission / Vision */
    .mission-card{background:var(--yellow); padding:40px 26px; height:100%;}
    .mission-title{font-size:clamp(32px, 3vw, 58px); font-weight:600;}
    .body-text{font-size:20px; line-height:35px;}

    /* Headings */
    .section-title{font-size:clamp(28px, 3vw, 58px); font-weight:600;}
    .section-sub{font-size:20px; line-height:35px; max-width:980px;}

    /* Why cards row (scroll on small screens) */
    .why-row{
      display:flex; gap:19px; overflow-x:auto; padding-bottom:6px;
      scroll-snap-type:x mandatory;
    }
    .why-card{
      min-width:280px; max-width:540px;
      background:#fff; box-shadow:0 0 10px rgba(54,54,54,.25);
      padding:24px; text-align:center; scroll-snap-align:start;
      flex:1;
    }
    .why-card h4{font-family:"Playfair Display",serif; font-size:clamp(20px,1.8vw,32px); font-weight:700;}
    .why-card p{font-size:18px; line-height:35px; margin:0;}

   .why-card h4 {
  position: relative;
  padding-bottom: 0.75rem;   /* space for the line */
  margin-bottom: 1.2rem;
}

/* full-width yellow underline */
.why-card h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;               /* 👈 full width of the card */
  height: 3px;
  background: var(--yellow); /* your yellow color */
}

    /* Speciality grid */
    .spec-card{
      background:#fff; box-shadow:0 0 4px rgba(0,0,0,.25);
      padding:32px 24px; height:100%; text-align:center;
	   border-radius: 16px;

  /* glass effect */
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
    }
    .spec-card h4 {
    font-family: "Playfair Display", serif;
    font-size: clamp(20px, 1.8vw, 32px);
    font-weight: 700;

    position: relative;
    padding-bottom: 0.75rem;   /* space for line */
    margin-bottom: 1.2rem;     /* space below line */
    }

    /* full-width yellow underline */
    .spec-card h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;               /* full width of the card title area */
    height: 3px;
    background: var(--yellow); /* uses your existing yellow variable */
    }
    .spec-card p{font-size:18px; line-height:35px;}

    /* Stories */
    .story-main{position:relative; overflow:hidden; border-radius:16px;}
    .story-main img{width:100%; height:100%; object-fit:cover;}
    .story-overlay{position:absolute; inset:0; background:linear-gradient(0deg, #000 0%, rgba(0,0,0,0) 100%);}    
    .story-content{position:absolute; bottom:22px; left:0; right:0; text-align:center; color:#fff; padding:0 12px;}

    /* Footer */
    footer.footer{background:var(--yellow); border-top:19px solid #000;}
    .footer-title{font-weight:600; font-size:22px;}
    .footer-link{font-size:20px; color:#000; text-decoration:none; display:block; margin-bottom:10px;}
    .footer-link:hover{opacity:.7;}

    /* Utilities */
    .hr-black{border-top:1.36px solid #000; opacity:1;}
    .py-section{padding:80px 0;}

    /* Responsive tweaks */
    @media (max-width: 991.98px){
      .hero-content{padding-top:110px;}
      .body-text,.section-sub{font-size:18px; line-height:30px;}
      .search-bar{border-radius:24px; flex-direction:column; align-items:stretch;}
      .btn-yellow{width:100%;}
      .stat-circle{width:110px; height:110px;}
    }
    @media (max-width: 575.98px){
      .why-row{gap:12px;}
      .why-card{min-width:240px; padding:18px;}
    }
	
  .search-bar{
  max-width:1000px;
  background:#fff;
  border-radius:50px;
  border:1.36px solid rgba(0,0,0,.5);
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  padding:12px;
  gap:12px;
}

.search-input{
  display:flex;
  align-items:center;
  gap:12px;
  padding-left:14px;
  flex:1;
  min-width:0;
}

/* search icon */
.search-icon {
  font-size: 22px;
  color: #4f4f4f;
  flex-shrink: 0;
}

/* text field */
.search-input-field{
  border:none;
  outline:none;
  background:transparent;
  width:100%;
  font-size:clamp(14px, 1.2vw, 24px);
  color:#4f4f4f;
}

.search-input-field::placeholder{
  color:rgba(79,79,79,.66);
}



/* Section wrapper */
.why-section {
  position: relative;
}

/* Image row */
.why-image-row {
  position: relative;
  z-index: 1;
}

/* Cards wrapper: overlap ~20% over the image + marquee viewport */
.why-cards-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -3% !important;   /* force ~20% overlap over image */
  overflow: hidden;              /* for horizontal marquee */
}

/* Track: one long row that moves left-right */
.why-cards-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 20px 0;
  animation: whyMarquee 15s linear infinite alternate;
}

/* Glassmorphism card */
.why-card {
  flex: 0 0 auto;
  min-width: 280px;              /* adjust as per design */
  max-width: 320px;
  padding: 24px;
  border-radius: 16px;

  /* glass effect */
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Marquee-style movement: right -> left -> right */
@keyframes whyMarquee {
  0% {
    transform: translateX(5%);
  }
  50% {
    transform: translateX(-35%);
  }
  100% {
    transform: translateX(5%);
  }
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .why-cards-wrapper {
    margin-top: -10% !important;
  }
}

@media (max-width: 767.98px) {
  .why-cards-wrapper {
    margin-top: 1.5rem !important;   /* no overlap on small screens if you prefer */
  }

  .why-cards-track {
    animation-duration: 12s;         /* optional: slower on mobile */
  }
}



/* Layout: 5 cards, center biggest */
#storiesSlider {
  position: relative;
  margin-top: 3rem;      /* push slider away from the paragraph */
  margin-bottom: 3rem;   /* extra breathing room above arrows / next section */
}

.story-track {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;              /* bigger gap to avoid touching */
  position: relative;
}

/* Base item */
.story-item {
  flex: 0 0 18%;            /* wider cards (was 15%) */
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center bottom;   /* grow upwards, not into arrows */
}

/* Hidden items (not in current 5) */
.story-item.hidden {
  display: none;
}

/* Visible + size levels */
.story-item.visible {
  opacity: 1;
}

.story-item.small {
  transform: scale(1.0);
}

.story-item.medium {
  transform: scale(1.08);
}

.story-item.large {
  transform: scale(1.18);
}

/* Card look */
.story-main {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.story-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.story-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.3rem;
  color: #ffffff;
}

/* Bottom arrows */
.story-controls-bottom {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem; 
}

.story-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #222; /* dark color */
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.story-arrow-btn:hover {
  background: #000;
  transform: translateY(-1px);
}

/* Slide animation effect when clicking arrows */
.story-track.animate-left {
  animation: storiesSlideLeft 0.35s ease;
}

.story-track.animate-right {
  animation: storiesSlideRight 0.35s ease;
}

@keyframes storiesSlideLeft {
  0% { transform: translateX(0); }
  50% { transform: translateX(-30px); }
  100% { transform: translateX(0); }
}

@keyframes storiesSlideRight {
  0% { transform: translateX(0); }
  50% { transform: translateX(30px); }
  100% { transform: translateX(0); }
}

/* Optional: basic responsiveness */
@media (max-width: 992px) {
  .story-track {
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .story-item {
    flex: 0 0 60%;
  }
}



/* TOURS / PRODUCTS SECTION */
/* TOURS / PRODUCTS SECTION */
.tours-section {
  background: #ffffff;
}

.tour-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.tour-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.tour-heading {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.tour-line {
  border-bottom: 2px solid var(--yellow);
  padding: 8px 0;
  font-size: 18px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

/* last line in card without extra border spacing */
.tour-line:last-child {
  margin-bottom: 0;
}

/* International card styling */
.tour-card-international {
  background: #0f0f0f;
  color: #ffffff;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.tour-card-international .tour-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.tour-card-international .tour-heading {
  color: #fff;
}

.tour-card-international .tour-line {
  border-bottom-color: var(--yellow);
  color: #f7f7f7;
}

/* Small tweak on mobile */
@media (max-width: 767.98px) {
  .tour-card,
  .tour-card-international {
    margin-bottom: 1rem;
  }
}

/* Filter pills */
.tour-filter-bar {
  margin-top: 24px;
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.tour-filter-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 26px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  background: #e6e6e6;
  color: #9a9a9a;
  transition: all 0.2s ease;
}

.tour-filter-btn:hover {
  background: #dcdcdc;
  color: #555;
}

.tour-filter-btn.active {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* (Keep existing .tours-section, .tour-card, .tour-card-international, etc.) */




/* CONTACT SECTION */
.contact-section {
  background: #f8f8f8;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.contact-section .section-title {
  font-size: clamp(28px, 2.6vw, 40px);
}

.contact-intro {
  font-size: 18px;
  line-height: 30px;
  color: #4b4b4b;
}

.contact-branch-title {
  font-weight: 600;
  font-size: 20px;
  margin-top: 1.2rem;
}

.contact-person {
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-person i {
  color: var(--yellow);
  margin-right: 6px;
}

.contact-email i,
.contact-hours i {
  color: var(--yellow);
  margin-right: 6px;
}

/* Divider line between branch blocks */
.contact-divider {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}

/* Social icons */
.contact-social {
  margin-top: 1.5rem;
}

.social-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  margin-right: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-icon-circle:hover {
  transform: translateY(-2px);
  background: var(--yellow);
  color: #000;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* Contact form fields */
.contact-card .form-control,
.contact-card .form-select {
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 16px;
}

.contact-card .form-label {
  font-weight: 500;
  font-size: 15px;
}

.contact-btn {
  background: var(--yellow);
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 0.8rem 1.8rem;
}

.contact-btn:hover {
  background: #d0bf0d;
}

/* Slight spacing tweak on mobile */
@media (max-width: 767.98px) {
  .contact-card {
    margin-top: 1.5rem;
    padding: 24px 18px;
  }
}



	/* Wrapper */
.enquiry-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
}

/* Background Image */
.enquiry-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.enquiry-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay (like your linear gradient) */
.enquiry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

/* Centered form container */
.enquiry-container {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glass / boxed card similar to 1636x901 with yellow border */
.enquiry-card {
  max-width: 1100px;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #E1D10F;
  box-shadow: 0 0 10px rgba(37, 37, 37, 0.10);
  border-radius: 16px;
  padding: 48px 40px;
}

/* Header */
.enquiry-header h2 {
  font-size: 3rem; /* close to 72px in responsive way */
  font-weight: 600;
}

.enquiry-header hr {
  border-top: 2px solid #ffffff;
  opacity: 1;
  margin-top: 16px;
}

/* Inputs look like outlined white boxes with grey text inside */
.enquiry-input,
.input-group-lg .enquiry-input {
  background: transparent;
  border-radius: 16px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
}

.enquiry-input::placeholder {
  color: #5F5D5D;
  opacity: 1;
}

/* Prefix +91 box */
.enquiry-input-prefix {
  background: transparent;
  border-radius: 16px 0 0 16px;
  border: 1px solid #ffffff;
  border-right: none;
  color: #5F5D5D;
  font-weight: 600;
}

/* Fix border radius when using input-group */
.input-group-lg .enquiry-input {
  border-radius: 0 16px 16px 0;
}

/* Button */
.enquiry-btn {
  background: #E1D10F;
  color: #000;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .enquiry-card {
    padding: 32px 20px;
  }

  .enquiry-header h2 {
    font-size: 2.1rem;
  }
}
