/* Social Media Icons */
.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-links a {
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-links a:hover {
    transform: translateY(-3px);
}

.footer-links i {
    font-size: 22px;
}

.footer-links .fa-instagram {
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links .fa-youtube {
    color: #FF0000;
}

.footer-links .fa-linkedin {
    color: #0A66C2;
}

.footer-links a:hover i {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}
