section.timeline-section-new {
    background-image: none !important;
    /* padding: 60px 0; */
    overflow: hidden;
    color: #333;
    font-family: inherit;
    position: relative;
    width: 100%;
}

.timeline-container-fluid {
    width: 100%;
    /* padding: 0 40px; */
}

.timeline-layout {
    background-color: #fbb03b !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 40px;
    width: 100%;
}

/* Left side header */
.timeline-header-side {
    flex: 0 0 150px;
    background-color: transparent;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.journey-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.over-text {
    font-size: 24px;
    letter-spacing: 2px;
}

.number-wrapper {
    position: relative;
    padding: 10px 0;
}

.years-number {
    font-size: 110px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.years-text {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 800;
}

/* Main timeline scrollable area */
.timeline-main-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    overflow-x: auto;
    padding: 30px 0;
    scrollbar-width: thin;
    scrollbar-color: #757575 transparent;
}

.timeline-main-wrapper::-webkit-scrollbar {
    height: 6px;
}

.timeline-main-wrapper::-webkit-scrollbar-thumb {
    background-color: #757575;
    border-radius: 10px;
}

.timeline-main-scroll {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    /* padding-bottom: 20px; */
    /* min-width: 1350px; */
}

/* Central Horizontal Line */
.timeline-axis-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 85px;
    background-color: #757575;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.timeline-axis-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-image: repeating-linear-gradient(to right, #fff, #fff 15px, transparent 15px, transparent 30px);
    transform: translateY(-50%);
}

.timeline-items-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    position: relative;
    z-index: 2;
    height: 400px;
    gap: 0;
    padding-right: 100px;
    /* Space at end for scrolling */
}

.timeline-milestone-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    /* Balanced space */
    position: relative;
}

.timeline-milestone-new.top {
    justify-content: flex-start;
}

.timeline-milestone-new.bottom {
    justify-content: flex-end;
}

.milestone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 50%;
    /* Occupy exactly half the container */
}

.top .milestone-content {
    flex-direction: column;
    justify-content: flex-end;
    /* Push to axis from top */
}

.bottom .milestone-content {
    flex-direction: column;
    justify-content: flex-start;
    /* Push to axis from bottom */
}

.milestone-info {
    position: absolute;
    left: 20px;
    bottom: 35%;
    /* Precise side offset from 20px node */
    max-width: 160px;
    text-align: left;
    width: max-content;
}

.bottom .milestone-info {
    top: 35%;
    /* Balanced distance below axis */
}

.milestone-info h3 {
    font-size: 36px;
    /* High prominence as in reference */
    font-weight: 900;
    margin: 0;
    color: #000;
    display: block;
    line-height: 1;
}

.milestone-info p {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
    color: #1a1a1a;
    display: block;
}

.milestone-stem {
    width: 2px;
    height: 200px;
    position: relative;
    background-color: #757575;
}

/* Milestone Node/Dot */
.milestone-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background-color: #fbb03b;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #fbb03b;
    z-index: 10;
}

.node-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .timeline-layout {
        flex-direction: column;
    }

    .timeline-header-side {
        flex: none;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .timeline-main-scroll {
        min-width: 2500px;
    }

    .years-number {
        font-size: 80px;
    }
}