/* Horizontal Scroll and Flex Wrapper */
.timeline-wrapper-9484528e {
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding: 25px 10px;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.1) transparent;
}

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

.timeline-wrapper-9484528e::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.1);
    border-radius: 10px;
}

.timeline-container-9484528e {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    min-width: max-content;
    box-sizing: border-box;
}

/* Flow Direction Configurations */
.timeline-wrapper-9484528e.flow-direction-rtl .timeline-container-9484528e {
    flex-direction: row-reverse;
}

.timeline-wrapper-9484528e.flow-direction-ltr .timeline-container-9484528e {
    flex-direction: row;
}

/* Single Step Node */
.timeline-step-node-9484528e {
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* Ensure step arrow flips correctly depending on direction */
.timeline-wrapper-9484528e.flow-direction-rtl .timeline-arrow-9484528e svg,
.timeline-wrapper-9484528e.flow-direction-rtl .timeline-arrow-9484528e i {
    transform: rotate(180deg);
}

.timeline-wrapper-9484528e.flow-direction-ltr .timeline-container-9484528e .timeline-step-node-9484528e {
    flex-direction: row;
}

.timeline-wrapper-9484528e.flow-direction-rtl .timeline-container-9484528e .timeline-step-node-9484528e {
    flex-direction: row-reverse;
}

/* Step Card Design */
.timeline-card-9484528e {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.timeline-card-9484528e:hover {
    transform: translateY(-2px);
}

/* Number / Badge Circle */
.timeline-badge-9484528e {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 18px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.15);
    flex-shrink: 0;
}

.timeline-badge-9484528e svg,
.timeline-badge-9484528e i {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

/* Headings & Descriptions */
.timeline-title-9484528e {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.timeline-desc-9484528e {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Connector Arrow / Badge between cards */
.timeline-arrow-9484528e {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 10px;
}

.timeline-arrow-9484528e svg,
.timeline-arrow-9484528e i {
    display: block;
    width: 20px;
    height: 20px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .timeline-container-9484528e {
        justify-content: flex-start;
        padding-left: 15px;
        padding-right: 15px;
    }
}
