/* Modern Trending Social Media Icons with Glassmorphic and Neumorphic Effects */

/* Header Social Icons */
.social-icons-list {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-label {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    opacity: 0.9;
}

.social-icon-item {
    position: relative;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon {
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.social-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.social-tooltip::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.8);
}

/* Hover Effects */
.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover .social-tooltip {
    opacity: 1;
    bottom: -40px;
}

/* Platform Specific Colors */
.facebook-social:hover {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.4);
}

.whatsapp-social:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.instagram-social:hover {
    background: linear-gradient(135deg, #e4405f, #f56040, #ffdc80);
    box-shadow: 0 15px 40px rgba(228, 64, 95, 0.4);
}

.linkedin-social:hover {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    box-shadow: 0 15px 40px rgba(0, 119, 181, 0.4);
}

/* Active State Animation */
.social-link:active {
    transform: translateY(-2px) scale(1.05);
}

/* Pulse Animation */
@keyframes socialPulse {
    0% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2); }
    100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
}

.social-link {
    animation: socialPulse 3s ease-in-out infinite;
}

/* Footer Social Icons */
.footer-social-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
}

.footer-social-item {
    position: relative;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-social-icon {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

/* Footer Hover Effects */
.footer-social-link:hover {
    transform: translateY(-8px) rotate(5deg) scale(1.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-social-link:hover::before {
    left: 100%;
}

.footer-social-link:hover .footer-social-icon {
    color: white;
    transform: scale(1.2);
}

/* Footer Platform Specific Colors */
.facebook-footer:hover {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    box-shadow: 0 20px 50px rgba(24, 119, 242, 0.5);
}

.whatsapp-footer:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
}

.instagram-footer:hover {
    background: linear-gradient(135deg, #e4405f, #f56040, #ffdc80);
    box-shadow: 0 20px 50px rgba(228, 64, 95, 0.5);
}

.linkedin-footer:hover {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    box-shadow: 0 20px 50px rgba(0, 119, 181, 0.5);
}



/* Responsive Design */
@media (max-width: 768px) {
    .social-icons-list {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    
    .social-icon {
        font-size: 18px;
    }
    
    .footer-social-list {
        gap: 15px;
        justify-content: center;
    }
    
    .footer-social-link {
        width: 45px;
        height: 45px;
        border-radius: 15px;
    }
    
    .footer-social-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .social-icons-list {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        border-radius: 10px;
    }
    
    .social-icon {
        font-size: 16px;
    }
    
    .social-label {
        font-size: 12px;
        margin-right: 5px;
    }
    
    .footer-social-list {
        gap: 12px;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    
    .footer-social-icon {
        font-size: 18px;
    }
}

/* Glowing Effect on Focus */
.social-link:focus,
.footer-social-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Loading Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.social-link.loading::after,
.footer-social-link.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}


.smallfollow{
    font-size: 14px;
    
    
}