.timeline-container {
    position: relative;
    width: 100%;
}

.timeline-line-bg {
    position: absolute;
    left: 50%;
    width: 2px;
    background: #662979;
    transform: translateX(-50%);
    z-index: 1;
}


.timeline-line-progress {
    position: absolute;
    left: 50%;
    width: 5px;
    height: 0px;
    border-radius: 35px;
    background: #662979;
    transform: translateX(-50%);
    z-index: 2;
    transition: height 0.05s linear;
}

.timeline-row {
    position: relative;
    margin-bottom: 70px;
    display: flex;
    opacity: 2;
    filter: blur(2px);
    justify-content: center;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

/* Left & Right Card Alignment */
.timeline-row.left {
    justify-content: flex-start;
}

.timeline-row.right {
    justify-content: flex-end;
}

/* Center Node Circle Dot */
.timeline-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;

    /* STRETCH FIXES */
    box-sizing: border-box;
    flex-shrink: 0;
    max-width: 14px;
    max-height: 14px;

    background-color: #662979;
    border: 3px solid #662979;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active Point Circle Glow & Fill */
.timeline-row.active .timeline-node {
    background-color: #662979;
    border-color: #662979;
    box-shadow: 0 0 0 5px rgba(107, 33, 168, 0.25);
    transform: translate(-50%, -50%) scale(1.35);
}

.timeline-row.active {
    opacity: 1;
    filter: blur(0px);
}

/* Horizontal Connector Lines */
.timeline-connector {
    position: absolute;
    top: 50%;
    height: 2px;
    background-color: #662979;
    width: 50px;
    z-index: -1;
    transition: background-color 0.3s ease;
}

.timeline-row.left .timeline-connector {
    right: 50%;
}

.timeline-row.right .timeline-connector {
    left: 50%;
}

.timeline-row.active .timeline-connector {
    background-color: #662979;
}

/* Main Card Layout */
.timeline-card {

    width: calc(94%);
    background: var(--plainclr);
    border: 1px solid #D8D8D8;
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(107, 33, 168, 0.05);
    transition: all 0.4s ease;

}

.timeline-row.active .timeline-card {

    border-color: var(--themeprimaryclr);
    box-shadow: 0 30px 60px -15px rgba(88, 28, 135, 0.14);
}

/* Left Row Content (Right-aligned text) */
.timeline-row.left .card-title,
.timeline-row.left .card-desc {
    text-align: right;
}

/* Right Row Content (Left-aligned text) */
.timeline-row.right .card-title,
.timeline-row.right .card-desc {
    text-align: left;
}

.timeline-row .card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--darkclr);
    margin-bottom: 15px;
}

/* Image Wrapper at Bottom of Card */
.card-image-wrap {
    width: 100%;
    height: 350px;
    border-radius: 8px;

    padding-left: 39px;
    overflow: hidden;
    background: #fcfaff;
}

.card-image-wrap img {
    border-radius: 8px;
}

.right .card-image-wrap {
    padding-right: 39px;
    padding-left: 0 !important;
}

.right .card-image-wrap {
    padding-right: 39px;
}

.left .timeline-card {
    margin-right: 50px;
    margin-top: 50px;
}

.right .timeline-card {
    margin-left: 38px;
    margin-top: 50px;
}

.card-image-wrap svg,
.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.timeline_section .hero-title span {
    color: var(--themeprimaryclr);
}

.timeline_section .hero-title {
    line-height: 20px;
}

.timeline_section .hero-title span img {

    height: 48px;
    margin-top: -19px;
    margin-left: 3px;
}