.stats-section{
    padding:50px 5%;
}


.stats-wrapper{

    max-width:700px;
    margin:auto;

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.1);

    border-radius:25px;

    padding:30px;

}


.stats-wrapper h2{

    text-align:center;

    color:#fff;

    font-size:22px;

    margin-bottom:25px;

}



.stats-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}



.stat-item{

    background:rgba(255,255,255,0.05);

    border-radius:18px;

    padding:25px 10px;

    text-align:center;

}



.stat-item h3{

    color:#8B5CF6;

    font-size:32px;

    margin-bottom:8px;

}



.stat-item p{

    color:#ccc;

    font-size:14px;

}



@media(max-width:600px){

.stats-grid{

grid-template-columns:1fr 1fr;

}

}

.stat-item{

    position:relative;
    overflow:hidden;

}


.stat-item::before{

    content:"";

    position:absolute;

    width:100px;

    height:100px;

    background:#8B5CF6;

    filter:blur(60px);

    opacity:.2;

    top:-40px;

    left:-40px;

}



.stat-item:hover h3{

    transform:scale(1.1);

}



.stat-item h3{

    transition:.3s ease;

}