/* ==========================================================
   STATISTICS
========================================================== */

.statistics{

    background:linear-gradient(135deg,#081F3D,#0E2E5A);

    color:#fff;

}

.statistics .section-title{

    color:#fff;

}

.statistics .section-description{

    color:rgba(255,255,255,.80);

}

.statistics-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(12px);

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

}

.stat-box h2{

    font-size:52px;

    color:var(--secondary);

    margin-bottom:15px;

    font-family:'Poppins',sans-serif;

}

.stat-box h4{

    font-size:18px;

    color:#fff;

    font-weight:600;

}