*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#f6f8fc;
}

.container{
max-width:1300px;
margin:auto;
padding:0 20px;
}

.header{
background:white;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:1000;
}

.header-container{
display:flex;
align-items:center;
justify-content:space-between;
height:80px;
}

/* LOGO */

.logo{
display:flex;
align-items:center;
}

.logo img{
height:50px;
width:auto;
}

/* NAVIGATION */

.nav-links{
display:flex;
list-style:none;
gap:30px;
}

.nav-links a{
text-decoration:none;
font-weight:600;
color:black;
font-size:15px;
transition:0.3s;
}

.nav-links a:hover{
color:#0a3d62;
}

/* BUTTONS */

.header-actions{
display:flex;
gap:12px;
}

.login-btn{
padding:10px 16px;
border:2px solid #0a3d62;
background:none;
border-radius:6px;
font-weight:600;
cursor:pointer;
}

.apply-btn{
padding:10px 18px;
background:#0a3d62;
color:white;
border:none;
border-radius:6px;
font-weight:600;
cursor:pointer;
}

/* MOBILE MENU ICON */

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle span{
height:3px;
width:25px;
background:black;
margin:4px 0;
display:block;
}

/* ================= MOBILE ================= */

@media (max-width:900px){

.header-container{
height:70px;
}

/* Hide desktop nav */

.nav{
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
display:none;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.nav.active{
display:block;
}

/* Mobile menu style */

.nav-links{
flex-direction:column;
gap:18px;
padding:25px;
}

/* Hide buttons on mobile */

.header-actions{
display:none;
}

/* Show hamburger */

.menu-toggle{
display:flex;
}

/* Smaller logo */

.logo img{
height:42px;
}

}











/* HERO SECTION */

.hero{
padding:120px 0;
background:linear-gradient(135deg,#eef2ff,#ffffff);
overflow:hidden;
}

.hero-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

.hero-text{
max-width:600px;
}

.hero-text h1{
font-size:60px;
font-weight:700;
line-height:1.1;
margin-bottom:20px;
}

.hero-text span{
color:#0a3d62;
}

.hero-text p{
font-size:17px;
color:#555;
margin-bottom:35px;
line-height:1.6;
}

/* HERO BUTTONS */

.hero-buttons{
display:flex;
gap:20px;
margin-bottom:40px;
}

.apply-btn{
background:#0a3d62;
color:white;
border:none;
padding:14px 30px;
font-weight:600;
border-radius:6px;
cursor:pointer;
}

.program-btn{
border:2px solid #0a3d62;
background:none;
padding:14px 28px;
font-weight:600;
border-radius:6px;
cursor:pointer;
}

/* TRUST STATS */

.hero-trust{
display:flex;
gap:40px;
}

.trust-item h3{
font-size:26px;
color:#0a3d62;
}

.trust-item p{
font-size:14px;
color:#555;
}

/* HERO IMAGE */

.hero-image{
position:relative;
display:flex;
justify-content:center;
align-items:center;
}

.main-student{
width:520px;
max-width:100%;
z-index:2;
}

/* DECORATIONS */

.decor-circle{
position:absolute;
border-radius:50%;
z-index:1;
}

.circle1{
width:300px;
height:300px;
background:#eef2ff;
right:40px;
top:20px;
}

.circle2{
width:90px;
height:90px;
background:#0a3d62;
right:-30px;
bottom:80px;
opacity:0.2;
}

.circle3{
width:150px;
height:150px;
background:#c7d2fe;
left:30px;
bottom:10px;
opacity:0.6;
}

/* UNIVERSITY LOGOS */

.uni-logo{
position:absolute;
width:70px;
background:white;
padding:10px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
z-index:3;
}

/* top logo */

.logo1{
top:40px;
left:-40px;
}

/* right logo */

.logo2{
top:120px;
right:-40px;
}

/* bottom logo */

.logo3{
bottom:40px;
left:40px;
}

.uni-logo{
animation:float 4s ease-in-out infinite;
}

@keyframes float{
0%{transform:translateY(0px);}
50%{transform:translateY(-10px);}
100%{transform:translateY(0px);}
}

/* RESPONSIVE */

@media(max-width:900px){

.hero-container{
flex-direction:column;
text-align:center;
}

.hero-text h1{
font-size:40px;
}

.hero-buttons{
justify-content:center;
}

.hero-trust{
justify-content:center;
}

.hero-image{
margin-top:50px;
}

.main-student{
width:380px;
}

.circle1{
width:200px;
height:200px;
}

}







.why-choose{
padding:120px 0;
background:#f8fafc;
}

.section-title{
text-align:center;
font-size:36px;
font-weight:700;
margin-bottom:10px;
}

.section-subtitle{
text-align:center;
max-width:700px;
margin:0 auto 60px;
color:#555;
}

.choose-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.choose-card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
text-align:center;
transition:0.3s;
}

.choose-card:hover{
transform:translateY(-10px);
}

.choose-icon{
font-size:40px;
margin-bottom:20px;
}

.choose-card h3{
margin-bottom:10px;
}

.choose-card p{
font-size:14px;
color:#555;
line-height:1.6;
}



.programs{
padding:120px 0;
background:#f7f9fc;
}

.program-header{
text-align:center;
max-width:700px;
margin:0 auto 60px;
}

.program-header h2{
font-size:40px;
margin-bottom:10px;
}

.program-header p{
color:#666;
}

.program-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.program-card{
background:white;
border-radius:12px;
padding:30px;
display:flex;
flex-direction:column;
justify-content:space-between;
transition:0.3s;
border:1px solid #eee;
}

.program-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.program-top{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.program-icon{
font-size:30px;
background:#eef2ff;
padding:12px;
border-radius:8px;
}

.program-top h3{
font-size:20px;
}

.program-list{
list-style:none;
margin-bottom:25px;
}

.program-list li{
padding:6px 0;
font-size:14px;
border-bottom:1px solid #f1f1f1;
}

.program-footer{
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
}

.program-footer span{
color:#777;
}

.program-footer a{
text-decoration:none;
font-weight:600;
color:#0a3d62;
}





.process{
padding:120px 0;
background:white;
}

.process-header{
text-align:center;
max-width:700px;
margin:0 auto 70px;
}

.process-header h2{
font-size:40px;
margin-bottom:10px;
}

.process-header p{
color:#666;
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.process-step{
background:#f7f9fc;
padding:35px;
border-radius:12px;
position:relative;
transition:0.3s;
}

.process-step:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.step-number{
font-size:32px;
font-weight:700;
color:#0a3d62;
margin-bottom:15px;
}

.process-step h3{
margin-bottom:10px;
font-size:18px;
}

.process-step p{
font-size:14px;
color:#555;
line-height:1.6;
}






.partners{
padding:120px 0;
background:#f7f9fc;
}

.partners-header{
text-align:center;
max-width:700px;
margin:0 auto 70px;
}

.partners-header h2{
font-size:40px;
margin-bottom:10px;
}

.partners-header p{
color:#555;
}

/* GRID */

.partners-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
align-items:center;
justify-items:center;
}

/* BIG LOGOS */

.partners-grid img{
width:100%;
max-width:300px;
height:auto;
object-fit:contain;
display:block;
}




.apply-section{
padding:120px 0;
background:#0a3d62;
color:white;
}

.apply-container{
display:flex;
gap:60px;
align-items:center;
}

.apply-left{
flex:1;
}

.apply-left h2{
font-size:40px;
margin-bottom:15px;
}

.apply-left p{
margin-bottom:25px;
line-height:1.6;
}

.contact-info p{
margin-bottom:8px;
}

.whatsapp-btn{
display:inline-block;
margin-top:20px;
background:#25D366;
padding:12px 20px;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:600;
}

.apply-form{
flex:1;
background:white;
padding:35px;
border-radius:10px;
}

.apply-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.apply-form input,
.apply-form select,
.apply-form textarea{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.apply-form textarea{
min-height:100px;
resize:vertical;
}

.apply-form button{
background:#0a3d62;
color:white;
padding:14px;
border:none;
border-radius:6px;
font-weight:600;
cursor:pointer;
}

/* MOBILE */

@media(max-width:900px){

.apply-container{
flex-direction:column;
}

}




.footer{
background:#111;
color:white;
padding:80px 0 20px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-col h3{
margin-bottom:15px;
font-size:22px;
}

.footer-col h4{
margin-bottom:15px;
font-size:18px;
}

.footer-col p{
font-size:14px;
line-height:1.6;
color:#bbb;
}

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
text-decoration:none;
color:#bbb;
font-size:14px;
transition:0.3s;
}

.footer-col ul li a:hover{
color:white;
}

.footer-bottom{
text-align:center;
border-top:1px solid #333;
margin-top:40px;
padding-top:20px;
font-size:14px;
color:#aaa;
}









/* Programs.html */

.program-hero{
padding:120px 0;
background:#0a3d62;
color:white;
text-align:center;
}

.program-hero h1{
font-size:42px;
margin-bottom:10px;
}


.programs-page{
padding:100px 0;
background:#f8fafc;
}

.program-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:35px;
}

.program-card{
background:white;
padding:35px;
border-radius:12px;
text-align:center;
border:1px solid #eee;
transition:0.3s;
}

.program-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.program-icon{
font-size:40px;
margin-bottom:15px;
}

.program-card h3{
margin-bottom:15px;
}

.program-card ul{
list-style:none;
margin-bottom:20px;
}

.program-card ul li{
padding:5px 0;
font-size:14px;
color:#555;
}

.program-btn{
display:inline-block;
padding:10px 16px;
background:#0a3d62;
color:white;
text-decoration:none;
border-radius:6px;
font-size:14px;
font-weight:600;
}


.program-cta{
padding:100px 0;
text-align:center;
background:#eef2ff;
}

.program-cta h2{
font-size:30px;
margin-bottom:10px;
}


















body{
font-family:'Poppins',sans-serif;
margin:0;
background:#f8fafc;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HERO */
.uni-hero{
padding:120px 0;
background:#0a3d62;
color:white;
text-align:center;
}

/* FILTER */
.uni-filter{
padding:40px 0;
background:white;
}

.filter-box{
display:flex;
gap:15px;
flex-wrap:wrap;
justify-content:center;
}

.filter-box input,
.filter-box select{
padding:12px;
border-radius:6px;
border:1px solid #ddd;
}

/* GRID */
.uni-list{
padding:80px 0;
}

.section-title{
text-align:center;
font-size:32px;
margin-bottom:40px;
}

.uni-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.uni-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.uni-card:hover{
transform:translateY(-8px);
}

.uni-card img{
width:100%;
height:200px;
object-fit:contain;
background:#fff; /* prevents ugly empty space */
padding:10px;
}

.uni-info{
padding:20px;
}

.uni-info p{
color:#777;
}

.uni-info span{
font-size:13px;
display:block;
margin-bottom:10px;
}

.uni-info button{
background:#0a3d62;
color:white;
border:none;
padding:10px 15px;
border-radius:6px;
cursor:pointer;
}

/* DETAILS */
.uni-details{
padding:80px 0;
background:#eef2ff;
}

.details-content{
background:white;
padding:30px;
border-radius:10px;
}

/* COURSES */
.course-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:20px;
}

.course-box{
background:#f8fafc;
padding:20px;
border-radius:10px;
}

.course-box h3{
color:#0a3d62;
}







/* =========================
   MODAL BACKGROUND
========================= */
.apply-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
justify-content:center;
align-items:center;
z-index:999;
}

/* =========================
   MODAL BOX
========================= */
.apply-content{
background:white;
padding:30px;
border-radius:14px;
width:90%;
max-width:420px;
max-height:90vh;
overflow-y:auto;
box-shadow:0 20px 50px rgba(0,0,0,0.2);
animation:fadeIn 0.3s ease;
position:relative;
}

/* =========================
   CLOSE BUTTON
========================= */
.close-apply{
position:absolute;
top:15px;
right:20px;
font-size:24px;
cursor:pointer;
color:#555;
}

/* =========================
   TITLE
========================= */
.apply-content h2{
text-align:center;
margin-bottom:20px;
color:#0a3d62;
}

/* =========================
   FORM STRUCTURE
========================= */
.apply-content form{
display:flex;
flex-direction:column;
gap:12px;
}

/* =========================
   INPUTS
========================= */
.apply-content input,
.apply-content select{
width:100%;
padding:12px;
border-radius:8px;
border:1px solid #ddd;
font-size:14px;
transition:0.3s;
}

.apply-content input:focus,
.apply-content select:focus{
border-color:#0a3d62;
outline:none;
box-shadow:0 0 0 2px rgba(10,61,98,0.1);
}

/* =========================
   PHONE GROUP
========================= */
.phone-group{
display:flex;
align-items:center;
gap:10px;
}

.phone-group span{
background:#0a3d62;
color:white;
padding:12px;
border-radius:8px;
font-size:14px;
min-width:70px;
text-align:center;
}

.phone-group input{
flex:1;
}

/* =========================
   BUTTON
========================= */
.apply-content button{
background:linear-gradient(135deg,#0a3d62,#3c6382);
color:white;
padding:12px;
border:none;
border-radius:8px;
cursor:pointer;
font-size:15px;
transition:0.3s;
}

.apply-content button:hover{
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeIn{
from{
  opacity:0;
  transform:scale(0.9);
}
to{
  opacity:1;
  transform:scale(1);
}
}

/* =========================
   MOBILE
========================= */
@media(max-width:500px){
.apply-content{
  padding:20px;
}
}