.pt-timeline-wrapper-f87de3e7 {
    position: relative;
    width: 100%;
    margin: 40px 0;
    font-family: inherit;
    box-sizing: border-box;
}

/* Gradient Line passing through center */
.pt-timeline-line-f87de3e7 {
    position: absolute;
    top: 35px; /* Centers with the 70px circles */
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #ff7f50, #00ced1, #1e90ff);
    z-index: 1;
}

/* Steps container */
.pt-timeline-steps-f87de3e7 {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Single Step Item */
.pt-step-item-f87de3e7 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

/* Node containing circle */
.pt-step-node-f87de3e7 {
    margin-bottom: 20px;
}

/* Circle */
.pt-step-circle-f87de3e7 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.pt-step-number-f87de3e7 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Hover effects */
.pt-step-item-f87de3e7:hover .pt-step-circle-f87de3e7 {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Step specific hover glows */
.pt-step-item-f87de3e7:nth-child(4n+1):hover .pt-step-circle-f87de3e7 {
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6), 0 10px 25px rgba(0, 0, 0, 0.4);
}
.pt-step-item-f87de3e7:nth-child(4n+2):hover .pt-step-circle-f87de3e7 {
    box-shadow: 0 0 20px rgba(255, 127, 80, 0.6), 0 10px 25px rgba(0, 0, 0, 0.4);
}
.pt-step-item-f87de3e7:nth-child(4n+3):hover .pt-step-circle-f87de3e7 {
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.6), 0 10px 25px rgba(0, 0, 0, 0.4);
}
.pt-step-item-f87de3e7:nth-child(4n+4):hover .pt-step-circle-f87de3e7 {
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.6), 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Content Area */
.pt-step-content-f87de3e7 {
    max-width: 200px;
}

.pt-step-title-f87de3e7 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.pt-step-desc-f87de3e7 {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

/* RESPONSIVE LAYOUTS */

/* Tablet (reduce spacing) */
@media screen and (max-width: 1024px) {
    .pt-step-item-f87de3e7 {
        padding: 0 10px;
    }
    .pt-step-title-f87de3e7 {
        font-size: 15px;
    }
    .pt-step-desc-f87de3e7 {
        font-size: 12px;
    }
}

/* Mobile (Vertical Stack) */
@media screen and (max-width: 767px) {
    .pt-timeline-line-f87de3e7 {
        left: 35px; /* Align line with center of the vertical stack */
        top: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, #8a2be2, #ff7f50, #00ced1, #1e90ff);
    }
    
    .pt-timeline-steps-f87de3e7 {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    .pt-step-item-f87de3e7 {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 20px 0;
        width: 100%;
    }

    .pt-step-node-f87de3e7 {
        margin-bottom: 0;
        margin-right: 25px;
        position: relative;
        z-index: 3;
    }

    .pt-step-content-f87de3e7 {
        max-width: 100%;
        flex: 1;
    }
}
