/* STATS SECTION */
.stats-section{
    padding:100px 20px;
    display:flex;
    justify-content:center;
    background:#fff;
}

/* MAIN BOX */
.stats-box{
    max-width:1200px;
    width:100%;
    background:linear-gradient(135deg,#050505,#111);
    border-radius:32px;
    padding:60px 70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    overflow:hidden;
    box-shadow:0 40px 80px rgba(0,0,0,.35);
}

/* GLOW */
.stats-box::after{
    content:'';
    position:absolute;
    inset:-40%;
    background:radial-gradient(circle at top right,
        rgba(255,183,3,.25),
        transparent 55%);
    animation:glowMove 10s linear infinite;
}

@keyframes glowMove{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

/* ITEM */
.stat-item{
    text-align:center;
    z-index:2;
    transition:.4s ease;
}
.stat-item:hover{
    transform:translateY(-8px) scale(1.03);
}

/* ICON */
.stat-item .icon{
    width:54px;
    height:54px;
    margin:0 auto 14px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    box-shadow:0 0 25px rgba(255,183,3,.35);
}

/* NUMBER */
.stat-item h2{
    font-size:48px;
    font-weight:900;
    color:#fff;
    margin-bottom:6px;
}

/* LABEL */
.stat-item p{
    font-size:15px;
    letter-spacing:.4px;
    color:rgba(255,255,255,.8);
}

/* DIVIDER */
.divider{
    width:1px;
    height:70px;
    background:linear-gradient(
        transparent,
        rgba(255,255,255,.4),
        transparent
    );
}

/* RESPONSIVE */
@media(max-width:992px){
    .stats-box{
        flex-wrap:wrap;
        gap:40px;
        padding:50px 30px;
        justify-content:center;
    }
    .divider{display:none;}
    .stat-item{width:45%;}
}

@media(max-width:576px){
    .stat-item{width:100%;}
    .stat-item h2{font-size:40px;}
}
