.bilin-statistics{

    padding:100px 0;

    background:#0C8DB3;

}

.statistics-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:30px;

}

.stat-card{

    background:#ffffff;

    border-radius:20px;

    text-align:center;

    padding:45px 20px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card h3{

    font-size:44px;

    color:#0C8DB3;

    margin-bottom:12px;

    font-weight:800;

}

.stat-card span{

    font-size:18px;

    color:#555;

}
@media (max-width:992px){

.statistics-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:576px){

.statistics-grid{

grid-template-columns:1fr;

}

}