


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    transition:.4s;
    overflow-x:hidden;
}



body.dark{
    background:#121212;
    color:#f5f5f5;
}

body.dark header{
    background:rgba(20,20,20,.9);
}

body.dark .card,
body.dark .program-card,
body.dark .contact-card,
body.dark .stat-box{
    background:#1d1d1d;
    color:white;
}

body.dark footer{
    background:#111;
}



:root{
    --primary:#355E3B;
    --secondary:#ffffff;
    --accent:#D4AF37;
    --shadow:0 10px 30px rgba(0,0,0,.1);
}


.loader{
    position:fixed;
    width:100%;
    height:100%;
    background:white;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    transition:1s;
}

.loader img{
    width:120px;
}


header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);
    box-shadow:var(--shadow);
}

.navbar{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:65px;
}

.logo h2{
    color:var(--primary);
    font-size:1.2rem;
}

.logo span{
    font-size:.8rem;
    color:gray;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

.controls{
    display:flex;
    gap:10px;
}

#themeToggle,
.menu-btn{
    border:none;
    width:45px;
    height:45px;
    border-radius:50%;
    cursor:pointer;
    background:var(--primary);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

#themeToggle:hover,
.menu-btn:hover{
    transform:scale(1.1);
}


.hero{
    min-height:100vh;
    background:
        linear-gradient(rgba(0,0,0,.55),
        rgba(0,0,0,.55)),
        url("../images/image1.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.overlay{
    width:80%;
}

.hero-logo{
    width:140px;
    margin-bottom:20px;
}

.hero h1{
    font-size:4rem;
    letter-spacing:2px;
    margin-bottom:20px;
}

.hero p{
    max-width:900px;
    margin:auto;
    line-height:1.8;
    font-size:1.1rem;
}

.hero-buttons{
    margin-top:40px;
}

.hero-buttons a{
    text-decoration:none;
    display:inline-block;
    margin:10px;
    padding:15px 40px;
    border-radius:50px;
    background:var(--primary);
    color:white;
    transition:.4s;
}

.hero-buttons a:hover{
    background:var(--accent);
}


section{
    padding:100px 10%;
}

.container{
    width:100%;
}

section h2{
    text-align:center;
    color:var(--primary);
    font-size:2.5rem;
    margin-bottom:40px;
}


.about-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    padding:35px;
    border-radius:20px;
    background:white;
    box-shadow:var(--shadow);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:var(--primary);
    margin-bottom:15px;
}


.stats{
    background:var(--primary);
    color:white;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
}

.stat-box{
    text-align:center;
}

.stat-box h2{
    color:white;
    font-size:3rem;
}

.stat-box p{
    margin-top:10px;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.program-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.4s;
    text-align:center;
}

.program-card:hover{
    transform:translateY(-10px);
}

.program-card span{
    font-size:60px;
    color:var(--primary);
    margin-bottom:20px;
}

.program-card h3{
    margin-bottom:15px;
}


#gallery{
    background:#f8f8f8;
}

body.dark #gallery{
    background:#161616;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    cursor:pointer;
    transition:.5s;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.gallery-grid img:hover{
    transform:scale(1.03);
}


#contact{
    background:linear-gradient(to right,#355E3B,#2a492e);
    color:white;
}

#contact h2{
    color:white;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.contact-card{
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.1);
    padding:40px 20px;
    border-radius:20px;
    text-align:center;
    text-decoration:none;
    color:white;
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.15);
}

.contact-card span{
    font-size:50px;
    margin-bottom:15px;
}

.contact-card h3{
    margin-bottom:10px;
}


footer{
    background:#1f3524;
    color:white;
    text-align:center;
    padding:60px 20px;
}

footer img{
    width:90px;
    margin-bottom:20px;
}

footer h3{
    margin-bottom:15px;
}

footer p{
    opacity:.85;
    line-height:1.8;
}


#topBtn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#355E3B;
    color:white;
    cursor:pointer;
    display:none;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
    transition:.4s;
    z-index:999;
}

#topBtn:hover{
    transform:translateY(-5px);
    background:#D4AF37;
}

#topBtn span{
    font-size:30px;
}


::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#efefef;
}

::-webkit-scrollbar-thumb{
    background:#355E3B;
    border-radius:20px;
}

body.dark::-webkit-scrollbar-track{
    background:#111;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.card,
.program-card,
.contact-card,
.gallery-grid img{
    animation:fadeUp .8s ease;
}

@media(max-width:992px){

.hero h1{
    font-size:3rem;
}

.nav-links{
    gap:20px;
}

section{
    padding:80px 7%;
}

}


@media(max-width:768px){

.navbar{
    flex-wrap:wrap;
}

.logo h2{
    font-size:1rem;
}

.logo span{
    display:none;
}

.nav-links{
    width:100%;
    margin-top:20px;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.hero{
    padding-top:120px;
}

.hero h1{
    font-size:2.3rem;
}

.hero p{
    font-size:1rem;
}

.hero-buttons a{
    width:220px;
    display:block;
    margin:15px auto;
}

section h2{
    font-size:2rem;
}

.gallery-grid img{
    height:220px;
}

}

@media(max-width:480px){

.hero h1{
    font-size:1.9rem;
}

.hero-logo{
    width:100px;
}

.program-card,
.card,
.contact-card{
    padding:30px 20px;
}

.stat-box h2{
    font-size:2.2rem;
}

section{
    padding:70px 5%;
}

}


body.dark .nav-links a{
    color:white;
}

body.dark .logo h2{
    color:#ffffff;
}

body.dark .program-card span{
    color:#D4AF37;
}

body.dark .card h3{
    color:#D4AF37;
}

body.dark .loader{
    background:#121212;
}

body.dark .hero{
    filter:brightness(.95);
}

body.dark .gallery-grid img{
    box-shadow:0 10px 25px rgba(255,255,255,.05);
}

body.dark #topBtn{
    background:#D4AF37;
    color:black;
}

.program-card,
.card,
.gallery-grid img,
.contact-card{
    transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.program-card:hover,
.card:hover,
.gallery-grid img:hover,
.contact-card:hover{
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

```css
.program-description{
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#666;
    line-height:1.8;
    margin-bottom:50px;
}

.program-category{
    margin-bottom:80px;
}

.program-category h3{
    color:var(--primary);
    margin-bottom:30px;
    border-left:5px solid var(--accent);
    padding-left:15px;
    font-size:1.8rem;
}

.program-card h4{
    color:var(--primary);
    margin-bottom:15px;
    font-size:1.1rem;
}

.program-card p{
    line-height:1.8;
    color:#666;
}

body.dark .program-card p{
    color:#ddd;
}

//*roms//