/* components/footer.css */

/* Smooth hover transitions for links and icons */
.footer-link, .social-icon {
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

/* Ensure social media icons scale smoothly */
.social-icon:hover {
    transform: scale(1.1);
}