
/* Slow Cinematic Background Zoom */
.banner-bg {
    animation: slowZoom 14s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

/* Orange Glow Pulse */
.glow-animate {
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 0.9s; }

/*service shapes*/
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}