/* =========================================
   STATS SECTION
========================================= */

.stats-section {
    padding: 80px 0;
    background: #0d2d73;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* =========================================
   STATS GRID
========================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* =========================================
   STAT BOX
========================================= */

.stat-box {
    text-align: center;
    color: #fff;
    min-width: 0;
    box-sizing: border-box;
}

.stat-box i {
    display: block;
    font-size: 48px;
    color: #d4a017;
    margin-bottom: 20px;
}

.stat-box h3 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 10px;
    color: #fff;
}

.stat-box p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    color: #fff;
    opacity: .9;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .stats-section {
        padding: 65px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 25px;
    }

    .stat-box i {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .stat-box h3 {
        font-size: 36px;
    }

    .stat-box p {
        font-size: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .stats-section {
        padding: 55px 15px;
        overflow: hidden;
    }

    .stats-grid {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 15px;
    }

    .stat-box {
        width: 100%;
        min-width: 0;
    }

    .stat-box i {
        font-size: 38px;
        margin-bottom: 12px;
    }

    .stat-box h3 {
        font-size: 30px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .stat-box p {
        font-size: 15px;
        line-height: 1.4;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .stats-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .stats-grid {
        gap: 35px 10px;
    }

    .stat-box i {
        font-size: 34px;
    }

    .stat-box h3 {
        font-size: 26px;
    }

    .stat-box p {
        font-size: 14px;
    }

}