/* ===== GLOBAL START ===== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#f4f6f9;
color:#333;
line-height:1.7;
scroll-behavior:smooth;
}

img{
max-width:100%;
height:auto;
display:block;
transition:transform .4s ease;
}

@keyframes fadeUp{
0%{opacity:0;transform:translateY(40px);}
100%{opacity:1;transform:translateY(0);}
}

/* ===== GLOBAL END ===== */


/* ===== HERO START ===== */

.hero{
min-height:500px;
background:url("../images/Group 19965.png") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
color:#fff;
text-align:center;
animation:fadeUp 1s ease;
margin-top:-40px;
padding-top:80px;
}

.hero h1{
font-size:48px;
font-weight:700;
letter-spacing:1px;
text-shadow:0 4px 20px rgba(0,0,0,.3);
}

.breadcrumb{
margin-top:10px;
font-size:14px;
opacity:.9;
}

/* ===== HERO END ===== */


/* ===== SECTION START ===== */

.section{
padding:70px 8%;
max-width:1400px;
margin:auto;
}

/* ===== SECTION END ===== */


/* ===== WHO START ===== */

.who{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:50px;
animation:fadeUp 1s ease;
}

.who-images{
position:relative;
}

.who-images img.main{
width:80%;
max-width:500px;
margin:auto;
}

.who-images img.small{
position:absolute;
bottom:-40px;
left:40px;
width:50%;
max-width:250px;
}

.who h2{
font-size:30px;
margin-bottom:20px;
}

.who p{
font-size:15px;
line-height:1.9;
color:#555;
margin-bottom:18px;
max-width:620px;
margin-left:auto;
margin-right:auto;
text-align:justify;
}

.who-images img.main{
border-radius:12px;
transition:transform .45s ease, box-shadow .45s ease;
box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.who-images img.main:hover{
transform:scale(1.05) translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

/* ===== WHO END ===== */


/* ===== FOCUS START ===== */

.focus{
margin-top:100px;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.focus-card{
background:#1e73be;
color:#fff;
padding:40px;
border-radius:10px;
transition:transform .4s ease, box-shadow .4s ease;
animation:fadeUp 1s ease;
}

.focus-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.focus-card h3{
margin-bottom:15px;
font-size:25px;
}

.focus-card p{
font-size:14px;
line-height:1.8;
max-width:620px;
margin:auto;
text-align:justify;
}

/* ===== FOCUS END ===== */


/* ===== TEAM START ===== */

.team{
margin-top:100px;
text-align:center;
animation:fadeUp 1s ease;
}

.team h2{
font-size:30px;
margin-bottom:70px;
}

.timeline{
position:relative;
max-width:1200px;
margin:auto;
}

.timeline::after{
content:'';
position:absolute;
width:6px;
background:#1e73be;
top:0;
bottom:0;
left:50%;
transform:translateX(-50%);
border-radius:10px;
}

.member{
position:relative;
width:50%;
padding:20px;
text-align:center;
overflow:hidden;
transition:transform .4s ease;
}

.member.left{
left:0;
}

.member.right{
left:50%;
}

.member img{
width:100%;
max-width:220px;
aspect-ratio:1/1;
object-fit:cover;
border-radius:12px;
margin:0 auto 10px;
transition:transform .4s ease, box-shadow .4s ease;
}

.member:hover img{
transform:scale(1.05);
box-shadow:
0 0 15px rgba(30,115,190,0.5),
0 0 30px rgba(30,115,190,0.3),
0 10px 30px rgba(0,0,0,0.25);
}

.member::before{
content:"";
position:absolute;
top:-50%;
left:-75%;
width:50%;
height:200%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.7),
transparent
);
transform:rotate(25deg);
transition:.8s;
}

.member:hover::before{
left:125%;
}

.member h4{
font-size:22px;
margin-bottom:5px;
}

.member span{
font-size:14px;
color:#666;
display:block;
}

/* ===== TEAM END ===== */


/* ===== RESPONSIVE START ===== */

@media(max-width:1200px){

.section{
padding:60px 6%;
}

.timeline{
max-width:900px;
}

}

@media(max-width:992px){

.hero h1{
font-size:38px;
}

.who{
grid-template-columns:1fr;
text-align:center;
}

.who-images{
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
margin-bottom:40px;
}

.who-images img.small{
left:50%;
transform:translateX(-50%);
}

.focus{
grid-template-columns:1fr;
}

.timeline{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.timeline::after{
display:none;
}

.member{
width:100%;
left:0 !important;
}

}

@media(max-width:768px){

.hero{
min-height:400px;
}

.hero h1{
font-size:32px;
}

.section{
padding:50px 20px;
}

.who h2{
font-size:26px;
}

.focus-card{
padding:30px;
}

.focus-card h3{
font-size:22px;
}

.member img{
max-width:200px;
}

}

@media(max-width:576px){

.hero{
min-height:320px;
}

.hero h1{
font-size:26px;
}

.breadcrumb{
font-size:12px;
}

.timeline{
grid-template-columns:1fr;
}

.member img{
max-width:170px;
}

.member h4{
font-size:20px;
}

.member span{
font-size:13px;
}

}

/* ===== RESPONSIVE END ===== */