/* Global & Core Layout */
.mp-06e02623-container {
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    overflow: hidden;
}

.mp-06e02623-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.mp-06e02623-header {
    text-align: center;
    margin: 0 auto 100px auto;
}

.mp-06e02623-small-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mp-06e02623-main-heading {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
}

/* Outer Timeline Context */
.mp-06e02623-timeline-outer {
    position: relative;
    padding: 120px 0;
}

/* Connectors/Progress Line Base */
.mp-06e02623-progress-line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    right: 10%;
    height: 4px;
    z-index: 1;
}

.mp-06e02623-progress-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.mp-06e02623-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%; /* Dynamic scroll control */
    height: 100%;
    border-radius: 4px;
    transition: width 0.1s linear;
}

/* Steps Row layout */
.mp-06e02623-timeline-steps {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 30px;
}

/* Step Card Alternating logic */
.mp-06e02623-step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Cards pushed ABOVE the line */
.mp-06e02623-pos-up {
    flex-direction: column;
}
.mp-06e02623-pos-up .mp-06e02623-card-box {
    margin-bottom: 40px;
}

/* Cards pushed BELOW the line */
.mp-06e02623-pos-down {
    flex-direction: column-reverse;
}
.mp-06e02623-pos-down .mp-06e02623-card-box {
    margin-top: 40px;
}

/* Card Box style */
.mp-06e02623-card-box {
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
}

/* Hover Animation Effects */
.mp-06e02623-card-box:hover {
    transform: translateY(-8px);
}
.mp-06e02623-pos-down .mp-06e02623-card-box:hover {
    transform: translateY(8px);
}

/* Node/Icon container placed directly ON the line */
.mp-06e02623-node-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mp-06e02623-step-node {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mp-06e02623-step-card:hover .mp-06e02623-step-node {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.mp-06e02623-step-node svg,
.mp-06e02623-step-node i {
    display: block;
    line-height: 1;
}

/* Card Content elements */
.mp-06e02623-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.mp-06e02623-step-number {
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.mp-06e02623-step-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.mp-06e02623-step-desc {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Tablet & Mobile Responsiveness overrides (Vertical layout) */
@media (max-width: 991px) {
    .mp-06e02623-timeline-steps {
        gap: 20px;
    }
    .mp-06e02623-progress-line {
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 767px) {
    .mp-06e02623-timeline-outer {
        padding: 40px 0;
    }

    .mp-06e02623-timeline-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }
    
    .mp-06e02623-progress-line {
        left: 27px; /* Align vertical timeline under the nodes */
        top: 20px;
        bottom: 20px;
        width: 4px;
        height: auto;
        right: auto;
        transform: none;
    }

    .mp-06e02623-progress-bar {
        width: 100%;
        height: 0%; /* Scrolling vertical active progress */
        transition: height 0.1s linear;
    }

    .mp-06e02623-step-card {
        flex-direction: row !important; /* Force layout alignment to left */
        align-items: flex-start;
        gap: 20px;
    }

    .mp-06e02623-pos-up .mp-06e02623-card-box,
    .mp-06e02623-pos-down .mp-06e02623-card-box {
        margin: 0 !important;
        order: 2;
    }

    .mp-06e02623-node-wrapper {
        order: 1;
        flex-shrink: 0;
    }

    .mp-06e02623-card-box {
        min-height: auto;
    }

    .mp-06e02623-step-card:hover {
        transform: translateX(6px);
    }
    .mp-06e02623-card-box:hover {
        transform: none !important;
    }
}
