/* Fade In Up Animation */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide In From Left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In From Right */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In From Top */
.slide-in-top {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease;
}

.slide-in-top.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In From Bottom */
.slide-in-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.slide-in-bottom.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Scale Up Animation */
.scale-up {
    animation: scaleUp 0.5s ease forwards;
    opacity: 0;
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Delays */
.delay-100 {
    animation-delay: 100ms;
}
.delay-200 {
    animation-delay: 0.2s;
}
.delay-300 {
    animation-delay: 300ms;
}
.delay-400 {
    animation-delay: 0.4s;
}
.delay-500 {
    animation-delay: 500ms;
}
.delay-600 {
    animation-delay: 0.6s;
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.05);
}

.hover-lift {
    transition: transform 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
}
