/*====================================
          WHY CHOOSE US
====================================*/

.why-us-section{

    padding:100px 0;

    background:#ffffff;

}

.why-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

    border:1px solid rgba(18,168,243,.08);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(30,77,183,.12);

}

.why-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

}

.why-icon i{

    font-size:36px;

    color:#fff;

}

.why-card h4{

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}