/* GSAP Animation Classes */
.gsap-fade-in {
    opacity: 0;
}

.gsap-slide-up {
    opacity: 0;
    transform: translateY(50px);
}

.gsap-slide-down {
    opacity: 0;
    transform: translateY(-50px);
}

.gsap-slide-left {
    opacity: 0;
    transform: translateX(50px);
}

.gsap-slide-right {
    opacity: 0;
    transform: translateX(-50px);
}

.gsap-scale-in {
    opacity: 0;
    transform: scale(0.8);
}

/* Card Hover Effects */
.card-hover-effect {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover-effect:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Button Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Gradient Text Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background-size: 200% auto;
    animation: gradientShift 5s ease infinite;
}