/* css/footer.css */

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    background-color: #E63946;
    border-color: #E63946;
    transform: translateY(-5px);
}

/* Seamless blend with the Contact section */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}