*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
  background:#f4f6fb;
  color:#333;
 
}




/* =========================
   COMMON INNER HERO
========================= */

.inner-hero{
height:55vh;
background:url("https://images.unsplash.com/photo-1503387762-592deb58ef4e");
background-size:cover;
background-position:center;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.inner-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(rgba(0,0,0,0.6), rgba(11,61,145,0.85));
top:0;
left:0;
}

.inner-content{
position:relative;
z-index:2;
max-width:700px;
padding:0 20px;
}

.inner-content h1{
font-size:40px;
margin:10px 0;
}

.inner-content p{
color:#ddd;
font-size:15px;
}

/* BREADCRUMB */

.breadcrumb{
font-size:14px;
margin-bottom:10px;
}

.breadcrumb a{
color:#ffb347;
text-decoration:none;
}

.breadcrumb span{
margin:0 6px;
color:#ccc;
}

.active-page{
color:white;
font-weight:500;
}


/* RESPONSIVE */

@media(max-width:768px){

.inner-hero{
height:45vh;
}

.inner-content h1{
font-size:26px;
}

.inner-content p{
font-size:13px;
}

}










/* ABOUT PREMIUM */

.about-premium{
padding:80px 10%;
background:#fff;
}

.about-container{
display:flex;
gap:40px;
align-items:center;
flex-wrap:wrap;
}

.about-left{
flex:1;
}

.about-left h2{
font-size:36px;
margin-bottom:20px;
color:#0B3D91;
}

.about-left p{
margin-bottom:15px;
line-height:1.7;
}

.about-right{
flex:1;
}

.about-right img{
width:100%;
border-radius:12px;
}


/* MISSION VISION */

.mission-vision{
padding:60px 10%;
background:#f4f6fb;
}

.mv-container{
display:flex;
gap:30px;
flex-wrap:wrap;
}

.mv-card{
flex:1;
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
transition:.3s;
}

.mv-card:hover{
transform:translateY(-8px);
}

.mv-card h3{
color:#ff7a18;
margin-bottom:15px;
}


/* WHY US */

.why-us{
padding:80px 10%;
text-align:center;
}

.why-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.why-box{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:.3s;
}

.why-box:hover{
transform:translateY(-8px);
}

.why-box i{
font-size:35px;
color:#ff7a18;
margin-bottom:15px;
}


/* TIMELINE */

.timeline{
padding:80px 10%;
background:#f4f6fb;
text-align:center;
}

.timeline-container{
margin-top:40px;
}

.timeline-item{
background:#fff;
margin:20px auto;
padding:20px;
max-width:400px;
border-left:5px solid #ff7a18;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
text-align:left;
}


/* TEAM */

.team{
padding:80px 10%;
text-align:center;
}

.team-container{
display:flex;
gap:30px;
flex-wrap:wrap;
justify-content:center;
margin-top:40px;
}

.team-card{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
width:250px;
transition:.3s;
}

.team-card:hover{
transform:translateY(-10px);
}

.team-card img{
width:100px;
height:100px;
border-radius:50%;
margin-bottom:15px;
}


/* RESPONSIVE */

@media(max-width:768px){

.about-container{
flex-direction:column;
}

.mv-container{
flex-direction:column;
}

}






















