  /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #fff;
      color: #333;
    }

   /* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}


.badge-left {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #e53935, #ff7043); /* same modern reddish-orange gradient */
  color: #fff;
  padding: 5px 10px; /* keep original size */
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* subtle shadow for depth */
  transition: all 0.3s ease;
}

.badge-left:hover {
  background: linear-gradient(135deg, #d32f2f, #ff5722); /* slightly darker gradient on hover */
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.package-img {
  position: relative;
}
.package-body h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.package-body .location {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0;
}
.package-card {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  height: 100%;
}
.package-card:hover {
  transform: translateY(-5px);
}
a.card-link {
  text-decoration: none;
  color: inherit;
}
@media (max-width: 576px) {
  .package-body h6 {
    font-size: 0.95rem;
  }
  .package-body .location {
    font-size: 0.8rem;
  }
  .badge-left {
    font-size: 11px;
    padding: 4px 8px;
  }
}

.package-link {
    text-decoration: none;
    color: inherit; /* keep text color */
    display: block; /* optional: ensures full card clickable */
}

.package-link:hover {
    text-decoration: none; /* prevents underline on hover */
}
.package-link:hover .package-info h4 {
    color: #e74c3c; /* highlight title on hover */
}

.section-title {
  text-align: left;
  font-size: 24px;
  margin-bottom: 25px;
    margin-top: 20px;
  font-weight: bold;
}

/* Small Cards */
.small-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  text-align: center;
  transition: 0.3s;
}

.small-card:hover {
  transform: translateY(-3px);
}

.small-card .package-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.small-card .package-body {
  padding: 12px;
}

.small-card h6 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 6px;
}

.small-card .duration {
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}

.small-card .price {
  font-size: 14px;
  font-weight: bold;
  color: #e74c3c;
}

/* Button */
.btn-orange {
  display: inline-block;
  background: linear-gradient(135deg, #e53935, #ff7043); /* modern reddish-orange gradient */
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600; /* slightly bolder */
  box-shadow: 0 3px 8px rgba(0,0,0,0.15); /* subtle shadow */
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background: linear-gradient(135deg, #d32f2f, #ff5722); /* darker gradient on hover */
  transform: translateY(-2px); /* slight lift */
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}


   body {
      font-family: Arial, sans-serif;
      background: #f8f9fa;
      margin: 0;
      
    }

    .main-layout {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }


 /* ====== RESET / BASICS ====== */
  *,*::before,*::after{box-sizing:border-box}
  body{margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,Inter,"Helvetica Neue",Arial,sans-serif;background:#f6f7f9;color:#222}
  a{color:inherit}

  /* ====== LAYOUT WRAPPER ====== */
  .dn-wrapper{
    display:flex; gap:30px; margin:48px auto; max-width:1600px; padding:0 20px;
  }
  .dn-left{flex:2; min-width:0;}
  .dn-right{flex:1; min-width:280px;}

  @media (max-width: 992px){
    .dn-wrapper{flex-direction:column}
    .dn-right{min-width:0}
  }

  /* ====== HEADERS ====== */
  .block-title{
    font-size:1.6rem; font-weight:800; margin:0 0 18px; display:flex; align-items:center; gap:10px;
  }
  .block-title::before{
    content:""; width:6px; height:22px; background:#ff6b00; border-radius:3px;
  }

  /* ====== CAROUSEL ====== */
  .carousel-wrap{position:relative; margin-bottom:38px; background:#f0f2f5; border-radius:14px; padding:14px 6px;}
  .carousel{
    display:flex; overflow-x:auto; scroll-behavior:smooth; gap:20px; padding:6px 14px 10px;
    scrollbar-width:none;
  }
  .carousel::-webkit-scrollbar{display:none}

  .card{
    flex:0 0 calc(100%/5);
    background:#fff; border-radius:14px; box-shadow:0 4px 14px rgba(0,0,0,.07);
    transition:transform .25s ease, box-shadow .25s ease; min-width:220px;
  }
  .card:hover{transform:translateY(-4px); box-shadow:0 8px 20px rgba(0,0,0,.12)}
  .card img{width:100%; height:160px; object-fit:cover; display:block; border-radius:14px 14px 0 0}
  .card h4{font-size:1rem; margin:10px 12px 6px; font-weight:700}
  .card p{font-size:.88rem; color:#566; margin:0 12px 14px}

  /* show fewer on smaller screens */
  @media (max-width: 1024px){ .card{flex:0 0 calc(100%/3.2)} }
  @media (max-width: 768px){ .card{flex:0 0 calc(100%/2.1)} .card img{height:150px} }
  @media (max-width: 480px){ .card{flex:0 0 calc(100%/1.15)} .card img{height:150px} }

  /* arrows */
  .arrow{
    position:absolute; top:50%; transform:translateY(-50%);
    width:38px; height:38px; border:none; border-radius:50%;
    background:rgba(0,0,0,.6); color:#fff; cursor:pointer; z-index:5;
    display:grid; place-items:center; transition:background .2s ease, transform .2s ease;
  }
  .arrow:hover{background:rgba(0,0,0,.85); transform:translateY(-50%) scale(1.04)}
  .arrow.left{left:-12px}
  .arrow.right{right:-12px}

  /* ====== NEWS ====== */
  .news-title{margin-top:2px}
  .news-list{display:flex; flex-direction:column; gap:16px}
  .news-item{
    display:flex; gap:14px; background:#fff; border-radius:12px; padding:12px;
    box-shadow:0 3px 12px rgba(0,0,0,.06); align-items:flex-start;
  }
  .news-thumb{width:110px; height:82px; object-fit:cover; border-radius:8px; flex:0 0 auto; background:#e6e8ec}
  .news-body{display:flex; flex-direction:column; gap:6px}
  .news-body h4{font-size:1rem; margin:0; line-height:1.3}
  .news-meta{font-size:.82rem; color:#7b8; }
  .news-link{font-size:.88rem; color:#ff6b00; text-decoration:none; font-weight:700}
  .news-link:hover{text-decoration:underline}

  @media (max-width:768px){
    .news-item{flex-direction:column; text-align:center}
    .news-thumb{width:100%; height:160px}
    .news-body{align-items:center}
  }

  /* helpful section spacing on very narrow screens */
  .stack-gap{margin-top:8px}


.navbar {
  max-width: 1400px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 120px;
  width: 200px;
}

/


    .destinations {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      padding: 0 5%;
      margin-bottom: 50px;
    }

    .destination {
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .destination:hover {
      transform: scale(1.05);
    }

    .destination img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    /* Pop-up form */
    .popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .popup-content {
      background: #fff;
      padding: 30px;
      border-radius: 8px;
      width: 90%;
      max-width: 400px;
      position: relative;
    }

    .popup-content h2 {
      margin-bottom: 20px;
      font-size: 22px;
    }

    .popup-content input, .popup-content textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .popup-content button {
      background: #ff4500;
      color: #fff;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      width: 100%;
      border-radius: 4px;
      font-size: 16px;
    }

 .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #333;           /* Dark cross on light background */
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: red;            /* Turns red when hovered */
}



/* HERO SLIDER */
/* HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; 
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000; /* fallback */
}

/* Overlay always visible on top */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 15px;
  z-index: 2; /* ensures overlay stays above slides */
}

.hero-overlay h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-overlay p {
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  margin-bottom: 20px;
}

.book-now-btn {
  display: inline-block;
  background: linear-gradient(135deg, #e53935, #ff7043); /* modern reddish-orange gradient */
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: clamp(0.9rem, 3vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15); /* subtle shadow */
}

.book-now-btn:hover {
  background: linear-gradient(135deg, #d32f2f, #ff5722); /* darker gradient on hover */
  transform: translateY(-2px); /* slight lift */
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width:768px) {
  .hero-slider { height: 60vh; }
}
@media(max-width:480px) {
  .hero-slider { height: 50vh; }
}









    .section-title {
      text-align: center;
      font-size: 32px;
      margin-bottom: 40px;
      color: #222;
    }

    .destinations, .team {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }


    .team-card img {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      margin-top: 20px;
    }
    .slider-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}


.team-section {
  padding: 60px 20px;
  background: #f7f9fc;
  text-align: center;
}
.team-section .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding-bottom: 10px;
}
.scroll-item {
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;
}
.scroll-item:hover {
  transform: translateY(-8px);
}
.scroll-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.scroll-item h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #0f172a;
}
.scroll-item p {
  font-size: 15px;
  color: #475569;
}
.scroll-content {
  display: flex;
  gap: 20px;
  width: max-content;
}

.scroll-content .travel-card {
  flex: 0 0 auto;
  width: 220px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform .3s ease;
}

.scroll-content .travel-card:hover {
  transform: scale(1.05);
}

.scroll-content img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.scroll-content h3 {
  margin: 10px 0 5px;
}

.scroll-content p {
  margin-bottom: 10px;
  color: #555;
  font-size: 14px;
}

.news-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 10px !important;
}

.all-news-btn {
  font-size: 14px !important;
  color: #007bff !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
}

.all-news-btn:hover {
  color: #0056b3 !important;
  text-decoration: underline !important;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  animation: slideUp 1s ease-in-out;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.05);
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* ✨ Slide animation */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  max-width: 1000px;
  margin: auto;
}
.insta-grid div {
  overflow: hidden;
  border-radius: 10px;
}
.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.insta-grid img:hover {
  transform: scale(1.1);
}
.top-section-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.countries-slider {
  flex: 3;
  overflow: hidden;
}

.scrollable-countries {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 10px 0;
  scroll-behavior: smooth;
}

.country-card {
  min-width: 180px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex-shrink: 0;
  text-align: center;
}
@media (max-width: 600px) {
  .country-card {
    min-width: 140px;
    font-size: 14px;
    padding: 6px;
  }

  .country-card img {
    height: 80px;
  }
}

.country-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}


section h2 {
  font-weight: 700;
}

section p {
  font-size: 1.1rem;
}
.cg-tourism {
  background: #f8f9fa;
  padding: 50px 20px;
}

.cg-tourism .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333;
}

.cg-cards-wrapper, .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.cg-card {
  flex: 0 0 auto;
  width: 260px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  scroll-snap-align: start;
  overflow: hidden;
}

.cg-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cg-card h3 {
  font-size: 18px;
  margin: 15px 0 10px;
  color: #333;
}

.know-more {
  display: inline-block;
  margin-bottom: 15px;
  padding: 8px 16px;
  background: #007bff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.know-more:hover {
  background: #0056b3;
}

.google-reviews { background: linear-gradient(to right, #f8f9fa, #e3f2fd); padding: 60px 20px; text-align: center; } 
.review-header 
.google-logo { height: 40px; margin-bottom: 10px; } 
.google-reviews h2 { font-size: 28px; font-weight: 700; color: #202124; } 
.google-reviews p { font-size: 16px; color: #5f6368; }



.review-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews-wrapper {
  display: flex;
  transition: transform 0.8s ease-in-out;
  gap: 20px; /* space between cards */
}

.review-card {
  min-width: 280px;
  max-width: 280px;
  margin: 0 10px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: left;
  flex-shrink: 0; /* prevent shrinking */
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .review-card {
    min-width: 90%; /* almost full screen */
    max-width: 90%;
    margin: 0 5%;
  }
}

.review-card .stars {
  font-size: 18px;
  color: #fbbc05;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  max-height: 180px; /* optional, scroll if very long */
  overflow-y: auto;
}

.review-card span {
  font-size: 14px;
  font-weight: bold;
  color: #4285f4;
}


.section-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}


.pkg-card .pkg-destinations {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pkg-card .pkg-dest-tag {
  background: #fef4e6;   /* soft orange tone */
  color: #c35400;        /* matching dark text */
  font-size: 12px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 5px;
  line-height: 1.4;
  white-space: nowrap;
}

.pkg-card .pkg-dest-tag.more {
  background: #eee;
  color: #555;
  cursor: pointer;
}


.video-card {
  flex: 0 0 auto;
  width: 300px;
  background: #fafafa;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
}

.video-card iframe {
  width: 100%;
  height: 170px;
  border-radius: 10px;
}

.testimonial-caption {
  font-size: 14px;
  margin-top: 10px;
  color: #555;
}



.team-section {
  margin: 50px auto;
  text-align: center;
}

.section-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}



.scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.team-card {
  flex: 0 0 auto;
  width: 200px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.team-card h4 {
  margin: 10px 0 5px;
  color: #222;
}

.team-card p {
  color: #777;
  font-size: 14px;
}


.deal-of-day {
  margin: 40px auto;
  background: #fff8f2;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.deal-of-day h3 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #d84315;
}

.deal-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.deal-image {
  width: 300px;
  border-radius: 10px;
  object-fit: cover;
}

.deal-details {
  max-width: 500px;
}

.deal-details h4 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #333;
}

.deal-details ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.deal-details ul li {
  margin-bottom: 6px;
  color: #444;
}

.deal-price {
  font-size: 1.2em;
  color: #2e7d32;
  margin-bottom: 10px;
}

.deal-button {
  background: #ff5722;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.deal-button:hover {
  background: #e64a19;
}

@media (max-width: 768px) {
  .deal-box {
    flex-direction: column;
    text-align: center;
  }

  .deal-image {
    width: 100%;
  }
}

.border-dashed {
  border-style: dashed !important;
}

.scroll-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* ===== Destinations by Theme — Desktop + Mobile ===== */

/* Base (Desktop) */
.theme-section { margin: 50px 0; }

.scroll-theme {
  display: flex;                /* keep row on desktop */
  overflow-x: auto;             /* horizontal scroll */
  gap: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;          /* room for scrollbar */
}

/* Make sure children don't wrap and can scroll */
.scroll-theme > a {
  flex: 0 0 auto;
}

/* Cards */
.theme-card {
  width: 160px;
  min-width: 160px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  padding: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
  scroll-snap-align: start;
}
.theme-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

/* View All special card */
.theme-card.border-dashed {
  border: 2px dashed #bbb !important;
  background: #fafafa;
  box-shadow: none;
}
.theme-card.border-dashed:hover {
  background: #fff0e6;
  border-color: #ff6b00;
}

/* ✅ Show a visible scrollbar on desktop */
.scroll-theme { scrollbar-width: thin; scrollbar-color: rgba(0,0,0,.35) transparent; } /* Firefox */
.scroll-theme::-webkit-scrollbar { height: 8px; }                                      /* Chrome/Edge */
.scroll-theme::-webkit-scrollbar-track { background: rgba(0,0,0,.06); border-radius: 8px; }
.scroll-theme::-webkit-scrollbar-thumb { background: rgba(0,0,0,.35); border-radius: 8px; }
.scroll-theme:hover::-webkit-scrollbar-thumb { background: rgba(0,0,0,.5); }

/* If an older rule hid the scrollbar, force it back */
@media (min-width: 769px) {
  .scroll-theme::-webkit-scrollbar { height: 8px !important; }
}

/* ===== Mobile (≤768px): grid + only 6 cards (first 5 + last "View All") ===== */
@media (max-width: 768px) {
  .scroll-theme {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    overflow: visible !important;
    scroll-snap-type: none;
  }

  .theme-card {
    width: 100% !important;
    min-width: 0 !important;
  }
  .theme-card img { height: 120px; }

  /* Show ONLY first 5 anchors and the LAST anchor (which should be your View All) */
  .scroll-theme > a { display: none; }
  .scroll-theme > a:nth-child(-n+5),
  .scroll-theme > a:last-child { display: block; }
}



.deal-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 90%;
  max-width: 500px;
  transition: transform 0.3s ease;
  padding: 20px;
}

.deal-popup.show {
  transform: translate(-50%, -50%) scale(1);
}

.deal-content {
  position: relative;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #444;
}



/* --- Logo Slider --- */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollLeft 20s linear infinite;
}

.logo-track img {
  height: 70px;

  transition: all 0.3s ease;
}

.logo-track img:hover {

  transform: scale(1.1);
  cursor: pointer;
}

/* Pause on hover */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Gallery Section --- */
.gallery-section {
  background: #fff;
  padding: 60px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}




/* Page Banner */
.page-banner {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* Dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  animation: slideIn 1s ease forwards;
}

.banner-subtitle {
  color: #f1f1f1;
  font-size: 1.2rem;
  animation: fadeIn 2s ease forwards;
  animation-delay: 0.5s;
}


/* ✅ Responsive */
@media (max-width: 768px) {
  .page-banner {
    height: 200px;
  }
  .banner-title {
    font-size: 1.8rem;
  }
  .banner-subtitle {
    font-size: 1rem;
  }
}

/* Text Animations */
@keyframes slideInTop {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Apply Animations */
.banner-title {
  animation: slideInTop 1s ease forwards, pulse 2s ease-in-out infinite;
}

.banner-subtitle {
  animation: fadeIn 2s ease forwards;
}

@keyframes slideIn {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/* About Section */
.about-section {
  padding: 60px 20px;
  text-align: center;
}
.about-section h2 { font-size: 2rem; margin-bottom: 20px; }
.about-section p { max-width: 800px; margin: auto; color: #555; font-size: 1.1rem; }

/* Founder Section */
.founder-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.founder-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.founder-img img {
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.founder-text { flex: 1; min-width: 280px; }
.founder-text h2 { margin-bottom: 10px; }
.founder-text h4 { color: #ff6b00; margin-bottom: 15px; }

/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 30px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: 0.3s;
}
.gallery-grid img:hover { transform: scale(1.05); }
.extra-photos { display: none; }

/* Responsive */
@media(max-width:768px) {
  .founder-wrapper { flex-direction: column; text-align: center; }
}


/* ===== Mobile menu: force on top, full width, scrollable ===== */



.faq-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}
.faq-container { margin-top: 20px; }
.faq-item { border-bottom: 1px solid #eee; padding: 12px 0; }
.faq-question {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  color: #ff6b00;
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.faq-question span {
  margin-right: 8px;
  font-size: 18px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 10px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}
.faq-question.active span { transform: rotate(45deg); }
.load-more-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background: white;
  border: 1px solid #ff6b00;
  color: #ff6b00;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}
.load-more-btn:hover {
  background: #ff6b00;
  color: white;
}



.activities-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.activities-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}

.activities-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.activity-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.activity-header img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.activity-info h3 {
  font-size: 1.2rem;
  margin: 0;
}

.rating {
  font-size: 0.9rem;
  color: #28a745;
  font-weight: 600;
}

.activity-desc {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* 📱 Responsive */
@media(max-width: 600px) {
  .activity-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .activity-header img {
    width: 100%;
    height: 180px;
  }
}


.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}
.map-section h2 {
  text-align: center;
  margin-bottom: 15px;
}



.site-footer {
  background: #5C4033;
  color: #fff;
  padding: 60px 20px 40px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 240px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #f1f1f1;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-title::before {
  content: "";
  width: 6px;
  height: 18px;
  background: #ff6b00;
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc99;
}

.newsletter-form input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 14px;
}

.newsletter-form button {
  width: 100%;
  padding: 10px;
  background: #ffcc99;
  border: none;
  border-radius: 6px;
  color: #5C4033;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #ffb366;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-social img {
  width: 26px;
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.15);
}

.site-footer hr {
  margin: 30px 0;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;



   .latest-news {
  background: #fafafa;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.news-body {
  padding: 15px;
}

.news-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.news-body small {
  display: block;
  margin-bottom: 10px;
  color: #999;
}

.news-body p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.read-more-btn {
  font-size: 14px;
  font-weight: bold;
  color: #ff6b00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #e65a00;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
/* ===== Query Popup Close Button ===== */
/* ===== Popup Overlay ===== */
#queryPopup {
  display: block; /* show immediately */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}

/* ===== Popup Box ===== */
#queryPopup .popup-box {
  background: #5C4033;
  color: white;
  width: 90%;
  max-width: 420px;
  margin: 100px auto;
  padding: 25px 20px;
  border-radius: 12px;
  position: relative;
  font-family: sans-serif;
}

/* ===== Inputs ===== */
#queryPopup input,
#queryPopup textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  font-family: inherit;
}

#queryPopup textarea {
  height: 100px;
}

#queryPopup .submit-btn {
  width: 100%;
  background: #D2B48C;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#queryPopup .submit-btn:hover {
  background: #c7a87f;
}

/* ===== Modern Close Button ===== */
#queryPopup .popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.4);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 10001;
  transition: all 0.3s ease;
}

/* Create the X using pseudo-elements */
#queryPopup .popup-close::before,
#queryPopup .popup-close::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

#queryPopup .popup-close::before {
  transform: rotate(45deg);
}

#queryPopup .popup-close::after {
  transform: rotate(-45deg);
}

/* Hover animation */
#queryPopup .popup-close:hover {
  background: #D2B48C;
}

#queryPopup .popup-close:hover::before,
#queryPopup .popup-close:hover::after {
  background-color: #000;
  transform: rotate(135deg);
}

#queryPopup .popup-close:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(210, 180, 140, 0.5);

