/* body{margin-top:0px;}
.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem
}

@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem solid #3b82f6;
        width: 3.46rem;
        position: absolute;
        left: 7.5rem;
        top: .3125rem
    }
    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem solid #3b82f6;
        width: 3.8125rem;
        position: absolute;
        right: 7.5rem;
        top: .3125rem
    }
}

.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5rem;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3b82f6
}

.timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: #3b82f6;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}

.timeline-steps .timeline-content .inner-willstart {
    border-radius: 1.5rem;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #cfd4db
}

.timeline-steps .timeline-content .inner-willstart:before {
    content: "";
    background-color: #cfd4db;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
} */

/* Timeline container */
.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%; /* Use a percentage width to make it responsive */
    max-width: 600px; /* Limit the maximum width on large screens */
    margin: auto; /* Center the timeline */
}

.timeline-step {
    position: relative;
    z-index: 1;
}

.timeline-line {
    flex-grow: 1;
    height: 2px;
    background-color: #3b82f6;
    margin: 0 5px; /* Small margin between the circles and the line */
}

.inner-circle {
    width: 40px; /* Set an appropriate size for desktop */
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem; /* Adjust font size */
    color: #3b82f6;
    border: 2px solid #3b82f6;
    background-color: white;
}

.timeline-step.active .inner-circle {
    background-color: #3b82f6;
    color: white;
}

.step-text {
    margin-top: 8px; /* Add some spacing between the circle and the text */
    font-size: 0.9rem; /* Adjust font size for the text */
    text-align: center; /* Center the text */
    color: #3b82f6;
}


/* Responsive adjustments for smaller screens */
@media (max-width: 576px) {
    .timeline {
        width: 95%; /* Slightly wider on mobile for better visibility */
    }

    .inner-circle {
        width: 30px; /* Smaller circles on mobile */
        height: 30px;
        font-size: 0.9rem; /* Smaller font on mobile */
    }
}

