/* =========================================================
   GLOBAL ANIMATION UTILITIES - ZFC
   Add this to your global stylesheet (e.g., dynamic-style.css)
========================================================= */

/* Reveal Animations */
[data-aos] {
    transition-duration: 1s;
    transition-timing-function: ease;
}

/* Typing Effect Cursor */
.typing-text::after {
    content: "|";
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Global Section Entrance */
.section-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.section-fade-up.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Counter Style */
.global-counter {
    font-weight: 700;
}
