
/* =========================
GLOBAL CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f7fb;
    min-height:100vh;
    overflow-x:hidden;
}

/* =========================
NAVBAR
========================= */

.navbar{

    width:100%;

    position:fixed;

    top:0;
    left:0;

    z-index:99999;

    padding:14px 5%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:#ffffff;

    box-shadow:
    0 8px 25px rgba(0,0,0,0.08);

}

/* =========================
LOGO AREA
========================= */

.logo-area{

    display:flex;
    align-items:center;

    gap:14px;

    text-decoration:none;

    flex:1;
}

/* =========================
LOGO
========================= */

.logo{

    width:70px;
    height:70px;

    min-width:70px;

    border-radius:50%;

    background:#fff;

    padding:4px;

    overflow:hidden;

    box-shadow:
    0 8px 20px rgba(0,0,0,0.12);

}

.logo img{

    width:100%;
    height:100%;

    object-fit:contain;

    border-radius:50%;
}

/* =========================
TEXT
========================= */

.logo-text{

    display:flex;
    flex-direction:column;
}

.logo-text h1{

    color:#123c74;

    font-size:30px;

    line-height:1;

    font-weight:800;
}

.logo-text span{

    color:#c89b2b;

    font-size:11px;

    font-weight:700;

    letter-spacing:1.2px;
}

/* =========================
MENU
========================= */

.nav-links{

    display:flex;
    align-items:center;

    gap:28px;

    list-style:none;
}

.nav-links li a{

    text-decoration:none;

    color:#123c74;

    font-size:15px;

    font-weight:600;

    position:relative;

    transition:0.3s ease;
}

/* HOVER EFFECT */

.nav-links li a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-7px;

    width:0%;
    height:3px;

    background:#c89b2b;

    border-radius:30px;

    transition:0.4s ease;
}

.nav-links li a:hover::after{

    width:100%;
}

.nav-links li a:hover{

    color:#c89b2b;
}

/* =========================
DONATE BUTTON
========================= */

.donate-btn{

    padding:13px 24px;

    border-radius:50px;

    background:linear-gradient(135deg,#c89b2b,#1259a7);

    color:#fff;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    display:flex;
    align-items:center;
    gap:10px;

    margin-left:30px;

    transition:0.4s ease;
}

.donate-btn:hover{

    transform:translateY(-3px);
}

/* =========================
MENU BUTTON
========================= */

.menu-btn{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

    margin-left:15px;
}

.menu-btn span{

    width:28px;
    height:3px;

    background:#123c74;

    border-radius:20px;

    transition:0.3s ease;
}

/* =========================
TABLET RESPONSIVE
========================= */

@media(max-width:1100px){

    .nav-links{

        gap:18px;
    }

    .nav-links li a{

        font-size:14px;
    }

}

/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

    .menu-btn{
        display:flex;
    }

    .donate-btn{
        display:none;
    }

    /* MOBILE MENU */

    .nav-links{

        position:absolute;

        top:100%;
        left:0;

        width:100%;

        background:#ffffff;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:0;

        max-height:0;

        overflow:hidden;

        opacity:0;

        visibility:hidden;

        transition:
        max-height 0.5s ease,
        opacity 0.3s ease,
        padding 0.3s ease;

        box-shadow:
        0 10px 20px rgba(0,0,0,0.08);
    }

    /* ACTIVE MENU */

    .nav-links.active{

        max-height:600px;

        opacity:1;

        visibility:visible;

        padding:30px 0;
    }

    .logo{

        width:58px;
        height:58px;

        min-width:58px;
    }

    .logo-text h1{

        font-size:22px;
    }

    .logo-text span{

        font-size:9px;

        letter-spacing:1px;
    }

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:600px){

    .navbar{

        padding:12px 4%;
    }

    .logo-area{

        gap:10px;
    }

    .logo{

        width:52px;
        height:52px;

        min-width:52px;
    }

    .logo-text h1{

        font-size:18px;
    }

    .logo-text span{

        font-size:7px;

        letter-spacing:0.5px;
    }

    .menu-btn span{

        width:25px;
    }

}


/* ===================================
   HERO SECTION
=================================== */

/* ================= NGO HERO SECTION ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
/* ================= PREMIUM NGO HERO ================= */

.ngo-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding:140px 8%;
    isolation:isolate;
}

/* BACKGROUND */

.hero-bg{
    position:absolute;
    inset:0;
    z-index:-3;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    animation:zoomHero 15s ease-in-out infinite alternate;
}

/* DARK OVERLAY */

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:-2;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.70) 35%,
        rgba(0,0,0,0.45) 65%,
        rgba(0,0,0,0.65) 100%
    );
}

/* EXTRA GLOW */

.ngo-hero::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:#ffb70330;
    border-radius:50%;
    filter:blur(120px);
    top:-150px;
    left:-100px;
    z-index:-1;
}

/* CONTENT */

.hero-content{
    position:relative;
    max-width:700px;
    color:#fff;
    z-index:2;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border-radius:60px;

    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.15);

    backdrop-filter:blur(18px);

    font-size:15px;
    color:#fff;

    margin-bottom:30px;
}

/* HEADING */

.hero-content h1{
    font-size:92px;
    line-height:1;
    font-weight:900;
    letter-spacing:-3px;
    margin-bottom:30px;
}

/* GRADIENT TEXT */

.hero-content h1 span{
    background:linear-gradient(to right,#ffb703,#ffd166,#ffffff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* PARAGRAPH */

.hero-content p{
    font-size:21px;
    line-height:1.9;
    color:#f1f1f1;
    max-width:620px;
    margin-bottom:45px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
}

.hero-buttons a{
    text-decoration:none;
    padding:18px 40px;
    border-radius:70px;
    font-size:17px;
    font-weight:700;
    transition:0.4s ease;
}

/* PRIMARY */

.btn-primary{
    background:linear-gradient(135deg,#ffb703,#ff7b00);
    color:#fff;

    box-shadow:
    0 10px 30px rgba(255,183,3,0.35);
}

.btn-primary:hover{
    transform:translateY(-6px) scale(1.03);
}

/* SECONDARY */

.btn-secondary{
    border:1px solid rgba(255,255,255,0.3);
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
    transform:translateY(-6px);
}

/* FLOATING CARDS */

.floating-card{
    position:absolute;
    z-index:3;

    width:190px;

    padding:35px 30px;

    border-radius:30px;

    background:rgba(255,255,255,0.10);

    border:1px solid rgba(255,255,255,0.15);

    backdrop-filter:blur(18px);

    box-shadow:
    0 10px 40px rgba(0,0,0,0.25);

    animation:float 5s ease-in-out infinite;
}

.floating-card h3{
    font-size:48px;
    font-weight:800;
    color:#ffb703;
    margin-bottom:10px;
}

.floating-card p{
    font-size:19px;
    color:#fff;
    line-height:1.5;
}

.card1{
    top:18%;
    right:8%;
}

.card2{
    bottom:12%;
    right:13%;
    animation-delay:2s;
}

/* CURVE BOTTOM */

.ngo-hero::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-1px;
    width:100%;
    height:120px;

    background:#fff;

    clip-path:ellipse(70% 100% at 50% 100%);
}

/* ANIMATION */

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes zoomHero{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .hero-content h1{
        font-size:65px;
    }

    .floating-card{
        width:160px;
    }

}

@media(max-width:768px){

    .ngo-hero{
        padding:130px 6% 180px;
        align-items:flex-start;
    }

    .hero-content h1{
        font-size:42px;
        letter-spacing:-1px;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.8;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons a{
        width:100%;
        text-align:center;
    }

    .floating-card{
        position:relative;
        top:auto;
        right:auto;
        bottom:auto;
        width:100%;
        margin-top:20px;
    }

    .ngo-hero::after{
        height:70px;
    }

}






/*======================  statistic section =======================*/




/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* ================= SECTION ================= */

.ngo-impact{

    position:relative;

    width:100%;

    min-height:100vh;

    padding:120px 7%;

    display:grid;

    grid-template-columns:
    1.2fr 1fr;

    gap:60px;

    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(
        rgba(255,255,255,0.82),
        rgba(255,255,255,0.88)
    ),

    url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=2070&auto=format&fit=crop');

    background-size:cover;

    background-position:center;
}

/* ================= LEFT ================= */

.impact-left{

    position:relative;

    z-index:2;
}

.impact-tag{

    display:inline-block;

    padding:14px 28px;

    border-radius:50px;

    background:
    rgba(255,183,3,0.15);

    color:#ff9800;

    font-weight:700;

    margin-bottom:30px;
}

/* TITLE */

.impact-left h1{

    font-size:72px;

    line-height:1.1;

    font-weight:900;

    color:#111827;

    margin-bottom:30px;
}

.impact-left h1 span{

    position:relative;

    color:#ff9800;
}

/* TEXT */

.impact-left p{

    font-size:20px;

    line-height:1.9;

    color:#444;

    max-width:700px;

    margin-bottom:40px;
}

/* BIG NUMBER */

.main-impact-number{

    font-size:110px;

    line-height:1;

    font-weight:900;

    color:#111827;

    margin-bottom:20px;

    letter-spacing:-4px;
}

/* SUBTITLE */

.impact-left h2{

    font-size:42px;

    color:#111827;

    margin-bottom:40px;
}

/* BUTTON */

.report-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 34px;

    border-radius:60px;

    background:#fff;

    color:#111827;

    text-decoration:none;

    font-weight:700;

    border:2px solid #111827;

    transition:0.4s ease;
}

.report-btn:hover{

    transform:translateY(-5px);

    background:#111827;

    color:#fff;
}

/* ================= RIGHT GRID ================= */

.impact-right{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:28px;
}

/* ================= CARD ================= */

.impact-box{

    position:relative;

    padding:40px 32px;

    border-radius:32px;

    background:
    rgba(255,255,255,0.72);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.8);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    transition:0.5s ease;

    overflow:hidden;

    min-height:260px;
}

/* CARD GLOW */

.impact-box::before{

    content:'';

    position:absolute;

    width:180px;
    height:180px;

    top:-70px;
    right:-70px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,183,3,0.25),
        transparent
    );
}

/* HOVER */

.impact-box:hover{

    transform:
    translateY(-15px)
    rotateX(5deg)
    rotateY(-5deg);

    box-shadow:
    0 30px 70px rgba(0,0,0,0.16);
}

/* ICON */

.impact-icon{

    width:85px;
    height:85px;

    border-radius:25px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

    margin-bottom:30px;

    background:
    linear-gradient(
        135deg,
        #ffb703,
        #ff7b00
    );

    color:#fff;

    box-shadow:
    0 12px 30px rgba(255,183,3,0.35);
}

/* NUMBER */

.impact-box h3{

    font-size:48px;

    line-height:1.2;

    color:#111827;

    font-weight:800;

    margin-bottom:18px;
}

/* TEXT */

.impact-box p{

    font-size:17px;

    line-height:1.8;

    color:#444;
}

/* ================= LAPTOP ================= */

@media(max-width:1200px){

    .ngo-impact{

        grid-template-columns:1fr;

        gap:70px;
    }

}

/* ================= TABLET ================= */

@media(max-width:768px){

    .ngo-impact{

        padding:90px 5%;
    }

    .impact-left h1{

        font-size:44px;
    }

    .main-impact-number{

        font-size:65px;
    }

    .impact-left h2{

        font-size:30px;
    }

    .impact-left p{

        font-size:16px;
    }

    .impact-right{

        grid-template-columns:1fr;
    }

    .impact-box{

        min-height:auto;
    }

}

/* ================= MOBILE ================= */

@media(max-width:480px){

    .impact-left h1{

        font-size:34px;
    }

    .main-impact-number{

        font-size:52px;

        letter-spacing:-2px;
    }

    .impact-left h2{

        font-size:24px;
    }

    .impact-box{

        padding:30px 24px;
    }

    .impact-box h3{

        font-size:36px;
    }

}





/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* ================= SECTION ================= */

.ngo-programs{

    position:relative;

    width:100%;

    padding:120px 7%;

    background:
    linear-gradient(
        180deg,
        #8dacf3 0%,
        #111827 100%
    );

    overflow:hidden;
}

/* ================= HEADING ================= */

.program-top{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:80px;
}

.program-tag{

    display:inline-block;

    padding:14px 28px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.1);

    color:#ffb703;

    font-weight:700;

    margin-bottom:25px;
}

.program-top h2{

    font-size:72px;

    line-height:1.1;

    font-weight:900;

    color:#fff;

    margin-bottom:25px;
}

.program-top p{

    font-size:20px;

    line-height:1.9;

    color:#d1d5db;
}

/* ================= GRID ================= */

.program-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

/* ================= CARD ================= */

.program-card{

    position:relative;

    padding:40px 30px;

    border-radius:32px;

    background:
    rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(16px);

    overflow:hidden;

    transition:0.5s ease;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.18);
}

/* GLOW */

.program-card::before{

    content:'';

    position:absolute;

    width:180px;
    height:180px;

    top:-70px;
    right:-70px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,183,3,0.25),
        transparent
    );
}

/* HOVER */

.program-card:hover{

    transform:
    translateY(-15px)
    rotateX(5deg)
    rotateY(-5deg);

    box-shadow:
    0 35px 70px rgba(0,0,0,0.35);
}

/* ICON */

.program-icon{

    width:85px;
    height:85px;

    border-radius:25px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    margin-bottom:28px;

    background:
    linear-gradient(
        135deg,
        #ffb703,
        #ff7b00
    );

    color:#fff;

    box-shadow:
    0 15px 35px rgba(255,183,3,0.35);
}

/* TITLE */

.program-card h3{

    font-size:28px;

    color:#fff;

    font-weight:800;

    margin-bottom:15px;
}

/* TEXT */

.program-card p{

    font-size:16px;

    line-height:1.8;

    color:#d1d5db;

    margin-bottom:25px;
}

/* BUTTON */

.program-card a{

    text-decoration:none;

    color:#ffb703;

    font-weight:700;

    transition:0.3s ease;
}

.program-card a:hover{

    letter-spacing:1px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .program-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .ngo-programs{

        padding:90px 5%;
    }

    .program-top{

        margin-bottom:50px;
    }

    .program-top h2{

        font-size:42px;
    }

    .program-top p{

        font-size:15px;
    }

    .program-grid{

        grid-template-columns:1fr;
    }

    .program-card{

        padding:35px 25px;
    }

    .program-icon{

        width:75px;
        height:75px;

        font-size:30px;
    }

    .program-card h3{

        font-size:22px;
    }

}



/* ================= SECTION ================= */

.donation-section{

    width:100%;

    padding:120px 7%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f4f8ff 100%
    );
}

/* ================= IMAGE ================= */

.donation-image{

    width:100%;

    height:700px;

    overflow:hidden;

    border-radius:35px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.15);
}

.donation-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:0.6s ease;
}

.donation-image:hover img{

    transform:scale(1.08);
}

/* ================= CONTENT ================= */

.donation-content{

    width:100%;
}

.donation-tag{

    display:inline-block;

    padding:14px 28px;

    border-radius:50px;

    background:
    rgba(255,183,3,0.15);

    color:#ff9800;

    font-weight:700;

    margin-bottom:25px;
}

/* TITLE */

.donation-content h2{

    font-size:70px;

    line-height:1.1;

    font-weight:900;

    color:#111827;

    margin-bottom:30px;
}

/* TEXT */

.donation-content p{

    font-size:20px;

    line-height:1.9;

    color:#555;

    margin-bottom:40px;
}

/* ================= PROGRESS ================= */

.progress-area{

    margin-bottom:40px;
}

.progress-text{

    display:flex;

    justify-content:space-between;

    margin-bottom:15px;

    font-size:17px;

    font-weight:700;

    color:#111827;
}

/* BAR */

.progress-bar{

    width:100%;

    height:16px;

    border-radius:50px;

    background:#dbe2ea;

    overflow:hidden;
}

/* FILL */

.progress-fill{

    width:75%;

    height:100%;

    border-radius:50px;

    background:
    linear-gradient(
        90deg,
        #ffb703,
        #ff7b00
    );

    animation:fillBar 2s ease;
}

/* ================= BUTTONS ================= */

.donation-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

/* DONATE */

.donate-btn{

    padding:18px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        #ffb703,
        #ff7b00
    );

    transition:0.4s ease;

    box-shadow:
    0 12px 30px rgba(255,183,3,0.35);
}

.donate-btn:hover{

    transform:translateY(-6px);
}

/* VOLUNTEER */

.volunteer-btn{

    padding:18px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    border:2px solid #111827;

    color:#111827;

    transition:0.4s ease;
}

.volunteer-btn:hover{

    background:#111827;

    color:#fff;

    transform:translateY(-6px);
}

/* ================= ANIMATION ================= */

@keyframes fillBar{

    from{
        width:0%;
    }

    to{
        width:75%;
    }

}

/* ================= LAPTOP ================= */

@media(max-width:1200px){

    .donation-section{

        grid-template-columns:1fr;

        gap:60px;
    }

    .donation-image{

        height:550px;
    }

}

/* ================= TABLET ================= */

@media(max-width:768px){

    .donation-section{

        padding:90px 5%;
    }

    .donation-content h2{

        font-size:42px;
    }

    .donation-content p{

        font-size:16px;
    }

    .donation-image{

        height:420px;
    }

}

/* ================= MOBILE ================= */

@media(max-width:480px){

    .donation-content h2{

        font-size:34px;
    }

    .donation-buttons{

        flex-direction:column;
    }

    .donation-buttons a{

        width:100%;

        text-align:center;
    }

}






/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* ================= SECTION ================= */

.gallery-section{

    width:100%;

    padding:120px 7%;

    background:
    linear-gradient(
        180deg,
        #0f172a 0%,
        #111827 100%
    );
}

/* ================= TOP ================= */

.gallery-top{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:80px;
}

.gallery-tag{

    display:inline-block;

    padding:14px 28px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.1);

    color:#ffb703;

    font-weight:700;

    margin-bottom:28px;
}

/* TITLE */

.gallery-top h2{

    font-size:72px;

    line-height:1.1;

    font-weight:900;

    color:#fff;

    margin-bottom:25px;
}

/* TEXT */

.gallery-top p{

    font-size:20px;

    line-height:1.9;

    color:#d1d5db;
}

/* ================= GRID ================= */

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    grid-auto-rows:280px;

    gap:25px;
}

/* ITEM */

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:35px;

    cursor:pointer;

    box-shadow:
    0 20px 45px rgba(0,0,0,0.25);
}

/* BIG CARD */

.gallery-item.big{

    grid-row:span 2;
}

/* IMAGE */

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:0.7s ease;
}

/* OVERLAY */

.gallery-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.1)
    );

    display:flex;

    align-items:flex-end;

    padding:30px;

    transition:0.5s ease;
}

/* TEXT */

.gallery-overlay h3{

    color:#fff;

    font-size:28px;

    font-weight:700;

    transform:translateY(20px);

    transition:0.5s ease;
}

/* HOVER */

.gallery-item:hover img{

    transform:scale(1.1);
}

.gallery-item:hover .gallery-overlay{

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.2)
    );
}

.gallery-item:hover .gallery-overlay h3{

    transform:translateY(0);
}

/* ================= LAPTOP ================= */

@media(max-width:1200px){

    .gallery-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

}

/* ================= TABLET ================= */

@media(max-width:768px){

    .gallery-section{

        padding:90px 5%;
    }

    .gallery-top{

        margin-bottom:55px;
    }

    .gallery-top h2{

        font-size:42px;
    }

    .gallery-top p{

        font-size:15px;
    }

    .gallery-grid{

        grid-template-columns:1fr;

        grid-auto-rows:260px;
    }

    .gallery-item.big{

        grid-row:span 1;
    }

    .gallery-overlay h3{

        font-size:22px;
    }

}

/* ================= MOBILE ================= */

@media(max-width:480px){

    .gallery-top h2{

        font-size:34px;
    }

}



/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* ================= SECTION ================= */

.testimonial-section{

    width:100%;

    padding:120px 7%;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f4f8ff 100%
    );

    overflow:hidden;
}

/* ================= TOP ================= */

.testimonial-top{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:80px;
}

.testimonial-tag{

    display:inline-block;

    padding:14px 28px;

    border-radius:50px;

    background:
    rgba(255,183,3,0.15);

    color:#ff9800;

    font-weight:700;

    margin-bottom:28px;
}

/* TITLE */

.testimonial-top h2{

    font-size:72px;

    line-height:1.1;

    font-weight:900;

    color:#111827;

    margin-bottom:25px;
}

/* TEXT */

.testimonial-top p{

    font-size:20px;

    line-height:1.9;

    color:#555;
}

/* ================= GRID ================= */

.testimonial-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

/* ================= CARD ================= */

.testimonial-card{

    position:relative;

    padding:45px 35px;

    border-radius:35px;

    background:
    rgba(255,255,255,0.75);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.8);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    transition:0.5s ease;

    overflow:hidden;
}

/* GLOW */

.testimonial-card::before{

    content:'';

    position:absolute;

    width:180px;
    height:180px;

    top:-70px;
    right:-70px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,183,3,0.25),
        transparent
    );
}

/* HOVER */

.testimonial-card:hover{

    transform:
    translateY(-15px)
    rotateX(5deg)
    rotateY(-5deg);

    box-shadow:
    0 35px 70px rgba(0,0,0,0.15);
}

/* QUOTE */

.quote-icon{

    font-size:70px;

    line-height:1;

    color:#ffb703;

    margin-bottom:20px;
}

/* TEXT */

.testimonial-card p{

    font-size:17px;

    line-height:1.9;

    color:#444;

    margin-bottom:35px;
}

/* USER */

.testimonial-user{

    display:flex;

    align-items:center;

    gap:18px;
}

/* IMAGE */

.testimonial-user img{

    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #fff;

    box-shadow:
    0 10px 20px rgba(0,0,0,0.1);
}

/* NAME */

.testimonial-user h3{

    font-size:22px;

    color:#111827;

    margin-bottom:5px;
}

/* ROLE */

.testimonial-user span{

    font-size:15px;

    color:#777;
}

/* ================= LAPTOP ================= */

@media(max-width:1200px){

    .testimonial-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

}

/* ================= TABLET ================= */

@media(max-width:768px){

    .testimonial-section{

        padding:90px 5%;
    }

    .testimonial-top{

        margin-bottom:55px;
    }

    .testimonial-top h2{

        font-size:42px;
    }

    .testimonial-top p{

        font-size:15px;
    }

    .testimonial-grid{

        grid-template-columns:1fr;
    }

    .testimonial-card{

        padding:35px 25px;
    }

}

/* ================= MOBILE ================= */

@media(max-width:480px){

    .testimonial-top h2{

        font-size:34px;
    }

    .testimonial-card p{

        font-size:15px;
    }

}






/* ================= SECTION ================= */

.volunteer-section{

    width:100%;

    padding:120px 7%;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:70px;

    align-items:center;

    background:
    linear-gradient(
        180deg,
        #0f172a 0%,
        #111827 100%
    );

    overflow:hidden;
}

/* ================= LEFT CONTENT ================= */

.volunteer-content{

    width:100%;
}

.volunteer-tag{

    display:inline-block;

    padding:14px 28px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.1);

    color:#ffb703;

    font-weight:700;

    margin-bottom:28px;
}

/* TITLE */

.volunteer-content h2{

    font-size:72px;

    line-height:1.1;

    font-weight:900;

    color:#fff;

    margin-bottom:30px;
}

/* TEXT */

.volunteer-content p{

    font-size:20px;

    line-height:1.9;

    color:#d1d5db;

    margin-bottom:45px;
}

/* ================= FEATURES ================= */

.volunteer-features{

    display:flex;

    flex-direction:column;

    gap:22px;
}

/* FEATURE BOX */

.feature-box{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:24px;

    border-radius:28px;

    background:
    rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(14px);

    transition:0.4s ease;
}

.feature-box:hover{

    transform:translateX(10px);

    background:
    rgba(255,255,255,0.08);
}

/* ICON */

.feature-icon{

    width:70px;
    height:70px;

    min-width:70px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    background:
    linear-gradient(
        135deg,
        #ffb703,
        #ff7b00
    );

    color:#fff;

    box-shadow:
    0 15px 35px rgba(255,183,3,0.35);
}

/* FEATURE TEXT */

.feature-text{

    flex:1;
}

.feature-text h3{

    font-size:22px;

    color:#fff;

    margin-bottom:8px;
}

.feature-text p{

    font-size:15px;

    line-height:1.8;

    color:#d1d5db;

    margin:0;
}

/* ================= FORM ================= */

.volunteer-form{

    width:100%;

    padding:50px 40px;

    border-radius:35px;

    background:
    rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.25);
}

/* FORM TITLE */

.volunteer-form h3{

    font-size:38px;

    color:#fff;

    margin-bottom:30px;
}

/* INPUT */

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea{

    width:100%;

    padding:18px 20px;

    margin-bottom:20px;

    border:none;

    outline:none;

    border-radius:18px;

    background:
    rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);

    color:#fff;

    font-size:16px;
}

/* SELECT OPTION */

.volunteer-form select option{

    color:#000;
}

/* TEXTAREA */

.volunteer-form textarea{

    height:140px;

    resize:none;
}

/* PLACEHOLDER */

.volunteer-form input::placeholder,
.volunteer-form textarea::placeholder{

    color:#d1d5db;
}

/* BUTTON */

.volunteer-form button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:60px;

    background:
    linear-gradient(
        135deg,
        #ffb703,
        #ff7b00
    );

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:0.4s ease;

    box-shadow:
    0 15px 35px rgba(255,183,3,0.35);
}

.volunteer-form button:hover{

    transform:translateY(-5px);
}

/* ================= LAPTOP ================= */

@media(max-width:1200px){

    .volunteer-section{

        grid-template-columns:1fr;

        gap:60px;
    }

}

/* ================= TABLET ================= */

@media(max-width:768px){

    .volunteer-section{

        padding:90px 5%;
    }

    .volunteer-content h2{

        font-size:42px;
    }

    .volunteer-content p{

        font-size:16px;
    }

    .feature-box{

        padding:20px;
    }

    .feature-icon{

        width:60px;
        height:60px;

        min-width:60px;

        font-size:24px;
    }

    .feature-text h3{

        font-size:20px;
    }

    .volunteer-form{

        padding:35px 25px;
    }

    .volunteer-form h3{

        font-size:28px;
    }

}

/* ================= MOBILE ================= */

@media(max-width:480px){

    .volunteer-content h2{

        font-size:34px;
    }

    .feature-box{

        flex-direction:column;

        align-items:flex-start;
    }

}



/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* ================= SECTION ================= */

.faq-section{

    width:100%;

    padding:120px 7%;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f4f8ff 100%
    );

    overflow:hidden;
}

/* ================= TOP ================= */

.faq-top{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:80px;
}

.faq-tag{

    display:inline-block;

    padding:14px 28px;

    border-radius:50px;

    background:
    rgba(255,183,3,0.15);

    color:#ff9800;

    font-weight:700;

    margin-bottom:28px;
}

/* TITLE */

.faq-top h2{

    font-size:72px;

    line-height:1.1;

    font-weight:900;

    color:#111827;

    margin-bottom:25px;
}

/* TEXT */

.faq-top p{

    font-size:20px;

    line-height:1.9;

    color:#555;
}

/* ================= FAQ BOX ================= */

.faq-container{

    max-width:950px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:25px;
}

/* ITEM */

.faq-item{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    transition:0.4s ease;
}

/* ACTIVE */

.faq-item.active{

    background:
    linear-gradient(
        135deg,
        #ffb703,
        #ff7b00
    );
}

/* QUESTION */

.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:28px 35px;

    cursor:pointer;
}

/* TITLE */

.faq-question h3{

    font-size:24px;

    color:#111827;

    font-weight:700;

    transition:0.3s ease;
}

/* ACTIVE TITLE */

.faq-item.active .faq-question h3{

    color:#fff;
}

/* ICON */

.faq-question span{

    font-size:34px;

    font-weight:700;

    color:#111827;

    transition:0.3s ease;
}

/* ACTIVE ICON */

.faq-item.active .faq-question span{

    color:#fff;
}

/* ANSWER */

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:0.5s ease;

    padding:0 35px;
}

/* ACTIVE ANSWER */

.faq-item.active .faq-answer{

    max-height:300px;

    padding:0 35px 30px;
}

/* TEXT */

.faq-answer p{

    font-size:17px;

    line-height:1.9;

    color:#fff;
}

/* HOVER */

.faq-item:hover{

    transform:translateY(-5px);
}

/* ================= TABLET ================= */

@media(max-width:768px){

    .faq-section{

        padding:90px 5%;
    }

    .faq-top{

        margin-bottom:55px;
    }

    .faq-top h2{

        font-size:42px;
    }

    .faq-top p{

        font-size:15px;
    }

    .faq-question{

        padding:24px;
    }

    .faq-question h3{

        font-size:18px;
    }

    .faq-question span{

        font-size:28px;
    }

    .faq-answer{

        padding:0 24px;
    }

    .faq-item.active .faq-answer{

        padding:0 24px 24px;
    }

    .faq-answer p{

        font-size:15px;
    }

}

/* ================= MOBILE ================= */

@media(max-width:480px){

    .faq-top h2{

        font-size:34px;
    }

}






/* ================= FOOTER ================= */

.footer-section{

    width:100%;

    background:
    linear-gradient(
        180deg,
        #0b1120 0%,
        #111827 100%
    );

    color:#fff;

    overflow:hidden;
}

/* ================= TOP ================= */

.footer-top{

    width:100%;

    padding:100px 7% 70px;

    display:grid;

    grid-template-columns:
    1.5fr 1fr 1fr 1.2fr;

    gap:50px;
}

/* ================= BOX ================= */

.footer-box{

    width:100%;
}

/* LOGO */

.footer-logo{

    font-size:38px;

    font-weight:800;

    color:#fff;

    margin-bottom:25px;
}

/* TEXT */

.footer-box p{

    font-size:16px;

    line-height:1.9;

    color:#cbd5e1;

    margin-bottom:30px;
}

/* TITLE */

.footer-box h3{

    font-size:26px;

    margin-bottom:30px;

    color:#fff;
}

/* LINKS */

.footer-box ul{

    list-style:none;
}

.footer-box ul li{

    margin-bottom:18px;
}

/* LINK */

.footer-box ul li a{

    text-decoration:none;

    color:#cbd5e1;

    font-size:16px;

    transition:0.3s ease;
}

.footer-box ul li a:hover{

    color:#ffb703;

    padding-left:6px;
}

/* CONTACT */

.contact-details li{

    color:#cbd5e1;

    font-size:16px;

    line-height:1.8;
}

/* ================= SOCIAL ================= */

.footer-social{

    display:flex;

    gap:15px;
}

/* ICON */

.footer-social a{

    width:52px;
    height:52px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:22px;

    background:
    rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);

    color:#fff;

    transition:0.4s ease;
}

/* HOVER */

.footer-social a:hover{

    transform:
    translateY(-6px);

    background:
    linear-gradient(
        135deg,
        #ffb703,
        #ff7b00
    );
}

/* ================= NEWSLETTER ================= */

.newsletter-form{

    margin-top:25px;
}

/* INPUT */

.newsletter-form input{

    width:100%;

    padding:18px 20px;

    border:none;

    outline:none;

    border-radius:18px;

    background:
    rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);

    color:#fff;

    margin-bottom:15px;
}

/* BUTTON */

.newsletter-form button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:60px;

    background:
    linear-gradient(
        135deg,
        #ffb703,
        #ff7b00
    );

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:0.4s ease;

    box-shadow:
    0 15px 35px rgba(255,183,3,0.35);
}

/* HOVER */

.newsletter-form button:hover{

    transform:translateY(-5px);
}

/* ================= BOTTOM ================= */

.footer-bottom{

    padding:28px 7%;

    border-top:
    1px solid rgba(255,255,255,0.08);

    text-align:center;
}

/* COPYRIGHT */

.footer-bottom p{

    color:#94a3b8;

    font-size:15px;
}

/* ================= LAPTOP ================= */

@media(max-width:1200px){

    .footer-top{

        grid-template-columns:
        repeat(2,1fr);
    }

}

/* ================= TABLET ================= */

@media(max-width:768px){

    .footer-top{

        padding:80px 5% 50px;

        grid-template-columns:1fr;

        gap:45px;
    }

    .footer-logo{

        font-size:32px;
    }

    .footer-box h3{

        font-size:24px;
    }

}

/* ================= MOBILE ================= */

@media(max-width:480px){

    .footer-logo{

        font-size:28px;
    }

    .footer-social a{

        width:46px;
        height:46px;

        font-size:20px;
    }

}


/* =========================
   GALLERY SECTION
========================= */

.gallery-section{

    width:100%;
    padding:100px 8%;
    background:#f8fafc;
}

.gallery-header{

    text-align:center;
    margin-bottom:60px;
}

.gallery-tag{

    display:inline-block;
    padding:10px 22px;
    background:#0f172a;
    color:#fff;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.gallery-header h2{

    font-size:48px;
    line-height:1.3;
    color:#111827;
    margin-bottom:20px;
    font-weight:700;
}

.gallery-header p{

    max-width:750px;
    margin:auto;
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
}

.gallery-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gallery-item{

    position:relative;
    overflow:hidden;
    border-radius:25px;
    cursor:pointer;
}

.gallery-item img{

    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s ease;
    display:block;
}

.gallery-item:hover img{

    transform:scale(1.08);
}

/* RESPONSIVE */

@media(max-width:768px){

    .gallery-header h2{

        font-size:34px;
    }

    .gallery-section{

        padding:80px 5%;
    }

    .gallery-item img{

        height:250px;
    }
}




/* =========================
   DONATION SECTION
========================= */

.donation-section{

    width:100%;
    padding:100px 8%;
    background:#ffffff;
}

.donation-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:60px;
    align-items:center;
}

.donation-tag{

    display:inline-block;
    padding:10px 22px;
    background:#0f172a;
    color:#fff;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.donation-content h2{

    font-size:48px;
    line-height:1.3;
    color:#111827;
    margin-bottom:25px;
    font-weight:700;
}

.donation-content p{

    color:#6b7280;
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;
}

.donation-points{

    display:flex;
    flex-direction:column;
    gap:18px;
}

.donation-point{

    font-size:17px;
    color:#111827;
    font-weight:500;
}

.donation-form-box{

    background:#f8fafc;
    padding:45px;
    border-radius:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.donation-form-box h3{

    font-size:32px;
    margin-bottom:30px;
    color:#111827;
}

.donation-form-box form{

    display:flex;
    flex-direction:column;
    gap:20px;
}

.donation-form-box input,
.donation-form-box select,
.donation-form-box textarea{

    width:100%;
    padding:16px 18px;
    border:none;
    outline:none;
    border-radius:14px;
    background:#fff;
    font-size:15px;
}

.donation-form-box textarea{

    resize:none;
}

.donation-form-box button{

    padding:16px;
    border:none;
    background:#0f172a;
    color:#fff;
    font-size:16px;
    font-weight:600;
    border-radius:14px;
    cursor:pointer;
    transition:0.4s ease;
}

.donation-form-box button:hover{

    background:#1e293b;
}

/* RESPONSIVE */

@media(max-width:768px){

    .donation-content h2{

        font-size:34px;
    }

    .donation-section{

        padding:80px 5%;
    }

    .donation-form-box{

        padding:30px;
    }
}



/* =========================
   CONTACT SECTION
========================= */

.contact-section{

    width:100%;
    padding:100px 8%;
    background:#f8fafc;
}

.contact-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* LEFT CONTENT */

.contact-tag{

    display:inline-block;
    padding:10px 24px;
    background:#0f172a;
    color:#fff;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.contact-content h2{

    font-size:52px;
    line-height:1.2;
    color:#111827;
    margin-bottom:25px;
    font-weight:700;
}

.contact-content p{

    font-size:17px;
    color:#6b7280;
    line-height:1.9;
    margin-bottom:35px;
}

.contact-details{

    display:flex;
    flex-direction:column;
    gap:20px;
}

.detail-box{

    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:18px 22px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.detail-box span{

    font-size:24px;
}

.detail-box p{

    margin:0;
    color:#111827;
    font-size:16px;
    font-weight:500;
}

/* FORM */

.contact-form-box{

    background:#fff;
    padding:45px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.contact-form{

    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-group input,
.form-group textarea{

    width:100%;
    padding:18px 20px;
    border:none;
    outline:none;
    border-radius:14px;
    background:#f1f5f9;
    font-size:15px;
    color:#111827;
}

.form-group textarea{

    resize:none;
}

.contact-form button{

    padding:18px;
    border:none;
    background:#f59e0b;
    color:#fff;
    font-size:16px;
    font-weight:600;
    border-radius:14px;
    cursor:pointer;
    transition:0.4s ease;
}

.contact-form button:hover{

    background:#d97706;
}

/* RESPONSIVE */

@media(max-width:991px){

    .contact-wrapper{

        grid-template-columns:1fr;
    }

    .contact-content h2{

        font-size:40px;
    }
}

@media(max-width:768px){

    .contact-section{

        padding:80px 5%;
    }

    .contact-content h2{

        font-size:34px;
    }

    .contact-form-box{

        padding:30px;
    }
}