body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

@media(max-width:400px) {
    .container {
        width: 100%;
        margin-top: 10%;
        
    }
}

@media (max-width: 600px) {

    .container {
        width: 100%;
    }
}

.icon-title {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* PROTEM color branding */
.glow-tools {
    background: linear-gradient(135deg, #005F99, #00C6FF);
    box-shadow: 0 0 18px rgba(0, 198, 255, 0.6);
}
.glow-performance {
    background: linear-gradient(135deg, #00C6FF, #4facfe);
    box-shadow: 0 0 18px rgba(0, 198, 255, 0.6);
}
.glow-power {
    background: linear-gradient(135deg, #0077b6, #00c6ff);
    box-shadow: 0 0 18px rgba(0, 119, 182, 0.6);
}
.glow-trust {
    background: linear-gradient(135deg, #003f5c, #2a9df4);
    box-shadow: 0 0 18px rgba(0, 63, 92, 0.6);
}

/* Bounce glow effect on hover */
.stat-icon:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0, 198, 255, 0.8);
}
