/*=========================================================
WHY CHOOSE US
=========================================================*/

.why-section{
    padding:70px 0;
    background:#f8f9fa;
}

.why-section .section-header{
    max-width:700px;
    margin:0 auto 50px;
}

.section-badge{
    display:inline-block;
    padding:7px 18px;
    background:#e8f7ef;
    color:#198754;
    font-size:13px;
    font-weight:600;
    border-radius:50px;
    margin-bottom:15px;
}

.section-title{
    font-size:36px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.section-title span{
    color:#198754;
}

.section-subtitle{
    color:#6c757d;
    font-size:16px;
    line-height:1.8;
    margin:0;
}

/*=========================================================
FEATURE CARD
=========================================================*/

.why-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px 28px;
    text-align:center;
    height:100%;
    transition:.35s ease;
    box-shadow:0 5px 18px rgba(0,0,0,.04);
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#198754;
    transform:scaleX(0);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#198754;
    box-shadow:0 18px 35px rgba(0,0,0,.10);
}

.why-card:hover::before{
    transform:scaleX(1);
}

/*=========================================================
ICON
=========================================================*/

.why-icon{
    width:80px;
    height:80px;
    margin:0 auto 22px;
    border-radius:50%;
    background:#eaf8f0;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.why-icon i{
    font-size:34px;
    color:#198754;
    transition:.35s;
}

.why-card:hover .why-icon{
    background:#198754;
}

.why-card:hover .why-icon i{
    color:#fff;
}