.service-card {
    position: relative;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 15px;

}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* .service-card .overlay {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    padding: 10px;
} */



@media (max-width: 576px) {
    .service-card {
        height: auto;
    }

    .service-card img {
        height: auto;
    }
}