/* ===== GOOGLE FONT ===== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&display=swap');

/* ===== RESET ===== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Cairo', sans-serif;
background:#f5f5f5;
direction:rtl;
overflow-x:hidden;
color:#222;
}

/* ===== CONTAINER ===== */

.container{
width:95%;
max-width:1400px;
margin:auto;
}

/* ===== LINKS ===== */

a{
text-decoration:none;
}

/* ===== IMAGES ===== */

img{
max-width:100%;
display:block;
}

/* ===== TOP BAR ===== */

.top-bar{
background:#00732f;
padding:14px 0;
color:#fff;
}

.top-content{
display:flex;
justify-content:space-between;
align-items:center;
}

.top-right,
.top-left{
display:flex;
align-items:center;
gap:25px;
}

.top-bar span,
.top-bar a{
color:#fff;
font-size:18px;
font-weight:600;
}

.top-bar i{
margin-left:8px;
}

/* ===== HEADER ===== */

header{
background:#fff;
padding:20px 0;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.header-content{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

/* ===== LOGO ===== */

.logo{
display:flex;
align-items:center;
gap:15px;
flex-shrink:0;
}

.logo img{
width:75px;
height:auto;
}

.logo-text{
line-height:1.1;
}

.logo-text h1{
color:#006b2d;
font-size:32px;
font-weight:800;
margin:0;
line-height:1.5;
white-space:normal;
word-break:break-word;
text-align:center;
}

.logo-text p{
color:#777;
font-size:14px;
margin-top:6px;
white-space:nowrap;
}

/* ===== NAV ===== */

nav ul{
display:flex;
align-items:center;
gap:42px;
list-style:none;
}

nav ul li a{
color:#00732f;
font-size:20px;
font-weight:700;
white-space:nowrap;
transition:0.3s;
}

nav ul li a:hover{
color:#d8a300;
}

/* ===== DONATE BUTTON ===== */

.donate-btn{
background:#d8a300;
color:#fff;
padding:14px 28px;
border-radius:10px;
font-size:22px;
font-weight:700;
white-space:nowrap;
transition:0.3s;
}

.donate-btn:hover{
background:#b98c00;
}

/* ===== HERO ===== */

.hero{
position:relative;
height:640px;
overflow:hidden;
}

.hero img{
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
top:0;
right:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.hero-text{
max-width:900px;
}

.hero-text h1{
font-size:90px;
color:#fff;
margin-bottom:30px;
font-weight:800;
text-shadow:0 4px 10px rgba(0,0,0,0.5);
}

.hero-text p{
font-size:34px;
line-height:2;
color:#fff;
margin-bottom:35px;
text-shadow:0 3px 10px rgba(0,0,0,0.5);
}

.hero-text a{
display:inline-block;
background:#d8a300;
color:#fff;
padding:18px 45px;
border-radius:12px;
font-size:30px;
font-weight:700;
transition:0.3s;
}

.hero-text a:hover{
background:#b98c00;
}

/* ===== QUICK ACTIONS ===== */

.quick-actions{
margin-top:-80px;
position:relative;
z-index:10;
padding-bottom:50px;
}

.quick-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.quick-card{
background:#fff;
padding:35px 25px;
border-radius:18px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.quick-card:hover{
transform:translateY(-5px);
}

.quick-card i{
font-size:45px;
color:#00732f;
margin-bottom:20px;
}

.quick-card h3{
font-size:30px;
margin-bottom:18px;
color:#00732f;
font-weight:800;
}

.quick-card p{
font-size:19px;
line-height:2;
margin-bottom:20px;
color:#555;
}

.quick-card a{
display:inline-block;
padding:12px 28px;
background:#00732f;
color:#fff;
border-radius:10px;
font-size:18px;
font-weight:700;
}

.donate-card{
background:#00732f;
}

.donate-card i,
.donate-card h3,
.donate-card p{
color:#fff;
}

.donate-card a{
background:#d8a300;
}

/* ===== MAIN STATS ===== */

.stats-section{
padding:70px 0;
background:#8cc63f;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat-box{
text-align:center;
color:#fff;
}

.stat-box h2{
font-size:75px;
margin-bottom:15px;
font-weight:800;
}

.stat-box p{
font-size:28px;
font-weight:700;
}

/* ===== WAR STATS ===== */

.war-stats{
padding:90px 0;
background:#fff;
}

.section-title{
text-align:center;
font-size:52px;
color:#00732f;
margin-bottom:60px;
font-weight:800;
}

.war-stats-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.war-box{
background:#f8f8f8;
padding:40px 30px;
border-radius:18px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.06);
transition:0.3s;
}

.war-box:hover{
transform:translateY(-6px);
}

.war-box i{
font-size:45px;
color:#d8a300;
margin-bottom:20px;
}

.war-box h3{
font-size:46px;
color:#00732f;
margin-bottom:15px;
font-weight:800;
}

.war-box p{
font-size:24px;
font-weight:700;
color:#444;
}

/* ===== MAIN PROJECTS ===== */

.main-projects{
padding:90px 0;
background:#f5f5f5;
}

.projects-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
}

.project-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.project-card:hover{
transform:translateY(-6px);
}

.project-card img{
width:100%;
height:320px;
object-fit:cover;
}

.project-content{
padding:30px;
}

.project-content h3{
font-size:38px;
color:#00732f;
margin-bottom:20px;
font-weight:800;
}

.project-content p{
font-size:22px;
line-height:2;
color:#555;
margin-bottom:30px;
}

.project-buttons{
display:flex;
gap:15px;
}

.project-btn{
display:inline-block;
padding:14px 30px;
background:#00732f;
color:#fff;
border-radius:10px;
font-size:20px;
font-weight:700;
transition:0.3s;
}

.project-btn:hover{
background:#005f27;
}

.donate-project{
background:#d8a300;
}

.donate-project:hover{
background:#b98c00;
}

/* ===== NEWS SECTION ===== */

.news-section{
padding:90px 0;
background:#f3f3f3;
}

.news-wrapper{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
}

.news-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
}

.news-header h2{
font-size:42px;
color:#222;
font-weight:800;
}

.view-all-btn{
background:#8cc63f;
color:#fff;
padding:12px 28px;
border-radius:30px;
font-size:18px;
font-weight:700;
}

.news-list{
display:flex;
flex-direction:column;
gap:20px;
}

.news-item{
display:flex;
align-items:center;
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.news-date{
background:#8cc63f;
color:#fff;
min-width:120px;
height:120px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}

.news-date h3{
font-size:42px;
font-weight:800;
margin-bottom:5px;
}

.news-date span{
font-size:22px;
font-weight:700;
}

.news-text{
padding:25px;
font-size:21px;
line-height:1.8;
font-weight:600;
color:#222;
}

/* ===== PROGRAMS SECTION ===== */

.programs-section{
padding:90px 0;
background:#ffffff;
}

.programs-desc{
max-width:900px;
margin:0 auto 50px;
text-align:center;
font-size:22px;
line-height:2;
color:#555;
}

.programs-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.program-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 5px 18px rgba(0,0,0,0.08);
transition:0.3s;
}

.program-card:hover{
transform:translateY(-5px);
}

.program-card video{
width:100%;
height:220px;
display:block;
background:#000;
object-fit:cover;
}

.program-content{
padding:20px;
text-align:center;
}

.program-content h3{
font-size:26px;
color:#00732f;
margin-bottom:12px;
font-weight:800;
}

.program-content p{
font-size:18px;
line-height:1.9;
color:#555;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.header-content{
flex-direction:column;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
}

.quick-grid,
.stats-grid,
.war-stats-grid,
.projects-grid,
.news-wrapper,
.programs-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.top-content{
flex-direction:column;
gap:15px;
}

.quick-grid,
.stats-grid,
.war-stats-grid,
.projects-grid,
.news-wrapper,
.programs-grid{
grid-template-columns:1fr;
}

.logo{
flex-direction:column;
text-align:center;
}

.logo-text h1{
font-size:36px;
}

.hero{
height:450px;
}

.hero-text h1{
font-size:42px;
}

.hero-text p{
font-size:22px;
}

.section-title{
font-size:36px;
}

.news-text{
font-size:18px;
}

}

/* ===== FOOTER ===== */

.footer{
background:#ffffff;
margin-top:80px;
padding-top:60px;
border-top:1px solid #eaeaea;
overflow:hidden;
}

.footer-menu{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:35px;
padding-bottom:35px;
margin-bottom:45px;
border-bottom:1px solid #eee;
}

.footer-menu a{
font-size:22px;
font-weight:700;
color:#222;
transition:0.3s;
}

.footer-menu a:hover{
color:#00732f;
}

.footer-main{
display:flex;
justify-content:center;
align-items:center;
gap:60px;
padding-bottom:50px;
flex-wrap:wrap;
text-align:center;
}

.footer-logo img{
width:220px;
max-width:100%;
}

.footer-info{
max-width:550px;
}

.footer-info h2{
font-size:48px;
color:#006b2d;
margin-bottom:10px;
font-weight:800;
}

.footer-info h3{
font-size:28px;
color:#c4972f;
margin-bottom:20px;
font-weight:700;
}

.footer-line{
width:180px;
height:3px;
background:#c4972f;
margin:0 auto 25px;
}

.footer-info p{
font-size:22px;
line-height:2;
color:#555;
}

/* ===== CONTACT ===== */

.footer-contact{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
padding:40px 0;
}

.contact-box{
background:#f8f8f8;
border-radius:18px;
padding:35px 20px;
text-align:center;
transition:0.3s;
}

.contact-box:hover{
transform:translateY(-5px);
}

.contact-box i{
font-size:42px;
margin-bottom:18px;
}

.contact-box:nth-child(1) i{
color:#25D366;
}

.contact-box:nth-child(2) i{
color:#c4972f;
}

.contact-box:nth-child(3) i{
color:#000;
}

.contact-box:nth-child(4) i{
color:#1877f2;
}

.contact-box h4{
font-size:28px;
margin-bottom:10px;
font-weight:800;
color:#222;
}

.contact-box p{
font-size:20px;
color:#555;
line-height:1.7;
word-break:break-word;
}

/* ===== COPYRIGHT ===== */

.footer-bottom{
background:#006b2d;
padding:22px;
margin-top:30px;
text-align:center;
}

.footer-bottom p{
color:#fff;
font-size:22px;
font-weight:600;
}

/* ===== FOOTER RESPONSIVE ===== */

@media(max-width:992px){

.footer-contact{
grid-template-columns:1fr 1fr;
}

.footer-info h2{
font-size:38px;
}

.footer-info p{
font-size:20px;
}

}

@media(max-width:768px){

.footer-menu{
gap:18px;
}

.footer-menu a{
font-size:18px;
}

.footer-contact{
grid-template-columns:1fr;
}

.footer-logo img{
width:170px;
}

.footer-info h2{
font-size:32px;
}

.footer-info h3{
font-size:22px;
}

.footer-info p{
font-size:18px;
}

.footer-bottom p{
font-size:17px;
}

}

/* ===== PAGE BANNER ===== */

.page-banner{
position:relative;
height:320px;
overflow:hidden;
}

.page-banner img{
width:100%;
height:100%;
object-fit:cover;
}

.page-overlay{
position:absolute;
top:0;
right:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.page-banner-content h1{
font-size:70px;
color:#fff;
margin-bottom:20px;
font-weight:800;
}

.page-banner-content p{
font-size:28px;
color:#fff;
line-height:2;
max-width:900px;
}

/* ===== ABOUT PAGE ===== */

.about-page{
padding:100px 0;
background:#fff;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

/* ===== ABOUT IMAGE ===== */

.about-image{
display:flex;
justify-content:center;
align-items:center;
}

.about-image img{
width:100%;
max-width:420px;
height:260px;
object-fit:cover;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.12);
display:block;
margin:auto;
}

.about-content h2{
font-size:52px;
color:#00732f;
margin-bottom:20px;
font-weight:800;
}

.about-line{
width:140px;
height:4px;
background:#d8a300;
margin-bottom:30px;
}

.about-content p{
font-size:24px;
line-height:2.2;
color:#555;
margin-bottom:25px;
}

/* ===== VISION ===== */

.vision-section{
padding:90px 0;
background:#f5f5f5;
}

.vision-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.vision-box{
background:#fff;
padding:45px 30px;
border-radius:20px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.vision-box:hover{
transform:translateY(-6px);
}

.vision-box i{
font-size:50px;
color:#d8a300;
margin-bottom:25px;
}

.vision-box h3{
font-size:34px;
color:#00732f;
margin-bottom:20px;
font-weight:800;
}

.vision-box p{
font-size:21px;
line-height:2;
color:#555;
}

/* ===== ABOUT RESPONSIVE ===== */

@media(max-width:992px){

.about-grid,
.vision-grid{
grid-template-columns:1fr;
}

.page-banner-content h1{
font-size:48px;
}

.page-banner-content p{
font-size:22px;
}

.about-content h2{
font-size:40px;
}

}

@media(max-width:768px){

.page-banner{
height:240px;
}

.page-banner-content h1{
font-size:38px;
}

.page-banner-content p{
font-size:18px;
}

.about-content p,
.vision-box p{
font-size:18px;
}

.about-image img{
max-width:100%;
height:220px;
}

}
/* ===== SECRETARY GENERAL SPEECH ===== */

.speech-section{
padding:100px 0;
background:#ffffff;
}

.speech-header{
text-align:center;
margin-bottom:50px;
}

.speech-header h2{
font-size:52px;
color:#00732f;
margin-bottom:15px;
font-weight:800;
}

.speech-header h3{
font-size:32px;
color:#d8a300;
margin-bottom:20px;
font-weight:700;
}

.speech-line{
width:140px;
height:4px;
background:#00732f;
margin:0 auto 25px;
border-radius:10px;
}

.speech-header p{
font-size:24px;
line-height:2;
color:#555;
max-width:900px;
margin:auto;
}

.speech-video{
max-width:950px;
margin:auto;
border-radius:25px;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,0.12);
background:#000;
}

.speech-video video{
width:100%;
display:block;
border-radius:25px;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

.speech-section{
padding:70px 0;
}

.speech-header h2{
font-size:38px;
}

.speech-header h3{
font-size:24px;
}

.speech-header p{
font-size:18px;
}

}
/* ===== CONTACT PAGE ===== */

.contact-page{
padding:100px 0;
background:#f5f5f5;
}

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:start;
}

/* ===== CONTACT INFO ===== */

.contact-info{
background:#fff;
padding:45px;
border-radius:25px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.contact-info h2{
font-size:42px;
color:#00732f;
margin-bottom:40px;
font-weight:800;
text-align:center;
}

.contact-item{
margin-bottom:35px;
text-align:center;
padding-bottom:25px;
border-bottom:1px solid #eee;
}

.contact-item:last-child{
margin-bottom:0;
padding-bottom:0;
border-bottom:none;
}

.contact-item i{
font-size:40px;
color:#d8a300;
margin-bottom:18px;
display:block;
}

.contact-item h3{
font-size:28px;
margin-bottom:12px;
color:#222;
font-weight:800;
}

.contact-item p,
.contact-item a{
font-size:22px;
color:#555;
line-height:1.9;
word-break:break-word;
display:block;
direction:ltr;
}

.contact-item a:hover{
color:#00732f;
}

/* ===== CONTACT FORM ===== */

.contact-form{
background:#fff;
padding:45px;
border-radius:25px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.contact-form h2{
font-size:42px;
color:#00732f;
margin-bottom:40px;
font-weight:800;
text-align:center;
}

.contact-form form{
width:100%;
}

.form-group{
margin-bottom:22px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:18px;
border:1px solid #ddd;
border-radius:14px;
font-family:'Cairo', sans-serif;
font-size:18px;
outline:none;
transition:0.3s;
background:#fafafa;
display:block;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:#00732f;
background:#fff;
}

.contact-form textarea{
height:190px;
resize:none;
}

.contact-btn{
width:100%;
background:#00732f;
color:#fff;
border:none;
padding:18px;
font-size:22px;
font-weight:700;
border-radius:14px;
cursor:pointer;
transition:0.3s;
font-family:'Cairo', sans-serif;
}

.contact-btn:hover{
background:#005f27;
}

/* ===== MAP ===== */

.map-section{
padding-bottom:100px;
background:#f5f5f5;
}

.map-box{
border-radius:25px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.map-box iframe{
width:100%;
height:450px;
border:0;
display:block;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.contact-wrapper{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.contact-page{
padding:70px 0;
}

.contact-info,
.contact-form{
padding:30px 22px;
}

.contact-info h2,
.contact-form h2{
font-size:32px;
}

.contact-item h3{
font-size:24px;
}

.contact-item p,
.contact-item a{
font-size:18px;
}

.contact-form input,
.contact-form textarea{
font-size:16px;
padding:15px;
}

.contact-btn{
font-size:20px;
}

.map-box iframe{
height:320px;
}

}
/* ===== PROJECTS PAGE ===== */

.projects-page{
padding:100px 0;
background:#f5f5f5;
}

.projects-page-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
}

.project-box{
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.project-box:hover{
transform:translateY(-8px);
}

.project-box img{
width:100%;
height:320px;
object-fit:cover;
}

.project-info{
padding:30px;
}

.project-category{
display:inline-block;
background:#d8a300;
color:#fff;
padding:8px 18px;
border-radius:30px;
font-size:16px;
font-weight:700;
margin-bottom:18px;
}

.project-info h3{
font-size:34px;
color:#00732f;
margin-bottom:18px;
font-weight:800;
line-height:1.5;
}

.project-info p{
font-size:20px;
line-height:2;
color:#555;
margin-bottom:25px;
}

.progress-area{
margin-bottom:28px;
}

.progress-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
font-size:18px;
font-weight:700;
color:#222;
}

.progress-bar{
width:100%;
height:14px;
background:#eee;
border-radius:30px;
overflow:hidden;
}

.progress-fill{
height:100%;
background:linear-gradient(to left,#00732f,#8cc63f);
border-radius:30px;
}

.project-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.details-btn,
.donate-btn-project{
flex:1;
text-align:center;
padding:16px;
border-radius:12px;
font-size:20px;
font-weight:700;
transition:0.3s;
}

.details-btn{
background:#f1f1f1;
color:#222;
}

.details-btn:hover{
background:#ddd;
}

.donate-btn-project{
background:#00732f;
color:#fff;
}

.donate-btn-project:hover{
background:#005f27;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.projects-page-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.project-info h3{
font-size:28px;
}

.project-info p{
font-size:18px;
}

.details-btn,
.donate-btn-project{
font-size:18px;
}

.project-box img{
height:240px;
}

}
/* ===== DONATION PAGE ===== */

.donation-page{
padding:100px 0;
background:#f5f5f5;
}

.donation-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.donation-info,
.donation-form{
background:#fff;
padding:40px;
border-radius:25px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.donation-info h2,
.donation-form h2{
font-size:40px;
color:#00732f;
margin-bottom:35px;
font-weight:800;
text-align:center;
}

.donation-method{
display:flex;
align-items:center;
gap:15px;
padding:18px;
background:#f8f8f8;
border-radius:14px;
margin-bottom:18px;
font-size:22px;
font-weight:700;
}

.donation-method i{
font-size:38px;
color:#00732f;
}

.bank-box{
background:#f8f8f8;
padding:25px;
border-radius:18px;
margin-top:25px;
text-align:center;
}

.bank-box h3{
font-size:28px;
margin-bottom:15px;
color:#222;
}

.bank-box p{
font-size:22px;
color:#00732f;
font-weight:700;
}

.qr-box{
text-align:center;
margin-top:35px;
}

.qr-box img{
width:180px;
margin:auto;
margin-bottom:15px;
}

.qr-box p{
font-size:18px;
color:#555;
}

.whatsapp-donate{
display:block;
background:#25D366;
color:#fff;
text-align:center;
padding:18px;
border-radius:14px;
font-size:22px;
font-weight:700;
margin-top:35px;
transition:0.3s;
}

.whatsapp-donate:hover{
background:#1ea952;
}

.donation-form input{
width:100%;
padding:18px;
border:1px solid #ddd;
border-radius:14px;
font-family:'Cairo', sans-serif;
font-size:20px;
background:#fafafa;
outline:none;
height:60px;
margin-bottom:18px;
}
.donation-form select{
width:100%;
padding:18px;
border:1px solid #ddd;
border-radius:14px;
font-family:'Cairo', sans-serif;
font-size:20px;
background:#fafafa;
outline:none;
height:60px;
margin-bottom:18px;
}
.amount-title{
font-size:26px;
margin-bottom:20px;
color:#222;
}

.amount-buttons{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
margin-bottom:25px;
}

.amount-buttons button{
padding:16px;
border:none;
border-radius:12px;
background:#00732f;
color:#fff;
font-size:20px;
font-weight:700;
cursor:pointer;
transition:0.3s;
}

.amount-buttons button:hover{
background:#005f27;
}

.monthly-box{
display:flex;
align-items:center;
gap:12px;
margin-bottom:30px;
font-size:20px;
font-weight:700;
}

.donation-counter{
background:#f8f8f8;
padding:30px;
border-radius:20px;
text-align:center;
margin-bottom:30px;
}

.donation-counter h3{
font-size:28px;
margin-bottom:15px;
color:#555;
}

.donation-counter h2{
font-size:48px;
color:#00732f;
font-weight:800;
}

@media(max-width:992px){

.donation-wrapper{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.amount-buttons{
grid-template-columns:1fr 1fr;
}

.donation-info,
.donation-form{
padding:25px;
}

}
.monthly-box input[type="checkbox"]{
width:24px;
height:24px;
margin:0;
cursor:pointer;
}
/* ===== ANNOUNCEMENT DETAILS ===== */

.announcement-details-page{
padding:100px 0;
background:#f5f5f5;
}

.announcement-details-box{
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
max-width:1100px;
margin:auto;
}

.announcement-details-box img{
width:100%;
height:500px;
object-fit:cover;
display:block;
}

.announcement-details-content{
padding:45px;
}

.announcement-date-details{
display:inline-flex;
align-items:center;
gap:10px;
background:#eef7dd;
color:#6ba300;
padding:12px 22px;
border-radius:30px;
font-size:18px;
font-weight:700;
margin-bottom:25px;
}

.announcement-details-content h2{
font-size:46px;
line-height:1.8;
color:#00732f;
margin-bottom:30px;
font-weight:800;
}

.announcement-details-content p{
font-size:24px;
line-height:2.3;
color:#555;
margin-bottom:40px;
}

.announcement-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.details-donate-btn,
.details-back-btn{
padding:16px 34px;
border-radius:14px;
font-size:22px;
font-weight:700;
transition:0.3s;
}

.details-donate-btn{
background:#00732f;
color:#fff;
}

.details-donate-btn:hover{
background:#005f27;
}

.details-back-btn{
background:#d8a300;
color:#fff;
}

.details-back-btn:hover{
background:#b98c00;
}

/* MOBILE */

@media(max-width:768px){

.announcement-details-box img{
height:260px;
}

.announcement-details-content{
padding:25px;
}

.announcement-details-content h2{
font-size:30px;
}

.announcement-details-content p{
font-size:18px;
}

.details-donate-btn,
.details-back-btn{
width:100%;
text-align:center;
}

}
/* ===== PAGE HERO ===== */

.page-hero{
background:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url('../assets/images/hero.jpg');
background-size:cover;
background-position:center;
padding:120px 0;
text-align:center;
color:#fff;
}

.page-hero h1{
font-size:64px;
margin-bottom:20px;
font-weight:800;
}

.page-hero p{
font-size:24px;
line-height:2;
max-width:900px;
margin:auto;
}

/* ===== MODERN ANNOUNCEMENTS ===== */

.announcements-page{
padding:100px 0;
background:#f5f7fb;
}

.announcements-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
}

.announcement-card-modern{
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.4s;
}

.announcement-card-modern:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.announcement-card-modern img{
width:100%;
height:260px;
object-fit:cover;
display:block;
}

.announcement-info{
padding:30px;
}

.announcement-meta{
margin-bottom:18px;
}

.announcement-meta span{
background:#eef7dd;
color:#6ba300;
padding:10px 18px;
border-radius:30px;
font-size:15px;
font-weight:700;
display:inline-flex;
align-items:center;
gap:8px;
}

.announcement-info h3{
font-size:30px;
line-height:1.8;
margin-bottom:18px;
color:#111827;
font-weight:800;
}

.announcement-info p{
font-size:19px;
line-height:2;
color:#555;
margin-bottom:28px;
}

.announcement-info a{
display:inline-flex;
align-items:center;
gap:10px;
padding:14px 24px;
background:#84cc16;
color:#fff;
border-radius:14px;
font-size:17px;
font-weight:700;
transition:0.3s;
}

.announcement-info a:hover{
background:#65a30d;
transform:translateY(-3px);
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.announcements-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.page-hero h1{
font-size:42px;
}

.page-hero p{
font-size:18px;
}

.announcement-info h3{
font-size:24px;
}

.announcement-info p{
font-size:17px;
}

}
/* ===== STORY DETAILS ===== */

.story-details-page{
padding:100px 0;
background:#f5f7fb;
}

.story-details-box{
background:#fff;
border-radius:30px;
overflow:hidden;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.story-details-box img{
width:100%;
height:auto;
max-height:500px;
object-fit:contain;
display:block;
margin:auto;
border-radius:20px;
}
.story-details-content{
padding:50px;
}

.story-date{
display:inline-flex;
align-items:center;
gap:10px;
background:#eef7dd;
color:#6ba300;
padding:12px 22px;
border-radius:30px;
font-size:16px;
font-weight:700;
margin-bottom:25px;
}

.story-details-content h2{
font-size:46px;
line-height:1.7;
margin-bottom:30px;
color:#111827;
font-weight:800;
}

.story-details-content p{
font-size:24px;
line-height:2.3;
color:#555;
margin-bottom:40px;
}

.story-donate-btn{
display:inline-block;
padding:18px 35px;
background:#84cc16;
color:#fff;
border-radius:14px;
font-size:22px;
font-weight:700;
transition:0.3s;
}

.story-donate-btn:hover{
background:#65a30d;
}

@media(max-width:768px){

.story-details-box img{
height:280px;
}

.story-details-content{
padding:30px 20px;
}

.story-details-content h2{
font-size:30px;
}

.story-details-content p{
font-size:18px;
}

}
.story-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-top:30px;
}

.story-back-btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:18px 35px;
background:#f1f1f1;
color:#222;
border-radius:14px;
font-size:22px;
font-weight:700;
transition:0.3s;
}

.story-back-btn:hover{
background:#ddd;
}
/* ===== SECRETARY TEXT ===== */

.speech-text-box{
background:#fff;
padding:50px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
max-width:1000px;
margin:auto;
}

.speech-text-box p{
font-size:24px;
line-height:2.4;
color:#444;
margin-bottom:28px;
text-align:justify;
}

.speech-signature{
margin-top:45px;
padding-top:30px;
border-top:1px solid #eee;
text-align:left;
}

.speech-signature h4{
font-size:24px;
color:#777;
margin-bottom:15px;
}

.speech-signature h3{
font-size:34px;
color:#00732f;
margin-bottom:10px;
font-weight:800;
}

.speech-signature span{
font-size:22px;
color:#d8a300;
font-weight:700;
}
/* ===== FINAL MOBILE FIX ===== */

@media screen and (max-width:768px){

.container{
width:92%;
overflow:hidden;
}

/* TOP BAR */

.top-content{
display:flex;
flex-direction:column;
gap:12px;
text-align:center;
}

.top-right,
.top-left{
display:flex;
flex-direction:column;
gap:10px;
width:100%;
}

.top-bar span,
.top-bar a{
font-size:15px;
word-break:break-word;
}

/* HEADER */

.header-content{
display:flex;
flex-direction:column;
gap:20px;
padding:10px 0;
}

/* LOGO */

.logo{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
gap:10px;
}

.logo img{
width:70px;
}

.logo-text h1{
font-size:26px;
line-height:1.5;
white-space:normal;
word-break:break-word;
text-align:center;
}

.logo-text p{
font-size:14px;
white-space:normal;
}

/* NAV */

nav{
width:100%;
}

nav ul{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
padding:0;
margin:20px 0;
text-align:center;
list-style:none;
}

nav ul li a{
display:block;
font-size:18px;
padding:10px;
}

/* DONATE BUTTON */

.donate-btn{
display:block;
width:100%;
text-align:center;
font-size:20px;
padding:14px;
}

/* HERO */

.hero{
height:320px;
}

.hero-text h1{
font-size:32px;
line-height:1.5;
}

.hero-text p{
font-size:18px;
line-height:1.9;
}

.hero-text a{
font-size:18px;
padding:12px 24px;
}

/* QUICK CARDS */

.quick-actions{
margin-top:-40px;
}

.quick-grid{
display:grid !important;
grid-template-columns:repeat(2,minmax(0,1fr)) !important;
gap:15px !important;
align-items:stretch;
}

.quick-card{
width:100%;
padding:18px;
border-radius:16px;
}

.quick-card i{
font-size:28px;
margin-bottom:10px;
}

.quick-card h3{
font-size:18px;
line-height:1.5;
margin-bottom:10px;
}

.quick-card p{
font-size:14px;
line-height:1.7;
margin-bottom:14px;
}

.quick-card a{
display:inline-block;
font-size:14px;
padding:10px 14px;
}

/* MAIN STATS */

.stats-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.stat-box h2{
font-size:36px;
}

.stat-box p{
font-size:16px;
}

/* WAR STATS FIX */

.war-stats-grid{
display:grid !important;
grid-template-columns:repeat(2,minmax(0,1fr)) !important;
gap:15px !important;
}

.war-box{
padding:20px 15px;
}

.war-box i{
font-size:28px;
margin-bottom:10px;
}

.war-box h3{
font-size:26px;
margin-bottom:10px;
}

.war-box p{
font-size:15px;
line-height:1.7;
}

/* SECTIONS */

.section-title{
font-size:28px;
margin-bottom:30px;
}

/* OTHER GRIDS */

.projects-grid,
.news-wrapper,
.programs-grid,
.projects-page-grid,
.announcements-grid,
.about-grid,
.vision-grid,
.contact-wrapper,
.donation-wrapper,
.footer-contact{
display:grid;
grid-template-columns:1fr;
gap:20px;
}

/* FOOTER */

.footer-menu{
gap:12px;
}

.footer-menu a{
font-size:16px;
}

.footer-info h2{
font-size:28px;
}

.footer-info h3{
font-size:20px;
}

.footer-info p{
font-size:16px;
line-height:1.9;
}

/* PAGE HERO */

.page-hero{
padding:70px 0;
}

.page-hero h1{
font-size:34px;
}

.page-hero p{
font-size:17px;
}

}
/* ===== NEWS VIDEO FIX ===== */

.news-video{
margin-top:35px;
text-align:center;
}

.news-video video{
width:100%;
max-width:700px;
height:400px;
object-fit:cover;
border-radius:20px;
background:#000;
display:block;
margin:auto;
box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

@media(max-width:768px){

.news-video video{
height:240px;
max-width:100%;
}

}
/* HUMANITY VOICE */

.humanity-voice{
padding:90px 0;
background:#fff;
}

.voice-desc{
text-align:center;
font-size:22px;
line-height:2;
color:#555;
margin-bottom:40px;
}

.voice-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.voice-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 5px 18px rgba(0,0,0,.08);
text-align:center;
}

.voice-card video{
width:100%;
height:220px;
object-fit:cover;
display:block;
background:#000;
}

.voice-card h3{
padding:20px;
font-size:26px;
color:#00732f;
font-weight:800;
}

.voice-btn{
text-align:center;
margin-top:40px;
}

.voice-btn a{
display:inline-block;
background:#00732f;
color:#fff;
padding:15px 30px;
border-radius:10px;
font-size:20px;
font-weight:700;
}

@media(max-width:768px){

.voice-grid{
grid-template-columns:1fr;
}

}
/* ===== HUMANITY CENTER ===== */

.humanity-center{
padding:100px 0;
background:#f5f5f5;
}

.humanity-header{
text-align:center;
margin-bottom:60px;
}

.humanity-header h2{
font-size:52px;
color:#00732f;
margin-bottom:20px;
font-weight:800;
}

.humanity-header p{
font-size:24px;
line-height:2;
color:#555;
max-width:900px;
margin:auto;
}

.humanity-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.humanity-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.humanity-card:hover{
transform:translateY(-5px);
}

.humanity-card video{
width:100%;
height:220px;
object-fit:cover;
background:#000;
display:block;
}

.humanity-card h3{
font-size:24px;
color:#00732f;
padding:20px 20px 10px;
font-weight:800;
text-align:center;
}

.humanity-card p{
font-size:17px;
line-height:1.9;
color:#555;
padding:0 20px 25px;
text-align:center;
}

/* MOBILE */

@media(max-width:1200px){

.humanity-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.humanity-grid{
grid-template-columns:1fr;
}

.humanity-header h2{
font-size:34px;
}

.humanity-header p{
font-size:18px;
}

}
.donation-alert{
background:#fff7e6;
border-right:4px solid #d4af37;
padding:20px;
margin-bottom:30px;
border-radius:10px;
line-height:2;
}

.wallet-address{
display:flex;
gap:10px;
margin-top:15px;
}

.wallet-address input{
flex:1;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
direction:ltr;
}

.wallet-address button{
padding:12px 20px;
background:#d4af37;
color:#fff;
border:none;
border-radius:8px;
cursor:pointer;
}

.after-donation{
background:#f9f9f9;
padding:20px;
border-radius:10px;
margin-top:20px;
line-height:2;
}

.transparency-box{
margin-top:50px;
background:#fff;
padding:40px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.transparency-box ul{
padding:0;
margin-top:20px;
}

.transparency-box li{
list-style:none;
padding:12px 0;
border-bottom:1px solid #eee;
}