/* ==========================================
   GOOGLE FONT
========================================== */

/* universal reset */
/* =========================
   GLOBAL RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#333;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   ROOT VARIABLES
========================================== */

:root{
    --olive:#556B2F;
    --red:#C62828;
    --gold:#EF8B1E;
    --black:#111111;
    --white:#ffffff;
    --light:#f7f7f7;
    --cream:#fffaf3;
    --shadow:0 5px 20px rgba(0,0,0,0.12);
}

/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    line-height:1.7;
    color:#333;
    overflow-x:hidden;
    background:var(--white);
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ==========================================
   REUSABLE CLASSES
========================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    color:var(--olive);
    position:relative;
    display:inline-block;
    padding-bottom:20px;
}

.section-title h2::after{
    content:"";
    width:80px;
    height:4px;
    background:var(--gold);
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    border-radius:50px;
}

.section-title p{
    color:var(--grey);
}

.btn-primary,
.btn-secondary{
    padding:14px 30px;
    border-radius:35px;
    font-weight:600;
    transition:var(--transition);
}

.btn-primary{
    background:var(--olive);
    color:white;
}

.btn-primary:hover{
    background:var(--red);
}

.btn-secondary{
    background:white;
    color:var(--black);
}

.btn-secondary:hover{
    background:var(--orange);
    color:white;
}

/* ==========================================
   TOP BAR
========================================== */

.top-bar{
    background:var(--olive);
    color:white;
    padding:10px 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
}

.contact-info{
    display:flex;
    gap:25px;
}

.social-icons a{
    color:white;
    margin-left:15px;
    transition:var(--transition);
}

.social-icons a:hover{
    color:var(--orange);
}

/* ==========================================
   HEADER
========================================== */

header{
    background:white;
    box-shadow:var(--shadow);
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    padding:15px 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:90px;
}

.logo-text h1{
    color:var(--olive);
    font-size:1.5rem;
}

.logo-text p{
    font-size:12px;
    color:var(--grey);
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:var(--black);
    font-weight:600;
    transition:var(--transition);
}

.nav-links a:hover{
    color:var(--red);
}

.donate-btn{
    background:var(--red);
    color:white;
    padding:12px 24px;
    border-radius:30px;
    font-weight:600;
    transition:var(--transition);
}

.donate-btn:hover{
    background:var(--orange);
}

/* ==========================================
   HERO
========================================== */

.hero{
    height:90vh;
    background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("pics/African-children.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-content{
    text-align:center;
    color:white;
    width:90%;
    max-width:900px;
}

.hero-content h1{
    font-size:4rem;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-content span{
    color:var(--orange);
}

.hero-content p{
    margin-bottom:35px;
    font-size:1.1rem;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/* ==========================================
   IMPACT SECTION
========================================== */

.impact{
    padding:100px 8%;
    text-align:center;
}

.impact h2{
    font-size:2.5rem;
    margin-bottom:50px;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:var(--shadow);
    border-top:5px solid var(--gold);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:3rem;
    color:var(--orange);
    margin-bottom:20px;
}

.card h3{
    color:var(--olive);
    margin-bottom:15px;
}

/* ==========================================
   ABOUT PREVIEW
========================================== */

.about-preview{
    padding:100px 8%;
    background:
    linear-gradient(
        135deg,
        #f7f7f7 0%,
        #f7f7f7 70%,
        rgba(239,139,30,.08) 100%
    );
}

.about-text{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.about-text h2{
    font-size:2.5rem;
    margin-bottom:25px;
}

.about-text p{
    margin-bottom:30px;
}

/* ==========================================
   MISSION & VISION
========================================== */

.mission-vision{
    padding:100px 8%;
}

.mv-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mv-card{
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:var(--shadow);
    text-align:center;
}

.mv-card i{
    color:var(--orange);
    font-size:3rem;
    margin-bottom:20px;
}

.mv-card h3{
    color:var(--olive);
    margin-bottom:15px;
}

/* ==========================================
   LEADERSHIP
========================================== */

.leadership{
    background:
    linear-gradient(
        to right,
        rgba(85,107,47,.05),
        #f8f8f8,
        rgba(198,40,40,.05)
    );
}

.leaders-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.leader-card{
    background:white;
    padding:30px;
    text-align:center;
    border-radius:15px;
    box-shadow:var(--shadow);
}

.leader-card img{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto 20px;
    border:5px solid var(--olive);
}

.leader-card h3{
    color:var(--olive);
}

.leader-card span{
    color:var(--red);
    font-weight:600;
}

/* ==========================================
   PROJECTS PREVIEW
========================================== */

.projects-preview{
    padding:100px 8%;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.project-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border-bottom:5px solid var(--olive);
}

.project-card img{
    height:250px;
    width:100%;
    object-fit:cover;
}

.project-content{
    padding:25px;
}

.project-content h3{
    color:var(--olive);
    margin-bottom:10px;
}

/* ==========================================
   FOOTER
========================================== */

footer{
    background:var(--black);
    color:white;
    padding-top:60px;
}

.footer-content{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding-bottom:40px;
}

.footer-content h3{
    color:var(--orange);
    margin-bottom:20px;
}

.footer-content a{
    display:block;
    color:white;
    margin-bottom:10px;
}

.footer-content a:hover{
    color:var(--orange);
}

.copyright{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.15);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .hero-content h1{
        font-size:3rem;
    }

    .mv-container{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .top-bar{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .contact-info{
        flex-direction:column;
        gap:8px;
    }

@media(max-width:768px){

    .top-bar{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .contact-info{
        flex-direction:column;
        gap:8px;
    }

    .navbar{
        position:relative;
    }

    .hamburger{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:-100%;

        width:100%;
        background:white;

        flex-direction:column;
        text-align:center;

        padding:30px 0;

        box-shadow:var(--shadow);

        transition:.4s;
    }

    .nav-links.active{
        left:0;
    }

    .nav-links li{
        margin:15px 0;
    }

    .donate-btn{
        display:none;
    }

    .hero{
        height:80vh;
    }

    .hero-content h1{
        font-size:2.2rem;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .impact h2,
    .about-text h2,
    .section-title h2{
        font-size:2rem;
    }
}

    .hero{
        height:80vh;
    }

    .hero-content h1{
        font-size:2.2rem;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .impact h2,
    .about-text h2,
    .section-title h2{
        font-size:2rem;
    }
}

/* about */
/* ==========================
   PAGE BANNER
========================== */

.page-banner{
    background:
    linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url("pics/African-children.jpg");
    background-size:cover;
    background-position:center;
    padding:120px 8%;
    text-align:center;
    color:white;
}

.banner-content h1{
    font-size:3rem;
    margin-bottom:15px;
}

.banner-content p{
    max-width:700px;
    margin:auto;
}

/* ==========================
   ABOUT SECTION
========================== */

.about-section{
    padding:100px 8%;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:var(--shadow);
}

.about-content h2{
    color:var(--olive);
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:20px;
}

.values{
    padding:100px 8%;
    background:var(--light);
}

@media(max-width:768px){

.about-container{
    grid-template-columns:1fr;
}

.banner-content h1{
    font-size:2.2rem;
}

}

/* ==========================
   PROGRAMS PAGE
========================== */

.programs-section{
padding:100px 8%;
background:white;
}

.programs-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.program-card{
background:white;
padding:40px;
border-radius:15px;
box-shadow:var(--shadow);
text-align:center;
transition:.4s;
}

.program-card:hover{
transform:translateY(-10px);
}

.program-card i{
font-size:3rem;
color:var(--orange);
margin-bottom:20px;
}

.program-card h3{
color:var(--olive);
margin-bottom:15px;
}

.featured-program{
padding:100px 8%;
background:var(--light);
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.featured-image img{
width:100%;
border-radius:15px;
box-shadow:var(--shadow);
}

.featured-content h2{
font-size:2.5rem;
margin-bottom:20px;
color:var(--olive);
}

.featured-content p{
margin-bottom:20px;
}

.cta-section{
padding:100px 8%;
text-align:center;
background:var(--olive);
color:white;
}

.cta-section h2{
font-size:2.5rem;
margin-bottom:20px;
}

.cta-section p{
max-width:700px;
margin:0 auto 30px;
}

@media(max-width:768px){

.featured-program{
grid-template-columns:1fr;
}

}

/* ==========================
   PROJECTS PAGE
========================== */

.impact-stats{
background:var(--olive);
color:white;
padding:80px 8%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
text-align:center;
}

.stat-box h2{
font-size:3rem;
margin-bottom:10px;
color:var(--orange);
}

.future-projects{
padding:100px 8%;
background:white;
}

.future-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.future-card{
background:var(--light);
padding:40px;
border-radius:15px;
text-align:center;
box-shadow:var(--shadow);
transition:.3s;
}

.future-card:hover{
transform:translateY(-10px);
}

.future-card i{
font-size:3rem;
color:var(--orange);
margin-bottom:20px;
}

.future-card h3{
margin-bottom:15px;
color:var(--olive);
}

/* ==========================
   MEMBERSHIP PAGE
========================== */

.membership-benefits{
padding:100px 8%;
background:white;
}

.benefits-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.benefit-card{
background:white;
padding:40px;
text-align:center;
border-radius:15px;
box-shadow:var(--shadow);
transition:.3s;
}

.benefit-card:hover{
transform:translateY(-10px);
}

.benefit-card i{
font-size:3rem;
color:var(--orange);
margin-bottom:20px;
}

.benefit-card h3{
margin-bottom:15px;
color:var(--olive);
}

.membership-requirements{
padding:100px 8%;
background:var(--light);
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.requirements-content h2{
font-size:2.5rem;
color:var(--olive);
margin-bottom:30px;
}

.requirements-content ul{
list-style:none;
}

.requirements-content li{
margin-bottom:18px;
font-size:1.05rem;
}

.requirements-content i{
color:var(--orange);
margin-right:10px;
}

.requirements-image img{
width:100%;
border-radius:15px;
box-shadow:var(--shadow);
}

.membership-types{
padding:100px 8%;
background:white;
}

.types-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.type-card{
background:var(--light);
padding:40px;
border-radius:15px;
text-align:center;
box-shadow:var(--shadow);
}

.type-card h3{
color:var(--olive);
margin-bottom:15px;
}

@media(max-width:768px){

.membership-requirements{
grid-template-columns:1fr;
}

}

/* ==========================
   PAGE HERO
========================== */

.page-hero{
    height:55vh;

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url("pics/African-children.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    display:flex;
    justify-content:center;
    align-items:center;
}

.page-content{
    text-align:center;
    color:white;
    max-width:800px;
    margin:auto;
}

.page-content h1{
    font-size:3.5rem;
    color:white;
    text-shadow:
    0 5px 20px rgba(0,0,0,.6);
}

.page-content p{
    color:#f7f7f7;
    font-size:1.15rem;
    text-shadow:
    0 3px 10px rgba(0,0,0,.5);
}

/* ==========================
   GOVERNANCE
========================== */

.governance-structure{
    padding:100px 8%;
}

.governance-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.gov-card{
    background:white;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:var(--shadow);
    transition:.3s;
    border-top:5px solid var(--red);
}

.gov-card:hover{
    transform:translateY(-8px);
}

.gov-card i{
    font-size:3rem;
    color:var(--orange);
    margin-bottom:20px;
}

.gov-card h3{
    color:var(--olive);
    margin-bottom:15px;
}
.committees{
    padding:100px 8%;
    background:
    linear-gradient(
        135deg,
        rgba(85,107,47,.04),
        rgba(239,139,30,.05)
    );
}

.committee-container{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.committee-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
    border-top:5px solid var(--gold);
}

.committee-card h3{
    color:var(--olive);
    margin-bottom:25px;
}

.committee-card i{
    color:var(--red);
    margin-right:10px;
}

.committee-card ul{
    padding-left:20px;
}

.committee-card li{
    margin-bottom:12px;
    color:#444;
}

/* ==========================
   CONTACT PAGE
========================== */

.contact-section{
    padding:100px 8%;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.contact-card{
    background:white;
    text-align:center;
    padding:35px;
    border-radius:15px;
    box-shadow:var(--shadow);
    border-top:5px solid var(--gold);
}

.contact-card i{
    font-size:3rem;
    color:var(--orange);
    margin-bottom:20px;
}

.contact-card h3{
    color:var(--olive);
    margin-bottom:15px;
}

/* CONTACT FORM */

.contact-form-section{
    background:
    linear-gradient(
        to bottom,
        #fff,
        #f7f7f7,
        rgba(239,139,30,.05)
    );
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.contact-info-box h2{
    color:var(--olive);
    margin-bottom:20px;
}

.contact-info-box ul{
    list-style:none;
    margin-top:25px;
}

.contact-info-box li{
    margin-bottom:15px;
}

.contact-info-box i{
    color:var(--orange);
    margin-right:10px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:1rem;
}

.contact-form textarea{
    resize:none;
}

/* MAP */

.location-section{
    padding:100px 8%;
}

.map-placeholder{
    background:#f5f5f5;
    padding:80px;
    text-align:center;
    border-radius:15px;
}

.map-placeholder i{
    font-size:4rem;
    color:var(--orange);
    margin-bottom:20px;
}

/* SOCIAL */

.social-section{
    padding:100px 8%;
    background:#f8f8f8;
}

.social-large{
    text-align:center;
}

.social-large a{
    display:inline-block;
    width:70px;
    height:70px;
    line-height:70px;
    margin:10px;
    border-radius:50%;
    background:var(--olive);
    color:white;
    font-size:1.5rem;
    transition:.3s;
}

.social-large a:hover{
    background:var(--red);
    transform:translateY(-5px);
}

/* CTA */

.cta-banner{
    background:var(--olive);
    color:white;
    text-align:center;
    padding:90px 8%;
}

.cta-banner h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.cta-banner p{
    margin-bottom:30px;
}

/* RESPONSIVE */

@media(max-width:768px){

.contact-container{
    grid-template-columns:1fr;
}

.cta-banner h2{
    font-size:2rem;
}

.map-placeholder{
    padding:50px 20px;
}

}

/* active page */
.nav-links a.active{
    color:var(--red);
    position:relative;
}

.nav-links a.active::after{
    content:"";
    position:absolute;
    bottom:-10px;
    left:0;

    width:100%;
    height:3px;

    background:var(--gold);
    border-radius:20px;
}

/* flag */
.flag-ribbon{
    height:6px;

    background:
    linear-gradient(
        to right,
        var(--olive) 0%,
        var(--olive) 25%,
        var(--red) 25%,
        var(--red) 50%,
        var(--black) 50%,
        var(--black) 75%,
        var(--gold) 75%,
        var(--gold) 100%
    );
}

.hamburger{
    display:block;
    font-size:2rem;
    color:var(--olive);
    cursor:pointer;
}

/* .hamburger{
    display:block;
    font-size:2rem;
    color:red;
    background:yellow;
} */

/* ==========================
   BACK TO TOP BUTTON
========================== */

#backToTop{
    position:fixed;
    bottom:25px;
    right:25px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:var(--olive);
    color:white;

    font-size:1.2rem;
    cursor:pointer;

    box-shadow:var(--shadow);

    display:none;

    z-index:999;
    transition:.3s;
}

#backToTop:hover{
    background:var(--red);
    transform:translateY(-5px);
}

/* ==========================
   WHATSAPP BUTTON
========================== */

.whatsapp-btn{
    position:fixed;

    bottom:90px;
    right:25px;

    width:60px;
    height:60px;

    border-radius:50%;

    background:#25D366;
    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:2rem;

    box-shadow:var(--shadow);

    z-index:999;
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
}

.whatsapp-btn{
    animation:whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}

.reveal{
    opacity:0;
    transform:translateY(80px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.legacy-section{
    padding:100px 8%;
    background:
    linear-gradient(
        rgba(85,107,47,.06),
        rgba(239,139,30,.06)
    );
    text-align:center;
}

.legacy-content{
    max-width:900px;
    margin:auto;
}

.legacy-content p{
    margin-bottom:35px;
    font-size:1.1rem;
}
/* legacy */
/* INVESTMENT FOCUS */

.investment-focus{
    padding:100px 8%;
    background:
    linear-gradient(
        to right,
        rgba(85,107,47,.04),
        white,
        rgba(198,40,40,.04)
    );
}

.investment-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.investment-card{
    background:white;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:var(--shadow);
    border-top:5px solid var(--gold);
    transition:.4s;
}

.investment-card:hover{
    transform:translateY(-10px);
}

.investment-card i{
    font-size:3rem;
    color:var(--olive);
    margin-bottom:20px;
}

.investment-card h3{
    color:var(--olive);
    margin-bottom:15px;
}

.welfare-section{
    padding:120px 8%;
    background:
    linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url("pics/WhatsApp\ Image\ 2026-06-16\ at\ 09.25.58.jpeg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    text-align:center;
    color:white;
}

.welfare-content{
    max-width:800px;
    margin:auto;
}

.welfare-content h2{
    color:var(--gold);
    margin-bottom:15px;
}

.welfare-content h3{
    font-size:2.5rem;
    margin-bottom:20px;
}

.welfare-content p{
    margin-bottom:35px;
    font-size:1.1rem;
}

.news-preview{
    padding:100px 8%;
    background:#f8f8f8;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.news-card{
    background:white;
    padding:40px;
    text-align:center;
    border-radius:15px;
    box-shadow:var(--shadow);
    border-top:5px solid var(--red);
    transition:.4s;
}

.news-card:hover{
    transform:translateY(-10px);
}

.news-card i{
    font-size:3rem;
    color:var(--gold);
    margin-bottom:20px;
}

.news-card h3{
    color:var(--olive);
    margin-bottom:15px;
}

.news-btn{
    text-align:center;
    margin-top:50px;
}

.stats-section{
    background:var(--olive);
    color:white;
    padding:90px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    text-align:center;
}

.stat-item h2{
    font-size:3rem;
    color:var(--gold);
}

.stat-item p{
    font-size:1.1rem;
}

.newsletter{
    padding:100px 8%;
    text-align:center;
    background:
    linear-gradient(
        rgba(85,107,47,.08),
        rgba(239,139,30,.08)
    );
}

.newsletter h2{
    color:var(--olive);
    margin-bottom:20px;
}

.newsletter p{
    margin-bottom:30px;
}

.newsletter form{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.newsletter input{
    padding:15px;
    width:350px;
    border:1px solid #ddd;
    border-radius:30px;
}

.newsletter button{
    padding:15px 35px;
    border:none;
    border-radius:30px;
    background:var(--red);
    color:white;
    cursor:pointer;
}

.gov-card{
    border-top:5px solid var(--olive);
}
.leader-card{
    border-bottom:5px solid var(--red);
}

/* ==========================
   SUB-COMMITTEES
========================== */

.committees{
    padding:100px 8%;
    background:
    linear-gradient(
        to bottom,
        #ffffff,
        rgba(85,107,47,.03),
        #ffffff
    );
}

.committee-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.committee-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
    border-top:5px solid var(--gold);
    transition:.4s;
}

.committee-card:hover{
    transform:translateY(-10px);
}

.committee-card h3{
    color:var(--olive);
    margin-bottom:25px;
    font-size:1.2rem;
}

.committee-card h3 i{
    color:var(--red);
    margin-right:10px;
}

.committee-card ul{
    padding-left:20px;
}

.committee-card li{
    margin-bottom:12px;
    color:#555;
}
/* ==========================
   SCROLL ANIMATION
========================== */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.project-content i{
    font-size: 45px;
    color: #d4af37;
    margin-bottom: 20px;
}

.project-content strong{
    color: #002147;
}

.project-card{
    transition: 0.4s;
}

.project-card:hover{
    transform: translateY(-10px);
}

.cta-banner{
    background: linear-gradient(
        rgba(0,33,71,0.9),
        rgba(0,33,71,0.9)
    ),
    url("pics/investment.jpg")
    center/cover;
    color: white;
    text-align: center;
    padding: 90px 10%;
}

.cta-banner h2{
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-banner p{
    max-width: 700px;
    margin: auto;
    margin-bottom: 35px;
    line-height: 1.8;
}

.membership-categories{
    padding:90px 10%;
}

.membership-categories .card{
    transition:0.4s;
}

.membership-categories .card:hover{
    transform:translateY(-10px);
}

.membership-categories i,
.impact i,
.mv-card i{
    font-size:45px;
    color:#d4af37;
    margin-bottom:20px;
}

.cta-banner{
    background:
    linear-gradient(
    rgba(0,33,71,0.88),
    rgba(0,33,71,0.88)),
    url("pics/African-children.jpg");

    background-size:cover;
    background-position:center;
    text-align:center;
    color:white;
    padding:100px 10%;
}

.cta-banner h2{
    font-size:2.3rem;
    margin-bottom:20px;
}

.cta-banner p{
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
    line-height:1.8;
}

.project-content i,
.impact i{
    font-size:45px;
    color:#d4af37;
    margin-bottom:20px;
}

.project-card{
    transition:0.4s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.card{
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.gallery-intro{
    padding:80px 8%;
    text-align:center;
}

.gallery-section{
    padding:80px 8%;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.gallery-card{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    background:#fff;
}

.gallery-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.5s;
}

.gallery-card:hover img{
    transform:scale(1.1);
}

@media(max-width:768px){

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-card img{
    height:250px;
}

}

.contact-section{
    padding:80px 8%;
}

.contact-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.contact-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.4s;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card i{
    font-size:45px;
    color:#d4af37;
    margin-bottom:20px;
}

.contact-card h3{
    margin-bottom:20px;
}

.contact-map{
    padding:80px 8%;
}

.contact-map iframe{
    width:100%;
    height:450px;
    border:0;
    border-radius:20px;
    margin-top:40px;
}

.contact-form-section{
    padding:80px 8%;
}

.contact-form{
    max-width:800px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:12px;
    font-family:'Poppins',sans-serif;
    font-size:16px;
}

.contact-form textarea{
    height:200px;
    resize:none;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

@media(max-width:768px){

.contact-container{
    grid-template-columns:1fr;
}

.contact-map iframe{
    height:300px;
}

}

/* ==========================
   NAVBAR
========================== */

.navbar{
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 5%;
    gap:25px;
    position:relative;
}

/* ==========================
   LOGO
========================== */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    flex-shrink:0;
}

.logo img{
    width:80px;
    height:auto;
}

.logo-text h1{
    font-size:20px;
    color:#556B2F;
    margin-bottom:5px;
    line-height:1;
}

.logo-text p{
    font-size:12px;
    color:red;
    line-height:1.5;
    max-width:px;
}

/* ==========================
   NAVIGATION LINKS
========================== */

.nav-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    list-style:none;
    flex:1;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:600;
    white-space:nowrap;
    transition:0.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:#d97b11;
}

.nav-links a.active::after{
    content:"";
    display:block;
    width:100%;
    height:3px;
    background:#d97b11;
    margin-top:6px;
}

/* ==========================
   DONATE BUTTON
========================== */

.donate-btn{
    background:#c62828;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:35px;
    font-weight:600;
    white-space:nowrap;
    flex-shrink:0;
    transition:0.3s;
}

.donate-btn:hover{
    transform:translateY(-3px);
    opacity:0.9;
}

/* ==========================
   HAMBURGER
========================== */

.hamburger{
    display:none;
    font-size:30px;
    color:#556B2F;
    cursor:pointer;
}

/* ==========================
   TABLET
========================== */

@media(max-width:1250px){

.nav-links{
    gap:15px;
}

.nav-links a{
    font-size:14px;
}

.logo img{
    width:70px;
}

.logo-text h1{
    font-size:18px;
}

.logo-text p{
    font-size:11px;
}

}

/* ==========================
   MOBILE
========================== */

@media(max-width:1100px){

.hamburger{
    display:block;
    font-size:30px;
    cursor:pointer;
    z-index:2000;
}

.donate-btn{
    display:none;
}

.nav-links{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;

    flex-direction:column;
    align-items:center;
    gap:25px;

    padding:40px 0;

    max-height:80vh;
    overflow-y:auto;

    box-shadow:0 10px 20px rgba(0,0,0,0.1);

    z-index:1500;
}

.nav-links.active{
    display:flex;
}

}
.navbar{
    position:relative;
}

/* =====================================
   LARGE TABLETS
===================================== */

@media(max-width:1200px){

.navbar{
    padding:15px 4%;
}

.logo img{
    width:70px;
}

.logo-text h1{
    font-size:18px;
}

.logo-text p{
    font-size:11px;
}

.nav-links{
    gap:15px;
}

.nav-links a{
    font-size:14px;
}

}


/* =====================================
   TABLETS & SMALL LAPTOPS
===================================== */

@media(max-width:1100px){

.navbar{
    position:relative;
}

.logo img{
    width:60px;
}

.logo-text h1{
    font-size:17px;
}

.logo-text p{
    display:none;
}

.hamburger{
    display:block;
    font-size:30px;
    cursor:pointer;
    color:#556B2F;
    z-index:2000;
}

.donate-btn{
    display:none;
}

.nav-links{
    display:none;

    position:absolute;
    top:100%;
    left:0;

    width:100%;
    background:#fff;

    flex-direction:column;
    align-items:center;

    gap:25px;
    padding:40px 0;

    max-height:80vh;
    overflow-y:auto;

    box-shadow:0 8px 20px rgba(0,0,0,0.1);

    z-index:1500;
}

.nav-links.active{
    display:flex;
}

}


/* =====================================
   MOBILE DEVICES
===================================== */

@media(max-width:768px){

section{
    padding:60px 20px;
}

/* TOP BAR */

.top-bar{
    flex-direction:column;
    text-align:center;
    gap:10px;
    padding:12px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.social-icons{
    margin-top:10px;
}

/* HERO */

.hero,
.page-hero{
    min-height:60vh;
    padding:100px 20px;
}

.hero h1,
.page-content h1{
    font-size:32px;
}

.hero p,
.page-content p{
    font-size:16px;
    line-height:1.7;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.btn-primary,
.btn-secondary,
.donate-btn{
    padding:12px 25px;
}

/* ALL GRIDS */

.impact-grid,
.projects-grid,
.future-grid,
.mv-container,
.leaders-grid,
.committee-container,
.gallery-grid,
.contact-container,
.governance-grid,
.stats-container,
.impact-stats{

    display:grid;
    grid-template-columns:1fr;
    gap:25px;
}

/* ABOUT PAGES */

.about-container{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.about-image,
.about-content{
    width:100%;
}

/* FORMS */

form,
.contact-form{
    width:100%;
}

input,
textarea,
select,
button{
    width:100%;
}

/* FOOTER */

.footer-content{
    display:flex;
    flex-direction:column;
    text-align:center;
    gap:35px;
}

/* TEXT */

h1{
    font-size:32px;
}

h2{
    font-size:28px;
}

h3{
    font-size:22px;
}

p{
    font-size:15px;
    line-height:1.8;
}

}


/* =====================================
   SMALL PHONES
===================================== */

@media(max-width:480px){

.logo img{
    width:50px;
}

.logo-text h1{
    font-size:16px;
}

.hero h1,
.page-content h1{
    font-size:28px;
}

h2{
    font-size:24px;
}

h3{
    font-size:20px;
}

p{
    font-size:14px;
}

.btn-primary,
.btn-secondary{
    width:100%;
    text-align:center;
}

.hero-buttons{
    width:100%;
}

.contact-info span{
    font-size:13px;
}

.social-icons a{
    font-size:18px;
}

}

.photo-banner{
    height:350px;
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.banner1{
    background-image:url("pics/African-children.jpg");
}

.banner2{
    background-image:url("pics/doctors.jpg");
}

.banner3{
    background-image:url("pics/investment.jpg");
}

.banner4{
    background-image:url("pics/community.jpg");
}

/* donate page css */
.donation-section{

padding:80px 10%;

background:#f8f9fa;

}

.donation-box{

max-width:700px;

margin:auto;

background:white;

padding:50px;

border-radius:15px;

box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.donation-box h2{

text-align:center;

margin-bottom:20px;

color:#0c3c60;

}

.donation-box p{

text-align:center;

margin-bottom:35px;

}

.amount-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

margin-bottom:30px;

}

.amount-grid button{

padding:15px;

font-size:18px;

border:none;

background:#f2f2f2;

cursor:pointer;

border-radius:10px;

transition:.3s;

}

.amount-grid button:hover{

background:#c9a227;

color:white;

}

.donation-box input,

.donation-box select{

width:100%;

padding:15px;

margin:12px 0;

border-radius:8px;

border:1px solid #ccc;

font-size:16px;

}

.donate-now{

width:100%;

padding:18px;

font-size:18px;

margin-top:15px;

}
.donation-note{

    text-align:center;
    color:#666;
    font-size:14px;
    margin-top:15px;

}

.donation-intro{

    max-width:900px;
    margin:0 auto 50px;
    text-align:center;

}

.donation-intro h2{

    font-size:2.4rem;
    color:#0c3c60;
    margin-bottom:20px;

}

.donation-intro p{

    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;

}
/* ===========================
   DONATION INTRO
===========================*/

.donation-intro{
    padding:90px 8%;
    background:#ffffff;
    text-align:center;
}

.donation-intro .container{
    max-width:900px;
    margin:auto;
}

.donation-intro h2{
    font-size:2.2rem;
    color:#0B3D91;
    margin-bottom:25px;
}

.donation-intro p{
    font-size:1.05rem;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.donation-intro blockquote{
    margin-top:35px;
    font-size:1.4rem;
    font-style:italic;
    color:#C62828;
    font-weight:600;
    border-left:5px solid #C62828;
    padding-left:20px;
}

#contactResponse,
#newsletterResponse{

margin-top:20px;

font-weight:600;

font-size:16px;

text-align:center;

}

#sendBtn,
#subscribeBtn{

transition:.3s;

}

#sendBtn:hover,
#subscribeBtn:hover{

transform:translateY(-2px);

}

/*==========================
 INVESTMENT UNDER CONSTRUCTION
===========================*/

.construction-area{

display:flex;

justify-content:center;

align-items:center;

padding:90px 20px;

background:#fafafa;

border:3px dashed #ff9800;

border-radius:20px;

overflow:hidden;

position:relative;

}


/* =========================
      CRANE
========================= */

.crane{

position:relative;

width:520px;

height:520px;

}


/* Tower */

.tower{

position:absolute;

left:90px;

bottom:0;

width:26px;

height:340px;

background:#ff9800;

}


/* Boom */

.boom{

position:absolute;

top:80px;

left:103px;

width:300px;

height:12px;

background:#ff9800;

}


/* Counter Boom */

.counter-boom{

position:absolute;

top:80px;

left:25px;

width:80px;

height:12px;

background:#ff9800;

}


/* Cab */

.cab{

position:absolute;

top:65px;

left:75px;

width:42px;

height:42px;

background:#222;

border-radius:4px;

}


/*=========================
    CABLE
=========================*/

.cable{

position:absolute;

left:390px;

top:92px;

width:4px;

height:260px;

background:#111;

transform-origin:top center;

animation:swing 4s ease-in-out infinite;

}


/* Hook */

.hook{

position:absolute;

left:-9px;

top:0;

width:22px;

height:22px;

border:4px solid #111;

border-top:none;

border-radius:0 0 50% 50%;

}


/*=========================
    BOARD
=========================*/

.construction-board{

position:absolute;

top:35px;

left:-150px;

width:300px;

padding:28px;

text-align:center;

background:#198754;

color:white;

border-radius:12px;

border:8px solid #111;

box-shadow:0 18px 30px rgba(0,0,0,.25);

}


/* Zambia inspired stripes */

.construction-board::before{

content:"";

position:absolute;

top:0;

left:0;

right:0;

height:10px;

background:
linear-gradient(
90deg,
#198754 25%,
#d32f2f 25%,
#d32f2f 50%,
#111 50%,
#111 75%,
#ff9800 75%
);

border-radius:4px 4px 0 0;

}


.construction-board i{

font-size:55px;

color:#ff9800;

margin-bottom:15px;

}


.construction-board h3{

font-size:34px;

margin-bottom:15px;

letter-spacing:2px;

}


.construction-board p{

font-size:18px;

line-height:1.6;

margin-bottom:18px;

}


.construction-board span{

font-weight:bold;

font-size:19px;

color:#ffd54f;

}


/*=========================
     ANIMATION
=========================*/

@keyframes swing{

0%{

transform:rotate(-5deg);

}

25%{

transform:rotate(-2deg);

}

50%{

transform:rotate(4deg);

}

75%{

transform:rotate(2deg);

}

100%{

transform:rotate(-5deg);

}

}
/* ==========================
   MOBILE RESPONSIVENESS
========================== */

@media (max-width: 768px){

.construction-area{

padding:40px 15px;

border-radius:15px;

overflow-x:hidden;

}

.crane{

width:280px;

height:340px;

margin:auto;

}

.tower{

height:220px;

left:45px;

width:18px;

}

.boom{

width:170px;

left:58px;

top:55px;

height:8px;

}

.counter-boom{

width:45px;

left:12px;

top:55px;

height:8px;

}

.cab{

left:35px;

top:45px;

width:28px;

height:28px;

}

.cable{

left:220px;

top:63px;

height:160px;

}

.hook{

width:16px;

height:16px;

left:-6px;

}

.construction-board{

left:-90px;

width:180px;

padding:18px;

border-width:5px;

}

.construction-board i{

font-size:32px;

}

.construction-board h3{

font-size:20px;

letter-spacing:1px;

}

.construction-board p{

font-size:13px;

}

.construction-board span{

font-size:13px;

}

}


/*==================================================
            CONSTRUCTION SITE
==================================================*/

.construction-site{

position:relative;

width:100%;

height:720px;

margin:70px auto;

overflow:hidden;

background:linear-gradient(to bottom,#cfefff 0%,#eaf8ff 70%,#e4e4e4 100%);

border-radius:20px;

}


/*==============================
GROUND
==============================*/

.ground{

position:absolute;

bottom:0;

width:100%;

height:80px;

background:#4CAF50;

}


/*==============================
CRANE
==============================*/

.crane{

position:absolute;

left:120px;

bottom:80px;

width:420px;

height:560px;

}


/*==============================
TOWER
==============================*/

.tower{

position:absolute;

bottom:0;

left:70px;

width:26px;

height:460px;

background:#ff8200;

}


/* tower braces */

.tower::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:repeating-linear-gradient(

45deg,

transparent 0,

transparent 18px,

#222 18px,

#222 20px

);

}


.tower-lines{

position:absolute;

left:70px;

bottom:0;

width:26px;

height:460px;

background:repeating-linear-gradient(

-45deg,

transparent 0,

transparent 18px,

#222 18px,

#222 20px

);

opacity:.7;

}

.tower-lines.second{

display:none;

}


/*==============================
CAB
==============================*/

.cab{

position:absolute;

left:52px;

top:55px;

width:55px;

height:40px;

background:#222;

border-radius:6px;

}


/*==============================
COUNTERWEIGHT
==============================*/

.counter-weight{

position:absolute;

left:-8px;

top:62px;

width:32px;

height:22px;

background:#444;

}


/*==============================
MAIN BOOM
==============================*/

.boom{

position:absolute;

left:84px;

top:70px;

width:300px;

height:12px;

background:#ff8200;

}


/* lattice boom */

.boom::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:repeating-linear-gradient(

45deg,

transparent 0,

transparent 18px,

#222 18px,

#222 20px

);

}


/*==============================
COUNTER BOOM
==============================*/

.counter-boom{

position:absolute;

left:10px;

top:70px;

width:74px;

height:12px;

background:#ff8200;

}


/*==============================
TROLLEY
==============================*/

.trolley{

position:absolute;

left:290px;

top:67px;

width:18px;

height:18px;

background:#222;

border-radius:50%;

animation:trolleyMove 8s ease-in-out infinite;

}


/*==============================
CABLE
==============================*/

.cable{

position:absolute;

left:8px;

top:18px;

width:3px;

height:220px;

background:#111;

transform-origin:top;

animation:swing 4s ease-in-out infinite;

}


/*==============================
HOOK
==============================*/

.hook{

position:absolute;

left:-9px;

bottom:-18px;

width:18px;

height:18px;

border:4px solid #111;

border-top:none;

border-radius:0 0 50% 50%;

}
/*==================================================
                HANGING SIGN
==================================================*/

.sign{

position:absolute;

top:235px;

left:-145px;

width:290px;

padding:25px;

background:#198754;

border:8px solid #111;

border-radius:14px;

text-align:center;

color:#fff;

box-shadow:0 20px 35px rgba(0,0,0,.25);

}


/* Zambia Colours */

.sign::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:12px;

background:linear-gradient(

90deg,

#198754 0%,

#198754 25%,

#d62828 25%,

#d62828 50%,

#111 50%,

#111 75%,

#ff8200 75%,

#ff8200 100%

);

border-radius:5px 5px 0 0;

}


.sign i{

font-size:60px;

color:#ff8200;

margin-bottom:15px;

}


.sign h3{

font-size:34px;

letter-spacing:2px;

margin-bottom:15px;

font-weight:700;

}


.sign p{

font-size:18px;

line-height:1.6;

margin-bottom:15px;

}


.sign span{

font-size:18px;

font-weight:bold;

color:#FFD54F;

}


/*==============================
WARNING LIGHT
==============================*/

.warning-light{

position:absolute;

top:-22px;

left:50%;

transform:translateX(-50%);

width:18px;

height:18px;

border-radius:50%;

background:#ff0000;

animation:flash 1s infinite;

box-shadow:0 0 20px red;

}


/*==================================================
              BUILDING
==================================================*/

.building{

position:absolute;

right:140px;

bottom:80px;

width:220px;

height:330px;

background:#d9d9d9;

border:4px solid #999;

display:flex;

flex-direction:column;

justify-content:flex-end;

}


.floor{

height:60px;

border-top:4px solid #999;

position:relative;

}


.floor::before{

content:"";

position:absolute;

left:18px;

top:15px;

width:26px;

height:28px;

background:#7ec8ff;

box-shadow:

60px 0 #7ec8ff,

120px 0 #7ec8ff,

180px 0 #7ec8ff;

}


/* unfinished roof */

.building::before{

content:"";

position:absolute;

top:-25px;

left:0;

width:100%;

height:25px;

background:repeating-linear-gradient(

90deg,

#777 0,

#777 8px,

transparent 8px,

transparent 20px

);

}


/*==================================================
ROAD BARRIERS
==================================================*/

.barrier{

position:absolute;

bottom:65px;

width:95px;

height:18px;

background:repeating-linear-gradient(

45deg,

#ff8200,

#ff8200 12px,

#ffffff 12px,

#ffffff 24px

);

border:2px solid #111;

}


.barrier1{

left:460px;

}

.barrier2{

left:580px;

}

.barrier3{

left:700px;

}


/*==================================================
TRAFFIC CONES
==================================================*/

.cone{

position:absolute;

bottom:80px;

width:18px;

height:35px;

background:#ff8200;

clip-path:polygon(50% 0%,100% 100%,0 100%);

}


.cone::after{

content:"";

position:absolute;

top:12px;

left:0;

width:100%;

height:5px;

background:#fff;

}


.cone1{

left:510px;

}

.cone2{

left:640px;

}

.cone3{

left:770px;

}

/*==================================================
                MOVING CLOUDS
==================================================*/

.cloud{

position:absolute;

background:#ffffff;

border-radius:50px;

opacity:.9;

animation:cloudMove 45s linear infinite;

}

.cloud::before{

content:"";

position:absolute;

background:#ffffff;

width:70px;

height:70px;

border-radius:50%;

top:-30px;

left:18px;

}

.cloud::after{

content:"";

position:absolute;

background:#ffffff;

width:55px;

height:55px;

border-radius:50%;

top:-20px;

right:20px;

}

.cloud1{

width:140px;

height:45px;

top:70px;

left:-180px;

animation-duration:42s;

}

.cloud2{

width:170px;

height:55px;

top:170px;

left:-260px;

animation-duration:55s;

}

.cloud3{

width:120px;

height:40px;

top:280px;

left:-140px;

animation-duration:38s;

}


/*==================================================
                WORKERS
==================================================*/

.worker{

position:absolute;

bottom:80px;

animation:workerWalk 10s linear infinite;

}

.worker1{

left:540px;

animation-delay:0s;

}

.worker2{

left:720px;

animation-delay:5s;

}

.head{

width:18px;

height:18px;

background:#f2c29b;

border-radius:50%;

margin:auto;

position:relative;

}

.head::before{

content:"";

position:absolute;

top:-4px;

left:2px;

width:14px;

height:6px;

background:#ff8200;

border-radius:8px 8px 0 0;

}

.body{

width:10px;

height:42px;

background:#198754;

margin:auto;

position:relative;

}

.body::before{

content:"";

position:absolute;

left:-8px;

top:8px;

width:8px;

height:24px;

background:#198754;

transform:rotate(30deg);

animation:armMove .7s infinite alternate;

}

.body::after{

content:"";

position:absolute;

right:-8px;

top:8px;

width:8px;

height:24px;

background:#198754;

transform:rotate(-30deg);

animation:armMove .7s infinite alternate-reverse;

}


/*==================================================
            ANIMATIONS
==================================================*/

@keyframes trolleyMove{

0%{

left:180px;

}

50%{

left:330px;

}

100%{

left:180px;

}

}

@keyframes swing{

0%{

transform:rotate(-6deg);

}

25%{

transform:rotate(-2deg);

}

50%{

transform:rotate(5deg);

}

75%{

transform:rotate(2deg);

}

100%{

transform:rotate(-6deg);

}

}

@keyframes flash{

0%,100%{

background:#ff0000;

box-shadow:0 0 10px red;

}

50%{

background:#ffd600;

box-shadow:0 0 35px #ffd600;

}

}

@keyframes cloudMove{

0%{

transform:translateX(0);

}

100%{

transform:translateX(1700px);

}

}

@keyframes workerWalk{

0%{

transform:translateX(0);

}

50%{

transform:translateX(80px);

}

100%{

transform:translateX(0);

}

}

@keyframes armMove{

from{

transform:rotate(20deg);

}

to{

transform:rotate(-20deg);

}

}

@keyframes buildingGrow{

0%{

transform:scaleY(.94);

transform-origin:bottom;

}

100%{

transform:scaleY(1);

transform-origin:bottom;

}

}

.building{

animation:buildingGrow 3s ease-in-out infinite alternate;

}

/*=========================
    FLAG
=========================*/

.flag-pole{
position:absolute;
left:82px;
top:-45px;
width:4px;
height:50px;
background:#333;
}

.flag{
position:absolute;
left:86px;
top:-45px;
width:38px;
height:22px;
background:linear-gradient(
to bottom,
#198754 33%,
#d32f2f 33%,
#d32f2f 66%,
#111 66%
);
animation:flagWave 1.5s ease-in-out infinite;
transform-origin:left center;
}

@keyframes flagWave{

0%{transform:rotateY(0deg);}
50%{transform:rotateY(25deg);}
100%{transform:rotateY(0deg);}

}

/*=========================
   PULLEY
=========================*/

.pulley{

position:absolute;

width:18px;

height:18px;

border:4px solid #222;

border-radius:50%;

top:64px;

left:286px;

animation:rotatePulley 2s linear infinite;

}

@keyframes rotatePulley{

from{

transform:rotate(0deg);

}

to{

transform:rotate(360deg);

}

}

/*=========================
 DUST
=========================*/

.dust{

position:absolute;

bottom:82px;

width:6px;

height:6px;

border-radius:50%;

background:#d8c3a5;

animation:dust 2s infinite;

}

@keyframes dust{

0%{

opacity:0;

transform:translateY(0);

}

50%{

opacity:1;

}

100%{

opacity:0;

transform:translateY(-20px);

}

}

/*=========================
 MOBILE
=========================*/

@media(max-width:768px){

.construction-site{

height:520px;

}

.crane{

transform:scale(.55);

transform-origin:left bottom;

left:-25px;

}

.building{

transform:scale(.65);

right:-20px;

bottom:80px;

}

.barrier{

display:none;

}

.worker{

display:none;

}

.cloud{

transform:scale(.6);

}

}


/* css for the street */
/*==================================
 GOOGLE MAP + STREET VIEW
===================================*/

.map-wrapper{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(420px,1fr));

gap:30px;

width:90%;

margin:40px auto;

}

.map-wrapper iframe{

width:100%;

height:420px;

border:none;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.15);

transition:.4s;

}

.map-wrapper iframe:hover{

transform:translateY(-6px);

box-shadow:0 20px 45px rgba(0,0,0,.2);

}

@media(max-width:768px){

.map-wrapper{

grid-template-columns:1fr;

width:95%;

}

.map-wrapper iframe{

height:320px;

}

}

/* new news  */
/*==========================
FEATURED NEWS
===========================*/

.news-feature{

padding:80px 8%;

}

.featured-news{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

margin-top:50px;

}

.featured-news img{

width:100%;

height:420px;

object-fit:cover;

border-radius:15px;

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.featured-news-content{

display:flex;

flex-direction:column;

gap:20px;

}

.news-tag{

display:inline-block;

background:#198754;

color:#fff;

padding:8px 18px;

border-radius:40px;

font-size:14px;

font-weight:600;

width:max-content;

}

.featured-news-content h3{

font-size:34px;

color:#0b3d2e;

line-height:1.3;

}

.featured-news-content p{

font-size:17px;

line-height:1.8;

color:#555;

}

@media(max-width:768px){

.featured-news{

grid-template-columns:1fr;

}

.featured-news img{

height:260px;

}

.featured-news-content h3{

font-size:26px;

}

}

/* history paralex */
/*=============================
 HISTORY PARALLAX
==============================*/

.history-parallax{

position:relative;

height:500px;

background-attachment:fixed;

background-position:center;

background-repeat:no-repeat;

background-size:cover;

display:flex;

justify-content:center;

align-items:center;

overflow:hidden;

}

.parallax-one{

background-image:url("pics/WhatsApp\ Image\ 2026-06-16\ at\ 09.25.58.jpeg");

}

.parallax-two{

background-image:url("pics/WhatsApp Image 2026-06-25 at 02.56.06.jpeg");

}

.parallax-overlay{

width:100%;

height:100%;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

background:rgba(0,0,0,.45);

color:white;

padding:20px;

}

.parallax-overlay h2{

font-size:48px;

margin-bottom:20px;

font-weight:700;

text-shadow:2px 2px 12px rgba(0,0,0,.6);

}

.parallax-overlay p{

max-width:800px;

font-size:22px;

line-height:1.8;

text-shadow:1px 1px 10px rgba(0,0,0,.5);

}