*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}
body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f7f7f7;
    color:#333;
}
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#0b6b2e;
    padding:15px 60px;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:70px;
    height:70px;
    margin-right:15px;
}

.logo h2{
    color:#fff;
    margin:0;
}

.logo p{
    color:#d8ffd8;
    font-size:14px;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:25px;
    font-size:18px;
    transition:.3s;
}

nav a:hover{
    color:#ffd700;
}

.hero{
    height:90vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
    url("images/hero.jpg");
    background-size:cover;
    background-position:center;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    width:70%;
    line-height:35px;
}

.btn{
    display:inline-block;
    margin-top:30px;
    background:#2ecc71;
    color:white;
    padding:15px 35px;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.btn:hover{
    background:#27ae60;
}

.section{
    padding:80px 10%;
    background:white;
}

.section h2{
    text-align:center;
    color:#0b6b2e;
    font-size:40px;
    margin-bottom:40px;
}

.section h3{
    color:#0b6b2e;
    margin-top:25px;
}

.section p{
    margin-top:10px;
    line-height:30px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card h3{
    margin:20px 0 10px;
}

.card p{
    padding:0 20px 20px;
}

ul{
    max-width:700px;
    margin:auto;
}

ul li{
    padding:12px;
    font-size:20px;
}

form{
    max-width:700px;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:16px;
}

textarea{
    height:150px;
}

button{
    background:#0b6b2e;
    color:white;
    padding:15px 30px;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-size:18px;
}

button:hover{
    background:#075020;
}

footer{
    background:#0b6b2e;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:40px;
}

@media(max-width:900px){

header{
    flex-direction:column;
    padding:20px;
}

nav{
    margin-top:15px;
}

nav a{
    display:block;
    margin:10px 0;
}

.hero h1{
    font-size:38px;
}

.hero p{
    width:90%;
    font-size:18px;
}

.logo{
    flex-direction:column;
    text-align:center;
}

.logo img{
    margin-bottom:10px;
}
}
/* ===========================
   Statistics Section
=========================== */

.statistics{
    background:#0b6b2e;
    padding:80px 8%;
    text-align:center;
}

.statistics h2{
    color:#fff;
    font-size:40px;
    margin-bottom:10px;
}

.stats-subtitle{
    color:#e8f5e9;
    margin-bottom:50px;
    font-size:18px;
}

.stats-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.stat-box{
    background:#fff;
    width:230px;
    padding:35px 20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-10px);
}

.stat-box h1{
    color:#0b6b2e;
    font-size:50px;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
    font-weight:bold;
    color:#444;
}

@media(max-width:768px){

.stats-container{
    flex-direction:column;
    align-items:center;
}

.stat-box{
    width:90%;
}

}
.map-section{
    padding:60px 8%;
    text-align:center;
}

.map-section h2{
    color:#0b6b2e;
    margin-bottom:25px;
    font-size:32px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:0;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    
    /* ===========================
Latest News & Events
=========================== */

.news-events{
    padding:80px 8%;
    background:#f8f9fa;
    text-align:center;
}

.news-events h2{
    color:#0b6b2e;
    margin-bottom:40px;
    font-size:38px;
}

.news-container{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.news-card{
    width:380px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.news-card:hover{
    transform:translateY(-10px);
}

.news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.news-content{
    padding:20px;
    text-align:left;
}

.news-content span{
    color:#0b6b2e;
    font-size:14px;
    font-weight:bold;
}

.news-content h3{
    margin:15px 0;
    color:#222;
}

.news-content p{
    color:#666;
    line-height:1.6;
}

.news-content a{
    display:inline-block;
    margin-top:15px;
    text-decoration:none;
    background:#0b6b2e;
    color:white;
    padding:10px 20px;
    border-radius:6px;
}

.news-content a:hover{
    background:#12863d;
}
/* Statistics Section */

.statistics{
    padding:80px 10%;
    background:#f5f7f5;
    text-align:center;
}

.statistics h2{
    font-size:40px;
    color:#1b5e20;
    margin-bottom:10px;
}

.stats-subtitle{
    color:#666;
    margin-bottom:40px;
}

.stats-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-box{
    background:#fff;
    padding:35px 20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h1{
    font-size:48px;
    color:#2e7d32;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
    color:#555;
    font-weight:600;
}
/*==============================
RESPONSIVE HEADER
==============================*/

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.1);
position:sticky;
top:0;
z-index:999;
}

.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo img{
width:65px;
height:65px;
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:#222;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#2e7d32;
}

.menu-toggle{
display:none;
font-size:30px;
cursor:pointer;
}

/*==============================
MOBILE RESPONSIVE
==============================*/

@media(max-width:768px){
.menu-toggle{
    display:block;
    font-size:32px;
    color:white;
    cursor:pointer;
}

nav{
    display:none;
    width:100%;
    flex-direction:column;
    text-align:center;
    background:#0b6b27;
}

nav.active{
    display:flex;
}

nav a{
    display:block;
    padding:15px;
    color:white;
    text-decoration:none;
}
header{
flex-wrap:wrap;
padding:15px;
}

.logo h2{
font-size:18px;
}

.logo p{
font-size:12px;
}

.menu-toggle{
display:block;
}

nav{
display:none;
width:100%;
flex-direction:column;
margin-top:15px;
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

nav.active{
display:flex;
}

nav a{
padding:12px;
border-bottom:1px solid #eee;
}

.hero{
padding:80px 20px;
text-align:center;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:16px;
}

.stats-container,
.news-container,
.activities-container,
.team-container,
.footer-container,
.contact-container{
display:grid;
grid-template-columns:1fr;
gap:20px;
}

}

iframe{
height:300px;
}

}
 =========================================================
Footer
   ========================================================= */
.site-footer{background:var(--paddy-900);color:var(--paper-alt);padding:64px 0 0;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:40px;padding-bottom:44px;}
.footer-logo{display:flex;align-items:center;gap:10px;margin-bottom:14px;}
.footer-logo .brand-mark{color:var(--wheat-300);}
.footer-brand strong{color:var(--paper);}
.footer-brand em{color:var(--wheat-300);}
.site-footer p{color:rgba(243,241,228,0.65);font-size:.9rem;}
.site-footer h5{
  font-family:var(--font-mono);text-transform:uppercase;letter-spacing:.08em;font-size:.75rem;
  color:var(--wheat-300);margin:0 0 16px;
}
.site-footer .footer-col a{
  display:block;color:rgb(250, 250, 248);font-size:.92rem;margin-bottom:10px;
}
.site-footer .footer-col a:hover{color:var(--wheat-300);}

.footer-social{display:flex;gap:10px;margin-bottom:16px;}
.footer-social a{
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;margin:0;
  background:rgba(243,241,228,0.08);color:var(--paper-alt);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover{background:var(--wheat-500);color:var(--paddy-900);transform:translateY(-2px);}
.footer-phone{display:flex !important;align-items:center;gap:8px;color:rgba(243,241,228,0.8);}
.footer-phone i{color:var(--wheat-300);}

.footer-bottom{
  border-top:1px solid rgba(243,241,228,0.14);
  padding:22px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;
}
.footer-bottom-text p{margin:0;font-size:.82rem;color:rgba(243,241,228,0.6);line-height:1.7;}
.footer-bottom-text a{color:var(--wheat-300);}
.footer-share{display:flex;gap:8px;}
.footer-share a{
  width:32px;height:32px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-size:.8rem;
  background:rgba(243,241,228,0.08);color:var(--paper-alt);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.footer-share a:hover{background:var(--wheat-500);color:var(--paddy-900);transform:translateY(-2px);}
.Logo img{
    width: 120px;   /* 120px वा 100px पनि राख्न सक्नुहुन्छ */
    height: auto;
}
.footer-about strong{
    color: #ffffff;
}
.footer-about{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.site-footer p,
.site-footer a,
.footer-bottom-text p,
.footer-bottom-text a{
    color: #ffffff !important;
}
/* Back to top */
.to-top{
  position:fixed;right:22px;bottom:22px;width:44px;height:44px;border-radius:50%;
  background:var(--paddy-700);color:var(--paper);display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transform:translateY(8px);
  transition:opacity .25s ease, transform .25s ease;
  z-index:40;
}
.to-top.show{opacity:1;pointer-events:auto;transform:translateY(0);}
.to-top:hover{background:var(--wheat-500);color:var(--paddy-900);}
/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 0px 15px;
    text-decoration: none;
    color: #070707;
}

.dropdown-menu li a:hover {
    background: #f1f1f1;
    color: green;
}

.dropdown:hover .dropdown-menu {
    display: block;
}