/* Services Section - Minimal CSS (Bootstrap 5.3.3 does the rest) */

/* Card hover effect only */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    min-height:450px !important;
}

    .service-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
        border-left-width: 6px !important;
    }

