/* ===================================
   ABOUT HERO SECTION
=================================== */

.about-hero{
height:70vh;
background:linear-gradient(to right, #0f172a, #1f2937);
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:0 20px;
color:white;
}

.about-hero-content{
max-width:800px;
}

.about-hero h1{
font-size:48px;
font-weight:800;
margin-bottom:20px;
line-height:1.2;
}

.about-hero p{
font-size:18px;
color:#cbd5e1;
line-height:1.7;
}

/* ===================================
   STORY SECTION
=================================== */

.about-story{
background:linear-gradient(to right, #111827, #1f2937);
padding:120px 80px;
color:white;
}

.about-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.about-text-block{
flex:1;
min-width:320px;
}

.about-text-block h2{
font-size:40px;
font-weight:800;
margin-bottom:25px;
}

.about-text-block p{
color:#cbd5e1;
font-size:17px;
line-height:1.8;
margin-bottom:18px;
}

.about-image-block{
flex:1;
min-width:320px;
}

.about-image-block img{
width:100%;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

/* ===================================
   MISSION & VISION
=================================== */

.mission-vision{
background:linear-gradient(to right, #0f172a, #1e293b);
padding:120px 80px;
}

.mv-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:40px;
}

.mv-card{
background:rgba(255,255,255,0.05);
padding:50px 40px;
border-radius:18px;
backdrop-filter:blur(10px);
transition:0.3s ease;
}

.mv-card:hover{
transform:translateY(-8px);
background:rgba(255,255,255,0.1);
}

.mv-card h3{
font-size:24px;
margin-bottom:20px;
color:#ff2e63;
}

.mv-card p{
color:#cbd5e1;
line-height:1.7;
font-size:16px;
}

/* ===================================
   CALL TO ACTION
=================================== */

.about-cta{
background:linear-gradient(135deg,#ff2e63,#e11d48);
text-align:center;
padding:100px 20px;
color:white;
}

.about-cta h2{
font-size:40px;
font-weight:800;
margin-bottom:15px;
}

.about-cta p{
font-size:18px;
margin-bottom:30px;
}

.about-cta .cta-btn{
background:white;
color:#ff2e63;
padding:16px 40px;
border-radius:50px;
font-weight:700;
text-decoration:none;
display:inline-block;
transition:0.3s;
}

.about-cta .cta-btn:hover{
background:#0f172a;
color:white;
transform:translateY(-3px);
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:992px){

.about-container{
flex-direction:column;
text-align:center;
}

}

@media(max-width:768px){

.about-story,
.mission-vision{
padding:80px 25px;
}

.about-hero h1{
font-size:32px;
}

.about-text-block h2{
font-size:28px;
}

}