/* Global Styles */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
    scroll-behavior: smooth;
}


section {
    height: 100vh; /* Each section will take the full height of the viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    color: #222;
}
p {
    font-size: 16px;
    line-height: 26px;
    color: #555;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    color: #0056b3;
}

/* Header Styles */
.navbar {
    padding: 1rem 2rem;
    background-color: #fff;
    border-bottom: 2px solid #ddd;
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0;
}

.navbar-brand {
    font-size: 26px;
    font-weight: 700;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 18px;
    font-weight: 500;
}

/* Hero Section */
.jumbotron {
    background-image: url('airport.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full page height */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* For all other sections, you can modify or remove height */
.container {
    height: auto; /* Allow sections to take up space based on their content */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.jumbotron h1 {
    color: white; /* White text is generally readable on green background */
    background-color: green; /* Adds a green background for h1 */
    padding: 1rem;
    display: inline-block;
}

.jumbotron p {
    font-size: 1.25rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.75rem 1.5rem;
}

/* Responsive Hero for Mobile */
@media (max-width: 768px) {
    .jumbotron h1 {
        font-size: 2.5rem;
    }

    .jumbotron p {
        font-size: 1rem;
    }
}

/* About Section */
#about {
    text-align: center;
}

#about .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#about h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

#about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

#about img {
    width: 70%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* Solution Section */
#solution {
    text-align: center;
}

#solution h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

#solution p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

#solution img {
    width: 70%;
    max-width: 400px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
#benefits {
    text-align: center;
}

#benefits h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

#benefits img {
    width: 70%;
    max-width: 400px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Us Section */
#contact {
    text-align: center;
}

#contact h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

#contact form {
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#contact label {
    font-weight: 600;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Align text to the left in all sections */
section, #about, #solution, #benefits, #contact {
    text-align: left; /* Aligns all text to the left */
}

/* Fix for overlapping sections in mobile view */
/* Add spacing between sections for mobile view */
@media (max-width: 768px) {
    .jumbotron {
        margin-bottom: 2rem; /* Add space below the jumbotron */
    }

    .container {
        margin-top: 2rem; /* Add space between containers */
        padding: 1rem; /* Add padding to the container for mobile */
    }

    #about, #solution, #benefits, #contact {
        padding-top: 2rem; /* Space at the top of each section */
        padding-bottom: 2rem; /* Space at the bottom of each section */
        margin-bottom: 2rem; /* Ensure space below each section */
    }

    .row {
        margin-bottom: 1rem; /* Add spacing between the row and the next element */
    }

    #about h2, #solution h2, #benefits h2, #contact h2 {
        margin-top: 2rem; /* Ensure spacing at the top of headings */
        font-size: 1.8rem; /* Adjust font size for better readability on mobile */
    }
}



/* Professional Footer Section */
.footer {
    background-color: #222; /* Dark background for a professional look */
    color: #fff; /* White text for contrast */
    padding: 2rem 0; /* Increased padding for a spacious look */
    text-align: center; /* Center the text */
    font-size: 1rem; /* Professional font size */
}

.footer p {
    margin: 0.5rem 0; /* Space between lines for readability */
}

.footer a {
    color: #007bff; /* Blue color for the email link */
    text-decoration: none; /* Remove underline */
}

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