html {
    scroll-behavior: smooth;
  }
  
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    scroll-behavior: smooth;
    text-align: center;
  }
 

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
    background-color: #F5F5DC;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav .logo img {
    height: 60px;
  }
  
  nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li a {
    color: black;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    color: #f90;
    border-bottom: 2px solid #f90;
  }
  header, section {
    
    margin-top: 0px;
  }
  .logo-title {
    display: flex;
    
    align-items: center;
    margin-left: 20px;
  }
  
  .logo-title img {
    height: 90px;
    margin-right: 10px;
  }
  
  .logo-title span {
    color: #fdb605;
    font-size: 1.5em;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

/* Hero Section Enhancements */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Each Slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Creates the parallax effect */
}

.slide.active {
  display: block;
  z-index: 1;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}


/* Background Image */
.slide img {
  position: absolute;
  width: 100%;
  height: 120%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
  transform: translateY(0);
  transition: transform 0.1s linear;
}


/* Gradient Overlay for Text Readability */
.slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 1;
}

/* Caption Styling */
.caption {
  height: 50%;
  position: absolute;
  z-index: 2;
  bottom: 15%;
  left: 10%;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 30px;
  border-left: 5px solid #f90;
  font-size: clamp(0.9rem, 2vw, 0.5rem);
  max-width: 350px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  animation: slideUp 1s ease forwards;
  opacity: 0;
}

.slide.active .caption {
  animation: slideUp 1s ease forwards;
  opacity: 1;
}

/* Caption Animation */
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background-color: #f90;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #e67e00;
}


  section {
    background: #f4f4f4;
    border-bottom: 1px solid #ddd;
  }
  .about-section {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
  }
  
  .about-section .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .about-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    position: relative;
  }
  
  .about-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f90;
    margin: 10px auto;
    border-radius: 2px;
  }
  
  .about-section p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
  }
  
  
  .why-choose-us {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .why-choose-us .container {
    max-width: 1100px;
    margin: auto;
  }
  
  .why-choose-us h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
    position: relative;
  }
  
  .why-choose-us h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f90;
    margin: 10px auto;
    border-radius: 2px;
  }
  .tour-packages {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
  }
  
  .tour-packages .container {
    max-width: 1100px;
    margin: auto;
  }
  
  .tour-packages h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
    position: relative;
  }
  
  .tour-packages h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f90;
    margin: 10px auto;
    border-radius: 2px;
  }
  
  .packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .package-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
    padding: 20px;
    transition: transform 0.3s;
  }
  
  .package-card:hover {
    transform: translateY(-8px);
  }
  
  .package-card img {
    width: 100%;
    border-radius: 8px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .package-card h3 {
    font-size: 1.5em;
    color: #222;
    margin-bottom: 10px;
  }
  
  .package-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
  }
  
  .package-card .btn {
    display: inline-block;
    background: #f90;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .package-card .btn:hover {
    background: #e67e00;
  }
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto; /* Enable vertical scrolling */
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  backdrop-filter: blur(5px);
  padding: 80px 20px; /* Add side padding for spacing on small screens */
  box-sizing: border-box;
}

.modal-content {
  background: #ffffff;
  color: #333;
  margin: auto;
  padding: 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.4s ease-out;
  position: relative;
}

  
  
  .modal-content h2 {
    margin-top: 0;
    color: #333;
  }
  .modal-content h3 {
    margin-left: 0;
    margin-top: 0;
    color: #333;
    font-style: italic;
  }
  .modal-content p {
    margin-bottom: 12px;
    color: #444;
  }

  

  .modal-content ul {
    padding-left: 0;
    list-style: none;
    margin: 1em 0;
  }
  
  .modal-content ul li {
    position: relative;
    padding: 10px 15px 10px 35px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.6;
    transition: background 0.3s ease;
  }
  
  .modal-content ul li::before {
    position: absolute;
    left: 10px;
    top: 11px;
    font-size: 1.1rem;
    color: #f90;
  }
  
  .modal-content ul li:hover {
    background: #fff3e0;
  }

  .modal-content ul.inclusions,
.modal-content ul.exclusions {
  margin: 1.5em 0;
  padding-left: 0;
  list-style: none;
}

.modal-content ul.inclusions li,
.modal-content ul.exclusions li {
  position: relative;
  padding: 10px 15px 10px 35px;
  margin-bottom: 10px;
  background: #f9f9f9;
  
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.6;
  transition: background 0.3s ease;
}

.modal-content ul.inclusions li {
  border-left-color: #28a745;
}

.modal-content ul.exclusions li {
  border-left-color: #dc3545;
}

.modal-content ul.inclusions li::before {
  content: '✓';
  color: #28a745;
  position: absolute;
  left: 10px;
  top: 11px;
  font-size: 0.8rem;
  font-weight: bold;
}

.modal-content ul.exclusions li::before {
  content: '✗';
  color: #dc3545;
  position: absolute;
  left: 10px;
  top: 11px;
  font-size: 0.8rem;
  font-weight: bold;
}

.modal-content ul.inclusions li:hover,
.modal-content ul.exclusions li:hover {
  background: #eef9f1; /* Light green on hover for inclusions */
}
.modal-content ul.exclusions li:hover {
  background: #fcebea; /* Light red on hover for exclusions */
}

.modal-content ul.L2 li::before {
  content: '✦'; /* You can use ▸ or ✦ or ✅ or 🔸 for variety */
  border-left: 0px;
}
.modal-content ul.L2 li{
  font-style: italic;
  border-left: 0px;
}

.whatsapp-chat {
  margin-top: 0px;
  text-align: center;
}

.whatsapp-chat a {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.whatsapp-chat a:hover {
  background-color: #1ebd5a;

}

.whatsapp-chat img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}

  
  .close {
    position: fixed;
    position: absolute;
    right: 20px;
    top: 10px;
    color: #999;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .close:hover {
    color: #333;

  }
  @keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .destinations {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .destinations h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
    position: relative;
  }
  
  .destinations h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f90;
    margin: 10px auto;
    border-radius: 2px;
  }
  
  .destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  .destination-type {
   display: flex;
  }
  .destination-card {
    margin: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .destination-card:hover {
    transform: scale(1.03);
  }
  
  .destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .destination-card:hover img {
    transform: scale(1.1);
  }
  
  .overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    width: 100%;
    color: white;
    padding: 20px;
    text-align: center;
    transition: background 0.3s ease;
  }
  
  .overlay h3 {
    margin: 0;
    font-size: 1.5em;
  }
  
 .gallery-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0; /* shorthand for top: 0; right: 0; bottom: 0; left: 0 */
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  overflow-y: auto; /* Enables scrolling */
  box-sizing: border-box;
}

.gallery-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s ease-in-out;
}


.gallery-content h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #2c3e50;
}

.gallery-content p {
  color: #555;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.gallery-modal .close {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #aaa;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.gallery-modal .close:hover {
  color: #e74c3c;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.image-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

figure {
  margin: 0;
  text-align: center;
}

figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

figure img:hover {
  transform: scale(1.05);
}

figcaption {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #444;
}

/* Lightbox Styling */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.95);
  text-align: center;
  padding-top: 60px;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.lightbox p {
  color: #fff;
  margin-top: 10px;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 40px;
  padding: 16px;
  user-select: none;
  transition: 0.3s;
}

.prev:hover, .next:hover {
  color: #f39c12;
}

.prev { left: 20px; }
.next { right: 20px; }


  .features {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
  
  .feature {
    background: #f3f3f3;
    padding: 30px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .feature:hover {
    transform: translateY(-8px);
  }
  
  .feature img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .feature h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #222;
  }
  
  .feature p {
    font-size: 1em;
    color: #555;
  }
  .contact {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
  }
  
  .contact p {
    color: #666;
    margin-bottom: 40px;
  }
  
  .contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .contact-form form {
    flex: 1 1 350px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    resize: vertical;
  }
  
  .contact-form button {
    padding: 15px;
    background-color: #f90;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #e67e00;
  }
  
  .contact-info {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: left;
    color: #444;
    font-size: 1em;
  }
  
  .contact-info p {
    margin: 10px 0;
  }
  
  .package {
    margin: 20px 0;
  }
  
  .itinerary {
    display: none;
    background-color: #fff;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
  }
  .footer {
    background: #222;
    color: #eee;
    text-align: center;
    padding: 30px 15px;
    font-size: 0.95em;
  }
  
  .footer a {
    color: #f90;
    text-decoration: none;
    margin: 0 5px;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }

  .floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .floating-whatsapp img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .floating-whatsapp img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  }

  
  .menu-toggle {
    display: none;
    font-size: 30px;
    color: black;
    cursor: pointer;
    padding: 15px;
  }
  .menu-toggle.open::after {
    content: "✖";
  }
  .menu-toggle::after {
    content: "☰";
  }
  
  @media (max-width: 768px) {

    .modal-content { 
    max-width: 300px;  
}
.gallery-content {
    max-width: 300px;
}
.modal-content h2 {
    font-size: 1em;
    
}

      .logo-title span {
        margin-left: 20px;
        font-size: 1.2em;
      }
    .logo-title {
  
  }
      .logo-title img {
    
        height: 80px;
      }
      .slideshow-container {
        max-height: 80vh;
      }
      
        .caption {
          height: auto;
          bottom: 10%;
          left: 5%;
          right: 5%;
          max-width: 70%;
          font-size: 0.8rem;
          padding: 15px 20px;
          text-align: left;
        }
      
        .caption h1 {
          font-family: 
          font-size: 1.5rem;
        }
      
        .caption p {
          font-size: 0.8rem;
        }
      
    
    .menu-toggle {
      display: block;
    }
  
    nav ul {
      display: none;
      flex-direction: column;
      background-color: #000;
      width: 100%;
      text-align: center;
      position: absolute;
      top: 80px;
      left: 0;
      max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    }
  
    nav ul.active {
      max-height: 500px;
      display: flex;
    }
  
    nav ul li {
      padding: 15px 0;
    }
    nav ul li {
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    nav ul.active li {
      opacity: 1;
      transform: translateY(0);
    }
    .destination-type {
      flex-direction: column;
     }
     nav {
      padding: 0;
      flex-direction: row-reverse;
     }
  }