/* Disable all animations on the website */

/* Disable AOS animations */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Disable CSS transitions except for hero slider */
* {
    transition: none !important;
    animation: none !important;
}

/* Re-enable specific animations for hero section */
.hero-slide {
    transition: opacity 1s ease !important;
}

.hero-slide.active {
    opacity: 1 !important;
}

/* Fix hero content visibility */
.hero-title,
.hero-subtitle,
.hero-desc,
.hero-car-image {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* Override GSAP transformations */
.gsap-animate, 
.service-item, 
.priceplan-item, 
.team-member, 
.feature-item, 
.coreinfo-item, 
.review-item {
    transform: none !important;
    opacity: 1 !important;
}

/* Disable smooth scroll behavior site-wide */
html {
    scroll-behavior: auto !important;
}

/* Ensure elements are visible by default */
.fade-up, 
.fade-down, 
.fade-left, 
.fade-right {
    opacity: 1 !important;
    transform: none !important;
} 