/* ======================================================
   WHY JOIN US SECTION
====================================================== */

.why-join-section{
    padding:100px 0;
    background:#f8fafc;
}

.why-join-section .container{
    width:min(1200px,90%);
    margin:auto;
}

/* ======================================================
   SECTION HEADER
====================================================== */

.section-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#e8f5e9;
    color:#198754;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-header h2{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    color:#222;
    margin-bottom:20px;
}

.section-header p{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

/* ======================================================
   GRID
====================================================== */

.why-join-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* ======================================================
   CARD
====================================================== */

.why-card{
    background:#ffffff;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    border:1px solid #e8e8e8;
    transition:all .35s ease;
}

/* ======================================================
   ICON
====================================================== */

.why-icon{
    width:80px;
    height:80px;
    margin:0px 65px;
    border-radius:50%;
    background:#00a651;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

/* ======================================================
   TYPOGRAPHY
====================================================== */

.why-card h3{
    font-size:24px;
    color:#222;
    margin-bottom:18px;
    font-weight:700;
}

.why-card p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* ======================================================
   HOVER EFFECTS
====================================================== */

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
    border-color:#198754;
}

.why-card:hover .why-icon{
    background:#198754;
    color:#ffffff;
    transform:scale(1.08);
}

/* Smooth animation */

.why-icon{
    transition:all .35s ease;
}

/* ======================================================
   TABLET
====================================================== */

@media (max-width:992px){

    .why-join-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .section-header h2{

        font-size:34px;

    }

}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width:768px){

    .why-join-section{

        padding:70px 0;

    }

    .why-join-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .section-header{

        margin-bottom:50px;

    }

    .section-header h2{

        font-size:30px;

    }

    .section-header p{

        font-size:16px;

    }

    .why-card{

        padding:30px 25px;

    }

    .why-card h3{

        font-size:22px;

    }

}

/* ======================================================
   SMALL MOBILE
====================================================== */

@media (max-width:480px){

    .section-header h2{

        font-size:26px;

    }

    .section-badge{

        font-size:13px;

        padding:7px 16px;

    }

    .why-icon{

        width:70px;

        height:70px;

        font-size:30px;

    }

}