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

.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: #3fb488;
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    padding: 10px 0;
}

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

.maincontainer {
    display: flex;
    height: 100vh;
    margin: auto;
}

.image {
    display: block;
    height: 100vh;
    animation: fadeInImage 1s ease-out;
}

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

.text-container {
    height: 100vh;
    flex: 1;
    text-align: center;
    animation: fadeInText 1s ease-out;
}

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

.phone-container {
    display: none;
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 1s forwards;
}

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

.maintext {
    color: #3fb488;
    font-size: 10vw;
    font-family: Roboto;
    margin: 20px;
    margin-top: 15%;
    text-align: center;
}

.explanation {
    color: #3fb488;
    font-family: Roboto;
    text-align: center;
    font-size: 3vw;
    animation: fadeInText 1s ease-out; 
}

.download-btn {
    display: inline-block;
    background-color: #3fb488;
    color: white;
    font-size: 1.5rem;
    padding: 20px 35px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    animation: bounceButton 2s ease-in-out infinite;
    font-size: 2rem;
}

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

.download-btn:hover {
    background-color: #b5e4cc;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.downloadimages {
    display: flex;
    justify-content: space-evenly;
    margin-top: 100px;
    align-items: center;
    flex: 1;
}

.download-images {
    height: 1px;
}


@media (max-width: 800px) {
    .maincontainer {
        display: none;
    }

    .phone-container {
        display: block;
        height: 100vh;
        margin: auto;
        text-align: center;
        animation: slideIn 1s forwards;
    }

    .maintext {
        margin: 5px;
        width: 100vw;
        font-size: 12vw;
    }

    .explanation {
        font-size: 5vw;
    }

    .downloadimages {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .image {
        width: 100%;
        object-fit: contain;
    }

    .download-images {
        height: 0px;
        margin: 0 10px;
    }

    .menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

#logo {
    width: 100px;
}
.contact-container {
    margin: 50px auto;
    width: 80%;
    text-align: center;
}

.maintext {
    color: #3fb488;
    font-size: 6vw;
    font-family: Roboto;
    margin-bottom: 10px;
}

.explanation {
    color: #3fb488;
    font-family: Roboto;
    font-size: 2.5vw;
    margin-bottom: 30px;
}

.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);
}

/* Mobile Styling */
@media (max-width: 800px) {
    .contact-container {
        width: 90%;
    }

    .maintext {
        font-size: 10vw;
    }

    .explanation {
        font-size: 5vw;
    }

    .contact-form {
        width: 100%;
    }

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

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

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

