/* COLOR PALETTE */
:root {
    --primary-color: #243E36;
    --secondary-color: #7CA982;
    --accent-color: #F1F7ED;
}

/* SMALL SCREENS RESPONSIVE */
@media (max-width: 995px) {
    section {
        padding: 60px 5%;
    }

    .navbar {
        padding: 25px 5%;
    }

    .navlist {
        position: absolute;
        top:88px;
        left: 0;
        width: 100%;
        height: 300px;
        padding: 40px 30px;
        border-bottom-right-radius: 10px;
        background-color: var(--primary-color);
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .navlist li a {
        width: 100%;
    }

    .navlist.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .cv-btn {
        display: none;
    }

    /* HOME SECTION */
    .home-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .home .home-container .home-image img {
        width: 250px;
        height: auto;
        max-width: 100%;
        border: 2px solid var(--primary-color);
        border-radius: 100%;
        margin-bottom: 20px;
    }

    .home-text {
        text-align: center;
    }

    .home-text h1 {
        font-size: 28px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .home-text h4 {
        font-size: 18px;
        font-weight: 400;
        color: #000;
        margin-bottom: 20px;
    }

    .home-text p {
        font-size: 16px;
        color: #000;
        margin-bottom: 30px;
        width: 90%;
    }

    .home-btn {
        margin-bottom: 50px;
    }

    .home-btn a {
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        padding: 10px 20px;
        border: 2px solid transparent;
        border-radius: 5px;
        background-color: var(--primary-color);
        transition: all 0.3s ease-in-out;
    }

    .home-btn a:hover {
        background-color: transparent;
        color: var(--primary-color);
        border-color: var(--primary-color);
    }

    /* ABOUT SECTION */
    .about-body .about-image img {
        width: 250px;
    }

    .about-body .about-text p {
        font-size: 13px;
        font-weight: 400;
    }

    /* SERVICES SECTION */
    .services-cards {
        grid-template-columns: repeat(1,1fr);
    }

    .card {
        width: 350px;
    }

    /* STATS SECTION */
    .stats-container {
        gap: 100px;
        flex-direction: column;
    }

    /* CONTACT SECTION */
    .contact-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-form input,textarea {
        width: 340px;
    }
}

@media (max-width: 1706px) {
    .stats-container {
        width: 100%;
        gap: 90px;
    }
}