/* Services Page Card Hover Fix */
.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(51, 94, 134, 0.2) !important;
}

.service-card img {
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.07);
}
