/*
 * Targeted Fix for Feature Boxes and Service Cards
 * Version 1.0
 * 
 * This CSS specifically targets top feature cards and service boxes separately
 */

/* ===== TOP FEATURE BOXES (feature-box-ultra-white) ===== */
/* These are the feature boxes at the top of the page */
.feature-box-ultra-white {
    /* Keep existing styles but remove movement */
    transform: none !important;
    transition: all 0.3s ease !important; /* Allow normal transition */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* On hover - allow ONLY shadow change but NO movement */
.feature-box-ultra-white:hover {
    transform: none !important; /* Remove upward movement */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25) !important; /* Keep shadow effect */
}

/* ===== SERVICE BOXES (service-box) ===== */
/* Less aggressive fix for service boxes in "Our Services" section */
.service-box {
    transform: none !important;
    translate: none !important;
    transition: none !important;
    animation: none !important;
}

.service-box:hover {
    transform: none !important;
    translate: none !important;
    box-shadow: 0 0 20px rgba(0, 70, 190, 0.25), 0 15px 40px rgba(0, 0, 0, 0.12) !important;
}
