:root{

--ngo-green:#0a7a4f;
--ngo-gold:#f4b400;
--ngo-soft:#f7f7f7;
--ngo-dark:#222;

}
/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#fff;
box-shadow:0 2px 8px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:1000;
transition:transform .3s ease;
}
.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
height:55px;
}

nav{
display:flex;
gap:15px;
flex-wrap:wrap;
}

nav a{
text-decoration:none;
font-weight:bold;
color:#333;
}

.donate{
background:#C3472D;
color:#fff;
padding:8px 16px;
border-radius:6px;
}
body{
margin:0;
font-family:'Open Sans', Arial, sans-serif;
background:#F6F3EB;
color:#333;
}

/* HEADER */

body{
margin:0;
font-family:'Open Sans', Arial, sans-serif;
background:#F6F3EB;
color:#333;
}

/* HERO */

.hero{
height:80vh;
background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url(hero.jpg);
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
padding:20px;
}

.hero h1{
font-size:48px;
max-width:900px;
}

.hero p{
font-size:18px;
max-width:700px;
}

/* HERO BUTTONS */

.cta a{
margin:10px;
padding:12px 22px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
display:inline-block;
}

.btn-donate{
background:#C3472D;
color:#fff;
}

.btn-volunteer{
background:#1E7A4E;
color:#fff;
}

/* GENERAL SECTION */

.section{
padding:70px 30px;
text-align:center;
}

/* SECTION DIVIDER */

.section-divider{
width:80px;
height:3px;
background:#0a7a4f;
margin:10px auto 30px auto;
border-radius:2px;
}

/* TRUST BADGES */

.ngo-trust{
padding:60px 20px;
text-align:center;
background:#f6f6f6;
}

.trust-container{
max-width:1000px;
margin:auto;
}

.trust-badges{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin-top:20px;
}

.badge{
background:#0a7a4f;
color:white;
padding:10px 18px;
border-radius:6px;
font-weight:600;
}

/* OUTREACH FEATURE SECTION */

.outreach-feature{
padding:80px 20px;
background:#ffffff;
}

.outreach-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.outreach-text{
flex:1;
min-width:300px;
}

.foundation-meta{
font-size:14px;
color:#666;
margin-bottom:10px;
letter-spacing:0.5px;
}

.outreach-main-title{
font-family:'Playfair Display', serif;
font-size:42px;
font-weight:700;
line-height:1.2;
margin-bottom:20px;
text-align:left;
}

.outreach-description{
margin-top:18px;
line-height:1.8;
max-width:620px;
text-align:left;
}

.outreach-faith{
margin-top:18px;
font-weight:700;
color:#0a7a4f;
}

.outreach-buttons{
margin-top:22px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

.outreach-btn{
background:#0a7a4f;
color:white;
padding:12px 22px;
border-radius:6px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:all .25s ease;
}

.outreach-btn:hover{
background:#075c3a;
transform:translateY(-2px);
}

/* SLIDER */

.outreach-slider-box{
flex:1;
max-width:490px;
aspect-ratio:1/1;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.outreach-slider-box img{
width:100%;
height:100%;
object-fit:cover;
}

.outreach-caption{
background:#fafafa;
padding:12px;
font-weight:600;
text-align:center;
}

/* ABOUT PAGE */

.about-mvv{
max-width:1100px;
margin:auto;
padding:40px 20px;
}

.mvv-grid{
display:flex;
gap:25px;
flex-wrap:wrap;
justify-content:center;
}

/* MVV CARDS */

.mvv-card{
flex:1 1 280px;
background:#0a7a4f;
color:white;
padding:25px;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.15);
transition:transform .3s ease, box-shadow .3s ease;
}

.mvv-card:hover{
transform:translateY(-6px);
box-shadow:0 14px 32px rgba(0,0,0,0.25);
}

.mvv-card h2{
font-family:'Playfair Display', serif;
margin-bottom:10px;
}

.about-section{
max-width:900px;
margin:60px auto;
padding:0 20px;
line-height:1.7;
}

/* FOUNDER SECTION */

.founder-profile{
max-width:1000px;
margin:60px auto;
padding:20px;
}

.founder-profile-card{
display:flex;
gap:30px;
align-items:center;
background:#ffffff;
padding:30px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
flex-wrap:wrap;
}

.founder-profile-card img{
width:240px;
border-radius:12px;
object-fit:cover;
}

.founder-text{
flex:1;
line-height:1.7;
}

.founder-slogan{
font-style:italic;
font-size:18px;
color:#0a7a4f;
border-top:3px solid #0a7a4f;
padding-top:10px;
margin-top:20px;
}

/* DEDICATION */

.founder-dedication{
max-width:900px;
margin:60px auto;
padding:35px;
background:#f8f8f8;
border-left:5px solid #0a7a4f;
border-radius:6px;
line-height:1.9;
}

/* FOOTER */

footer{
background:#222;
color:#fff;
text-align:center;
padding:30px;
margin-top:40px;
}

/* MOBILE */

@media (max-width:768px){

.hero h1{
font-size:34px;
}

.outreach-container{
flex-direction:column;
text-align:center;
}

.outreach-text{
text-align:center;
}

.outreach-slider-box{
max-width:350px;
}

.founder-profile-card{
flex-direction:column;
text-align:center;
}

.founder-profile-card img{
width:200px;
}

}/* v149 Global Impact Animation */

.impact-locations div{
opacity:0;
transform:translateY(25px);
transition:all .6s ease;
}

.impact-locations div.show{
opacity:1;
transform:translateY(0);
}/* v150 Collaborations & Community Networks */

.partners-section{
text-align:center;
padding:60px 20px;
background:#fafafa;
}

.partners-subtitle{
max-width:700px;
margin:10px auto 40px auto;
color:#555;
}

.partners-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.partner-badge{
background:white;
padding:14px 22px;
border-radius:8px;
font-weight:600;
box-shadow:0 4px 14px rgba(0,0,0,0.08);
transition:transform .25s ease, box-shadow .25s ease;
}

.partner-badge:hover{
transform:translateY(-4px);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}/* v153 Featured Campaign (Polished) */

.featured-campaign{
padding:80px 20px;
text-align:center;
background:#f6f6f6;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
}

.featured-campaign h2{
font-family:'Playfair Display', serif;
font-size:34px;
margin-bottom:10px;
}

.campaign-desc{
max-width:720px;
margin:10px auto 35px auto;
color:#555;
line-height:1.6;
}

.campaign-progress{
max-width:620px;
margin:auto;
}

.progress-bar{
width:100%;
background:#e2e2e2;
height:18px;
border-radius:30px;
overflow:hidden;
margin-bottom:12px;
}

.progress-fill{
height:100%;
background:#0a7a4f;
transition:width .6s ease;
}

.progress-text{
font-weight:600;
margin-bottom:25px;
}

.campaign-donate-btn{
background:#0a7a4f;
color:white;
padding:14px 26px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:all .25s ease;
}

.campaign-donate-btn:hover{
background:#075c3a;
transform:translateY(-2px);
}/* v154 Testimonials */

.testimonials{
padding:80px 20px;
text-align:center;
background:#ffffff;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1000px;
margin:40px auto;
}

.testimonial-card{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
transition:transform .25s ease, box-shadow .25s ease;
}

.testimonial-card:hover{
transform:translateY(-6px);
box-shadow:0 14px 30px rgba(0,0,0,0.18);
}

.stars{
color:#f4b400;
font-size:18px;
margin-bottom:12px;
}

.testimonial-card span{
display:block;
margin-top:12px;
font-weight:600;
color:#666;
}/* v155 Volunteer Banner (Polished) */

.volunteer-banner{
padding:90px 20px;
background:#0a7a4f;
color:white;
text-align:center;
}

.volunteer-banner h2{
font-family:'Playfair Display', serif;
font-size:36px;
margin-bottom:12px;
}

.volunteer-banner p{
max-width:720px;
margin:0 auto 28px auto;
line-height:1.6;
}

.volunteer-btn{
background:white;
color:#0a7a4f;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:all .25s ease;
}

.volunteer-btn:hover{
background:#f1f1f1;
transform:translateY(-2px);
}/* v156 Premium Section Polish */

/* smoother section spacing */

section{
margin-top:60px;
margin-bottom:60px;
}

/* consistent section titles */

section h2{
font-family:'Playfair Display', serif;
font-size:34px;
margin-bottom:10px;
}

/* subtitle consistency */

section p{
line-height:1.7;
}

/* soft divider line under titles */


/* smoother card hover */

.card{
transition:transform .25s ease, box-shadow .25s ease;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 12px 28px rgba(0,0,0,0.18);
}/* v156 Section Title Polish (Clean Version) */

section h2{
font-family:'Playfair Display', serif;
font-size:34px;
margin-bottom:15px;
letter-spacing:.3px;
}/* v157 Homepage Balance Polish */

/* consistent title alignment */

section h2{
font-family:'Playfair Display', serif;
font-size:34px;
margin-bottom:15px;
letter-spacing:.3px;
text-align:center;
}

/* improve spacing between sections */

section{
margin-top:70px;
margin-bottom:70px;
padding:80px 20px;
}

.section-soft{
background:var(--ngo-soft);
}

.section-highlight{
background:#eef7f3;
}

/* featured campaign center layout */

.featured-campaign{
padding:80px 20px;
text-align:center;
background:#f6f6f6;
}

.featured-campaign h2{
margin-bottom:15px;
}

.campaign-desc{
max-width:720px;
margin:0 auto 35px auto;
}

/* smoother hover for cards */

.card{
transition:transform .25s ease, box-shadow .25s ease;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 12px 28px rgba(0,0,0,0.18);
}/* CONTACT PAGE */

.contact-page{
max-width:1000px;
margin:auto;
text-align:center;
}

.contact-intro{
max-width:700px;
margin:10px auto 40px auto;
color:#555;
}

.contact-container{
display:flex;
flex-wrap:wrap;
gap:40px;
justify-content:center;
align-items:flex-start;
}

.contact-info{
flex:1;
min-width:250px;
text-align:left;
}

.contact-item{
display:flex;
align-items:center;
gap:12px;
margin-bottom:18px;
font-weight:600;
}

.contact-item i{
color:#0a7a4f;
font-size:20px;
}

.contact-form{
flex:1;
min-width:280px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.contact-form button{
background:#0a7a4f;
color:white;
border:none;
padding:12px 20px;
border-radius:6px;
font-weight:600;
cursor:pointer;
}

.contact-form button:hover{
background:#075c3a;
}/* WhatsApp Contact Button */

.whatsapp-contact a{
color:#0a7a4f;
font-weight:600;
text-decoration:none;
}

.whatsapp-contact a:hover{
text-decoration:underline;
}

.whatsapp-contact i{
color:#25D366;
font-size:22px;
}/* Contact Page Map Section */

.contact-map-section{
text-align:center;
padding:60px 20px;
background:#f7f7f7;
}

.contact-map-section h2{
margin-bottom:10px;
}

.map-description{
max-width:700px;
margin:0 auto 30px auto;
color:#555;
}

.map-container img{
max-width:420px;
width:100%;
opacity:.95;
}/* Contact Map Section */

.contact-map-section{
text-align:center;
padding:60px 20px;
background:#f7f7f7;
}

.map-description{
max-width:700px;
margin:0 auto 30px auto;
color:#555;
}

/* Office Hours */

.contact-hours{
text-align:center;
padding:60px 20px;
}

.hours-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:30px;
}

.hours-box{
background:#ffffff;
padding:25px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
max-width:260px;
}/* Contact Map Section */

.contact-map-section{
text-align:center;
padding:60px 20px;
background:#f7f7f7;
}

.map-description{
max-width:700px;
margin:0 auto 30px auto;
color:#555;
}

/* Office Hours */

.contact-hours{
text-align:center;
padding:60px 20px;
}

.hours-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:30px;
}

.hours-box{
background:#ffffff;
padding:25px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
max-width:260px;
}/* CONTACT OFFICE HOURS POLISH */

.hours-intro{
max-width:650px;
margin:10px auto 35px auto;
color:#555;
}

.hours-box{
background:#ffffff;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
max-width:260px;
text-align:center;
transition:transform .25s ease;
}

.hours-box:hover{
transform:translateY(-4px);
}

.hours-icon{
font-size:26px;
color:#0a7a4f;
margin-bottom:10px;
}/* CONTACT PAGE FINAL FIX */

.contact-map-section{
text-align:center;
padding:60px 20px;
background:#f7f7f7;
}

.map-description{
max-width:700px;
margin:0 auto 30px auto;
color:#555;
}

.contact-hours{
text-align:center;
padding:60px 20px;
}

.hours-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:30px;
}

.hours-box{
background:#ffffff;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
max-width:260px;
text-align:center;
transition:transform .25s ease;
}

.hours-box:hover{
transform:translateY(-4px);
}

.hours-icon{
font-size:26px;
color:#0a7a4f;
margin-bottom:10px;
}/* CONTACT PAGE – MAP & OFFICE HOURS */

.contact-map-section{
text-align:center;
padding:60px 20px;
background:#f7f7f7;
}

.map-description{
max-width:700px;
margin:0 auto 30px auto;
color:#555;
}

.contact-hours{
text-align:center;
padding:60px 20px;
}

.hours-intro{
max-width:650px;
margin:10px auto 35px auto;
color:#555;
}

.hours-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:30px;
}

.hours-box{
background:#ffffff;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
max-width:260px;
text-align:center;
transition:transform .25s ease;
}

.hours-box:hover{
transform:translateY(-4px);
}

.hours-icon{
font-size:26px;
color:#0a7a4f;
margin-bottom:10px;
}/* CONTACT TRUST SECTION */

.contact-trust{
text-align:center;
padding:60px 20px;
background:#f7f7f7;
}

.trust-intro{
max-width:700px;
margin:10px auto 35px auto;
color:#555;
}

.trust-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.trust-card{
background:white;
padding:20px 25px;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
font-weight:600;
display:flex;
align-items:center;
gap:10px;
}

.trust-card i{
color:#0a7a4f;
font-size:18px;
}/* CONTACT PAGE DONATION PROMPT */

.contact-support-donate{
text-align:center;
padding:70px 20px;
background:#ffffff;
}

.support-donate-text{
max-width:700px;
margin:10px auto 30px auto;
color:#555;
line-height:1.7;
}

.support-donate-btn{
background:#0a7a4f;
color:white;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:all .25s ease;
}

.support-donate-btn:hover{
background:#075c3a;
transform:translateY(-2px);
}/* FLOATING WHATSAPP BUTTON */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
z-index:999;
}

.whatsapp-float a{
background:#25D366;
color:white;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:30px;
box-shadow:0 8px 20px rgba(0,0,0,0.25);
text-decoration:none;
transition:all .25s ease;
}

.whatsapp-float a:hover{
transform:translateY(-4px);
background:#20b955;
}/* NAVBAR DROPDOWN */

.main-nav{
display:flex;
align-items:center;
}

.nav-links{
list-style:none;
display:flex;
gap:20px;
margin:0;
padding:0;
}

.nav-links li{
position:relative;
}

.nav-links a{
text-decoration:none;
font-weight:bold;
color:#333;
}

/* dropdown menu */

.dropdown-menu{
display:none;
position:absolute;
top:35px;
left:0;
background:white;
list-style:none;
padding:10px 0;
border-radius:6px;
box-shadow:0 6px 20px rgba(0,0,0,0.15);
min-width:170px;
}

.dropdown-menu li{
padding:8px 15px;
}

.dropdown-menu li a{
color:#333;
}

.dropdown:hover .dropdown-menu{
display:block;
}

/* mobile menu */

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

/* mobile layout */

@media (max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
flex-direction:column;
position:absolute;
top:70px;
right:0;
background:white;
width:220px;
display:none;
box-shadow:0 6px 20px rgba(0,0,0,0.2);
padding:20px;
}

.nav-links.active{
display:flex;
}

.dropdown-menu{
position:static;
box-shadow:none;
}

.dropdown:hover .dropdown-menu{
display:none;
}

.dropdown.open .dropdown-menu{
display:block;
}

}/* IMPACT STORY SECTION */

.impact-story{
padding:80px 20px;
background:#ffffff;
}

.impact-story-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.impact-story-image{
flex:1;
min-width:280px;
}

.impact-story-image img{
width:80%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
display:block;
margin:auto;
}

.impact-story-text{
flex:1;
min-width:280px;
}

.impact-highlight{
font-weight:700;
color:#0a7a4f;
margin:12px 0;
}

.impact-read-btn{
display:inline-block;
margin-top:15px;
background:#0a7a4f;
color:white;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:all .25s ease;
}

.impact-read-btn:hover{
background:#075c3a;
transform:translateY(-2px);
}/* DONOR TRUST SECTION */

.donor-trust{
padding:80px 20px;
text-align:center;
background:#f7f7f7;
}

.trust-subtitle{
max-width:700px;
margin:10px auto 40px auto;
color:#555;
}

.trust-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
max-width:900px;
margin:auto;
}

.trust-item{
background:white;
padding:18px 22px;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
font-weight:600;
transition:transform .25s ease, box-shadow .25s ease;
}

.trust-item:hover{
transform:translateY(-4px);
box-shadow:0 12px 24px rgba(0,0,0,0.15);
}/* IMPACT IMAGE STRIP */

