/* Stats Section Overlay Fix */

/* Remove the translucent overlay/pattern */
.stats-section::before {
    display: none !important;
}

/* Change background to light and text to dark/black */
.stats-section {
    background: #f8f9fa !important;
    /* Light gray background */
    color: #0F2854 !important;
    /* Dark navy text */
}

.stats-section .container {
    position: relative;
    z-index: 10;
}

/* Make all stat items black/dark */
.stat-item {
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.stat-item i {
    opacity: 1 !important;
    color: #0F2854 !important;
    /* Dark navy icons */
}

.stat-item h3 {
    opacity: 1 !important;
    color: #0F2854 !important;
    /* Dark navy numbers */
}

.stat-item p {
    opacity: 1 !important;
    color: #0F2854 !important;
    /* Dark navy labels */
}