/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: white;
    color: #3fb488; 
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3fb488;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    color: white;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.menu {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s ease;
}

.nav-link:hover {
    color: #b5e4cc;
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s;
}

/* Mobile Menu */
.menu.active {
    display: flex;
    flex-direction: column;
    background-color: #3fb487b3;
    position: absolute;
    top: 90px;
    right: 0;
    left: 0;
    padding: 10px 0;
}

.menu.active .nav-link {
    padding: 10px;
    text-align: center;
    color: white;
}





@keyframes fadeInImage {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}



@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes bounceButton {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


@media (max-width: 800px) {
    


    .menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    .contact-form {
        width: 100%;
    }

    .contact-form label {
        font-size: 4vw;
    }

    .contact-form input, .contact-form textarea {
        font-size: 4vw;
    }

    .submit-btn {
        font-size: 4vw;
    }
}

#logo {
    width: 100px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInForm 1s ease-out;
}

@keyframes fadeInForm {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form label {
    font-size: 1.2rem;
    color: #3fb488;
    margin: 10px 0 5px;
    text-align: left;
    width: 100%;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #3fb488;
}

.submit-btn {
    background-color: #3fb488;
    color: white;
    font-size: 1.5rem;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background-color: #b5e4cc;
    transform: scale(1.05);
}

.submit-btn:active {
    background-color: #3fb488;
    transform: scale(1);
}
.contact-container {
    margin: 50px auto;
    width: 80%;
    text-align: center;
}