body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f4f4f4;
}

.top-header{
    display:flex;
    align-items:center;
    background:#006400;
    color:white;
    padding:15px;
}

.logo img{
    width:90px;
    height:90px;
    border-radius:50%;
    margin-right:20px;
}

.title h1{
    margin:0;
}

marquee{
    background:#FFD700;
    color:#b30000;
    font-weight:bold;
    padding:10px;
}

nav{
    background:#004d00;
}

nav ul{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    justify-content:center;
}

nav ul li{
    padding:18px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav ul li:hover{
    background:#FFD700;
}

nav ul li:hover a{
    color:black;
}

/* Hero Section */

.hero{

    height:550px;

    background:linear-gradient(rgba(0,80,0,.65),rgba(0,80,0,.65)),
    url("/images/house.png");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.hero-content{

    width:70%;

}

.hero h2{

    font-size:50px;

    margin-bottom:20px;

}

.hero p{

    font-size:22px;

    line-height:1.8;

}

.donate-btn{

    display:inline-block;

    margin-top:30px;

    background:#FFD700;

    color:black;

    padding:18px 40px;

    border-radius:40px;

    text-decoration:none;

    font-size:22px;

    font-weight:bold;

}

.donate-btn:hover{

    background:red;

    color:white;

}

/* Flip Cards */

.flip-section{
    padding:70px 20px;
    text-align:center;
    background:#ffffff;
}

.flip-section h2{
    color:darkgreen;
    margin-bottom:40px;
}

.flip-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.flip-card{
    width:300px;
    height:350px;
    perspective:1000px;
}

.flip-card-inner{
    position:relative;
    width:100%;
    height:100%;
    transition:transform .8s;
    transform-style:preserve-3d;
}

.flip-card:hover .flip-card-inner{
    transform:rotateY(180deg);
}

.flip-card-front,
.flip-card-back{
    position:absolute;
    width:100%;
    height:100%;
    backface-visibility:hidden;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.flip-card-front img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.flip-card-back{
    background:darkgreen;
    color:white;
    transform:rotateY(180deg);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:20px;
}
/* Support Section */

.support{

    padding:80px 30px;

    background:#f9f9f9;

    text-align:center;

}

.support h2{

    color:darkgreen;

    margin-bottom:40px;

}

.support-box{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

.support-item{

    width:320px;

    background:white;

    padding:30px;

    border-radius:15px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    transition:.4s;

}

.support-item:hover{

    transform:translateY(-10px);

}

.support-item h3{

    color:#006400;

}

/* Founder Section */

.founder{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:50px;

    padding:80px 40px;

    flex-wrap:wrap;

    background:white;

}

.founder-image img{

    width:350px;

    border-radius:20px;

    box-shadow:0 10px 20px rgba(0,0,0,.2);

}

.founder-content{

    width:600px;

}

.founder-content h2{

    color:darkgreen;

    font-size:38px;

}

.founder-content h3{

    color:#b8860b;

    margin-bottom:20px;

}

.founder-content p{

    line-height:1.8;

    font-size:18px;

    text-align:justify;

}

.read-btn{

    display:inline-block;

    margin-top:20px;

    padding:15px 35px;

    background:darkgreen;

    color:white;

    text-decoration:none;

    border-radius:40px;

    font-weight:bold;

}

.read-btn:hover{

    background:#FFD700;

    color:black;

}

/* Get Involved Section */

.involve{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:50px;

    padding:80px 40px;

    background:#f5fff5;

    flex-wrap:wrap;

}

.involve-image img{

    width:450px;

    border-radius:15px;

    box-shadow:0 8px 18px rgba(0,0,0,.2);

}

.involve-content{

    width:600px;

}

.involve-content h2{

    color:darkgreen;

}

.involve-content p{

    line-height:1.8;

    font-size:18px;

    text-align:justify;

}

.progress-bar{

    width:100%;

    background:#ddd;

    border-radius:30px;

    overflow:hidden;

    margin-top:20px;

}

.progress{

    width:35%;

    background:green;

    color:white;

    text-align:center;

    padding:12px;

    font-weight:bold;

}

/* Contact Section */
section h2, section p {
    text-align: center;
}

.contact{

    padding:80px 20px;

    background:white;

    text-align:center;

}

.contact h2{

    color:darkgreen;

    margin-bottom:15px;

}

.contact p{

    margin-bottom:40px;

    font-size:18px;

}

.contact-form{

    width:70%;

    margin:auto;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:15px;

    margin-bottom:20px;

    border:1px solid #ccc;

    border-radius:8px;

    font-size:16px;

}

.contact-form button{

    background:darkgreen;

    color:white;

    border:none;

    padding:15px 40px;

    font-size:18px;

    border-radius:30px;

    cursor:pointer;

}

.contact-form button:hover{

    background:#FFD700;

    color:black;

}
/* ===========================
   GOOGLE MAP
=========================== */

.map-section{

    width:90%;

    max-width:1200px;

    margin:60px auto;

    text-align:center;

}

.map-section h2{

    color:#14532d;

    margin-bottom:15px;

    font-size:32px;

}

.map-section p{

    color:#666;

    margin-bottom:30px;

}

.map-container{

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

/* Footer */

footer{

    background:#003300;

    color:white;

}

.footer-container{

    display:flex;

    justify-content:space-around;

    flex-wrap:wrap;

    padding:60px 30px;

}

.footer-box{

    width:250px;

    margin:20px;

}

.footer-box h3{

    color:#FFD700;

}

.footer-box p{

    line-height:1.8;

}

.copyright{

    text-align:center;

    padding:20px;

    background:#002200;

}
/*==============================
SUCCESS MESSAGE
==============================*/

.success-box{

    width:90%;

    max-width:900px;

    margin:20px auto;

    background:#d4edda;

    color:#155724;

    padding:18px;

    border-radius:8px;

    border:1px solid #c3e6cb;

    text-align:center;

    font-size:18px;

}

/*==============================
ERROR MESSAGE
==============================*/

.error-box{

    width:90%;

    max-width:900px;

    margin:20px auto;

    background:#f8d7da;

    color:#721c24;

    padding:18px;

    border-radius:8px;

    border:1px solid #f5c6cb;

    text-align:center;

    font-size:18px;

}