.statistics-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    background-image: url('../assets/office-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #0A192F;
    position: relative;
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}
.statistics-section .container {
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    transition: transform 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-5px);
}
.stat-icon {
    font-size: 3rem;
    color: #0A192F;
    margin-bottom: 25px;
    opacity: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(10, 25, 47, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.stat-item:hover .stat-icon {
    background: #0A192F;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(10, 25, 47, 0.2);
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0A192F;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    line-height: 1;
}
.stat-label {
    font-size: 1.15rem;
    color: #4a5568;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stat-number {
        font-size: 3rem;
    }
}