
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 
}


nav {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #f8ae00;
  font-size: 22px;
  font-weight: bold;
}

.logo img {
  width: 160px;
}

/* Menu */
.menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
}

.menu li a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #f8ae00;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 40px;
  right: 0;
  background: black;
  border: 1px solid #333;
  min-width: 160px;
  display: none;
  flex-direction: column;
}

.dropdown-content a {
  padding: 10px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background: #222;
}

.dropdown.active .dropdown-content {
  display: flex;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* Mobile menu */
@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    align-items: start;
    padding: 15px;
    display: none;
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
    color: white;
  }

  .dropdown-content {
    position: static;
    border: none;
    background: none;
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }
}


  
/* nav end */

/* hero section css */



.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Slides wrapper */
.slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slides img.active {
  opacity: 1;
}

/* Overlay gradient */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  color: #fff;
}

.hero-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.hero-content p {
  margin-top: 1rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-content button {
  margin-top: 1.5rem;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  background: #f8ae00;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-content button:hover {
  background: #f8ae00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-content button {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }
}


/* hero section css end */

/* feature hote start */
.hotel-section {
    padding: 3rem 0;
    background-color: black;
    color: white;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: white;
    font-size: 1.125rem;
}

.hotels-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.hotel-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hotel-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-container {
    position: relative;
    height: 14rem;
    width: 100%;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.price-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: #f8ae00;
    color: black;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.price-original {
    text-decoration: line-through;
    color: #374151;
    margin-left: 0.25rem;
    font-size: 0.75rem;
}

.discount {
    font-size: 0.75rem;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button:hover {
    background: rgba(0, 0, 0, 0.5);
}

.nav-button.prev {
    left: 0.5rem;
}

.nav-button.next {
    right: 0.5rem;
}

.thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0 0.5rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.thumbnail {
    flex-shrink: 0;
    width: 4rem;
    height: 3rem;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #eab308;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.25rem;
}

.hotel-location {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    list-style: none;
}

.amenity-pill {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}
.amenity-pill-bed {
  background: #010101;
  border: 1px solid #bbf7d0;
  color: #f1f4f2;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(209, 148, 148, 0.05);
  cursor: pointer;
  animation: pulse 1s infinite;
}
.pill-span{
  color: #f8ae00;
  font-weight: bold;
}
@keyframes pulse {
  0% { box-shadow: 0 0 5px #bbf7d0; transform: scale(1); }
  50% { box-shadow: 0 0 20px #bbf7d0; transform: scale(1.05); }
  100% { box-shadow: 0 0 5px #bbf7d0; transform: scale(1); }
}

.amenity-pill:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.star {
    color: #f8ae00;
    margin-right: 0.125rem;
}

.star.empty {
    color: #d1d5db;
}

.rating-value {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.button-group {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}


    .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;   /* ✅ Prevent text from breaking into 2 lines */
}


.btn-secondary {
    background: #e5e7eb;
    color: #374151;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.btn-primary {
    background: #f8ae00;
    color: black;
}

.btn-primary:hover {
    background: #f8ae00;
}

/* Responsive Design */
@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .button-group {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hotels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* feature hote end */



/* why choose us start */


  .why-choose {
    padding: 4rem 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    background-color: black;
  }

  /* Heading */
  .heading {
    text-align: center;
    margin-bottom: 3rem;
  }

  .heading h3 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    color: white;
  }

  .heading h3 span {
    color: #f8ae00;
  }

  .heading p {
    color: #f4f1f1;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0.75rem auto 0;
    line-height: 1.6;
  }

  /* Grid */


  @media(min-width: 1024px) {
    .grid {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }
  }

  /* Left column */
  .left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .map-container, .gallery img {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #444;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  }

  .map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
  }

  .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .gallery img:hover {
    transform: scale(1.05);
  }

  /* Right column */
  .right h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: white;
  }

  .right h3 span {
    color: #f8ae00;
  }

  .right p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .right ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }

  .right li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #ccc;
  }

  .right li i {
    color: #f8ae00;
    margin-top: 0.25rem;
    min-width: 20px;
  }

  /* Rating */
  .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .rating i {
    color: #f8ae00;
  }

  .rating span {
    color: #ccc;
    font-size: 0.95rem;
  }

  .rating span strong {
    color: #fff;
  }

/* why choose us end */


/* offer start */


.offer-banner {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url("/images/hero/jaldaparatour-river.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

.offer-banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.offer-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.offer-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}

.offer-discount {
  font-size: 3.5rem;
  font-weight: 900;
  color: #f8ae00;
  text-shadow: 0px 0px 10px rgba(248,174,0,0.7);
  margin-bottom: 20px;
}

.offer-timer {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}

.offer-timer span {
  color: #f8ae00;
  font-weight: 700;
  font-size: 1.5rem;
  padding-left: 5px;
}

.offer-btn {
  background: #f8ae00;
  color: #111;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 4px 15px rgba(248, 174, 0, 0.4);
  text-align: center;
  margin: auto;
}

.offer-btn:hover {
  background: #111;
  color: #f8ae00;
  border: 2px solid #f8ae00;
}

@media (max-width: 768px) {
  .offer-title {
    font-size: 2rem;
  }
  .offer-discount {
    font-size: 2.5rem;
  }
}

/* footer start*/



.footer {
  background: #000;
  padding: 60px 20px 20px;
  color: #ccc;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Logo + Title */
.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo-header img {
    width: 160px;

}

.footer-logo-header h2 {
  color: #f8ae00;
  font-size: 1.8rem;
  margin: 0;
}

.footer-logo p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #aaa;
}

.footer-col h3 {
  color: #f8ae00;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f8ae00;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.2rem;
  color: #ccc;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #f8ae00;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid #222;
  padding-top: 15px;
}


/* services css */


/* Hero Section */
.jaldapara-hero {
  background: url('/images/hero/services-hero.avif') no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}
.jaldapara-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.jaldapara-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}
.jaldapara-hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #f7ae02;
  font-weight: bold;
}
.jaldapara-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.jaldapara-hero .cta-btn {
  padding: 15px 30px;
  background: #f7ae02;
  color: #000;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: 0.3s;
}
.jaldapara-hero .cta-btn:hover {background: #e09c00;}

/* Section Base */
section {padding: 80px 20px;}
.section-title-two {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #faf7f7;
  font-weight: bold;
}

/* Services */
.services-section {
  background: #111;
  color: #fff;
}
.services-section .section-title {color: #fff;}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.service-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(247,174,2,0.4);
}
.service-card h3 {color: #f7ae02; margin-bottom: 10px; font-size: 2rem;}
.service-btn {
  display: inline-block;
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: #f7ae02;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
}
.service-btn:hover {background: #fffefe;}
.view-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;              /* Full width by default (mobile-first) */
  max-width: 250px;         /* Prevents button from being too wide */
  min-width: 180px;         /* Keeps it usable on small screens */
  padding: 14px 40px;
  margin: 20px auto 0 auto; /* Centers button */
  background: #f6f5f4;
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  text-align: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-icon {
  font-size: 1.5rem;
  margin-left: 8px;
}

.view-btn:hover {
  background-color: #eab308;
  color: #fff;
  transform: translateY(-2px);
}

/* Desktop styles */
@media (min-width: 768px) {
  .view-btn {
    width: auto;            /* No fixed percentage */
    padding: 14px 24px;
    font-size: 1.2rem;
  }
}



@media (max-width:768px){
  .jaldapara-hero h1{font-size:2.2rem;}
  .jaldapara-hero p{font-size:1rem;}
}




    .scroll-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: black;
      padding: 20px 0;
    
    }
.highlight-text{
  color: #eab308;
}
    .scroll-track {
      display: flex;
      width: max-content;
      animation: scroll-left 15s linear infinite;
    }

    .scroll-text {
      white-space: nowrap;
      font-size: 1.5rem;
      font-weight: 600;
      padding: 0 2rem;
      color: #fff;
    }

    /* Duplicate content for seamless scrolling */
    .scroll-track > div {
      padding-right: 4rem;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Optional: fading edges */
    .scroll-container::before,
    .scroll-container::after {
      content: "";
      position: absolute;
      top: 0;
      width: 60px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    /* Responsive text */
    @media (max-width: 768px) {
      .scroll-text {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 480px) {
      .scroll-text {
        font-size: 1rem;
      }
    }
 

/* coming soon */



  
        /* Section 1 - About Platform Responsive Fix */
        .about-jaldapara-platform {
       
        
         width: 100%;
          text-align: center;
          background: #000;
          
          color: #fff;
          font-family: 'Poppins', sans-serif;
        }
      
        .about-jaldapara-platform h2 {
          font-size: 2rem;
          font-weight: 700;
          color: #f8ae00;
          margin-bottom: 20px;
          text-transform: uppercase;
          letter-spacing: 1.5px;
        }
      
        .about-jaldapara-platform p {
          font-size: 1rem;
          line-height: 1.6;
          max-width: 800px;
          margin: 0 auto 30px auto;
          color: #ddd;
        }
      
        .about-jaldapara-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
          gap: 20px;
            max-width: 1200px;
            margin: auto;
        }
      
        .about-jaldapara-card {
          background: #111;
          border: 1px solid rgba(255, 255, 255, 0.1);
          border-radius: 14px;
          padding: 20px;
          text-align: left;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
      
        .about-jaldapara-card:hover {
          transform: translateY(-6px);
          box-shadow: 0 10px 20px rgba(250, 205, 18, 0.4);
          border-color: #facd12;
        }
      
        .about-jaldapara-card i {
          font-size: 1.5rem;
          color: #f8ae00;
          margin-bottom: 8px;
        }
      
        .about-jaldapara-card h3 {
          font-size: 1.2rem;
          color: #fff;
          margin-bottom: 8px;
          font-weight: 600;
        }
      
        .about-jaldapara-card p {
          color: #bbb;
          font-size: 0.95rem;
          line-height: 1.5;
        }
      
        /* Section 2 - Accommodations */
        .jaldapara-accommodations-section {
          background: linear-gradient(180deg,#071017 0%, #071317 100%);
          color: #fff;
          width: 100%;
          font-family: 'Poppins', sans-serif;
        }
      
        .jaldapara-accommodations-section h2 {
          font-size: 2rem;
          margin:0 0 16px;
          color: #f8ae00;
          text-align:center;
        }
      
        .jaldapara-accommodations-section p.lead {
         
          color: white;
          line-height: 1.5;
          font-size: 1rem;
          text-align:center;
           max-width: 900px;
  margin: auto;
  margin-bottom: 30px;
        }
      
        .jaldapara-options {
          display:grid;
          grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
          gap:20px;
          margin-bottom:30px;
            max-width: 900px;
  margin: auto;
        }
      
        .jaldapara-option{
          background: rgba(255,255,255,0.03);
          border-radius:14px;
          padding:16px;
          display:flex;
          flex-direction: column;
          gap:14px;
          align-items:flex-start;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
      
        .jaldapara-option:hover{
          transform: translateY(-4px);
          box-shadow: 0 8px 24px rgba(250,205,18,0.2);
        }
      
        .jaldapara-option .icon{
          font-size:28px;
          margin-bottom:8px;
          color: #f8ae00;
        }
      
        .jaldapara-option h3{margin:0;font-size:1rem;color:#facd12}
        .jaldapara-option p{margin:6px 0 0;color:#bfc7cf;font-size:0.95rem;line-height:1.4}
      
        .jaldapara-cta{
          text-align:center;
          margin-top:35px;
        }
      
        .jaldapara-cta a{
          display:inline-block;
          padding:12px 20px;
          border-radius:12px;
          background:#f8ae00;
  color:#000000;
          text-decoration:none;
          font-weight:700;
          font-size:14px;
          box-shadow:0 6px 20px rgba(250,205,18,0.2);
          transition: background 0.3s ease;
          animation: pulseGlow 2s infinite;
        }
      
        .jaldapara-cta a:hover{
          background: #e6b80f;
        }
      @keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 10px rgba(253, 253, 253, 0.4);
  
  }}
        @media(max-width:1024px){
          .about-jaldapara-grid, .jaldapara-options {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
          }
        }
      
        @media(max-width:768px){
          .about-jaldapara-grid, .jaldapara-options{
            grid-template-columns: 1fr;
            gap: 14px;
          }
      
          .about-jaldapara-platform h2, .jaldapara-accommodations-section h2 {
            font-size: 1.7rem;
          }
      
          .about-jaldapara-platform p, .jaldapara-accommodations-section p.lead{
            font-size: 0.95rem;
          }
      
          .about-jaldapara-card h3, .jaldapara-option h3 {
            font-size: 1.1rem;
          }
      
          .about-jaldapara-card p, .jaldapara-option p {
            font-size: 0.9rem;
          }
      
          .about-jaldapara-card i, .jaldapara-option .icon {
            font-size: 1.3rem;
          }
        }
      
        @media(max-width:480px){
          .about-jaldapara-platform h2, .jaldapara-accommodations-section h2 {
            font-size: 1.5rem;
          }
      
          .about-jaldapara-platform p, .jaldapara-accommodations-section p.lead{
            font-size: 0.9rem;
          }
      
          .about-jaldapara-card h3, .jaldapara-option h3 {
            font-size: 1rem;
          }
      
          .about-jaldapara-card p, .jaldapara-option p {
            font-size: 0.85rem;
          }
      
          .about-jaldapara-card i, .jaldapara-option .icon {
            font-size: 1.2rem;
          }
        }
        
        
        
        
        
    
        .jaldapara-national-park {
        
       
         
          background: #000;
      
          color: #fff;
          font-family: 'Poppins', sans-serif;
        }
      
        .jaldapara-national-park h2 {
          font-size: 2rem;
          font-weight: 700;
          color: #f8ae00;
          margin-bottom: 20px;
          text-align: center;
          text-transform: uppercase;
          letter-spacing: 1.5px;
        }
      
        .jaldapara-national-park p {
          font-size: 1rem;
          line-height: 1.6;
          color: #ddd;
          max-width: 800px;
          margin: 0 auto 30px auto;
          text-align: center;
        }
      
        .jaldapara-highlights {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 20px;
          margin-top: 30px;
        }
      
        .highlight-card {
          background: #111;
          border: 1px solid rgba(255,255,255,0.1);
          border-radius: 14px;
          padding: 20px;
          text-align: left;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
      
        .highlight-card:hover {
          transform: translateY(-6px);
          box-shadow: 0 10px 20px rgba(250, 205, 18, 0.4);
          border-color: #facd12;
        }
      
        .highlight-card h3 {
          font-size: 1.2rem;
          color: #f8ae00;
          margin-bottom: 10px;
          font-weight: 600;
          text-align: center;
        }
      
        .highlight-card p {
          color: #bbb;
          font-size: 0.95rem;
          line-height: 1.5;
        }
      
        @media(max-width:1024px){
          .jaldapara-national-park {
            padding: 35px 15px;
          }
          .jaldapara-national-park h2 {
            font-size: 1.8rem;
          }
          .jaldapara-national-park p {
            font-size: 0.95rem;
          }
        }
      
        @media(max-width:768px){
          .jaldapara-national-park {
            padding: 30px 10px;
          }
          .jaldapara-highlights {
            grid-template-columns: 1fr;
          }
          .highlight-card h3 {
            font-size: 1.1rem;
          }
          .highlight-card p {
            font-size: 0.9rem;
          }
        }
      
        @media(max-width:480px){
          .jaldapara-national-park h2 {
            font-size: 1.5rem;
          }
          .jaldapara-national-park p {
            font-size: 0.85rem;
          }
          .highlight-card {
            padding: 15px;
          }
        }
        
        
        
        /**/
        
        
        .truth-section {
  background: #121212;
  color: #f5f5f5;
  padding: 60px 20px;
}

.truth-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.truth-title {
  font-size: 2rem;
  color: #f8ae00;
  margin-bottom: 25px;
}

.truth-points {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
}

.truth-points li {
  background: #1e1e1e;
  margin-bottom: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.truth-warning {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ff5252;
  background: rgba(255, 82, 82, 0.1);
  border: 1px solid #ff5252;
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 25px;
}

.cta-whatsapp {
  margin-top: 25px;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  filter: invert(1);
}

/* ✅ Responsive */
@media (max-width: 1024px) {
  .truth-title {
    font-size: 1.8rem;
  }
  .truth-points li {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .truth-section {
    padding: 40px 15px;
  }
  .truth-title {
    font-size: 1.6rem;
  }
  .truth-points {
    text-align: center;
  }
  .truth-points li {
    font-size: 1rem;
    padding: 10px 12px;
  }
  .truth-warning {
    font-size: 1rem;
    padding: 12px;
  }
  .cta-text {
    font-size: 1rem;
  }
  .whatsapp-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  .truth-title {
    font-size: 1.4rem;
  }
  .truth-points li {
    font-size: 0.95rem;
  }
  .truth-warning {
    font-size: 0.95rem;
  }
  .whatsapp-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
  .whatsapp-icon {
    margin-right: 8px;
  }
}

      
      