/* General setup for body and html */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Main content area */
main {
    flex: 1;
}

/* Navigation styling */
nav {
    background-color: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo img {
    max-width: 120px;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #133a68;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0d2a4a;
}

/* Hero section with background image */
.hero {
    background-image: url("assets/JETS.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-top: 0;
}

.hero p {
    font-size: 1.5em;
    margin: 20px 0 0;
}

/* Mission and commitment sections */
.mission, .commitment {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    text-align: left;
}

.section-image {
    width: 55%;
    max-width: 700px;
    border-radius: 8px;
}

.text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
}

.text h2 {
    font-size: 2em;
    color: #133a68;
    margin-bottom: 15px;
}

/* Connections section */
.connections {
    padding: 40px;
    text-align: center;
}

.connections h2 {
    color: #133a68;
    font-size: 2em;
    margin-bottom: 20px;
}

.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partner {
    background-color: white;
    border: 2px solid #133a68;
    border-radius: 8px;
    padding: 15px;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

.partner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Footer styling */
footer {
    background-color: #133a68;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1em;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-form {
    max-width: 300px;
    text-align: left;
    width: 100%;
}

.contact-form h2, .address h2 {
    font-size: 1.5em;
    color: white;
    margin-bottom: 10px;
}

.contact-form label {
    font-weight: bold;
    color: #ddd;
}

.contact-form input, .contact-form button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form button {
    background-color: #0d2a4a;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

/* Button Hover Effect */
.contact-form button:hover {
    background-color: white;
    color: #0d2a4a;
}

.address p {
    margin: 0;
    font-size: 1em;
    color: #ddd;
}



/* Media Queries for Mobile Screens */
@media (max-width: 768px) {
    /* Hero Section Adjustments */
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.2em;
    }

    /* Mission and Commitment Sections */
    .mission, .commitment {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .section-image {
        width: 90%;
    }

    .text {
        padding: 10px;
        font-size: 1em;
        text-align: center;
    }

    /* Connections Section */
    .connections h2 {
        font-size: 1.5em;
    }

    .partner {
        width: 150px;
        height: 80px;
    }
}










