/* Custom SVG Icons for Professional Look */

/* Performance Icons */
.icon-performance {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.icon-performance-fast {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Social Icons */
.icon-whatsapp {
    width: 24px;
    height: 24px;
    fill: #25D366;
}

.icon-github {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.icon-linkedin {
    width: 24px;
    height: 24px;
    fill: #0077B5;
}

/* Navigation Icons */
.icon-home {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.icon-user {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.icon-projects {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.icon-blog {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.icon-contact {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Status Icons */
.icon-online {
    width: 8px;
    height: 8px;
    fill: #00ff00;
    border-radius: 50%;
}

.icon-offline {
    width: 8px;
    height: 8px;
    fill: #ff0000;
    border-radius: 50%;
}

/* Loading Animation */
.icon-loading {
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Custom Badge Icons */
.badge-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Professional Hover Effects */
.icon-hover {
    transition: all 0.3s ease;
}

.icon-hover:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Icon Animations */
.icon-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.icon-bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}
