/**
 * Theme IVLS - Custom CSS Overrides
 * 
 * Add your custom CSS here to override theme styles.
 * This file is loaded after style.css
 *
 * @package Theme_IVLS
 */

/* Add your custom styles below */

/* Hero fade-in-up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
