/* ------------------ General Styles ------------------ */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #f0f8ff, #e6f7ff);
    color: #023e8a;
}

/* ------------------ Navbar Styles (Consistent Across Pages) ------------------ */
header {
    background-color: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav h1 {
    color: #00b4d8;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links li a {
    text-decoration: none;
    color: #00b4d8;
    /* Always visible */
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: none;
    /* Remove hover transition */
}

.nav-links li a:hover,
.nav-links li a.active {
    background-color: #00b4d8;
    /* Optional: can keep hover background if needed */
    color: #ffffff;
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #00b4d8;
    background: none;
    border: none;
}

/* ------------------ Contact Section ------------------ */
.contact-section {
    max-width: 600px;
    margin: 3rem auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-section h2 {
    color: #0077b6;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-section form {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #0077b6;
}

.contact-section button {
    background-color: #00b4d8;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-section button:hover {
    background-color: #0077b6;
}

/* ------------------ Footer ------------------ */
footer {
    background-color: #0077b6;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* ------------------ Mobile Responsive ------------------ */
@media (max-width: 768px) {
    header nav {
        flex-direction: row;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #ffffff;
        width: 30%;
        position: absolute;
        top: 80px;
        right: 5%;
        padding: 1rem 0;
        text-align: center;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
        border-radius: 10%;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        color: #0077b6;
        /* Blue text in mobile */
        padding: 10px 0;
        text-align: center;
    }

    .contact-section {
        margin: 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-section button {
        font-size: 0.95rem;
    }
}