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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
}

/* Navbar */
.navbarmain h1 {
    color: #007db3;
    font-size: 35px;
    font-family: cursive;
}

.navbarmain {
    height: 20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    background-color: #fff;
    position: relative;
    z-index: 1000;
}

.navlinks {
    display: flex;
    gap: 30px;
    font-size: 22px;
    font-weight: 600;
    list-style: none;
}

.navlinks li a {
    color: #007db3;
    text-decoration: none;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #007db3;
}

@media (max-width: 840px) {
    .navlinks {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background-color: #007db3;
        padding-top: 60px;
        align-items: center;
        gap: 30px;
        transition: all 0.3s ease;
    }

    .navlinks.open {
        display: flex;
    }

    .footer-links li a {
        text-decoration: none;
        color: #fff;
    }

    .navlinks li a {
        color: #fff;
        font-size: 24px;
    }

    .hamburger {
        display: block;
    }
}

/* Contact Form Section */
.contactusmain {
    display: flex;
    flex-direction: column;
}

.contactusdetails {
    background-color: #f7f8f9;
    padding: 10px 0;
}

.contactusdetails .contentbox6 {
    margin: 30px 100px;
    padding: 50px;
    background-color: #FFF;
}

.contact-container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #007db3;
    color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: "Roboto", sans-serif;
}

.contact-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #ffffffcc;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    color: #007db3;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background-color: #fff;
    color: #007db3;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #005f8a;
    color: #fff;
}

@media (max-width: 500px) {
    .contactusdetails .contentbox6 {
        margin: 0;
    }
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #007db3;
    color: white;
    padding: 30px 60px;
    font-family: 'Roboto', sans-serif;
}

.footer h3 {
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    gap: 10px;
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-contact h3,
.footer-links h3 {
    font-size: 30px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        margin-bottom: 20px;
    }
}