/* Carousel Animation Fix - Completely disable all carousel animations */

/* Remove all pseudo-element content and animations */
.header-carousel .header-carousel-item-img-1::before,
.header-carousel .header-carousel-item-img-2::before,
.header-carousel .header-carousel-item-img-3::before,
.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after,
.header-carousel .header-carousel-item::before,
.header-carousel .header-carousel-item::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    animation: none !important;
    position: static !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
    transform: none !important;
    z-index: -1 !important;
}

/* Disable animations on carousel containers */
.header-carousel,
.header-carousel * {
    animation: none !important;
}

/* Ensure no animations are applied */
.header-carousel .header-carousel-item {
    animation: none !important;
}

.header-carousel .header-carousel-item-img-1,
.header-carousel .header-carousel-item-img-2,
.header-carousel .header-carousel-item-img-3 {
    animation: none !important;
} 