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

body{
background:#fff;
overflow-x:hidden;
}

/* TOP BAR */

.top-bar{
background:#1D1B50;
color:white;
padding:8px 6%;
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
}

.top-left{
display:flex;
gap:20px;
align-items:center;
}

.top-right{
display:flex;
align-items:center;
gap:18px;
color:white;
}

.top-right span{
color:white;
}

.top-right{
display:flex;
align-items:center;
gap:18px;
}

.top-right span{
color:white;
}

.top-right a{
width:20px;
height:20px;

display:flex;
align-items:center;
justify-content:center;

text-decoration:none;

color:white ;
}

.top-right a:visited{
color:white ;
}

.top-right a i{
font-size:15px ;
color:white ;
transition:0.3s;
}

.top-right a:hover i{
color:#F8AE46 ;
}

/* NAVBAR */

.navbar{
width:100%;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 6%;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo-section{
display:flex;
align-items:center;
gap:12px;
}

.logo-section img{
width:70px;
}

.logo-section h2{
font-size:24px;
color:#1D1B50;
line-height:1.1;
font-weight:800;
}

.logo-section p{
color:#F8AE46;
font-weight:700;
font-size:18px;
}

nav{
display:flex;
gap:35px;
}

nav a{
text-decoration:none;
color:black;
font-weight:700;
position:relative;
}

nav a::after{
content:'';
width:0%;
height:3px;
background:#F8AE46;
position:absolute;
left:0;
bottom:-8px;
transition:0.4s;
}

nav a:hover::after,
nav a.active::after{
width:100%;
}

.enroll-btn{
background:#F8AE46;
border:none;
padding:18px 38px;
border-radius:50px;
font-size:20px;
font-weight:700;
cursor:pointer;
transition:0.4s ease;
position:relative;
overflow:hidden;
box-shadow:0 5px 15px rgba(248,174,70,0.4);
line-height:1;
}

.enroll-btn:hover{
transform:translateY(-5px) scale(1.05);
box-shadow:0 10px 25px rgba(248,174,70,0.5);
}

.enroll-btn:active{
transform:scale(0.96);
}

.enroll-btn::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:rgba(255,255,255,0.3);
transform:skewX(-25deg);
transition:0.6s;
}

.enroll-btn:hover::before{
left:120%;
}

.menu-btn{
display:none;
font-size:28px;
cursor:pointer;
}

/* HERO */

.facility-hero{
background:#1D1B50;
padding:80px 6%;
display:grid;
grid-template-columns:1.2fr 1fr;
align-items:center;
gap:50px;
}

.hero-left h3{
color:white;
font-size:55px;
margin-bottom:20px;
font-weight:700;
}

.hero-left h1{
color:#F8AE46;
font-size:45px;
line-height:1.2;
margin-bottom:30px;
font-weight:700;
}

.hero-left p{
color:white;
font-size:30px;
line-height:1.6;
}



/* FACILITY SECTION */

.facility-section{
width:90%;
margin:60px auto;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
color:#1D1B50;
margin-bottom:10px;
font-weight:700;
}

.line{
width:120px;
height:4px;
background:#F8AE46;
margin:auto;
}

.facility-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

.facility-card{
background:white;
padding:35px 25px;
border-radius:15px;
box-shadow:0 4px 20px rgba(0,0,0,0.15);
text-align:center;
transition:0.4s;
}

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

.facility-card img{
width:110px;
height:110px;
object-fit:contain;
margin-bottom:25px;
}

.facility-card h3{
font-size:28px;
color:#1D1B50;
margin-bottom:18px;
font-weight:700;
}

.facility-card p{
font-size:20px;
line-height:1.6;
color:#1D1B50;
}

/* CTA */

.cta{
width:90%;
margin:60px auto;
display:grid;
grid-template-columns:1fr 1fr;
border-radius:20px;
overflow:hidden;
}

.stats{
background:#1D1B50;
color:white;
display:grid;
grid-template-columns:repeat(5,1fr);
padding:35px 25px;
text-align:center;
}

.stats h3{
font-size:30px;
margin-bottom:10px;
}

.cta-right{
background:#F8AE46;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
padding:30px;
}

.cta-right img{
width:85px;
height:85px;
object-fit:contain;
}

.cta-right div{
flex:1;
}

.cta-right h2{
font-size:28px;
margin-bottom:10px;
font-weight:700;
color:black;
}

.cta-right p{
font-size:15px;
line-height:1.6;
}

.cta-right button{
background:#1D1B50;
color:white;
border:none;
padding:14px 24px;
border-radius:10px;
cursor:pointer;
font-size:16px;
font-weight:600;
transition:0.4s;
}

.cta-right button:hover{
transform:translateY(-4px);
}

/* ANIMATION */

.fade-up{
opacity:0;
transform:translateY(40px);
transition:0.8s;
}

.show{
opacity:1;
transform:translateY(0);
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0px);
}

}

/* RESPONSIVE */

@media(max-width:1200px){

.facility-container{
grid-template-columns:repeat(2,1fr);
}

.facility-hero{
grid-template-columns:1fr;
}

.cta{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

}

@media(max-width:768px){

nav{
position:absolute;
top:100%;
left:-100%;
width:100%;
background:white;
flex-direction:column;
padding:30px;
transition:0.4s;
}

nav.show{
left:0;
}

.menu-btn{
display:block;
}

.top-bar{
display:none;
}

.hero-left h3{
font-size:42px;
}

.hero-left h1{
font-size:34px;
}

.hero-left p{
font-size:20px;
}

.facility-container{
grid-template-columns:1fr;
}

.cta-right{
flex-direction:column;
text-align:center;
}

.stats{
grid-template-columns:1fr 1fr;
}

}