/* ==========================================
   QUICK STATS SECTION
   Premium Responsive Design
   ========================================== */

:root{
    --primary:#0d6efd;
    --secondary:#00c6ff;
    --dark:#0f172a;
    --light:#ffffff;
    --text:#4b5563;
    --success:#10b981;
}

.quick-stats-section{
    position:relative;
    padding:80px 0;
    background:linear-gradient(135deg,#0f172a,#1e3a8a,#2563eb);
    overflow:hidden;
}

.quick-stats-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-220px;
    left:-180px;
}

.quick-stats-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-180px;
    right:-150px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    position:relative;
    z-index:2;
}

.stat-card{
    background:rgba(255,255,255,0.10);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    transition:.4s ease;
    overflow:hidden;
    position:relative;
}

.stat-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#ffd700,#ff9800,#ff5722);
}

.stat-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.30);
    background:rgba(255,255,255,.15);
}

.stat-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    color:#fff;
    background:linear-gradient(135deg,#00d4ff,#005bea);
    box-shadow:0 10px 25px rgba(0,123,255,.35);
    transition:.4s;
}

.stat-card:hover .stat-icon{
    transform:rotateY(360deg) scale(1.08);
}

.stat-number{
    font-size:46px;
    font-weight:800;
    color:#fff;
    line-height:1;
    margin-bottom:12px;
}

.stat-number span{
    color:#ffd700;
}

.stat-title{
    font-size:18px;
    font-weight:600;
    color:#f8fafc;
    letter-spacing:.5px;
}

.stat-desc{
    margin-top:10px;
    font-size:14px;
    color:rgba(255,255,255,.75);
    line-height:1.6;
}

/* Floating Animation */

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0px);
    }
}

.stat-card{
    animation:float 5s ease-in-out infinite;
}

.stat-card:nth-child(2){
    animation-delay:.5s;
}

.stat-card:nth-child(3){
    animation-delay:1s;
}

.stat-card:nth-child(4){
    animation-delay:1.5s;
}

/* Counter Animation */

.stat-number{
    transition:.4s;
}

.stat-card:hover .stat-number{
    transform:scale(1.08);
}

/* Responsive */

@media(max-width:1200px){

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.quick-stats-section{
    padding:60px 0;
}

.stats-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.stat-card{
    padding:30px 20px;
}

.stat-icon{
    width:75px;
    height:75px;
    font-size:30px;
}

.stat-number{
    font-size:38px;
}

.stat-title{
    font-size:17px;
}

}

@media(max-width:480px){

.stat-card{
    padding:25px 15px;
}

.stat-icon{
    width:65px;
    height:65px;
    font-size:26px;
}

.stat-number{
    font-size:32px;
}

.stat-title{
    font-size:16px;
}

.stat-desc{
    font-size:13px;
}

}