.about-mvs h2 {
    margin-bottom: 30px;
    text-align: center;
}

.our-history h2{
    margin-bottom: 68px;
}

.about-mvs p {
    margin: 28px 0;
}

.our-mission {
    padding: 10px 0 56px 0;
}

.core-values p {
    margin: 0;
}

.core-values .core-wrap {
    gap: 8px;
    padding-bottom: 36px;
}

.our-history {
    padding: 67px 0px 100px 0;
    margin: 36px 0 50px 0;
}

.history-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-line,
#progress-line {
    position: absolute;
    top: 0;
    width: 1px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-line {
    background: #fff20033;
    height: 100%;
}

#progress-line {
    background: var(--yellow);
    height: 0;
}

.milestone {
    position: relative;
    width: 100%;
    opacity: 0;
}

.milestone.left:after,
.milestone.right:after {
    background: var(--yellow);
    content: '';
    width: 423px;
    height: 0.5px;
    position: absolute;
    top: 50%;
    left: 54%;
}

.milestone.right:after {
    left: 32px;
}

.milestone:first-of-type::after,
.milestone:last-of-type::after {
    display: none;
}

.content-box {
    width: 46%;
}

.milestone.left .content-box {
    position: relative;
    left: 0;
    margin-right: auto;
    text-align: right;
}

.milestone.right .content-box {
    position: relative;
    right: 0;
    margin-left: auto;
    text-align: left;
}

.milestone .content-box p {
    font-size: 14px;
    line-height: 27.3px;
    margin: 5px 0;
}

.milestone .content-box h3 {
    font-size: 24px;
    color: var(--yellow);
}

.timeline-dot {
    position: absolute;
    left: 49.4%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: 50%;
    opacity: 0;
    transition: background 0.3s ease;
}

.milestone .timeline-dot {
    top: 10px;
    transform: translate(-50%, -50%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.milestone-animate {
    animation: fadeInUp .7s ease-out forwards;
}

.dot-animate {
    animation: scaleIn .4s ease-out forwards;
}

@media(max-width:992px) {
    .about-mvs h2 {
        margin-bottom: 32px;
    }

    .about-mvs .core-values .col-md-4 {
        width: 50%;
    }

    .our-history {
        padding: 47px 30px 50px 30px;
        margin-bottom: 0;
    }

    .milestone.left:after,
    .milestone.right:after {
        display: none;
    }

    .timeline-dot {
        left: 49%;
    }
}

@media (max-width: 767px) {

    .our-history {
        padding: 45px 10px 50px 10px;
    }

    .content-box {
        width: 100%;
        text-align: left !important;
        padding: 0px 10px 36px 40px;
    }

    .timeline-line,
    #progress-line {
        left: 20px;
        transform: none;
    }

    .timeline-dot {
        left: 14px;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .about-mvs .core-values .col-md-4 {
        width: 100%;
    }

    .milestone .content-box h3 {
        font-size: 20px;
    }
}