/*==================================================
                ABOUT HERO
==================================================*/

.about-hero{

    
    background:
    linear-gradient(rgba(8,17,31,.78),rgba(8,17,31,.82)),
  
}

.about-hero .hero-content{

    max-width:760px;

    margin:auto;

    text-align:center;

}

.about-hero h1{

    color:#fff;

}

.about-hero h2{

    color:#fff;

    margin:20px 0;

}

.about-hero p{

    color:rgba(255,255,255,.80);

    max-width:650px;

    margin:auto;

    line-height:1.8;

}

/*==================================================
                OUR STORY
==================================================*/

.our-story{

    padding:120px 0;

    background:#ffffff;

}

.story-grid{

    display:grid;

    grid-template-columns:1.4fr .9fr;

    gap:90px;

    align-items:center;

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#eff6ff;

    color:#2563eb;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;

}

.story-content h2{

    font-size:46px;

    color:#0f172a;

    margin-bottom:30px;

    line-height:1.2;

}

.story-content p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:24px;

    font-size:17px;

}

.story-content strong{

    color:#0f172a;

}

.story-content blockquote{

    margin-top:45px;

    padding-left:25px;

    border-left:4px solid #2563eb;

    font-size:24px;

    font-style:italic;

    color:#0f172a;

    line-height:1.5;

}

/*==================================================
                TIMELINE
==================================================*/

.story-timeline{

    background:#f8fafc;

    border-radius:24px;

    padding:30px;

    box-shadow:0 20px 50px rgba(15,23,42,.05);

}

.timeline-item{

    text-align:center;

}

.timeline-item span{

    display:block;

    font-size:34px;

    margin-bottom:10px;

}

.timeline-item h3{

    color:#0f172a;

     margin-bottom:6px;

    font-size:20px;

}

.timeline-item p{

    color:#64748b;

    line-height:1.7;

    font-size:15px;

}

.timeline-line{

    width:2px;

    height:22px;

    background:#dbeafe;

    margin:12px auto;

}

/*==================================================
            MISSION & VISION
==================================================*/

.mission-vision{

    padding:110px 0;

    background:#f8fafc;

}

.mv-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.mv-card{

    background:#fff;

    border-radius:24px;

    padding:50px;

    transition:.35s;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

}

.mv-card:hover{

    transform:translateY(-8px);

}

.mv-card i{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#eff6ff;

    color:#2563eb;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:30px;

}

.mv-card h3{

    font-size:30px;

    color:#0f172a;

    margin-bottom:20px;

}

.mv-card p{

    color:#64748b;

    line-height:1.9;

}

/*==================================================
                VALUES
==================================================*/

.values{

    padding:120px 0;

    background:#ffffff;

}

.values-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.value-card{

    padding:40px;

    border:1px solid #edf2f7;

    border-radius:20px;

    transition:.35s;

    background:#fff;

}

.value-card:hover{

    transform:translateY(-8px);

    border-color:#bfdbfe;

}

.value-card i{

    font-size:30px;

    color:#2563eb;

    margin-bottom:25px;

}

.value-card h3{

    color:#0f172a;

    margin-bottom:15px;

    font-size:24px;

}

.value-card p{

    color:#64748b;

    line-height:1.8;

}