/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #d8c2a8;
  }

  /* Video section ***************************************************************************/
  .viedo-section {
    position: relative;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
  }

  /* Optional: Overlay for readability */
  .viedo-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.3); */
    z-index: 0;
  }
  
  .viedo-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(188, 188, 188, 0.24);
    z-index: 1;
  }

  /* Background Video */
  .viedo-section .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  /* Fixed Transparent Header */
  .navbar.transparent-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 1rem 0;
    z-index: 1000;
  }

    /* Fixed Transparent Header */
  .navbar.transparent-navbar-booking {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: black;
    padding: 1rem 0;
    z-index: 1000;
  }
  
  /* Navbar Container */
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* logo section */
  .logo-section {
    display: flex;
    flex-direction: row;
    align-items: center; /* vertically align image and text */
    gap: 8px;
  }

  .logo-wrapper {
    display: flex;
    align-items: center;
    width: 45px; /* adjust as needed */
  }

  .logo-image {
    width: 100%;
    height: auto;
  }

  .logo {
    font-weight: bold;
    font-size: 1.5rem;
    font-family: "Ink Free", cursive;
  }  

  .navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .navbar nav {
    float: right;
  }
  
  /* Navigation Links */
  .nav-links, .nav-link {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    position: relative;
  }
  
  .nav-link a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

  .nav-links a {
    color: black;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Dropdown Container */
  .dropdown {
    position: relative;
  }
  
  /* Button inside dropdown */
  .dropbtn-home {
    text-decoration: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }

  .dropbtn {
    text-decoration: none;
    color: black;
    font-weight: bold;
    cursor: pointer;
  }
  
  /* Dropdown content */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 100px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    top: 100%;
    left: 0;
    border-radius: 5px;
    overflow: hidden;
  }
  
  /* Links inside dropdown - BLACK color */
  .dropdown-content a {
    color: black;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  /* Show dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* About Section *****************************************************************************/
  .about {
    padding: 4rem 0;
    /* background-color: white; */
    text-align: center;
  }
  .about,
  .destinations,
  .bokking {
    padding-top: 6rem; /* adjust if your header height changes */
  }
  
  /* Container Wrapper */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }

  .card {
    background: rgba(255, 255, 255, 0.354);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  

  
  /* Destinations Grid with Images *************************************************************/
  .destinations-carousel .container h2 {
    text-align: center;
    width: 100%;
  }
  
.carousel-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: 200px;
}

.carousel-card {
  flex: 0 0 30%;
  opacity: 0.3;
  transform: scale(0.85) translateX(0);
  transition: all 0.7s ease-in-out;
}

.carousel-card.active {
  transform: scale(1.2) translateX(0);
  opacity: 1;
  z-index: 2;
}

.carousel-card img {
  width: 100%;
  max-width: 100%; 
  height: 150px;
  object-fit: cover;
  border-radius: 3px;
}


.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-indicators .dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.carousel-indicators .dot.active {
  background-color: #003b49;
}

  /* Booking ***********************************************************************************/
  .bokking {
    padding: 4rem 0;
    text-align: center;
  }
  
  .booking-form {
    display: flex;
    justify-content: center;
  }
  
  .form-box {
    border: 2px solid #ccc;
    background: rgba(255, 255, 255, 0.354);
    padding: 2rem;
    margin: 0.2rem;
    border-radius: 10px;
    max-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .booking-form img {
    width: 100%;
    height: 100px; 
    object-fit: cover;
    border-radius: 2px; 
  }

  
  .form-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .form-box select,
  .form-box input,
  .form-box button {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .date-group {
    display: flex;
    gap: 1rem;
  }
  
  .date-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .date-field label {
    margin-bottom: 0.3rem;
    font-weight: bold;
  }
  
  .form-box button {
    background-color: #003b49;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .form-box button:hover {
    background-color: #005d6e;
  }
  
  #to-date-label, #to-date {
    margin-left: 10px;
  }
  

  /*contact us *********************************************************************************/
  .contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
  }
  
  .contact-content {
    background: rgba(255, 255, 255, 0.696);
    /* background: #d8c2a8; */
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
  }
  
  .close-btn {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
  }
  
  .contact-info p {
    margin: 0.3rem 0;
  }
  
  #contact-form input, #contact-form textarea {
    width: 100%;
    margin: 0.7rem 0;
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  #contact-form button {
    background-color: #003b49;
    color: white;
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Footer ************************************************************************************/
  .footer {
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
  }

  @media (max-width: 600px) {
  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }

  .nav-links {
    flex-direction: row;
    gap: 0.8rem;
  }

  .nav-links a,
  .dropbtn {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .viedo-section h1.logo {
    font-size: 1.2rem;
  }

  .logo-wrapper {
    width: 50px;
  }

  .carousel-track {
    flex-direction:inherit;
    padding: 2% 5% 2% 5%;
    height: auto;
  }

  .carousel-card {
    flex: 0 0 100%;
    transform: scale(1);
    opacity: 1;
  }

  .carousel-card.active {
    transform: scale(1);
  }

  .booking-form {
    flex-direction: column;
    align-items: center;
  }

  .form-box {
    width: 90%;
    max-width: none;
    margin-bottom: 1rem;
  }

  .container {
    width: 95%;
  }

  .card {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .contact-content {
    width: 95%;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }
}


  

  /* Booking Pages ***************************************************************************/
  .transparent-navbar-booking {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.3); /* semi-transparent */
    backdrop-filter: blur(5px); /* optional blur effect */
  }
    .booking_container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .header {
    font-size: 24px;
    font-weight: bold;
    padding-top: 80px;
    margin-bottom: 10px;
  }

.rating-container {
  font-size: 18px;
}

.stars {
  display: inline-block;
  direction: ltr;
}

.star {
  font-size: 30px;
  cursor: pointer;
  color: #ffffff;
  transition: color 0.2s;
}

.star.selected {
  color: gold;
}

/* #submitRating{
  background-color: #d8c2a8;
  padding: 5px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgb(245, 245, 245);
} */

  
  /* Carousel ************************************************************************************************************/
  .carousel-container {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    margin-bottom: 30px;
  }
  
  .carousel {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 10px;
  }
  
  .carousel-image {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
  }
  
  /* Modal styling */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    text-align: center;
    padding-top: 60px;
  }
  
  .modal-image {
    max-width: 90%;
    max-height: 80%;
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
  }
  
  .nav-buttons {
    margin-top: 10px;
  }
  
  .nav-buttons button {
    padding: 10px 20px;
    font-size: 24px;
    margin: 0 10px;
    border: none;
    background: white;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .description, .price, .button {
    margin: 15px 0;
  }
  /*active */
  .activity-info {
    padding: 20px;
    margin-top: 20px;
    background: white;
    border-radius: 5px;
    /* box-shadow: 0 2px 8px rgb(245, 245, 245); */
  }
  
  .activity-info h2 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .activity-info ul {
    list-style: none;
    padding: 0;
  }
  
  .activity-info li {
    margin-bottom: 15px;
    line-height: 1.5;
  }
  

  /*form ********************************************************************************************************************/
  .form-section {
    background-color: #172a4d;
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
  }
  
  .form-section label {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .form-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  
  .form-select {
    padding: 10px 15px;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    min-width: 150px;
    appearance: none;
  }
  
  .form-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .form-button:hover {
    background-color: #005ecb;
  }
  
  .form-select-wrapper {
    position: relative;
    display: inline-block;
    /* width: 100%; Make it stretch full width */
  }
  
  .form-select-wrapper .icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 16px;
  }
  
  .date-input {
    padding-left: 35px !important;
    /* width: 100%; */
    box-sizing: border-box;
  }
  

  

  .tour-details-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap; /* Stack on small screens */
  }

  .left-section,
  .right-section {
    flex: 1;
    min-width: 300px;
  }

  .left-section {
    max-width: 450px;
  }

  .itinerary,
  .highlights,
  .description,
  .includes,
  .important-info {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }

  h3 {
    margin-top: 0;
    color: #2c3e50;
  }

  ul {
    padding-left: 20px;
  }

  .timeline {
    border-left: 4px solid #ccc;
    padding-left: 20px;
  }

  .timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 10px;
  }

.timeline-item:last-child {
  margin-bottom: 0; /* remove space after last item */
}


  .timeline-item .icon {
    position: absolute;
    left: -30px;
    top: 0;
    background: #3498db;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
    font-size: 14px;
  }

  .timeline-item .star {
    background: gold;
    color: black;
  }

  .timeline-item.end .icon {
    background: #2ecc71;
  }

  .note {
    font-size: 0.9em;
    color: #888;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  

  /* Responsive Styles */
  @media (max-width: 768px) {
    .tour-details-container {
      flex-direction: column;
    }
  
    .left-section,
    .right-section {
      max-width: 100%;
      min-width: unset;
    }
  
    .timeline-item .icon {
      left: -20px;
      width: 20px;
      height: 20px;
      line-height: 20px;
      font-size: 12px;
    }
  
    .itinerary,
    .highlights,
    .description,
    .includes,
    .important-info {
      padding: 15px;
    }
  
    .form-controls {
      flex-direction: column;
      align-items: stretch;
    }
  
    .form-select {
      width: 100%;
    }
  
    .form-button {
      width: 100%;
      text-align: center;
    }
  
    .carousel-image {
      width: 150px;
      height: 200px;
    }
    .form-select-wrapper {
        width: 100%;
        /* margin-bottom: 15px; */
      }
    
      .date-input {
        font-size: 15px;
        padding-left: 40px;
      }
    
      .form-select-wrapper .icon {
        font-size: 16px;
        left: 10px;
      }
  }
  