/*==========================================================
                    OUR STORY
==========================================================*/

.our-story{

    position:relative;

    padding:120px 0;

    background:#ffffff;

    overflow:hidden;

}

.timeline{

    position:relative;

    max-width:900px;

    margin:70px auto 0;

}

.timeline::before{

    content:"";

    position:absolute;

    left:24px;

    top:0;

    width:3px;

    height:100%;

    background:linear-gradient(
    #1D4ED8,
    #00C2FF);

}

.timeline-item{

    position:relative;

    display:flex;

    gap:40px;

    margin-bottom:60px;

}

.timeline-item:last-child{

    margin-bottom:0;

}

.timeline-dot{

    width:50px;

    height:50px;

    min-width:50px;

    border-radius:50%;

    background:linear-gradient(
    135deg,
    #1D4ED8,
    #00C2FF);

    box-shadow:

    0 10px 25px rgba(0,194,255,.35);

    position:relative;

    z-index:2;

}

.timeline-content{

    flex:1;

    background:#F8FAFC;

    padding:35px;

    border-radius:22px;

    box-shadow:

    0 20px 45px rgba(15,23,42,.08);

    transition:.35s ease;

}

.timeline-content:hover{

    transform:translateY(-8px);

}


.timeline-year{

    display:inline-block;

    color:#1D4ED8;

    font-size:.9rem;

    font-weight:700;

    margin-bottom:12px;

}

.timeline-content h3{

    font-size:1.6rem;

    color:#0B132B;

    margin-bottom:15px;

}

.timeline-content p{

    color:#64748B;

    line-height:1.8;

}

/*==========================================================
            MISSION • VISION • VALUES
==========================================================*/

.mission-section{

    padding:120px 0;

    background:#F8FAFC;

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.mission-card{

    background:#fff;

    border-radius:25px;

    padding:45px 35px;

    text-align:center;

    box-shadow:

    0 20px 45px rgba(15,23,42,.08);

    transition:.35s ease;

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 30px 55px rgba(15,23,42,.12);

}

.mission-icon{

    width:85px;

    height:85px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 30px;

    background:linear-gradient(
    135deg,
    #1D4ED8,
    #00C2FF);

    color:#fff;

    font-size:2rem;

}

.mission-card h3{

    font-size:1.6rem;

    color:#0B132B;

    margin-bottom:18px;

}

.mission-card p{

    color:#64748B;

    line-height:1.9;

}

/*==========================================================
                STORY & MISSION RESPONSIVE
==========================================================*/

@media(max-width:991px){

    .mission-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .timeline::before{

        left:20px;

    }

    .timeline-item{

        gap:20px;

    }

    .timeline-dot{

        width:40px;

        height:40px;

        min-width:40px;

    }

    .timeline-content{

        padding:25px;

    }

}