/* Project Card Animations */
.project-card-animate {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-animate.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Section Title Animation */
.section-title {
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 0.8s ease-out forwards;
}

@keyframes titleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Animation for Hero Content */
@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-content .social-links {
    animation: float-gentle 3s ease-in-out infinite;
}

/* Pulse Animation for CTA Button */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(124, 58, 237, 0.7);
    }
}

.btn-primary {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Navbar slide down animation */
.navbar {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}