/*=========================================
STATISTICS
=========================================*/

.statistics-section{

    padding:110px 0;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

}

.stat-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border-radius:25px;

    padding:40px 25px;

    text-align:center;

    color:#fff;

    transition:.35s;

    height:100%;

    border:1px solid rgba(255,255,255,.15);

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.15);

}

.stat-icon{

    width:85px;

    height:85px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin:0 auto 25px;

}

.stat-card h2{

    font-size:52px;

    font-weight:800;

    margin-bottom:10px;

}

.stat-card p{

    font-size:18px;

    margin:0;

    opacity:.95;

}

@media(max-width:768px){

    .statistics-section{

        padding:80px 0;

    }

    .stat-card{

        padding:35px 20px;

    }

    .stat-card h2{

        font-size:42px;

    }

}