/* =========================
GLOBAL
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f5f7fb;
color:#333;
line-height:1.7;
overflow-x:hidden;
padding-top:88px;
}

a{
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.section-padding{
padding:90px 0;
}

section{
overflow:hidden;
scroll-margin-top:100px;
}

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

.section-title h2{
font-size:52px;
font-weight:800;
color:#0A2C5A;
margin-bottom:15px;
line-height:1.2;
}

.section-title p{
font-size:20px;
color:#666;
}

/* =========================
BUTTONS
========================= */

.btn{
display:inline-block;
padding:15px 32px;
border-radius:12px;
font-size:17px;
font-weight:700;
transition:0.3s;
cursor:pointer;
border:none;
text-align:center;
}

.btn-primary{
background:#FFC107;
color:#000;
}

.btn-primary:hover{
background:#fff;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.18);
}

.btn-outline{
border:2px solid #fff;
color:#fff;
background:transparent;
}

.btn-outline:hover{
background:#fff;
color:#000;
}

.map-btn{
display:inline-block;
margin-top:18px;
padding:12px 22px;
background:#0A2C5A;
color:#fff;
border-radius:10px;
font-weight:600;
transition:0.3s;
}

.map-btn:hover{
background:#FFC107;
color:#000;
}

.whatsapp-card-btn{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
background:#25D366;
color:#fff;
padding:16px 22px;
border-radius:12px;
font-size:17px;
font-weight:700;
transition:0.3s;
margin-top:18px;
width:100%;
min-height:58px;
line-height:1.3;
text-align:center;
box-shadow:0 8px 18px rgba(37,211,102,0.22);
}

.whatsapp-card-btn i{
font-size:20px;
flex-shrink:0;
}

.whatsapp-card-btn:hover{
background:#1ebe5d;
transform:translateY(-3px);
box-shadow:0 12px 24px rgba(37,211,102,0.28);
}

/* =========================
HEADER
========================= */

.header{
position:fixed;
top:0;
left:0;
width:100%;
background:#0A2C5A;
padding:12px 0;
z-index:999;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
}

.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo-area img{
width:60px;
height:60px;
border-radius:50%;
background:#fff;
padding:4px;
object-fit:cover;
}

.logo-text h2{
font-size:24px;
color:#fff;
font-weight:800;
line-height:1;
}

.logo-text p{
font-size:11px;
color:#d6d6d6;
letter-spacing:1px;
margin-top:6px;
}

.navbar{
display:flex;
align-items:center;
gap:34px;
}

.navbar a{
color:#fff;
font-size:16px;
font-weight:600;
transition:0.3s;
position:relative;
}

.navbar a:hover,
.navbar a.active-link{
color:#FFC107;
}

.navbar a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#FFC107;
transition:0.3s;
}

.navbar a:hover::after,
.navbar a.active-link::after{
width:100%;
}

.nav-btn{
white-space:nowrap;
}

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

/* =========================
HERO
========================= */

/* =========================
HERO
========================= */

.hero{
min-height:88vh;
background:
linear-gradient(rgba(0,0,0,0.58),
rgba(0,0,0,0.58)),
url('../images/hero/hero-campus.png');
background-size:cover;
background-position:center center;
background-repeat:no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:110px 0 70px;
position:relative;
}

.hero-content{
max-width:980px;
margin:auto;
color:#fff;
}

.hero-logo{
width:120px;
margin:auto;
margin-bottom:25px;
border-radius:50%;
background:#fff;
padding:8px;
box-shadow:0 15px 35px rgba(0,0,0,0.28);
}

.hero-content h1{
font-size:72px;
font-weight:800;
line-height:1.08;
margin-bottom:18px;
letter-spacing:-1px;
}

.hero-content p{
font-size:22px;
font-weight:400;
margin-bottom:28px;
color:#f3f3f3;
}

.hero-badges{
display:flex;
justify-content:center;
gap:14px;
flex-wrap:wrap;
margin-bottom:35px;
}

.hero-badges span{
padding:11px 20px;
background:rgba(255,255,255,0.14);
border:1px solid rgba(255,255,255,0.22);
border-radius:40px;
font-size:14px;
backdrop-filter:blur(8px);
}

.hero-buttons{
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}

/* =========================
FACILITIES
========================= */

.facility-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.facility-card{
background:#fff;
padding:40px 28px;
border-radius:22px;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,0.08);
transition:0.3s;
border:1px solid #eee;
}

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

.facility-card i{
font-size:55px;
color:#FFC107;
margin-bottom:22px;
}

.facility-card h3{
font-size:24px;
color:#0A2C5A;
margin-bottom:14px;
font-weight:700;
}

.facility-card p{
font-size:16px;
color:#666;
}

/* =========================
HELPLINE
========================= */

.helpline-section{
background:#fff;
padding-top:120px;
}

.helpline-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.helpline-card{
background:#fff;
padding:40px 28px;
border-radius:22px;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,0.08);
transition:0.3s;
border:1px solid #eee;
}

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

.helpline-icon{
font-size:52px;
color:#FFC107;
margin-bottom:20px;
}

.helpline-card h3{
font-size:22px;
font-weight:700;
color:#0A2C5A;
margin-bottom:10px;
line-height:1.4;
}

.helpline-card p{
font-size:16px;
color:#666;
margin-bottom:14px;
}

.helpline-card h4{
font-size:30px;
font-weight:800;
color:#1E88E5;
margin:12px 0;
}

/* =========================
COURSES
========================= */

.courses{
background:#f5f7fb;
}

.course-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:30px;
}

.course-card{
background:#fff;
padding:42px 28px;
border-radius:22px;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,0.08);
transition:0.3s;
border:1px solid #eee;
}

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

.course-card i{
font-size:64px;
color:#1E88E5;
margin-bottom:22px;
}

.course-card h3{
font-size:26px;
color:#0A2C5A;
margin-bottom:12px;
font-weight:700;
line-height:1.4;
}

.course-card p{
font-size:17px;
color:#666;
}

/* =========================
PLACEMENTS
========================= */

.placements{
background:#fff;
}

.placement-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:30px;
}

.placement-card{
background:#fff;
padding:42px 28px;
border-radius:22px;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,0.08);
transition:0.3s;
border:1px solid #eee;
}

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

.placement-card i{
font-size:56px;
color:#1E88E5;
margin-bottom:20px;
}

.placement-card h3{
font-size:22px;
font-weight:700;
color:#0A2C5A;
line-height:1.5;
}

/* =========================
GALLERY
========================= */

.gallery{
background:#f5f7fb;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.gallery-grid img{
width:100%;
height:280px;
object-fit:cover;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.4s;
}

.gallery-grid img:hover{
transform:scale(1.04);
box-shadow:0 15px 35px rgba(0,0,0,0.18);
}

/* =========================
ADMISSION
========================= */

.admission-section{
background:#fff;
}

.enquiry-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.enquiry-left h2{
font-size:58px;
line-height:1.2;
color:#0A2C5A;
margin-bottom:25px;
font-weight:800;
}

.enquiry-left p{
font-size:20px;
margin-bottom:30px;
color:#666;
}

.enquiry-left ul{
display:flex;
flex-direction:column;
gap:18px;
}

.enquiry-left li{
list-style:none;
font-size:18px;
font-weight:500;
display:flex;
align-items:center;
gap:12px;
}

.enquiry-left li i{
color:#2ECC71;
}

.enquiry-form-box{
background:#fff;
padding:45px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.enquiry-form-box h3{
font-size:38px;
margin-bottom:28px;
color:#0A2C5A;
text-align:center;
font-weight:800;
}

.enquiry-form-box form{
display:flex;
flex-direction:column;
gap:18px;
}

.enquiry-form-box input,
.enquiry-form-box select,
.enquiry-form-box textarea{
width:100%;
padding:18px;
border:1px solid #ddd;
border-radius:12px;
font-size:16px;
font-family:'Poppins',sans-serif;
outline:none;
transition:0.3s;
}

.enquiry-form-box input:focus,
.enquiry-form-box select:focus,
.enquiry-form-box textarea:focus{
border-color:#1E88E5;
box-shadow:0 0 0 4px rgba(30,136,229,0.1);
}

.submit-btn{
width:100%;
}

.form-note{
margin-top:10px;
text-align:center;
font-size:14px;
color:#777;
}

/* =========================
CONTACT
========================= */

.contact-section{
background:#f5f7fb;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-bottom:50px;
}

.contact-card{
background:#fff;
padding:45px 30px;
border-radius:22px;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

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

.contact-card i{
font-size:52px;
color:#FFC107;
margin-bottom:20px;
}

.contact-card h3{
font-size:28px;
color:#0A2C5A;
margin-bottom:16px;
font-weight:700;
}

.contact-card p{
font-size:18px;
color:#666;
line-height:1.8;
}

.map-wrapper{
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* =========================
FOOTER
========================= */

.footer{
background:#0A2C5A;
padding:35px 0;
text-align:center;
}

.footer p{
color:#fff;
font-size:16px;
margin:4px 0;
}

/* =========================
WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-btn{
position:fixed;
right:18px;
bottom:18px;
width:64px;
height:64px;
background:#25D366;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:30px;
z-index:999;
box-shadow:0 10px 28px rgba(0,0,0,0.24);
transition:all 0.3s ease;
border:4px solid #fff;
animation:whatsappPulse 2s infinite;
}

.whatsapp-btn:hover{
transform:translateY(-5px) scale(1.05);
background:#1ebe5d;
}

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,0.5);
}

70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}
/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

.hero-content h1{
font-size:62px;
}

.enquiry-left h2{
font-size:52px;
}

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

body{
padding-top:84px;
}

.nav-container{
gap:20px;
}

.navbar{
gap:22px;
}

.hero{
min-height:82vh;
padding:100px 0 60px;
}

.hero-content h1{
font-size:52px;
line-height:1.12;
}

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

.section-title h2{
font-size:44px;
}

.enquiry-container{
grid-template-columns:1fr;
gap:55px;
}

.enquiry-left{
text-align:center;
}

.enquiry-left ul{
align-items:center;
}

.enquiry-left h2{
font-size:46px;
}

.contact-grid,
.course-grid,
.facility-grid,
.placement-grid,
.gallery-grid,
.helpline-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* =========================
MOBILE LARGE
========================= */

@media(max-width:768px){

body{
padding-top:82px;
}

.header{
padding:12px 0;
}

.nav-container{
flex-wrap:wrap;
gap:14px;
}

.navbar{
display:none;
}

.menu-btn{
display:block;
font-size:28px;
}

.nav-btn{
padding:12px 22px;
font-size:15px;
}

/* HERO */

.hero{
min-height:76vh;
padding:95px 0 55px;
background-position:center center;
}

.hero-content{
padding:0 12px;
}

.hero-logo{
width:95px;
margin-bottom:18px;
}

.hero-content h1{
font-size:42px;
line-height:1.15;
margin-bottom:16px;
letter-spacing:-0.5px;
}

.hero-content p{
font-size:18px;
line-height:1.6;
margin-bottom:22px;
}

.hero-badges{
gap:10px;
margin-bottom:26px;
}

.hero-badges span{
font-size:13px;
padding:9px 15px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
gap:14px;
}

.btn,
.btn-outline{
width:100%;
max-width:300px;
}

/* SECTION */

.section-padding{
padding:75px 0;
}

.section-title{
margin-bottom:42px;
}

.section-title h2{
font-size:38px;
line-height:1.2;
}

.section-title p{
font-size:17px;
}

/* GRIDS */

.contact-grid,
.course-grid,
.facility-grid,
.placement-grid,
.gallery-grid,
.helpline-grid{
grid-template-columns:1fr;
gap:24px;
}

/* CARDS */

.course-card,
.facility-card,
.contact-card,
.placement-card,
.helpline-card{
padding:34px 24px;
border-radius:20px;
}

/* GALLERY */

.gallery-grid img{
height:240px;
}

/* ENQUIRY */

.enquiry-left h2{
font-size:38px;
line-height:1.2;
}

.enquiry-left p{
font-size:18px;
}

.enquiry-left li{
font-size:17px;
}

.enquiry-form-box{
padding:30px 22px;
border-radius:20px;
}

.enquiry-form-box h3{
font-size:30px;
margin-bottom:24px;
}

/* CONTACT */

.contact-card h3{
font-size:24px;
}

.contact-card p{
font-size:16px;
}

/* MAP */

.map-wrapper iframe{
height:350px;
}

/* FLOAT BUTTON */

.whatsapp-btn{
width:58px;
height:58px;
font-size:26px;
right:16px;
bottom:16px;
}

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

body{
padding-top:78px;
}

/* LOGO */

.logo-area{
gap:10px;
}

.logo-area img{
width:52px;
height:52px;
}

.logo-text h2{
font-size:18px;
}

.logo-text p{
font-size:9px;
letter-spacing:0.5px;
}

/* HERO */

.hero{
min-height:70vh;
padding:90px 0 50px;
}

.hero-logo{
width:82px;
padding:6px;
}

.hero-content h1{
font-size:34px;
line-height:1.18;
}

.hero-content p{
font-size:16px;
line-height:1.6;
}

.hero-badges{
gap:8px;
}

.hero-badges span{
font-size:12px;
padding:8px 13px;
}

/* BUTTON */

.btn,
.btn-outline{
padding:14px 20px;
font-size:15px;
}

/* SECTIONS */

.section-padding{
padding:65px 0;
}

.section-title h2{
font-size:30px;
}

.section-title p{
font-size:16px;
}

/* CARDS */

.course-card,
.facility-card,
.contact-card,
.placement-card,
.helpline-card{
padding:28px 18px;
}

.course-card h3,
.facility-card h3,
.contact-card h3{
font-size:24px;
}

.course-card p,
.facility-card p,
.contact-card p{
font-size:15px;
}

/* ENQUIRY */

.enquiry-left h2{
font-size:32px;
}

.enquiry-left p{
font-size:16px;
}

.enquiry-left li{
font-size:15px;
}

.enquiry-form-box{
padding:24px 18px;
}

.enquiry-form-box h3{
font-size:26px;
}

.enquiry-form-box input,
.enquiry-form-box select,
.enquiry-form-box textarea{
padding:15px;
font-size:15px;
}

/* CONTACT */

.contact-card p{
line-height:1.7;
}

/* MAP */

.map-wrapper iframe{
height:280px;
}

/* FLOAT BUTTON */

.whatsapp-btn{
width:54px;
height:54px;
font-size:23px;
right:14px;
bottom:14px;
}

}
/* =========================
ADMISSION POPUP
========================= */

.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.82);
display:flex;
justify-content:center;
align-items:center;
z-index:999999;
padding:20px;
animation:popupFade 0.4s ease;
}

.popup-box{
position:relative;
max-width:820px;
width:100%;
animation:popupZoom 0.4s ease;
}

.popup-box img{
width:100%;
border-radius:18px;
box-shadow:0 15px 50px rgba(0,0,0,0.45);
display:block;
}

.popup-close{
position:absolute;
top:-18px;
right:-18px;
width:45px;
height:45px;
border:none;
border-radius:50%;
background:#ffffff;
color:#000;
font-size:28px;
font-weight:700;
cursor:pointer;
box-shadow:0 5px 20px rgba(0,0,0,0.25);
transition:0.3s;
}

.popup-close:hover{
background:#ffcc00;
transform:scale(1.08);
}

/* Animations */

@keyframes popupFade{
from{
opacity:0;
}
to{
opacity:1;
}
}

@keyframes popupZoom{
from{
transform:scale(0.8);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}

/* Mobile Responsive */

@media(max-width:768px){

.popup-box{
max-width:95%;
}

.popup-close{
top:-14px;
right:-14px;
width:40px;
height:40px;
font-size:24px;
}

}