.stats-section {
    background: #050b18;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Horizontal Timeline Line */
.stats-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transform: translateY(-50%);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.stats-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-icon-wrapper {
    margin-bottom: 40px;
    transition: transform 0.3s;
}

.stats-item:hover .stats-icon-wrapper {
    transform: translateY(-10px);
}

.stats-icon-wrapper i {
    font-size: 40px;
    color: #fff;
}

.stats-marker {
    width: 15px;
    height: 15px;
    background: var(--primary-green);
    border-radius: 50%;
    margin: 10px 0;
    box-shadow: 0 0 10px var(--primary-green);
}

.stats-info {
    margin-top: 20px;
}

.stats-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stats-label {
    display: block;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .stats-line {
        display: none;
    }
    
    .stats-grid {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .stats-item {
        flex: 1 1 40%; /* 2 items per row */
    }
    
    .stats-marker {
        display: none;
    }
    
    .stats-icon-wrapper {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .stats-item {
        flex: 1 1 100%; /* 1 item per row */
    }
}
