/* Wrapper */
.dst-timeline-wrapper {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 80px auto;
    padding: 40px 0;
}

/* Center Line */
.dst-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

/* Progress Line */
.dst-progress-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0;
    background: #a540dc; /* BRAND COLOR */
    transform: translateX(-50%);
    transition: height 0.4s ease;
}

/* Timeline Item */
.dst-item {
    position: relative;
    width: 50%;
    padding: 40px 60px;
    box-sizing: border-box;
}

/* Left / Right Layout */
.dst-item.left {
    left: 0;
    text-align: right;
}

.dst-item.right {
    left: 50%;
    text-align: left;
}

/* Node */
.dst-node {
    position: absolute;
    top: 40px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
    border: solid 1px;
    border-color:#a540dc;
}

.dst-item.active .dst-node {
    background: #a540dc; /* brand color */
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(165, 64, 220, 0.15);
}
.dst-item.left .dst-node {
    right: -9px;
}

.dst-item.right .dst-node {
    left: -9px;
}

/* Card */
.dst-card {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

/* Title */
.dst-title {
    margin-bottom: 15px;
    font-size: 22px;
    color: #222;
    transition: all 0.4s ease;
}

/* Description */
.dst-description p {
    margin: 0;
    color: #555;
    transition: all 0.4s ease;
}

/* ACTIVE STATE */
.dst-item.active .dst-card {
    background: #a540dc; /* CHANGE BRAND COLOR HERE */
    transform: translateY(-5px);
}

.dst-item.active .dst-title,
.dst-item.active .dst-description p {
    color: #ffffff;
}

.dst-title{
    font-size: 30px !important;
}
/* Responsive */
@media (max-width: 768px) {

    .dst-item,
    .dst-item.left,
    .dst-item.right {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 80px;
    }

    .dst-line,
    .dst-progress-line {
        left: 30px;
    }

    .dst-node {
        left: 21px !important;
        right: auto !important;
    }
    .dst-title{
    font-size: 18px !important;
}
}

.dst-card {
    background: #f4f4f4;
}

.dst-title {
    color: #222;
}

.dst-description p {
    color: #555;
}