@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes textReveal {
    from {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.animate-scaleIn {
    animation: scaleIn 1.2s ease-out forwards;
    opacity: 0;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: black;
    padding: 18px 0;
    position: relative;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-content {
    color: white;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.marquee-container:hover .marquee {
    animation-play-state: paused;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-textReveal {
    animation: textReveal 1.5s ease-out forwards;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-600 {
    animation-delay: 0.6s;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.parallax-container {
    overflow: hidden;
    position: relative;
}

.parallax-item {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.image-hover-gradient {
    position: relative;
    overflow: hidden;
}

.image-hover-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-hover-gradient:hover::after {
    opacity: 1;
}

.scroll-indicator {
    animation: float 2s ease-in-out infinite;
}

.text-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.text-overflow-hidden {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
}

.text-inner {
    text-align: center;
    width: auto;
}


