﻿.services-overview {
    background: #f8fbff;
}

.service-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s ease;
    height: 100%;
    padding: 20px 20px;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(37,99,235,.18);
    }

.service-img {
    /*height: 220px;*/
    overflow: hidden;
    background: #eef5ff;
}

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.service-card:hover img {
    transform: scale(1.08);
}

.service-content {
    padding: 25px;
}

    .service-content h4 {
        color: #0f1f6f;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .service-content p {
        color: #555;
        margin: 0;
        line-height: 1.7;
    }
