/*==================================================
PREMIUM STATISTICS
==================================================*/

.statistics-section{

padding:100px 0;

background:linear-gradient(135deg,#0F4C81,#163E73);

position:relative;

overflow:hidden;

color:#fff;

}

.statistics-section::before{

content:"";

position:absolute;

top:-180px;

right:-180px;

width:500px;

height:500px;

background:rgba(255,255,255,.05);

border-radius:50%;

}

.statistics-section::after{

content:"";

position:absolute;

bottom:-180px;

left:-180px;

width:420px;

height:420px;

background:rgba(255,255,255,.04);

border-radius:50%;

}

.statistics-section .section-header h2,

.statistics-section .section-header p,

.statistics-section .section-tag{

color:#fff;

}

.statistics-section .section-tag{

background:rgba(255,255,255,.12);

}

.statistics-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.stat-card{

position:relative;

background:rgba(255,255,255,.10);

backdrop-filter:blur(15px);

border:1px solid rgba(255,255,255,.15);

border-radius:24px;

padding:40px 25px;

text-align:center;

transition:.35s;

overflow:hidden;

}

.stat-card:hover{

transform:translateY(-10px);

background:rgba(255,255,255,.16);

box-shadow:0 25px 60px rgba(0,0,0,.20);

}

.stat-icon{

width:85px;

height:85px;

margin:0 auto 22px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:rgba(255,255,255,.15);

font-size:34px;

}

.stat-card h2{

font-size:48px;

font-weight:800;

margin-bottom:10px;

color:#fff;

}

.stat-card h5{

font-size:20px;

font-weight:700;

margin-bottom:10px;

}

.stat-card p{

margin:0;

font-size:15px;

line-height:1.8;

color:rgba(255,255,255,.90);

}

.achievement-row{

margin-top:80px;

padding:40px;

border-radius:30px;

background:rgba(255,255,255,.08);

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.achievement-item{

text-align:center;

}

.achievement-item h3{

font-size:36px;

font-weight:800;

margin-bottom:8px;

}

.achievement-item span{

font-size:15px;

color:rgba(255,255,255,.85);

}

@media(max-width:1200px){

.statistics-grid{

grid-template-columns:repeat(2,1fr);

}

.achievement-row{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.statistics-section{

padding:80px 0;

}

.statistics-grid{

grid-template-columns:1fr;

}

.achievement-row{

grid-template-columns:1fr;

padding:25px;

}

.stat-card{

padding:30px 20px;

}

.stat-card h2{

font-size:40px;

}

.stat-icon{

width:70px;

height:70px;

font-size:28px;

}

}

@media(max-width:576px){

.statistics-section{

padding:70px 0;

}

.statistics-section .section-header h2{

font-size:30px;

}

.stat-card h2{

font-size:34px;

}

.achievement-item h3{

font-size:28px;

}

}