.popular-services{

    padding:90px 0;

    background:#f8fafc;

}

.section-badge{

    display:inline-block;

    background:#e0ecff;

    color:var(--primary);

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:50px;

}

.service-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:16px;

    padding:30px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow);

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.service-icon{

    width:70px;

    height:70px;

    background:#eef4ff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 20px;

}

.service-icon img{

    width:38px;

}

.service-card h3{

    font-size:20px;

    margin-bottom:10px;

    color:var(--dark);

}

.service-card p{

    color:#64748b;

    line-height:1.7;

    font-size:15px;

}

.section-footer{

    text-align:center;

    margin-top:45px;

}