*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

:root{
--green:#0b5d3b;
--gold:#d4af37;
--dark:#041a12;
--white:#ffffff;
}

body{
background:#fff;
overflow-x:hidden;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.35);
backdrop-filter:blur(12px);
z-index:999;
}

.logo{
font-size:24px;
font-weight:700;
color:white;
}

.nav-links{
display:flex;
list-style:none;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:white;
font-weight:500;
transition:.3s;
}

.nav-links a:hover{
color:var(--gold);
}

/* HERO */

.hero{
height:100vh;
background:url(hero.jpg);
background-size:cover;
background-position:center;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.overlay{
position:absolute;
inset:0;
background:linear-gradient(
rgba(0,0,0,.65),
rgba(0,0,0,.75)
);
}

.hero-content{
position:relative;
z-index:2;
max-width:900px;
padding:20px;
color:white;
}

.tag{
background:rgba(212,175,55,.15);
color:var(--gold);
padding:10px 22px;
border-radius:40px;
display:inline-block;
margin-bottom:20px;
font-weight:600;
}

.hero h1{
font-size:75px;
line-height:1.1;
margin-bottom:20px;
font-weight:800;
}

.hero h1 span{
color:var(--gold);
}

.hero p{
font-size:22px;
line-height:1.8;
max-width:700px;
margin:auto;
margin-bottom:35px;
}

.hero-btns{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn{
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-gold{
background:var(--gold);
color:black;
}

.btn-outline{
border:2px solid white;
color:white;
}

.btn:hover{
transform:translateY(-5px);
}

/* STATS */

.stats{
padding:0 8%;
margin-top:-80px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
position:relative;
z-index:10;
}

.stat-box{
background:white;
padding:35px;
border-radius:25px;
text-align:center;
box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.stat-box h2{
font-size:45px;
color:var(--gold);
margin-bottom:10px;
}

.stat-box p{
font-weight:500;
}

/* ABOUT */

.about{
padding:120px 8%;
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:25px;
}

.section-tag{
color:var(--gold);
font-weight:700;
letter-spacing:2px;
}

.about-content h2{
font-size:50px;
margin:15px 0 25px;
color:var(--green);
}

.about-content p{
line-height:1.9;
margin-bottom:20px;
font-size:17px;
}

.about-list{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
margin-top:25px;
}

.about-list div{
background:#f5f5f5;
padding:15px;
border-radius:12px;
}

/* MOBILE */

@media(max-width:768px){

.hero h1{
font-size:42px;
}

.about{
grid-template-columns:1fr;
}

.nav-links{
display:none;
}

.stats{
margin-top:-40px;
}

}
/* PROGRAMS */

.programs{
padding:120px 8%;
background:#f8f9fa;
}

.section-header{
text-align:center;
max-width:800px;
margin:auto;
margin-bottom:60px;
}

.section-header h2{
font-size:48px;
margin-top:15px;
color:var(--green);
}

.section-header p{
margin-top:15px;
line-height:1.8;
}

.program-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.program-card{
background:white;
padding:35px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.program-card:hover{
transform:translateY(-10px);
}

.program-icon{
font-size:50px;
margin-bottom:20px;
}

.program-card h3{
margin-bottom:15px;
color:var(--green);
}

/* FACILITIES */

.facilities{
padding:120px 8%;
background:white;
}

.facility-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.facility-card{
background:linear-gradient(135deg,#0b5d3b,#083f2a);
padding:35px;
border-radius:25px;
color:white;
}

.facility-card h3{
margin-bottom:15px;
color:#d4af37;
}

/* ACHIEVEMENTS */

.achievements{
padding:120px 8%;
background:#041a12;
}

.achievement-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.achievement-card{
background:rgba(255,255,255,.06);
padding:40px;
border-radius:25px;
text-align:center;
border:1px solid rgba(255,255,255,.08);
}

.medal{
font-size:70px;
margin-bottom:20px;
}

.achievement-card h3{
color:#d4af37;
margin-bottom:15px;
font-size:28px;
}

.achievement-card p{
color:white;
font-size:18px;
}
/* GALLERY */

.gallery-section{
padding:120px 8%;
background:#f8f9fa;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}

.gallery-item{
overflow:hidden;
border-radius:20px;
}

.gallery-item img{
width:100%;
height:280px;
object-fit:cover;
transition:.5s;
}

.gallery-item:hover img{
transform:scale(1.1);
}

/* REGISTRATION */

.registration{
padding:120px 8%;
background:linear-gradient(135deg,#0b5d3b,#041a12);
color:white;
}

.register-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.register-content h2{
font-size:48px;
margin:15px 0 20px;
}

.register-content p{
line-height:1.8;
margin-bottom:25px;
}

.register-content ul{
list-style:none;
}

.register-content li{
margin-bottom:12px;
}

.register-form{
background:white;
padding:40px;
border-radius:25px;
}

.register-form input,
.register-form select,
.register-form textarea{
width:100%;
padding:15px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:12px;
}

.register-form button{
width:100%;
padding:15px;
background:#d4af37;
border:none;
border-radius:12px;
font-weight:700;
cursor:pointer;
}

/* CONTACT */

.contact-section{
padding:120px 8%;
background:white;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.contact-card{
background:#f8f9fa;
padding:35px;
border-radius:20px;
text-align:center;
}

.contact-card h3{
margin-bottom:15px;
color:#0b5d3b;
}

/* FOOTER */

footer{
background:#041a12;
padding:60px 20px;
text-align:center;
color:white;
}

.footer-logo{
font-size:30px;
font-weight:700;
margin-bottom:15px;
}

.footer-links{
margin:30px 0;
}

.footer-links a{
color:white;
text-decoration:none;
margin:0 12px;
}

.footer-links a:hover{
color:#d4af37;
}

.copyright{
opacity:.7;
}

/* WHATSAPP */

.whatsapp-btn{
position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
background:#25D366;
color:white;
font-size:30px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,.25);
z-index:999;
}

/* MOBILE */

@media(max-width:768px){

.register-wrapper{
grid-template-columns:1fr;
}

.register-content h2{
font-size:36px;
}

}
.cursor{
width:40px;
height:40px;
border:2px solid #d4af37;
border-radius:50%;
position:fixed;
pointer-events:none;
transform:translate(-50%,-50%);
z-index:9999;
transition:.1s;
}

.cursor-dot{
width:8px;
height:8px;
background:#d4af37;
border-radius:50%;
position:fixed;
pointer-events:none;
transform:translate(-50%,-50%);
z-index:9999;
}
a,
button,
.program-card,
.feature,
.gallery-item{
transition:.3s;
}

a:hover,
button:hover,
.program-card:hover,
.feature:hover{
box-shadow:0 0 30px rgba(212,175,55,.4);
}
.hero h1{
animation:fadeUp 1.2s ease;
}

.hero p{
animation:fadeUp 1.6s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(60px);
}

to{
opacity:1;
transform:translateY(0);
}

}
.achievement-card{
animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

}
.reveal{
opacity:0;
transform:translateY(70px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}
.btn-gold{
position:relative;
overflow:hidden;
}

.btn-gold::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:
linear-gradient(
90deg,
transparent,
rgba(255,255,255,.5),
transparent
);

transition:.8s;
}

.btn-gold:hover::before{
left:100%;
}