*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}


body{
background:#fff;
color:#333;
}


.container{
width:90%;
max-width:1200px;
margin:auto;
}



/* HEADER */

header{
background:#062b55;
color:white;
padding:15px 0;
}


.nav{
display:flex;
justify-content:space-between;
align-items:center;
}


.logo{
display:flex;
align-items:center;
gap:12px;
}


.logo img{
border-radius:20%;
}


nav a{
color:white;
text-decoration:none;
margin-left:20px;
}


.btn{
background:#0879e8;
color:white!important;
padding:12px 25px;
border-radius:5px;
display:inline-block;
}



/* HERO */

.hero{
height:600px;
position:relative;
overflow:hidden;
}


.slide{
height:600px;
position:relative;
}


.slide img{
width:100%;
height:600px;
object-fit:cover;
}


.hero-text{
position:absolute;
top:35%;
left:8%;
color:white;
background:rgba(0,0,0,.5);
padding:30px;
max-width:600px;
}


.hero-text h1{
font-size:45px;
margin-bottom:15px;
}



/* SECTIONS */


section{
padding:60px 0;
}


h2{
text-align:center;
margin-bottom:30px;
color:#062b55;
}


p{
line-height:1.7;
}



/* CARDS */


.cards{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;
}


.card{
padding:30px;
background:white;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,.1);
}


.card h3{
color:#0879e8;
margin-bottom:15px;
}



/* ADMISSION */


.admission{
background:#062b55;
color:white;
text-align:center;
}


.admission h2{
color:white;
}




/* FOOTER */


footer{
background:#02172d;
color:white;
text-align:center;
padding:20px;
}



/* MOBILE */

@media(max-width:768px){

.nav{
flex-direction:column;
}


nav{
margin-top:20px;
}


.hero-text h1{
font-size:30px;
}

}

/* ==========================
   PUBLIC WEBSITE HOMEPAGE
========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


header{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}


.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}


.logo{
    display:flex;
    align-items:center;
    gap:12px;
}


.logo img{
    height:50px;
    width:auto;
}


.logo h2{
    margin:0;
    color:#17376d;
    font-size:20px;
}


.logo small{
    color:#666;
}


nav{
    display:flex;
    gap:15px;
    align-items:center;
}


nav a{
    text-decoration:none;
    color:#17376d;
    font-weight:bold;
}


.hero{
    position:relative;
    overflow:hidden;
}


.slide{
    position:relative;
}


.slide img{
    width:100%;
    height:600px;
    object-fit:cover;
}


.hero-text{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    color:#fff;
    max-width:500px;
}


.hero-text h1{
    font-size:45px;
}


.hero-text p{
    font-size:15px;
}


.btn{
    display:inline-block;
    background:#17376d;
    color:#fff;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
}


section{
    padding:50px 0;
}


section h2{
    text-align:center;
    color:#17376d;
}


.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}


.card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}


.admission{
    background:#17376d;
    color:#fff;
    text-align:center;
}


.admission h2{
    color:#fff;
}


footer{
    background:#0f2240;
    color:#fff;
    text-align:center;
    padding:25px;
}


@media(max-width:800px){

.nav{
    flex-direction:column;
}


nav{
    flex-wrap:wrap;
    justify-content:center;
}


.cards{
    grid-template-columns:1fr;
}


.slide img{
    height:350px;
}

}

/* HERO SLIDER */

.hero{
    position:relative;
    overflow:hidden;
}

.slide{
    display:none;
    position:relative;
}

.slide.active{
    display:block;
}

.hero img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.hero-text{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    color:white;
    max-width:500px;
    background:rgba(0,0,0,0.35);
    padding:25px;
    border-radius:12px;
}

.hero-text h1{
    font-size:40px;
}

.hero-text p{
    font-size:18px;
}
/* SLIDER CONTROLS */

.slider-controls{
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:15px;
    z-index:10;
}


.slider-controls button{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,0.5);
    color:white;
    font-size:22px;
    cursor:pointer;
}


.slider-controls button:hover{
    background:#17376d;
}


#dots{
    display:flex;
    gap:8px;
}


.dot{
    width:12px;
    height:12px;
    background:white;
    opacity:.6;
    border-radius:50%;
    cursor:pointer;
}


.dot.active{
    opacity:1;
    background:#17376d;
}