/* Custom AOS Animations and Overrides */

/* Ensure no horizontal scroll caused by animations off-screen */
body {
    overflow-x: hidden;
}

/* Custom duration utility class if needed */
[data-aos-duration="300"] {
    transition-duration: 0.5s;
}

/* Soft Fade Up */
[data-aos="soft-fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="soft-fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}
