.timeline-card {
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline-card-final {
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-size: 44px;
    font-weight: bold;
    color: rgb(255, 100, 4)
}

.timeline-next-year {
    position: absolute;
    right: 79%; 
    top: -5px;
    font-size: 28px;
    transform: translateX(50%);
}

.timeline-last-year {
    position: absolute;
    right: 21%; 
    top: -5px;
    font-size: 28px;
    transform: translateX(50%);
}
.timeline-date{
    font-size: 18px;
    color: rgb(255, 100, 4)
}
.timeline-title {
    font-size: 20px;
    font-weight: 500;
}
.timeline-description {
    font-size: 16px;
}
.timeline-dot {

    width: 18px;
    height: 18px;
    background-color: rgb(255, 100, 4);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.timeline-card::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 45px; 
    background-color: rgb(255, 100, 4);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -199999; 
}
.timeline-dot-active{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
}
.timeline-divider {
    margin-top: 30px;
    width: 70%;
    height: 3px;
    background-color: rgb(255, 100, 4);
    display: flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    align-self: center;

}

.timeline-divider:before {
    content: "";
    width: 18px;
    height: 18px;
    background-color: rgb(255, 100, 4);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%) translateX(-50%);
}


.timeline-divider:after {
    content: "";
    width: 18px;
    height: 18px;
    background-color: rgb(255, 100, 4);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 90%;
    transform: translateY(-50%) translateX(-50%);
}
.timeline-container {
    width: 100%;
    position: relative;
    
}


