/* 
   Disable Animations CSS
   This file disables all animations and transitions on the website
*/

/* Disable all CSS transitions */
*, *::before, *::after {
    transition: none !important;
    animation: none !important;
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    transition-delay: 0s !important;
    transition-duration: 0s !important;
}

/* Fix for any GSAP animations */
.gsap-animated {
    transform: none !important;
    opacity: 1 !important;
}

/* Reset all AOS animations */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
}

/* Remove animation classes added by JavaScript */
.animated,
.animate__animated,
.wow {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Make sure slide transitions are immediate */
.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev {
    transition: none !important;
}

/* Ensure shape animations are disabled */
.shape {
    animation: none !important;
    transform: none !important;
}

/* Ensure all fade effects are disabled */
.fade,
.fade-up,
.fade-down,
.fade-left,
.fade-right {
    opacity: 1 !important;
    transform: none !important;
} 