/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
  }
  
  h1, h2 {
    color: #333;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    padding: 20px 40px;
  }
  
  .header-left .logo {
    font-size: 30px;
    font-weight: bold;
    color: white;
  }
  
  .header-right nav ul {
    list-style: none;
    display: flex;
    align-items: center;
  }
  
  .header-right nav ul li {
    margin-left: 20px;
  }
  
  .header-right nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }
  
  .header-right nav ul li a:hover {
    color: #ff6347;
  }
  
  /* Responsive Header */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      text-align: center;
      padding: 20px;
    }
  
    .header-right nav ul {
      justify-content: center;
      gap: 15px;
    }
  
    .header-right nav ul li {
      margin-left: 0;
    }
  }
  
  /* Carousel Section */
  .carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
  }
  
  .carousel-content {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .carousel-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
  }
  
  .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .carousel-overlay h2 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .carousel-overlay p {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  /* Responsive Carousel */
  @media (max-width: 768px) {
    .carousel {
      height: 50vh;
    }
  
    .carousel-overlay h2 {
      font-size: 2rem;
    }
  
    .carousel-overlay p {
      font-size: 1.2rem;
    }
  }
  
  /* Why Choose Us Section */
  .why-choose-us {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
  }
  
  .why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .why-choose-us p {
    font-size: 15px;
    max-width: 800px;
    opacity: 0.7;
    margin: 0 auto;
  }
  
  /* Photo Gallery */
  .photo-gallery {
    padding: 50px 20px;
    background-color: #e8e8e8;
    text-align: center;
  }
  
  .photo-gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery-item img:hover {
    transform: scale(1.1);
  }
  
  /* Responsive Gallery */
  @media (max-width: 768px) {
    .gallery-container {
      gap: 15px;
    }
  
    .photo-gallery h2 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .gallery-container {
      grid-template-columns: 1fr;
    }
  
    .photo-gallery h2 {
      font-size: 1.8rem;
    }
  }
  
  /* Itinerary Details Section */
  .itinerary-details {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .itinerary-details h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .itinerary-container {
    display: flex;
    flex-direction: column; /* Ensure row-wise layout */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .itinerary-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .itinerary-item h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
  }
  
  .itinerary-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Responsive Itinerary */
  @media (max-width: 768px) {
    .itinerary-details h2 {
      font-size: 2rem;
    }
  
    .itinerary-item h3 {
      font-size: 1.5rem;
    }
  
    .itinerary-item p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .itinerary-item {
      padding: 15px;
    }
  
    .itinerary-item h3 {
      font-size: 1.3rem;
    }
  
    .itinerary-item p {
      font-size: 0.8rem;
    }
  }
  
  /* Footer */
  footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
  }


  /* Global Styles - Same as before */

/* How to Book Section */
.how-to-book {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.how-to-book h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.how-to-book ol {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  list-style: decimal inside;
  padding-left: 0;
}

/* Terms and Conditions Section */
.terms-conditions {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.terms-conditions h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.terms-conditions ul {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  list-style: disc;
  padding-left: 20px; /* Add padding for bullets */
}

.terms-conditions ul li {
  margin-bottom: 10px; /* Add spacing between list items */
  text-indent: -2px; /* Pull bullets back slightly */
  padding-left: 20px; /* Align text properly */
}


/* Inclusions and Exclusions Section */
.inclusions-exclusions {
  padding: 50px 20px;
  background-color: #e8e8e8;
}

.inclusions-exclusions h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.list-item {
  flex: 1 1 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.list-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.list-item ul {
  list-style: disc inside;
  font-size: 1rem;
  line-height: 1.8;
}

/* Things to Carry Section */
.things-to-carry {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.things-to-carry h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.things-to-carry ul {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  list-style: disc inside;
  padding-left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .list-container {
    flex-direction: column;
    gap: 15px;
  }
}


  