/* Container and Wrapper */
.dsm-timeline-wrapper-9b43cf18 {
    font-family: 'Futura', 'Montserrat', 'Poppins', 'Avenir', sans-serif;
    width: 100%;
}
.dsm-timeline-container-9b43cf18 {
    margin: 0 auto;
    width: 100%;
}
.dsm-timeline-header-9b43cf18 {
    text-align: center;
    margin-bottom: 60px;
}
.dsm-timeline-label-9b43cf18 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.dsm-timeline-main-heading-9b43cf18 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* Grid layout for Desktop */
.dsm-timeline-grid-9b43cf18 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    width: 100%;
}

/* The Horizontal Line */
.dsm-timeline-line-9b43cf18 {
    position: absolute;
    top: 75px; 
    left: 10%;
    right: 10%;
    z-index: 1;
    transform: translateY(-50%);
}

/* Timeline Item */
.dsm-timeline-item-9b43cf18 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.dsm-timeline-year-9b43cf18 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dsm-timeline-dot-wrapper-9b43cf18 {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    background-color: transparent; 
}

.dsm-timeline-dot-9b43cf18 {
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
    position: relative;
}

.dsm-timeline-content-9b43cf18 {
    max-width: 180px;
}

.dsm-timeline-title-9b43cf18 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dsm-timeline-desc-9b43cf18 {
    font-size: 15px;
    line-height: 1.5;
}

/* Mobile Layout - Vertical */
@media (max-width: 767px) {
    .dsm-timeline-grid-9b43cf18 {
        grid-template-columns: 1fr;
        padding-left: 30px;
    }
    
    .dsm-timeline-line-9b43cf18 {
        display: none; 
    }
    
    .dsm-timeline-grid-9b43cf18::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 20px;
        bottom: 20px;
        z-index: 1;
    }

    .dsm-timeline-item-9b43cf18 {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 40px;
    }

    .dsm-timeline-year-9b43cf18 {
        position: absolute;
        top: 0;
        left: 40px;
        margin-bottom: 5px;
        height: auto;
        font-size: 24px;
        justify-content: flex-start;
    }

    .dsm-timeline-dot-wrapper-9b43cf18 {
        width: 16px;
        margin-right: 24px;
        margin-bottom: 0;
        position: absolute;
        left: -4px; 
        top: 6px;
    }

    .dsm-timeline-content-9b43cf18 {
        margin-top: 35px; 
        max-width: 100%;
        width: 100%;
        padding-left: 40px;
    }
}