/* Timeline Wrapper */.jifu-fade-timeline {    position: relative;    padding: 100px 0;    display: flex;    justify-content: center;    align-items: center;}/* Slide Container */.slide-container {    width: 100%;    height: 600px;    position: relative;}/* Slide items */.slide-item {      border-radius: 30px;  position: absolute;    inset: 0;    display: flex;    justify-content: center;    align-items: center;    opacity: 0;    transition: opacity .5s ease, transform .5s ease;    z-index: 1;}.slide-item.active {    z-index: 10;    opacity: 1;}/* Circle — Figma Perfect */.left {    width: 300px;    height: 300px;    border-radius: 50%;    background: #ffffff00;    margin-right: 150px;    display: flex;    justify-content: center;    align-items: center;    border-right: 6px solid #f6d86a;position: relative;
    z-index: 9;}.left img {    width: 100%;    height: auto;    object-fit: contain;}/* Right Card — Figma Perfect */.right-card {  position: relative;     z-index: 99;  background: white;    padding: 40px 45px;    border-radius: 16px;    width: 480px;    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);    position: relative;}/* Arrow pointer */.right-card::before {    content: "";    position: absolute;    left: -21px;    top: 50%;    transform: translateY(-50%);    border-top: 18px solid transparent;    border-bottom: 18px solid transparent;    border-right: 22px solid white;}/* Typography */.right-card h2 {    font-size: 36px;    margin: 0;    font-weight: 800;color: #000;}.right-card h3 {    font-size:16px;    margin: 12px 0 0;    font-weight: 500;color: #000;}.right-card p {    margin-top: 12px;    line-height: 1.55;}/* YEAR LIST — Proper left spacing */.years {   margin-top: -65px; position: absolute;    left: auto;    transform: translateX(-234%);    top: 50%;    /* transform: translate(-550px, -50%); */    display: flex;    flex-direction: column;    gap: 16px;    z-index: 99999;    right: auto;}.year-item {    font-size: 22px;    font-weight: 600;    opacity: .4;    cursor: pointer;}.year-item.active {    color: #E4C04E;    opacity: 1;    font-size: 26px;}



    .slide-item::after {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    background: linear-gradient(-90deg, rgb(2 2 2 / 50%) 0%, rgb(0, 0, 0) 64%);
    z-index: 0;
}.jifu-fade-timeline {
    min-height: 80px;
}

.year-item {
    display: inline-block;
}

@media (max-width: 768px) {

        .slide-container {
        height: 100vh;
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .slide-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 35px;
        padding: 0 16px;
    }

    /* YEAR ROW – clean & centered */
        .years {
        position: absolute;
        margin: 0 auto;
        padding-bottom: 5px;
        display: flex;
        justify-content: center;
        gap: 22px;
        z-index: 20;
        flex-direction: column;
        /* width: 100vh; */
        left: 55px;         top: 80px;
    }

    .year-item {
        font-size: 15px;
        opacity: 0.5;
    }

    .year-item.active {
        opacity: 1;
        color: #E4C04E;
        font-size: 17px;
    }

    /* CIRCLE – centered and sized like Figma mobile */
    .left {
       width: 210px;
        height: 210px;
        border-radius: 50%;
        margin: 0 auto;
        border-bottom: 4px solid #f6d86a;
        background: #00000080;
        display: flex;
        justify-content: center;
        align-items: center;
        border-right: 0px;
    }

    .left img {
        width: 100%;
        height: auto;
        margin: auto;
    }

    /* CARD – clean, readable, centered */
    .right-card {
        width: 92%;
        background: #fff;
        padding: 28px 22px;
        border-radius: 18px;
        margin: 0 auto;
        text-align: center;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    }

    .right-card::before {
        display: none;
    }

    .right-card h2 {
        font-size: 24px;
        margin-bottom: 8px;
        font-weight: 800;
        color: #000;
    }

    .right-card h3,
    .right-card p {
        text-align: center;
        font-size: 15px;
        line-height: 1.55;
    }

    /* SOFT background fade — nicer for mobile */
    .slide-item::after {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.75) 100%
        );
    }

    .jifu-fade-timeline {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

