@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@600&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #1a1a2e, #0f3460);
    color: #f8f9fa;
    text-align: center;
    padding: 0;
    overflow-x: hidden;
    color: #333;
    padding-top: 40px;
}

body > footer {
    margin-top: auto; /* Push the footer to the bottom of the page */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(20, 20, 50, 0.9);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 10;
}

header h1 {
    margin: 0;
    font-size: 2em;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

header h1 a {
    text-decoration: none;
    color: inherit;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: color 0.3s;
}

header nav a:hover {
    color: #ffc107;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    font-size: 1em;
}

/* CTA Button Styling */
.nav-menu .cta-button {
    background: #ffc107;
    color: #343a40;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-menu .cta-button:hover {
    background: #ffdd59;
    color: #212529;
}

/* Hide menu toggle button on larger screens */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #343a40;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        z-index: 100;
    }

    .nav-menu.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}



.hero {
    position: relative;
    background: url('tech.jpg') no-repeat center/cover;
    min-height: 100vh; /* Full viewport height */
    height: auto;
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    align-items: center;
    justify-content: space-between;
    padding: 0 10%; /* Maintain consistent horizontal padding */
    text-align: left; /* Ensure text alignment */
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Maintain readability with overlay */
    z-index: 0;
}

.hero-content {
    max-width: 50%; /* Limit width on larger screens */
    z-index: 1; /* Place above overlay */
    color: #f8f9fa;
    text-align: right; /* Align to the right for large screens */
}

.hero h2 {
    font-size: 3.5em; /* Large heading for desktops */
    margin: 0 0 20px;
    color: #ffc107;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5em; /* Larger paragraph for emphasis */
    margin-bottom: 30px;
    color: #f8f9fa;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero form {
    background: rgba(255, 255, 255, 0.9); /* White semi-transparent background */
    padding: 40px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Slight shadow for form box */
    width: 40%; /* Restrict width for large screens */
    max-width: 400px; /* Cap maximum width */
    z-index: 1;
}


.hero form input,
.hero form select,
.hero form button {
    width: 100%;
    margin: 10px 0;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1em;
}

.hero form button {
    background: linear-gradient(90deg, #ffc107, #ffdd59);
    color: #343a40;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.hero form button:hover {
    background: linear-gradient(90deg, #ffdd59, #ffc107);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero {
        justify-content: center; 
        align-items: center; 
        padding: 20px;
    }

    .hero-content {
        max-width: 100%; 
        text-align: center; 
        margin-bottom: 20px; 
    }

    .hero form {
        width: 100%; 
        max-width: 90%; 
        margin: 0 auto; 
        padding: 20px; 
    }
}





section {
    padding: 60px 20px;
}

section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #ffc107;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.feature .icon {
    font-size: 60px;
    color: #ffc107;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5em;
    color: #343a40;
    margin-bottom: 10px;
}

.feature p {
    color: #555;
    font-size: 1em;
    line-height: 1.5;
}

/* Fleet Section */
.fleet-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Create responsive columns */
    gap: 20px; /* Spacing between items */
    justify-content: center; /* Horizontally center the items in the grid */
    padding: 20px; /* Add padding for space around the grid */
    max-width: 1200px; /* Optional: Limit grid width */
    margin: 0 auto; /* Center the grid container on the page */
}

.fleet-item {
    background: #f8f9fa; /* Add background color for better visibility */
    border-radius: 10px; /* Add rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    overflow: hidden; /* Prevent overflow of content */
    padding: 20px; /* Add padding inside each item */
    text-align: center; /* Center-align text */
}



.fleet-item img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Add rounded corners to images */
}

.fleet-item h3 {
    margin: 10px 0; /* Space around the title */
    font-size: 1.5em; /* Adjust title font size */
}

.fleet-item p {
    font-size: 1em; /* Adjust paragraph font size */
    color: #333; /* Ensure text is visible */
    line-height: 1.5; /* Improve readability */
}


/* Process Section */
.process {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 60px 20px;
    text-align: center;
}

.process h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    color: #343a40; /* Dark gray for better contrast */
    text-shadow: none; /* Remove shadow for cleaner look */
}


.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.step {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.step .icon {
    font-size: 50px;
    color: #ffc107;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.5em;
    color: #ffc107;
    margin-bottom: 10px;
}

.step p {
    color: #555;
    font-size: 1em;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .features, .steps {
        flex-direction: column;
    }

    .feature, .step {
        max-width: none;
        margin: 0 auto;
    }
}

#quote {
    font-weight: bold; /* Makes the text bold */
    font-size: 1.0em; /* Optional: Slightly increase font size for emphasis */
    margin-top: 10px; /* Keeps spacing consistent */
    color: #343a40; /* Optional: Use a darker color for better visibility */
}

.floating-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffc107;
    color: #343a40;
    text-align: center;
    padding: 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}



/* FAQ Section */
/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: #f8f9fa;
    padding: 50px 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.faq h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffc107;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    color: #ffc107;
    position: relative;
}

.faq-item h3:hover {
    color: #ffdd59;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5em;
    color: #ffc107;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    content: '-';
    transform: rotate(90deg);
}

.faq-item p {
    margin: 10px 0 0;
    font-size: 1em;
    line-height: 1.6;
    color: #e0e0e0;
    display: none;
}

.faq-item.active p {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.use-cases {
    padding: 50px 20px;
    background: #f8f9fa;
    text-align: center;
}

.use-cases h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    color: #343a40; /* Dark gray for better contrast */
    text-shadow: none; /* Remove shadow for cleaner look */
}

.use-cases-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.use-case i {
    font-size: 2.5em;
    color: #ffc107;
    margin-bottom: 15px;
}

.use-case h3 {
    font-size: 1.5em;
    color: #343a40;
    margin-bottom: 10px;
}

.use-case p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
}

.invalid {
    border: 2px solid red;
}


/* General Styling for Contact Section */
.contact-section {
    padding: 60px 20px;
    text-align: center;
    background-color:#17223D;
    
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #ffc107;
}

.contact-section p {
    margin-bottom: 30px;
    font-size: 1.2em;
    color: #ffc107; /* Updated text color */
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensure content does not overlap */
}

.contact-section label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-section input,
.contact-section textarea {
    width: calc(100% - 20px); /* Adjust to avoid overlap */
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.contact-section button {
    background: linear-gradient(90deg, #ffc107, #ffdd59);
    color: #343a40;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-section button:hover {
    background: linear-gradient(90deg, #ffdd59, #ffc107);
}

footer {
    background: #1a1a2e; /* Dark background for contrast */
    color: #f8f9fa;
    text-align: center;
    padding: 20px 10px;
    font-size: 1em;
    position: relative; /* Ensure it flows naturally with the document */
    z-index: 1; /* Ensure it appears above background elements */
}

footer a {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline; /* Add underline on hover for better UX */
}

#formResponse {
    font-size: 0.9em; /* Reduce the font size */
    text-shadow: none; /* Remove any text shadow */
    margin-top: 10px; /* Ensure spacing from other elements */
}
