.service-card-icon {
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), box-shadow 0.3s ease;
}
.service-card:hover .service-card-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 28px rgba(0, 52, 111, 0.22);
}
.service-card-feature {
    transition: background-color 0.25s ease, border-color 0.25s ease;
}
.service-card:hover .service-card-feature {
    border-color: rgba(0, 107, 92, 0.18);
    background-color: rgba(255, 255, 255, 0.9);
}
