:root{
--blue:#0A2342;
--blue-light:#13396b;
--gold:#D4AF37;
--gold-light:#f0d87a;
--white:#ffffff;
--light:#f7f9fc;
--text:#1d1d1f;
--shadow:0 20px 60px rgba(0,0,0,.08);
}

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:var(--light);
color:var(--text);
overflow-x:hidden;
}

.bg-pattern{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:
radial-gradient(circle at top right,
rgba(212,175,55,.15),
transparent 35%),
radial-gradient(circle at bottom left,
rgba(10,35,66,.12),
transparent 35%);
z-index:-1;
}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 6%;
display:flex;
justify-content:space-between;
align-items:center;
backdrop-filter:blur(20px);
background:rgba(255,255,255,.85);
border-bottom:1px solid rgba(255,255,255,.4);
z-index:999;
}

.logo-group{
display:flex;
gap:15px;
align-items:center;
}

.logo-group img{
height:55px;
object-fit:contain;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:var(--blue);
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:var(--gold);
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding:120px 6%;
}

.hero-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
width:100%;
}

.badge{
display:inline-block;
padding:10px 18px;
background:rgba(212,175,55,.15);
border:1px solid rgba(212,175,55,.3);
color:var(--gold);
border-radius:999px;
font-weight:600;
margin-bottom:20px;
}

.hero h1{
font-size:72px;
line-height:1.1;
color:var(--blue);
font-weight:800;
}

.hero h2{
font-size:24px;
margin-top:10px;
color:var(--gold);
font-weight:600;
}

.hero h3{
margin-top:18px;
font-size:28px;
color:var(--blue);
}

.hero p{
margin-top:25px;
font-size:18px;
line-height:1.9;
max-width:700px;
}

.hero-buttons{
margin-top:40px;
display:flex;
gap:18px;
flex-wrap:wrap;
}

.btn{
padding:15px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
display:inline-flex;
align-items:center;
gap:10px;
transition:.35s;
}

.btn:hover{
transform:translateY(-5px);
}

.btn.gold{
background:linear-gradient(
135deg,
var(--gold),
var(--gold-light)
);
color:#000;
}

.btn.blue{
background:var(--blue);
color:#fff;
}

.btn.white{
background:#fff;
color:var(--blue);
box-shadow:var(--shadow);
}

.hero-image{
display:flex;
justify-content:center;
}

.hero-image img{
width:100%;
max-width:500px;
border-radius:40px;
box-shadow:
0 40px 80px rgba(10,35,66,.25);
border:5px solid white;
}

.section{
padding:120px 0;
}

.section-title{
font-size:42px;
font-weight:800;
color:var(--blue);
text-align:center;
margin-bottom:60px;
}

.light{
color:white;
}

.glass-card{
background:rgba(255,255,255,.65);
backdrop-filter:blur(20px);
padding:50px;
border-radius:30px;
box-shadow:var(--shadow);
line-height:2;
font-size:18px;
}

.cards-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.info-card{
background:white;
padding:40px;
border-radius:25px;
text-align:center;
box-shadow:var(--shadow);
transition:.35s;
}

.info-card:hover{
transform:translateY(-10px);
}

.info-card i{
font-size:45px;
color:var(--gold);
margin-bottom:20px;
}

.info-card h4{
color:var(--blue);
margin-bottom:12px;
}

.dark{
background:
linear-gradient(
135deg,
var(--blue),
#05152b
);
}

.institution-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.institution-card{
background:rgba(255,255,255,.08);
backdrop-filter:blur(10px);
padding:40px;
border-radius:25px;
color:white;
border:1px solid rgba(255,255,255,.1);
transition:.35s;
}

.institution-card:hover{
background:rgba(212,175,55,.15);
transform:translateY(-8px);
}

.stats{
padding:100px 6%;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.stat-card{
background:white;
padding:50px;
text-align:center;
border-radius:30px;
box-shadow:var(--shadow);
}

.stat-card h2{
font-size:60px;
color:var(--gold);
}

.gallery{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.gallery img{
width:100%;
height:350px;
object-fit:cover;
border-radius:25px;
box-shadow:var(--shadow);
}

.contact-section{
padding:120px 0;
}

.contact-card{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.contact-item{
background:white;
padding:25px;
border-radius:20px;
box-shadow:var(--shadow);
font-weight:600;
}

.contact-item i{
color:var(--gold);
margin-right:10px;
}

.address-box{
margin-top:40px;
background:white;
padding:40px;
border-radius:30px;
box-shadow:var(--shadow);
text-align:center;
}

.address-box h3{
color:var(--blue);
margin-bottom:15px;
}

.address-box p{
line-height:1.9;
margin-bottom:25px;
}

footer{
background:var(--blue);
color:white;
text-align:center;
padding:80px 20px;
}

footer img{
height:70px;
margin-bottom:20px;
}

footer h3{
font-size:28px;
margin-bottom:10px;
}

@media(max-width:1100px){

.hero-content{
grid-template-columns:1fr;
text-align:center;
}

.cards-grid{
grid-template-columns:repeat(2,1fr);
}

.institution-grid{
grid-template-columns:repeat(2,1fr);
}

.stats{
grid-template-columns:1fr;
}

.contact-card{
grid-template-columns:1fr;
}

.gallery{
grid-template-columns:1fr;
}

.hero h1{
font-size:54px;
}

}

@media(max-width:768px){

.nav-links{
display:none;
}

.cards-grid{
grid-template-columns:1fr;
}

.institution-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:42px;
}

.hero h3{
font-size:22px;
}

.section-title{
font-size:32px;
}

.hero-buttons{
justify-content:center;
}

}