
    /* Container */
    .stats-section {
        padding: 60px 20px;
        background: linear-gradient(135deg, #0f0f1f, #1f1f3f);
        color: #fff;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .stats-section h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
        letter-spacing: 1px;
        position: relative;
    }
    
    /* Stats grid */
    .stats-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .stat-card {
        background: rgba(255, 255, 255, 0.05);
        padding: 30px 20px;
        border-radius: 15px;
        width: 200px;
        transition: transform 0.5s, background 0.5s;
        opacity: 0;
        transform: translateY(50px);
    }
    
    .stat-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Number styling */
    .stat-number {
        font-size: 3em;
        font-weight: bold;
        color: #00ffea;
        margin-bottom: 10px;
    }
    
    /* Label styling */
    .stat-label {
        font-size: 1.2em;
        color: #ccc;
    }