/* =========================================
   STATISTICS SECTION
========================================= */

.stats-section {
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.stats-section .row {
    align-items: stretch;
}

.stats-section .col-lg-3,
.stats-section .col-md-6 {
    display: flex;
}

.stat-card {
    width: 100%;
    background: #fff;
    padding: 36px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}


/* =========================================
   ICON
========================================= */

.stat-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #1E293B;
    font-size: 20px;
}

.stat-icon i {
    line-height: 1;
}


/* =========================================
   NUMBER
========================================= */

.stat-number {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #0F4C81;
    margin-bottom: 12px;
}


/* =========================================
   TITLE
========================================= */

.stat-card h5 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #444;
    margin: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .stats-section {
        margin-top: 25px;
    }

    .stat-card {
        padding: 32px 22px;
        min-height: 190px;
    }

    .stat-number {
        font-size: 46px;
    }

    .stat-card h5 {
        font-size: 17px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .stats-section {
        margin-top: 25px;
        padding-bottom: 20px;
    }

    .stats-section .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 20px;
    }

    .stats-section .col-lg-3,
    .stats-section .col-md-6 {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .stat-card {
        min-height: 0;
        height: auto;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
        margin-bottom: 8px;
    }

    .stat-number {
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .stat-card h5 {
        font-size: 17px;
        line-height: 1.35;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .stats-section {
        margin-top: 25px;
    }

    .stats-section .col-lg-3,
    .stats-section .col-md-6 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .stat-card {
        padding: 27px 18px;
    }

    .stat-number {
        font-size: 38px;
    }

    .stat-card h5 {
        font-size: 16px;
    }

}