.service-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:14px;
    overflow:hidden;
    transition:.35s;
    display:flex;
    flex-direction:column;
    height:100%;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.service-image{
    position:relative;
    height:150px;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.service-icon{
    position:absolute;
    left:18px;
    bottom:-22px;
    width:46px;
    height:46px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#173A82;
    box-shadow:0 8px 18px rgba(0,0,0,.15);
}

.service-content{
    padding:34px 18px 22px;
    flex:1;
}

.service-content h3{
    margin:0 0 12px;
    font-size:22px;
    color:#222;
    line-height:1.3;
}

.service-content p{
    margin:0;
    color:#666;
    line-height:1.6;
    font-size:15px;
}