/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-3px);
}
