/* Statistics Section Styles */
.stats {
    background-color: var(--bg-light-dark);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--bg-darker);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 75%);
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.stat-item {
    text-align: center;
    padding: 35px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    transition: all var(--transition-medium) ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 220px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(111, 66, 193, 0.05), rgba(52, 152, 219, 0.05));
    z-index: -1;
    transition: all var(--transition-medium) ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2);
}

.stat-item:hover::before {
    background: linear-gradient(45deg, rgba(111, 66, 193, 0.1), rgba(52, 152, 219, 0.1));
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, rgba(111, 66, 193, 0.1), rgba(52, 152, 219, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium) ease;
}

.stat-icon i {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

.stat-item:hover .stat-icon i {
    background: var(--text-light);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all var(--transition-medium) ease;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
    opacity: 1;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .stats {
        padding: 50px 0;
    }
    
    .stats-container {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .stat-item {
        padding: 20px 12px;
        min-width: 140px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .stat-icon i {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .stats-container {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 120px;
        max-width: 150px;
        flex: 1;
    }
}   
