/*==================================================
  SVFutureTechAI Statistics Component
====================================================*/

/*----------------------------------
  Homepage Statistics
-----------------------------------*/

.sv-home-stats{
    position:relative !important;
    z-index:10 !important;
    margin-top:20px !important;
    margin-bottom:20px !important;
}

.sv-home-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(220px,1fr));
    gap:24px;
    align-items:stretch;
}

/*----------------------------------
  Generic Statistics Section
-----------------------------------*/

.sv-statistics-section{
    padding:80px 0;
}

.sv-statistics-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 50px;
}

.sv-statistics-title{
    font-size:40px;
    font-weight:700;
    margin-bottom:15px;
}

.sv-statistics-subtitle{
    font-size:17px;
    color:#6B7280;
    line-height:1.7;
}

/*----------------------------------
  Statistics Grid
-----------------------------------*/

.sv-statistics-grid,
.sv-stat-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
}

/*----------------------------------
  Statistics Card
-----------------------------------*/

.sv-stat-card{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:16px;
    padding:22px;
    min-height:95px;
    transition:.35s;
    box-shadow:0 8px 24px rgba(15,23,42,.06);
}

.sv-stat-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(15,23,42,.12);
}
/*----------------------------------
  Icon
-----------------------------------*/

.sv-stat-icon{
    width:54px;
    height:54px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#EFF6FF;
    color:#2563EB;
    border-radius:14px;
    font-size:22px;
}

.sv-stat-icon i{
    font-size:22px;
}

/*----------------------------------
  Content
-----------------------------------*/

.sv-stat-content{
    flex:1;
}

.sv-counter,
.sv-stat-number{
    margin:0;
    font-size:28px;
    font-weight:700;
    line-height:1;
    color:#111827;
}

.sv-stat-content h4{
    margin:5px 0 0;
    font-size:15px;
    color:#6B7280;
}

.sv-stat-plus{
    color:#2563EB;
}

.sv-stat-content h4,
.sv-stat-label{
    margin:6px 0 0;
    font-size:15px;
    font-weight:600;
    color:#111827;
}

.sv-stat-content p{
    margin:3px 0 0;
    font-size:13px;
    color:#6B7280;
    line-height:1.5;
}

/*----------------------------------
  Featured Card
-----------------------------------*/

.sv-stat-card--featured{
    background:linear-gradient(135deg,#2563EB,#1D4ED8);
    border:none;
}

.sv-stat-card--featured .sv-counter,
.sv-stat-card--featured .sv-stat-number,
.sv-stat-card--featured .sv-stat-label,
.sv-stat-card--featured .sv-stat-content h4,
.sv-stat-card--featured p{
    color:#ffffff;
}

.sv-stat-card--featured .sv-stat-icon{
    background:rgba(255,255,255,.15);
    color:#ffffff;
}

/*----------------------------------
  Counter Animation
-----------------------------------*/

.sv-counter{
    transition:all .3s ease;
}

/*----------------------------------
  Responsive
-----------------------------------*/

@media (max-width:1199px){

    .sv-home-stats-grid,
    .sv-statistics-grid,
    .sv-stat-grid{

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

    }

}

@media (max-width:767px){

    .sv-home-stats{
        margin-top:30px;
        margin-bottom:50px;
    }

    .sv-home-stats-grid,
    .sv-statistics-grid,
    .sv-stat-grid{

        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:12px;

    }

    .sv-stat-card{
        padding:16px;
        min-height:80px;
    }

    .sv-counter,
    .sv-stat-number{
        font-size:22px;
    }

    .sv-stat-icon{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .sv-stat-content h4{
        font-size:13px;
    }

}