/*==================================================
ABOUT STORY
==================================================*/

.about-story-section{

    padding:100px 0;

    background:#ffffff;

}

.about-story-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-story-image{

    position:relative;

}

.about-story-image img{

    width:100%;

    border-radius:22px;

    display:block;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.about-story-subtitle{

    display:inline-block;

    background:#eef6ff;

    color:#0A2E6D;

    padding:8px 18px;

    border-radius:50px;

    font-weight:700;

    letter-spacing:1px;

    font-size:14px;

    margin-bottom:20px;

}

.about-story-content h2{

    font-size:42px;

    color:#081C45;

    margin-bottom:25px;

    line-height:1.3;

}

.about-story-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

    font-size:17px;

}

.about-story-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.about-story-feature{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:#081C45;

}

.about-story-feature i{

    color:#28a745;

    font-size:20px;

}

@media(max-width:992px){

    .about-story-grid{

        grid-template-columns:1fr;

    }

    .about-story-content h2{

        font-size:34px;

    }

}

@media(max-width:576px){

    .about-story-features{

        grid-template-columns:1fr;

    }

}



/*==================================================
MISSION & VISION
==================================================*/

.mission-vision-section{

padding:100px 0;

background:#ffffff;

}

.mission-vision-section .section-heading{

max-width:850px;

margin:auto;

text-align:center;

margin-bottom:70px;

}

.mission-vision-section .section-tag{

display:inline-block;

padding:8px 22px;

background:#eef5ff;

color:var(--primary-color);

border-radius:50px;

font-weight:700;

margin-bottom:20px;

}

.mission-vision-section h2{

font-size:2.6rem;

font-weight:800;

color:#102542;

margin-bottom:20px;

}

.mission-vision-section p{

font-size:1.05rem;

line-height:1.9;

color:#666;

}

.mission-vision-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

}

.mission-card,
.vision-card{

background:#fff;

padding:45px;

border-radius:22px;

box-shadow:0 20px 45px rgba(0,0,0,.08);

transition:.4s;

position:relative;

overflow:hidden;

}

.mission-card::before,
.vision-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:6px;

background:linear-gradient(90deg,#0A4EA3,#2FB463);

}

.mission-card:hover,
.vision-card:hover{

transform:translateY(-10px);

}

.mission-icon,
.vision-icon{

width:80px;

height:80px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#eef5ff;

margin-bottom:25px;

}

.mission-icon i,
.vision-icon i{

font-size:34px;

color:#0A4EA3;

}

.mission-card h3,
.vision-card h3{

font-size:1.6rem;

font-weight:700;

margin-bottom:18px;

color:#102542;

}

.mission-card p,
.vision-card p{

font-size:1rem;

line-height:1.9;

color:#666;

}

@media(max-width:992px){

.mission-vision-grid{

grid-template-columns:1fr;

}

}

/*=========================================
ABOUT VALUES
=========================================*/

.about-values{
    background:#ffffff;
}

.about-values .section-heading{
    text-align:center;
    max-width:820px;
    margin:0 auto 70px;
}

.about-values .section-tag{
    display:inline-block;
    background:#eef6ff;
    color:var(--primary-color);
    padding:8px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
}

.about-values .section-heading h2{
    font-size:2.5rem;
    margin-bottom:20px;
    color:var(--dark-color);
}

.about-values .section-heading p{
    color:#666;
    line-height:1.8;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.value-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    border:1px solid #edf1f7;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.value-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary-color);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.value-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary-color),var(--secondary-color));
    display:flex;
    align-items:center;
    justify-content:center;
}

.value-icon i{
    font-size:32px;
    color:#fff;
}

.value-card h3{
    font-size:1.35rem;
    margin-bottom:18px;
    color:var(--dark-color);
}

.value-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

.about-values .section-heading h2{
    font-size:2rem;
}

.values-grid{
    grid-template-columns:1fr;
}

.value-card{
    padding:35px 25px;
}

}

/*=========================================
ABOUT WHY CHOOSE SECTION
=========================================*/

.about-why-section{
padding:100px 0;
background:#ffffff;
}

.about-why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.about-why-card{
background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 12px 35px rgba(0,0,0,.06);
transition:.35s;
border:1px solid #edf2f7;
}

.about-why-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.about-why-icon{
width:80px;
height:80px;
margin:0 auto 25px;
border-radius:50%;
background:#eef6ff;
display:flex;
align-items:center;
justify-content:center;
}

.about-why-icon i{
font-size:34px;
color:#0A4BA8;
}

.about-why-card h3{
font-size:1.3rem;
margin-bottom:15px;
color:#1d3557;
}

.about-why-card p{
font-size:.98rem;
line-height:1.8;
color:#666;
}

@media(max-width:992px){

.about-why-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.about-why-grid{
grid-template-columns:1fr;
}

.about-why-section{
padding:70px 0;
}

}

/*=========================================
ABOUT IMPACT
=========================================*/

.about-impact-section{

padding:100px 0;

background:#f7fbff;

}

.about-impact-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.about-impact-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 12px 35px rgba(0,0,0,.06);

transition:.35s;

}

.about-impact-card:hover{

transform:translateY(-10px);

}

.about-impact-icon{

width:80px;

height:80px;

margin:auto auto 20px;

background:#eef5ff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

}

.about-impact-icon i{

font-size:34px;

color:#0A4BA8;

}

.about-impact-card h3{

font-size:2.6rem;

font-weight:700;

color:#0A4BA8;

margin-bottom:10px;

}

.about-impact-card h4{

font-size:1.2rem;

margin-bottom:15px;

color:#1f2937;

}

.about-impact-card p{

color:#666;

line-height:1.8;

font-size:.95rem;

}

.about-impact-bottom{

margin-top:70px;

display:grid;

grid-template-columns:2fr 1fr;

gap:50px;

align-items:center;

}

.impact-left h3{

font-size:2rem;

margin-bottom:20px;

color:#0A2E6D;

}

.impact-left p{

line-height:2;

color:#666;

font-size:1.05rem;

}

.impact-right{

display:flex;

flex-direction:column;

gap:20px;

}

.impact-mini{

background:#fff;

padding:20px 25px;

border-radius:15px;

display:flex;

align-items:center;

gap:18px;

box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.impact-mini i{

font-size:28px;

color:#0A4BA8;

}

.impact-mini span{

font-weight:600;

color:#1d3557;

}

@media(max-width:992px){

.about-impact-grid{

grid-template-columns:repeat(2,1fr);

}

.about-impact-bottom{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.about-impact-grid{

grid-template-columns:1fr;

}

.about-impact-section{

padding:70px 0;

}

.about-impact-card h3{

font-size:2.2rem;

}

}

/*=========================================
ABOUT COMMUNITY
=========================================*/

.about-community-section{

padding:100px 0;

background:#0A2E6D;

color:#fff;

}

.about-community-box{

display:grid;

grid-template-columns:1.2fr 1fr;

gap:70px;

align-items:center;

}

.about-community-content h2{

font-size:2.8rem;

margin:20px 0;

color:#fff;

}

.about-community-content p{

font-size:1.05rem;

line-height:2;

color:rgba(255,255,255,.85);

margin-bottom:35px;

}

.about-community-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:40px;

}

.community-feature{

display:flex;

align-items:center;

gap:12px;

}

.community-feature i{

color:#4CAF50;

font-size:18px;

}

.community-feature span{

font-weight:500;

}

.about-community-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-top:15px;

}

.about-community-image{

text-align:center;

}

.about-community-image img{

width:100%;

max-width:500px;

}

@media(max-width:992px){

.about-community-box{

grid-template-columns:1fr;

text-align:center;

}

.about-community-features{

grid-template-columns:1fr;

}

.community-feature{

justify-content:center;

}

.about-community-buttons{

justify-content:center;

}

}