/*==========================================
POPULAR SERVICES
==========================================*/

.popular-services{

    padding:110px 0;

    background:#f8fafc;

}

.section-heading{

    max-width:760px;

    margin:auto;

}

.section-heading h2{

    font-size:48px;

    font-weight:800;

    margin:20px 0;

    color:#111827;

}

.section-heading p{

    color:#6b7280;

    font-size:18px;

}

.service-box{

    background:#fff;

    border-radius:24px;

    padding:35px;

    height:100%;

    border:1px solid #edf2f7;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-box:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(37,99,235,.15);

}

.featured{

    border:2px solid #2563eb;

}

.service-label{

    position:absolute;

    top:20px;

    right:20px;

    background:#2563eb;

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:linear-gradient(135deg,#2563eb,#60a5fa);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

}

.service-box h4{

    font-size:24px;

    margin-bottom:18px;

    font-weight:700;

}

.service-box p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:25px;

}

.service-box a{

    text-decoration:none;

    color:#2563eb;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.3s;

}

.service-box:hover a{

    gap:16px;

}

@media(max-width:992px){

    .section-heading h2{

        font-size:38px;

    }

}

@media(max-width:768px){

    .popular-services{

        padding:80px 0;

    }

    .section-heading h2{

        font-size:32px;

    }

}

@media(max-width:576px){

    .service-box{

        padding:28px;

    }

}