/* GLOBAL STYLE */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial, sans-serif;

    background:#f8f9fa;

    position:relative;

    min-height:100vh;

}


/* LOGO WATERMARK */

body::before{

    content:"";

    position:fixed;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:500px;

    height:500px;

    background:url("../images/logo.png") center center no-repeat;

    background-size:contain;

    opacity:0.05;

    pointer-events:none;

    z-index:-1;

}


/* LINKS */

a{

    text-decoration:none;

}


/* BUTTON STYLE */

button{

    cursor:pointer;

}


/* MOBILE */

@media(max-width:768px){

body::before{

    width:300px;

    height:300px;

}

}

.hero{

min-height:500px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:40px 20px;

}


.hero-logo{

width:280px;

height:280px;

object-fit:contain;

margin-bottom:20px;

filter:drop-shadow(0 10px 20px rgba(0,0,0,0.2));

}


.hero h1{

font-size:40px;

color:#0b8f45;

margin-bottom:15px;

}


.hero p{

font-size:18px;

color:#555;

max-width:600px;

}


.hero-buttons{

margin-top:30px;

display:flex;

gap:15px;

}


.hero-buttons a{

background:#0b8f45;

color:white;

padding:12px 25px;

border-radius:30px;

font-weight:bold;

}


.hero-buttons a:hover{

background:#066b32;

}



@media(max-width:768px){

.hero-logo{

width:200px;

height:200px;

}


.hero h1{

font-size:28px;

}


.hero-buttons{

flex-direction:column;

}

}

/* FOOTER */

.main-footer{

background:#0b8f45;

color:white;

padding:50px 30px 20px;

margin-top:50px;

}


.footer-content{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:40px;

}


.footer-brand img{

width:60px;

height:60px;

border-radius:50%;

object-fit:cover;

}


.footer-brand h3{

margin:15px 0;

}


.footer-links{

display:flex;

flex-direction:column;

gap:10px;

}


.footer-links a{

color:white;

text-decoration:none;

}


.footer-social h4{

margin-bottom:15px;

}


.social-icons{

display:flex;

gap:15px;

}


.social-icons a{

width:40px;

height:40px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:white;

color:#0b8f45;

font-size:20px;

transition:.3s;

}


.social-icons a:hover{

transform:translateY(-5px);

}



.footer-bottom{

border-top:1px solid rgba(255,255,255,.3);

margin-top:30px;

padding-top:20px;

text-align:center;

font-size:14px;

}



/* MOBILE */

@media(max-width:768px){


.footer-content{

grid-template-columns:1fr;

text-align:center;

}


.social-icons{

justify-content:center;

}


}

.donation-card input{

width:100%;

padding:15px;

border-radius:12px;

border:1px solid #ddd;

margin:15px 0;

font-size:16px;

}



.donation-card button{

background:#0b8f45;

color:white;

border:none;

padding:14px 30px;

border-radius:30px;

font-weight:bold;

cursor:pointer;

}



.donation-card button:hover{

background:#066b32;

}

.donate-btn{

background:#0b8f45;
color:#fff;
padding:15px 30px;
border:none;
border-radius:30px;
font-size:18px;
font-weight:bold;
cursor:pointer;
transition:.3s;

}

.donate-btn:hover{

background:#066b32;

}

.bank-details{

margin-top:25px;
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.1);
text-align:left;

}

.bank-details h3{

color:#0b8f45;
margin-bottom:20px;

}

.bank-details p{

margin-bottom:15px;
line-height:1.8;

}

/* ================= DONATE PAGE ================= */

.donate-box{

max-width:800px;

margin:50px auto;

padding:40px;

background:#fff;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

text-align:center;

}


.donate-box h2{

font-size:32px;

color:#0b8f45;

margin-bottom:15px;

}


.donate-box p{

font-size:18px;

color:#666;

margin-bottom:30px;

line-height:1.8;

}



/* DONATE BUTTON */

.donate-btn{

background:linear-gradient(135deg,#0b8f45,#14b85e);

color:#fff;

border:none;

padding:16px 40px;

border-radius:40px;

font-size:18px;

font-weight:bold;

cursor:pointer;

transition:.3s;

box-shadow:0 8px 20px rgba(11,143,69,.25);

}


.donate-btn:hover{

transform:translateY(-4px);

background:#066b32;

}



/* BANK DETAILS CARD */

.bank-details{

margin-top:30px;

padding:30px;

background:#f8fff9;

border:2px solid #0b8f45;

border-radius:18px;

box-shadow:0 8px 20px rgba(0,0,0,.08);

animation:fadeIn .4s ease;

text-align:left;

}


.bank-details h3{

text-align:center;

color:#0b8f45;

margin-bottom:20px;

font-size:24px;

}


.bank-details p{

font-size:17px;

margin-bottom:15px;

line-height:1.8;

color:#444;

}


.bank-details strong{

color:#0b8f45;

}



/* THANK YOU NOTE */

.bank-details .notice{

background:#eaf8ee;

padding:15px;

border-left:5px solid #0b8f45;

border-radius:10px;

margin-top:20px;

font-weight:bold;

color:#066b32;

}



/* ANIMATION */

@keyframes fadeIn{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}



/* MOBILE */

@media(max-width:768px){

.donate-box{

margin:20px;

padding:25px;

}

.donate-box h2{

font-size:26px;

}

.bank-details{

padding:20px;

}

}