/* ========================================
   WHY ATDI
======================================== */

.why-atdi-section{
    padding: 15px 0;
    background: #ffffff;
}

/* HEADER */

.why-header{
    text-align: center;
    max-width: 850px;
    margin: 0 auto 35px;
}

.why-badge{
    display: inline-block;
    padding: 8px 18px;

    background: #dbeafe;
    color: #2563eb;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 20px;
}

.why-header h2{
    font-size: var(--h2-size);
    font-weight: var(--heading-weight);

    color: var(--color-heading);

    margin-bottom: 20px;
}

.why-header p{
    font-size: 14px;
    line-height: 1.9;
    text-align: center;
    color: #030303;
}

/* GRID */

.why-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* CARD */

.why-card{
    background: white;

    padding: 40px 35px;

    border-radius: 28px;

    border: 1px solid #e2e8f0;

    box-shadow: 0 10px 30px rgba(15,23,42,0.05);

    transition: all .35s ease;
}

.why-card:hover{
    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(15,23,42,0.10);
}

.why-icon{
    width: 70px;
    height: 70px;

    border-radius: 20px;

    background: #ffb428;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 800;

    margin-bottom: 25px;
}

.why-card h3{
    font-size: 17px;
    font-weight: 700;

    color: var(--color-primary);

    margin-bottom: 15px;
}

.why-card p{
    font-size: 14px;
    line-height: 1.2;
 
    color: #030303;
}

/* RESPONSIVE */

@media(max-width:992px){

    .why-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-atdi-section{
        padding: 80px 0;
    }

    .why-header h2{
        font-size: 36px;
    }

    .why-grid{
        grid-template-columns: 1fr;
    }

}