/* Modern Social Media Icons Styles */

/* Social Links Container */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Base Icon Style */
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Icon Hover Effects */
.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Icon Background Colors */
.social-links a.linkedin {
    background: linear-gradient(145deg, #0077b5, #0e76a8);
}

.social-links a.fiverr {
    background: linear-gradient(145deg, #1dbf73, #19a463);
}

.social-links a.facebook {
    background: linear-gradient(145deg, #3b5998, #344e86);
}

/* Icon Specific Styles */
.social-links a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover i {
    transform: scale(1.2);
}

/* Fiverr Icon Fix */
.social-links a.fiverr i {
    font-weight: bold;
    font-size: 1.1rem;
    /* Ensure the icon is visible */
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Custom Fiverr icon fallback */
.social-links a.fiverr i.fa-fiverr:before {
    content: 'f';  /* Simple fallback text */
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: bold;
}

/* Pulse Animation for Icons */
@keyframes socialPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Apply animations */
.social-links a {
    animation: socialPulse 2s infinite;
}

.social-links a:nth-child(1) {
    animation-delay: 0s;
}

.social-links a:nth-child(2) {
    animation-delay: 0.3s;
}

.social-links a:nth-child(3) {
    animation-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
}