﻿.home-container {
    margin: 20px;
    padding: 120px 60px;
    min-height: 80vh;
    display: flex;
    justify-content: center;
}

.content__about {
    display: flex;
    align-items: center;
    gap: 16px; 
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffffcc;
    border: 1px solid #e5e7eb;
    color: #00bc81;
    font-size: 15px;
    font-weight: 700;
    box-shadow: #b5b5b575 0px 0px 10px 0px;
    animation: badgeAnim 0.6s ease forwards;
}

.content__main {
    font-size: 60px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    animation: fadeIn 0.5s ease forwards;
}

.container-content__description {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 60px;
    border-radius: 24px;
    margin: 40px auto 40px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.2s forwards;
}

.content__description {
    text-align: center;
    max-width: 1200px;
    line-height: 1.6;
    color: #4b5563; 
    font-size: 20px;
    margin-bottom: 50px;
}

.features-grid {
    display: flex;
    width: 100%;
    gap: 24px; 
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 240px;
    background: linear-gradient(135deg, #d7ffeea8, #edfdf6e0 100%) no-repeat;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgb(0, 0, 0, .05);
    transition: transform 0.2s ease;
    animation: fadeIn 1.2s ease 1s backwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.6s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.9s;
}


.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
}

.feature-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 20px;
    animation: rotateIcon 2s ease-in-out infinite alternate;
}

.feedback-container {
    display: flex;
    align-items: center;
    padding: 60px;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    opacity: 0;
    animation: fadeIn 1.5s ease 1s forwards;
}

.feedback-container__img {
    max-width: 50px;
    animation: rotateIcon 2s ease-in-out infinite alternate;
}

.feedback-container__description {
    color: #747d89;
}

.feedback-container__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #00bc81;
    border-radius: 50px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 25px;
    box-shadow: #7272727d 0px 10px 20px;
    transition: transform 0.5s ease-out;
}

.feedback-container__btn:hover {
    transform: scale(1.05);
    background: #12a375;
}

.feedback-container__btn img {
    max-width: 20px;
    filter: brightness(0) invert(1);
}

.feature-card h2 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.feature-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

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

@keyframes badgeAnim{
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes rotateIcon{
    0%{
        transform: rotateZ(-8deg);
    }
    100% {
        transform: rotateZ(8deg);
    }
}

@media (max-width: 760px){
    .home-container {
        padding: 40px 0px;
    }

    .content__main {
        font-size: 40px;
    }

    .container-content__description {
        padding: 20px 30px;
        margin: 25px auto 25px;
    }

    .content__description {
        font-size: 18px;
    }

    .features-grid {
        flex-direction: column;
        align-content: center;
        gap: 10px;
    }

    .feature-card {
        min-width: 100%;
        padding: 16px 10px;
    }

    .feedback-container {
        padding: 20px 40px;
        gap: 15px;
        text-align: center;
    }

    .feedback-container__title {
        font-size: 18px;
    }

    .feedback-container__description {
        font-size: 15px;
    }

    .feedback-container__btn {
        font-size: 15px;
        padding: 13px 30px;
    }
}

@media (max-width: 390px) {
    .content__main{
        font-size: 28px;
    }
    .content__description{
        font-size: 16px;
    }
    .feature-card img {
        width: 45px;
        margin-bottom: 5px;
    }
}