.stats-timeline-section {
    background-color: #0d0d0d;
    padding-top: 100px;
    padding-bottom: 40px;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    text-align: center;
}

.stats-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #666;
    margin-bottom: 60px;
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-item h3 {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0 10px;
    letter-spacing: -1px;
}

.timeline-item p {
    font-size: 16px;
    color: #999;
    max-width: 400px;
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.icon-box.purple { background: #6366f1; }
.icon-box.grey { background: #333; }
.icon-box.dark-grey { background: #222; }
.icon-box.blue { background: #3b82f6; }

.stats-cta {
    margin-top: 80px;
}

.explore-btn {
    background: #ff6933;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none; 
    display: inline-flex; 
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.explore-btn:hover {
    background: #e55a2b;
    color: white; 
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 105, 51, 0.3);
}

@media (max-width: 768px) {
    .stats-timeline-section {
        padding: 40px 0; 
    }

    .stats-main-title {
        font-size: 26px; 
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .timeline-wrapper {
        gap: 50px; 
    }

    .timeline-item h3 {
        font-size: 36px; 
    }
}

@media (max-width: 480px) {
    .stats-main-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .timeline-wrapper {
        gap: 40px;
    }

    .vertical-line {
        background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.1) 90%, transparent);
    }

    .timeline-item h3 {
        font-size: 28px;
        margin: 15px 0 8px;
    }

    .timeline-item p {
        font-size: 14px;
        padding: 0 15px;
        line-height: 1.5;
    }

    .icon-box {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .stats-cta {
        margin-top: 50px;
    }

    .explore-btn {
        width: 90%; 
        justify-content: center;
        font-size: 15px;
    }
}

@media (max-width: 350px) {
    .timeline-item h3 {
        font-size: 24px;
    }
}