body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000; /* Black background theme */
    color: #fff; /* White text */
}




header {
    position: relative;
    background: url('header-bg.jpg') no-repeat center center/cover; /* Background image */
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 36px;
    font-weight: bold;
    color: white; /* Blue text */
    margin: 0;
}

.nav-link {
    color: #fff; /* Default color for all links */
    text-decoration: none;
    padding: 10px;
}

.nav-link.highlight {
    border-bottom: 3px solid #FFD700; /* Mustard yellow border */
    color: #FFD700; /* Optional: Change text color to mustard yellow */
    font-weight: bold; /* Optional: Make the text bold */
}



nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active { /* Gold for active link */
    color: #fff;
}

nav ul li a.contact {
    background-color: #007AFF; /* Blue for Contact Us */
    color: #fff;
}

nav .fas {
    display: none; /* Hidden by default */
    font-size: 25px;
    color: white;
    cursor: pointer;
}


.call-to-action {
    position: relative;
    height: 500px; /* Adjust height as needed */
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.call-to-action video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover; /* Ensures the video covers the section */
    z-index: 0;
}


.call-to-action-content {
    position: relative;
    z-index: 1; /* Content in front of video */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center horizontally */
    gap: 15px; /* Space between elements */
    text-align: center; /* Center text */
}


.call-to-action h1,
.call-to-action p,
.call-to-action button {
position: relative;
z-index: 1; /* Content in front of video */
margin: 0;
}

.call-to-action h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.call-to-action button {
    background-color: #007AFF;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.call-to-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 0; /* Behind content, above video */
}

.call-to-action button:hover {
    background-color: #005BBB;
}
/* General section layout */

/* General section layout */
/* General section layout */
.section {
display: flex;             /* Flexbox layout for horizontal alignment */
justify-content: space-between; /* Space between text and image */
align-items: flex-start;   /* Align content to the top */
padding: 20px;             /* Add spacing around the section */
margin: 20px;                 /* Remove extra margins */
}



/* General Contact Container */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
    gap: 20px;
    position: relative;
    margin-top: -200px; /* To overlap header image */
}

/* Roadmap Section */
.roadmap-container {
    padding: 20px;
    margin-top: 100px;
}

.roadmap-container h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.roadmap-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.roadmap {
    position: relative;
    margin-left: 40px; /* Indent roadmap */
}

.step {
    position: relative;
    padding-left: 50px; /* Space for the icon */
    margin-bottom: 30px; /* Space between steps */
}

.step-header {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.destination-icon {
    width: 20px;
    height: 30px;
    background-color: #FF0000; /* Red color for Google Maps marker */
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    margin-right: 10px;
    margin-left: -35px;
}

.destination-icon:after {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step:after {
    content: '';
     margin-top: 10px;
    position: absolute;
    left: 24px;
    top: 30px;
    width: 2px;
    height: 30px; /* Adjust height for spacing between steps */
    background: repeating-linear-gradient(
        to bottom,
        #007AFF,
        #007AFF 5px,
        transparent 5px,
        transparent 10px
    );
}

.step:last-child:after {
    content: none; /* Remove line for the last step */
}

.step h3 {
    font-size: 18px;
    margin: 0;
}

.step p {
    font-size: 14px;
    color: #666;
    margin: 0;
    margin-top: 5px; /* Space below title */
}



/* Contact Form */
.contact-form-wrapper {
    width: 50%;
    background: #007AFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
}

.form-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    gap: 15px;
}

.form-group input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    height: 100px;
}

.file-upload label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

#file-input {
    display: block;
}
.file-upload label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.file-upload input[type="file"] {
    display: block;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}


.submit-button {
    background: #FFD700;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #005BB5;
}

.contact-info {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.contact-info a{
    margin-top: 20px;
    font-size: 15px;
    text-align: center;
}
.get-in-touch {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
  }
  
  .get-in-touch h2 {
    font-size: 2rem;
    color: #fff;
  }
  
  .get-in-touch .tagline {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #fff;
  }
  
  .contact-item i {
    font-size: 1.5rem;
    color: #007bff;
  }
  
  .contact-item a {
    color: #007bff;
    text-decoration: none;
  }
  
  .contact-item a:hover {
    text-decoration: underline;
  }
  
 
  

footer {
    background-color: #111;
    padding: 40px 20px;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

footer h3 {
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.social-media {
    text-align: left;
    margin: 20px 0;
}

.social-media h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: left;
    gap: 15px;
}

.social-icons a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #007AFF; /* Change to a highlight color */
    transform: scale(1.2); /* Slight enlargement on hover */
}
.email-subscription input {
    padding: 10px;
    width: calc(100% - 120px);
    margin-right: 10px;
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
}

.email-subscription button {
    padding: 10px;
    border: none;
    background-color: #007AFF;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}
.footer-bottom {
    background-color: #111;
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.footer-bottom ul {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    color: #fff;
}

.footer-bottom ul li {
    display: inline;
}

.footer-bottom ul li a {
    font-size: 0.9rem;
    color: #fff;
}
.quicklinks ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 0;
    display: flex; /* Use flexbox layout */
    flex-wrap: wrap; /* Allow wrapping into multiple rows */
  
}

.quicklinks ul li {
    flex: 1 1 calc(50% - 20px); /* Make each item take half width */
    margin: 8px 0; /* Add space between each link */
}

.quicklinks ul li a {
    text-decoration: none; /* Remove underline */
    color: #fff; /* Light steel blue color for links */
    font-size: 1rem; /* Readable font size for links */
    transition: color 0.3s, transform 0.3s; /* Smooth transitions for effects */
}

.quicklinks ul li a:hover {
    color: #00bfff; /* Brighten link color on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Responsive Styles */
@media only screen and (max-width: 868px) {
nav .fas {
display: block;
}

nav ul {
display: none; 
position: fixed;
top: 0;
right: -200px;
width: 200px;
height: 100vh;
background: #007AFF;
flex-direction: column;
padding-top: 50px;
z-index: 10;
transition: right 0.5s;
}

nav ul li {
margin: 20px;
}

nav ul .fas {
position: absolute;
top: 20px;
left: 20px;
}
nav ul#menu {
display: flex; /* Show sliding menu */
position: fixed;
top: 0;
right: -200px;
width: 200px;
height: 100vh;
background: #007AFF;
flex-direction: column;
padding-top: 50px;
z-index: 10;
transition: right 0.5s;
}

nav ul#menu li {
margin: 20px;
}

nav ul#menu .fas {
position: absolute;
top: 20px;
left: 20px;
}
}



@media (max-width: 868px) {
.nav ul {
flex-direction: column; /* Stack navigation links vertically */
align-items: center; /* Center-align items */
gap: 10px; /* Add spacing between links */
}

.nav ul li {
margin: 0; /* Reset margins */
width: 100%; /* Full width for each nav item */
text-align: center; /* Center text */
}

.nav ul li a {
display: block; /* Ensure clickable area spans the full width */
padding: 10px 0; /* Add padding for better touch targets */
font-size: 16px; /* Consistent font size */
}

.contact-us {
font-size: inherit; /* Match the font size of other links */
padding: 10px 0; /* Same padding as other links */
}
}

@media (max-width: 868px) {
    .contact-container {
        flex-direction: column; /* Stack elements vertically */
        gap: 30px; /* Add spacing between sections */
        align-items: center;
    }

    .contact-form-wrapper,
    .roadmap-container {
        max-width: 100%; /* Full width */
    }

    .contact-form-wrapper {
        padding: 50px; /* Add some padding for smaller screens */
        align-items: center;
    }

    .roadmap-container {
        padding: 15px; /* Add padding for the roadmap section */
    }

    .contact-form {
        max-width: 100%; /* Ensure form takes full width */
    }

    .contact-form .form-group {
        display: flex;
        flex-direction: column; /* Stack input fields */
        gap: 15px; /* Add spacing between fields */
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form .submit-button {
        width: 100%; /* Full width inputs */
        font-size: 1rem; /* Adjust font size for better readability */
        padding: 12px; /* Add padding for larger input areas */
        box-sizing: border-box; /* Account for padding and borders */
    }

    .contact-form textarea {
        min-height: 150px; /* Ensure a larger text area */
    }

    .submit-button {
        margin-top: 20px; /* Space above the button */
        font-size: 1.1rem; /* Larger button text */
        padding: 15px; /* Larger button for better touch interaction */
    }

    .contact-info {
        font-size: 0.9rem; /* Adjust text size for smaller screens */
        text-align: center; /* Center the text */
    }
}

@media (min-width: 868px) {
    .contact-form {
        font-size: 1.2rem; /* Slightly larger font for bigger screens */
        order: -1; 
    }

    .contact-form input,
    .contact-form textarea {
        padding: 15px; /* Larger input area padding */
    }

    .contact-form .submit-button {
        padding: 18px; /* Larger button size */
    }
}
