/* Mobile Performance Optimizations - Disable hero animations on mobile */

@media only screen and (max-width: 767.98px) {
    /* Disable all banner-two animations on mobile */
    .banner-two__wrapper .banner-circles,
    .banner-two__wrapper .banner-circles .circle,
    .banner-two__wrapper .color-circle,
    .banner-two__wrapper .banner-graph,
    .banner-two__wrapper .toots-shape,
    .banner-two__wrapper .draw-svg {
        animation: none !important;
        transform: none !important;
    }
    
    /* Disable SVG path animations on mobile */
    .banner-two__wrapper .draw-svg path {
        animation: none !important;
        stroke-dasharray: none !important;
        stroke-dashoffset: 0 !important;
    }
    
}
