/* ===============================
   STATS SECTION WITH IMAGE BG
=================================*/

.stats-section {
    position: relative;
    background: url("/assets/images/stats-background.png") center center / cover
        no-repeat;
    padding: 60px 0;
    color: #ffffff;
    overflow: hidden;
}

/* Dark overlay for readability */
.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 40, 0.75);
    z-index: 1;
}

/* Keep content above overlay */
.stats-section .container {
    z-index: 2;
}

/* Title */
.stats-title {
    font-size: 32px;
    font-weight: 600;
}

/* Big Numbers */
.stats-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Labels */
.stats-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Description */
.stats-description {
    font-size: 18px;
    opacity: 0.85;
    max-width: 900px;
    margin: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-number {
        font-size: 40px;
    }

    .stats-title {
        font-size: 28px;
    }
}
