﻿/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Apply fade-in on page load */
.footer-wrapper {
    animation: fadeIn 1s ease-in-out;
}

/* Classes for scroll-triggered animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

    .animate-slide-up.in-view,
    .animate-scale-in.in-view {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

/* Ensure social icons have hover effects */
.socials a i {
    transition: all 0.3s ease-in-out;
}

    .socials a i:hover {
        transform: translateY(-2px) scale(1.1);
    }
