.timeline-image {
        overflow: hidden;
        background: #0F1011;
        border-radius: 14px;
        border: 1px solid #1B1C1D;
    }

    .timeline-image img {
        width: 100%;
    }

    /* stats */
    .timeline-content {
        --bs-gutter-x: 62px;
    }

    .timeline-stats {
        display: flex;
        gap: 84px;
        margin-top: 42px;
        flex-wrap: wrap;
    }

   .timeline-stats div {
    font-size: 14px;
    font-weight: 400;
    color: #8A8F98;
    line-height: 20px;
}

  .timeline-stats span {
    display: block;
    font-size: 30px;
    font-weight: 500;
    color: #F7F8F8;
    line-height: 38px;
}

    /* tab */

    .tab-content {
        display: none;
          max-width: 536px;
    }
    .tab-content.active {
        display: block;
    }

    .tab-content h4 {
    font-size: 20px;
    line-height: 28px;
    color: #F7F8F8;
    margin-bottom: 8px;
    font-weight: 600;
}

    /* timeline */

   .timeline-years {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-left: 52px;
    padding-right: 52px;
}

    .timeline-years::before {
    content: "";
    position: absolute;
    top: 73px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #28282C;
}

    .timeline-progress {
        position: absolute;
         top: 73px;
        left: 0;
        height: 2px;
        background: #ffffff2e;
        width: 0%;
        transition: 0.4s;
    }

  .year {
    position: relative;
    cursor: pointer;
    color: #8A8F98;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 24px;
    border-radius: 8px;
    border: 1px solid transparent;
    line-height: 24px;
}

    .year::before {
        content: "";
        position: absolute;
        top: 62px;
        left: 50%;
        transform: translateX(-50%);
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #08090A;
        border: 1px solid #28282C;
    }

    .year.active {
        color: #fff;
        background-color: #28282C;
        border: 1px solid #3E3E44;
    }

    .year.active::before {
        background: #28282C;
    }

    @media screen and (max-width: 1199px) {
        .timeline-years {
            margin-top: 50px;
        }
                .timeline-content {
            --bs-gutter-x: 30px;
        }
        .timeline-stats {
            gap: 50px;
        }
        .timeline-stats span {
            font-size: 26px;
            line-height: 34px;
        }
    }

    @media screen and (max-width: 991px) {
        .timeline-content {
            --bs-gutter-x: 3.5rem;
            --bs-gutter-y: 34px;
        }
        .about-core-value-section p br, .work-section p br{
            display:none;
        }
        .timeline .tab-content {
            max-width: 100%;
        }
        .timeline-years{
            padding-left: 0;
            padding-right: 0;
        }
    }

    /* mobile */

    @media(max-width:767px) {
        .timeline-section {
                padding-bottom: 100px;
            }
        .timeline-title {
            font-size: 28px;
        }

        .timeline-content {
            text-align: center;
            --bs-gutter-x: 0;
        }

        .timeline-stats {
            justify-content: center;
            gap: 20px;
        }
            .gutter-72 {
                --bs-gutter-y: 50px;
            }
        .year {
            font-size: 13px;
            padding: 5px 10px;
            border-radius:4px;
        }

    }

     @media(max-width:767px) {
          .gutter-72 {
                --bs-gutter-y: 35px;
            }
     }