/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Badge Hover Glow Effects */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: white;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-badge:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 30px currentColor;
}

.hero-badge-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Icon Glow Effects on Hover */
.hero-badge:hover .hero-badge-icon {
    box-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
    transform: scale(1.15);
}

/* Color-specific glows */
.badge-red:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 30px #ef4444; }
.badge-green:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 30px #10b981; }
.badge-yellow:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 30px #fbbf24; }
.badge-blue:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 30px #009FE3; }
.badge-purple:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 30px #8b5cf6; }
.badge-orange:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 30px #f59e0b; }

/* Stat Box Hover Effects (for homepage) */
.stat-box-home {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box-home:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255,255,255,0.2) !important;
    border-color: rgba(255,255,255,0.4) !important;
}

.badge-link {
    text-decoration: none;
    color: inherit;
}

.badge-link:hover {
    text-decoration: none;
}
