body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}



/* Header */


header {
background-image: linear-gradient(to right, #0e050a, #1a121a, #211b29, #242639, #20324a, #173349, #0e3448, #043545, #072b34, #092025, #071617, #010707);
    color: #fff;
    padding: 10px 0;
    position: relative;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    flex: 1;
}
.logo img {
    width: 100%; /* Adjusts the width to fit the parent container */
    height: auto; /* Maintains the aspect ratio */
    max-width: 70px; /* Set a maximum width, adjust as needed for your header */
}


.logo h1 {
    font-size: 24px;
    margin: 0;
}

nav {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    margin-right: 20px;
}


.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #ffcc00; /* Highlight color on hover */
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none; /* Hide the navigation list initially */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Position it below the header */
        right: 0;
        background: #333; /* Same background as header */
        width: 100%;
        z-index: 1;
    }

    .nav-list.active {
        display: flex; /* Show when active */
    }

    .hamburger {
        display: block; /* Show hamburger icon on small screens */
    }
}



/* Header */
input:required:invalid,
select:required:invalid {
  border-color: red;
}


/* Hero */

.hero {
    background-image: url('img/herobg.jpg'); /* Replace with your image URL */
    background-size: cover; 
    background-position: center;
    padding: 50px 20px; /* Padding for top and bottom */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: row; /* Side by side for desktop */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Limiting maximum width */
}

.hero-text {
    flex: 0 0 70%; /* Set width to 70% */
    padding: 20px; /* For spacing around the text */
}

.hero-text-bg {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    padding: 20px; /* Padding around the text */
    border-radius: 10px; /* Rounded corners */
}
.hero-text h2 {
    margin: 0;
    font-size: 36px;
}

.hero-text p {
    font-size: 18px;
    margin: 10px 0 0;
}

.booking-form {
    flex: 0 0 30%; /* Set width to 30% */
        background-color: white; /* White background for forms */
}




.tabs {
    display: flex;
    justify-content: space-around; /* Space items evenly */
    margin-bottom: 20px;
}

.tab-button {
    padding: 15px;
    background: #ffcc00; /* Tab button color */
    border: none;
    flex: 1; /* Equal width for buttons */
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    text-align: center; /* Center text in tabs */
}

.tab-button:hover, .tab-button.active {
    background: #f2b800; /* Active tab color */
}

.tab-content {
    display: none; /* Hide all tabs by default */
    margin-bottom: 20px; /* Spacing below the tab content */
    border: 1px solid #ddd; /* Border around forms */
    padding: 20px; /* Inner padding for forms */
    border-radius: 5px; /* Rounded corners */
    background-color: white; /* White background for forms */
}

.tab-content.active {
    display: block; /* Show active tab */
}

.booking-form h3 {
    margin-top: 0; /* Remove margin for header */
    color: #000;
}

.booking-form input, 
.booking-form textarea {
    padding: 8px;
    border: 2px solid #ccc; /* Border for inputs */
    border-radius: 5px;
    width: 100%; /* Full width for inputs */
}
.booking-form input,
.booking-form textarea,
.flight-segment label,
.flight-segment input,
.traveller input,
.traveller select {
    margin-top: 4px;
    margin-bottom: 6px;
}


.booking-form textarea {
    height: 100px; /* Fixed height for text area */
}

.booking-form button {
    background: #ff4e26; /* Button color */
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
}


.trip-type {
  display: flex;
  gap: 3rem;
  margin-bottom: 1rem;
}
.trip-type label {
    color: #000;
}

.flight-segment,
.traveller {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.flight-segment label {
  display: block;
  color: #000;
  margin-top: 1rem;
  font-weight: 600;
}
.flight-segment input[type="date"] {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.return-date-group {
  width: 100%; /* ensure full width */
  display: none; /* controlled via JS */
}
.return-date-group input {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border-radius: 5px;
  border: 1px solid #ccc;

}


.flight-segment ,
.traveller input,
.traveller select {
  flex: 1 1 200px;
}

.button submit{
    align-items: center;
}
/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}

.modal-content h3,
.modal-content h4 {
  margin-top: 0;
  color: #000;
}

/* Close Button */
.modal .close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
    border: 2px solid #ccc; /* Border for inputs */
  border-radius: 5px;
  color: #000;
}

.submit-booking {
  background: #007bff;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-booking:hover {
  background: #0056b3;
}




/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column; /* Stack elements on mobile */
        align-items: center;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 20px; /* Space between text and form */
    }

    .hero-text h2 {
        font-size: 28px; /* Smaller font size for mobile */
    }

    .hero-text p {
        font-size: 16px; /* Smaller font size for mobile */
    }

    .tabs {
        flex-direction: row; /* Keep tabs in a row on mobile */
    }

    .tab-button {
        margin: 0.1px; /* Add margin between buttons */
        width: auto; /* Allow buttons to size according to text */
    }
}







/* Hero */



/* Destination*/


#destinations {
    padding: 25px 20px;
    background-image: linear-gradient(to right, #0e0a05, #171713, #1e211d, #242c29, #2c3636, #2b3637, #2b3738, #2a3739, #202d2d, #172421, #101a15, #041003);
}

#destinations h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 40px;
    color: #fff;
}

.destinations-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Space items evenly */
    background-image: linear-gradient(to right, #6b3c03, #5e3a02, #523702, #463303, #3c2f04, #3c2f04, #3c2f04, #3c2f04, #463303, #523702, #5e3a02, #6b3c03);

}

.destination-item {
    background-color: white; /* White background for each destination item */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow effect */
    margin: 10px; /* Margin between items */
    flex: 1 0 30%; /* Flex item: grow, shrink, basis */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transitions for hover effects */
    position: relative; /* Position for hover effects */
    overflow: hidden; /* Clip images/contents to avoid overflow */
}

.destination-item img {
    width: 100%; /* Full width for image */
    height: 200px; /* Fixed height for image */
    object-fit: cover; /* Cover image without distorting */
    transition: transform 0.3s; /* Smooth zoom effect for images */
}

.destination-item h3 {
    text-align: center;
    margin: 10px 0;
    font-size: 24px;
    color: #333; /* Dark text color */
}

.destination-item p {
    padding: 0 10px; /* Padding for text */
    color: #666; /* Lighter text color */
    text-align: center; /* Center text alignment */
}

/* Hover Effects */
.destination-item:hover {
    transform: scale(1.05); /* Scale up on hover */

}


/* services*/

#services {
    padding: 25px 20px;
    background-color: #f4f4f4; /* Light background for contrast */
}

#services h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 40px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Space items evenly */
    background-image: linear-gradient(to right, #6b3c03, #5e3a02, #523702, #463303, #3c2f04, #3c2f04, #3c2f04, #3c2f04, #463303, #523702, #5e3a02, #6b3c03);
}

.service-item {
    background-color: white; /* White background for each service item */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow effect */
    margin: 10px; /* Margin between items */
    flex: 1 0 30%; /* Flex item: grow, shrink, basis */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transitions for hover effects */
    position: relative; /* Position for hover effects */
    overflow: hidden; /* Clip images/contents to avoid overflow */
}

.service-item img {
    width: 100%; /* Full width for image */
    height: 200px; /* Fixed height for image */
    object-fit: cover; /* Cover image without distorting */
    transition: transform 0.3s; /* Smooth zoom effect for images */
}

.service-item h3 {
    text-align: center;
    margin: 10px 0;
    font-size: 24px;
    color: #333; /* Dark text color */
}

.service-item p {
    padding: 0 10px; /* Padding for text */
    color: #666; /* Lighter text color */
    text-align: center; /* Center text alignment */
}

/* Hover Effects */
.service-item:hover {
    transform: scale(1.05);
}




/* footer */

footer {
    background-color: #333; /* Dark background for footer */
    color: white; /* White text color */
    padding: 20px 0; /* Padding for top and bottom */
    text-align: center; /* Center text */
}

.footer-content {
    display: flex;
    flex-direction: row; /* Side by side for desktop */
    justify-content: space-between; /* Space items evenly */
    align-items: flex-start; /* Align items at the start */
    max-width: 1200px; /* Limit maximum width */
    margin: 0 auto; /* Center the footer content */
    padding: 0 20px; /* Horizontal padding */
}

.footer-left, .footer-right {
    flex: 1; /* Allow both sides to grow evenly */
    margin: 10px; /* Margin around each section */
}

.footer-logo {
    max-width: 100px; /* Set logo width */
    margin-bottom: 10px; /* Space below logo */
}

h3, h4 {
    margin: 5px 0; /* Margin for headings */
}

ul {
    list-style: none; /* Remove bullet points from list */
    padding: 0; /* Remove padding */
}

ul li {
    margin: 5px 0; /* Margin between list items */
}

ul li a {
    color: #ffcc00; /* Link color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth color transition */
}

ul li a:hover {
    color: #f2b800; /* Highlight color on hover */
}

.disclaimer {
    font-size: 14px; /* Smaller font for disclaimer */
    margin-top: 10px; /* Space above disclaimer */
    text-align: left; /* Align text to the left */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack elements on mobile */
        align-items: center; /* Center align on small screens */
    }

    .footer-left, .footer-right {
        text-align: center; /* Center align on mobile */
        margin: 0; /* Remove side margins */
        padding: 10px; /* Add padding for mobile */
    }
}


/* privacy-policy */

#privacy-policy 
{ 
    padding: 40px 20px; 
    background: #f9f9f9; 
    font-family: 'Segoe UI', sans-serif;
    
    } 
#privacy-policy h2 
{ 
    text-align: center; 
    margin-bottom: 40px; 
    font-size: 2.2rem; 
    color: #222;
    } 

.privacy-container { 
    display: flex; 
    flex-wrap: wrap; gap: 24px; 
    justify-content: center; 
    background-image: linear-gradient(to right, #6b3c03, #5e3a02, #523702, #463303, #3c2f04, #3c2f04, #3c2f04, #3c2f04, #463303, #523702, #5e3a02, #6b3c03);
    
} 
.privacy-item { 
    flex: 1 1 350px; background: #fff; 
    padding: 25px; 
    border-radius: 15px; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.08); 
    transition: transform 0.3s ease, 
    box-shadow 0.3s ease; 
    cursor: default; 
    
} 

.privacy-item:hover { 
    
    transform: scale(1.03); 
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    
.privacy-item h3 { 
    font-size: 1.3rem; 
    color: #333; 
    margin-bottom: 15px; 
    
} 
.privacy-item p { 
    color: #555; 
    line-height: 1.7; 
    font-size: 1rem; 
    
}

@media (max-width: 768px) { 
    .privacy-container { 
        flex-direction: column; gap: 10px; } 
    
} 




  .certification-bar {
    background-color: #f8f9fa;
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid #ddd;
  }

  .certification-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    transition: transform 0.3s ease;
  }

  .certification-container img {
    flex: 1;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 50px;
  }

  @media (max-width: 768px) {
    .certification-container {
      width: max-content;
      animation: scroll-reset 10s linear infinite;
    }

    @keyframes scroll-reset {
      0% {
        transform: translateX(0%);
      }
      90% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(0%);
      }
    }








/* privacy-policy */

#terms-conditions { padding: 40px 20px; background: #f0f4f8; font-family: 'Segoe UI', sans-serif; } #terms-conditions h2 { 
    text-align: center; 
    font-size: 2.2rem; 
    margin-bottom: 40px; 
    color: #1e1e1e; 
    
} 
    .terms-container { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; gap: 24px;
        background-image: linear-gradient(to right, #6b3c03, #5e3a02, #523702, #463303, #3c2f04, #3c2f04, #3c2f04, #3c2f04, #463303, #523702, #5e3a02, #6b3c03);
    
}  
.terms-item { 
    flex: 1 1 350px;
    background: #fff; 
    padding: 25px;
    border-radius: 15px; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.08); 
    transition: transform 0.3s ease,
    box-shadow 0.3s ease; cursor: default; 
    
} 
    .terms-item:hover { 
        transform: scale(1.03); 
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    } 
    
    .terms-item h3 { 
        font-size: 1.3rem; 
    margin-bottom: 15px; color: #333; 
        
    } .terms-item p { font-size: 1rem; color: #555; line-height: 1.7; } @media (max-width: 768px) { .terms-container { flex-direction: column; } }
