/*
 * AOS Animation Disabler for Feature Boxes
 * Prevents any AOS animations from affecting feature boxes
 */

/* Ensure AOS animations are completely disabled for feature boxes */
[data-aos] .feature-box-ultra-white {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    -webkit-transform: none !important;
    -webkit-transition: none !important;
    -webkit-animation: none !important;
    visibility: visible !important;
}

/* Add extra specificity for animation properties */
html body [data-aos] .feature-box-ultra-white,
html body [data-aos].feature-box-ultra-white,
html body [data-aos] .feature-box-ultra-white *,
html body .feature-box-ultra-white * {
    animation: none !important;
    -webkit-animation: none !important;
    transition: none !important;
    -webkit-transition: none !important;
    transform: none !important;
    -webkit-transform: none !important;
}

/* Target the column containing the feature box directly */
html body [data-aos].col-lg-4.col-md-6 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    -webkit-transform: none !important;
    -webkit-transition: none !important;
    -webkit-animation: none !important;
    visibility: visible !important;
}
