/* Hero Section Animations */
.hero-content .animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

@keyframes fly-in-from-left {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fly-in-from-right {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-from-bottom {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-fly-in-left {
    animation-name: fly-in-from-left;
}

.animate-fly-in-right {
    animation-name: fly-in-from-right;
}

.animate-fade-in-bottom {
    animation-name: fade-in-from-bottom;
}

/* Staggered delays */
.hero-main-title.animated {
    animation-delay: 0.2s;
}

.hero-subtitle.animated {
    animation-delay: 0.4s;
}
