.services-modern{
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

.service-tag{
    display:inline-block;
    padding:8px 18px;
    background:#e8f1ff;
    color:#0057ff;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.service-title{
    font-size:48px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.service-desc{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    font-size:17px;
}

.service-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:all .4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    height:100%;
    position:relative;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.service-image{
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.6s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

.service-body{
    padding:30px;
    position:relative;
}

.service-icon{
    width:55px;
    height:55px;
    background:linear-gradient(135deg,#0057ff,#00c2ff);
    color:#fff;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    font-size:18px;
}

.service-body h4{
    margin-bottom:15px;
}

.service-body h4 a{
    color:#111827;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
    transition:.3s;
}

.service-body h4 a:hover{
    color:#0057ff;
}

.service-link{
    color:#0057ff;
    font-weight:600;
    text-decoration:none;
    position:relative;
}

.service-link::after{
    content:'→';
    margin-left:8px;
    transition:.3s;
}

.service-link:hover::after{
    margin-left:15px;
}

/* Responsive */

@media(max-width:768px){

    .service-title{
        font-size:32px;
    }

    .service-image img{
        height:220px;
    }

}