﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Poppins',sans-serif;
}
.main-header{
    position:sticky;
    top:0;
    z-index:999;
    background:linear-gradient( 135deg, #89c977 0%, #fef9b4 40%, #e09fa0 75%, #f4ecdd 100% );
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}
.container-fluid{
    width:100%;
    min-height:90px;
    padding:0 5%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.logo img{
    height:70px;
    transition:.4s ease;
}
.logo img:hover{
    transform:scale(1.05);
}
.navbar-menu ul{
    display:flex;
    align-items:center;
    gap:12px;
    list-style:none;
}
.navbar-menu ul li{
    position:relative;
}
.navbar-menu ul li a{
    position:relative;
   color:#245c3a;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    padding:14px 22px;
    border-radius:14px;
    transition:.4s ease;
    overflow:hidden;
}
.navbar-menu ul li a::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:100%;
    transform:translateX(-50%);
    border-radius:14px;
    background:linear-gradient(135deg,rgba(255,255,255,.18),rgba(255,255,255,.06));
    transition:.45s ease;
    z-index:-1;
}
.navbar-menu ul li a:hover::before,
.navbar-menu ul li a.active::before{
    width:100%;
}
.navbar-menu ul li a:hover,
.navbar-menu ul li a.active{
    background:linear-gradient(135deg,#7bb67e,#5e9f69);
    color:#fff;
    transform:translateY(-3px);
}
.navbar-menu ul li a::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:8px;
    width:0;
    height:2px;
    background:linear-gradient(90deg,#FFD54F,#fff);
    transition:.4s;
    transform:translateX(-50%);
}
.navbar-menu ul li a:hover::after{
    width:55%;
}
.dropdown-menu{
    position:absolute;
    top:120%;
    left:50%;
    transform:translateX(-50%);
    min-width:320px;
    background:#fff;
    border-radius:24px;
    padding:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    border:1px solid rgba(0,0,0,.05);
    opacity:0;
    visibility:hidden;
    transition:.4s ease;
    z-index:999;
}
.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    top:110%;
}
.dropdown-menu{
    display:flex !important;
    flex-direction:column !important;
     background:#f9f3e8;
    border:1px solid rgba(0,0,0,.05);
    gap:12px;
}
.dropdown-menu li{
    width:100%;
    list-style:none;
}
.dropdown-menu li a{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding:16px 18px;
    border-radius:16px;
    color:#1f5e3b !important;
    font-weight:600;
    transition:.35s ease;
}
.dropdown-menu li a:hover{
   background:linear-gradient(135deg,#6ea978,#88c18e);
   color:#fff !important;
   transform:translateX(8px);
   box-shadow:0 10px 25px rgba(46,139,87,.2);
}
@media(max-width:991px){
    .dropdown-menu{
        position:relative;
        left:0;
        transform:none;
        width:90%;
        margin:12px auto;
        display:none !important;
        opacity:1;
        visibility:visible;
        top:0;
    }
    .dropdown.active .dropdown-menu{
        display:flex !important;
        flex-direction:column !important;
    }
}
.donate-btn{
    position:relative;
    overflow:hidden;
    border:none;
    border-radius:60px !important;
    padding:16px 28px !important;
    color:#fff !important;
    font-weight:700;
    background:linear-gradient(135deg,#d72638,#ef233c,#ff4d6d);
    box-shadow:0 10px 30px rgba(215,38,56,.28);
    transition:.4s ease;
}
.donate-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:35%;
    height:100%;
    background:rgba(255,255,255,.35);
    transform:skewX(-25deg);
    transition:.8s;
}
.donate-btn:hover::before{
    left:140%;
}
.donate-btn:hover{
    transform:translateY(-5px) scale(1.05);
    background:linear-gradient(135deg,#c1121f,#e63946,#ff5d73);
    box-shadow:0 18px 40px rgba(230,57,70,.35);
}
@keyframes gradientMove{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}
.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
}
.menu-toggle span{
    width:30px;
    height:3px;
    margin:4px 0;
    border-radius:50px;
    background:#c62828;
    transition:.3s;
}
@media(max-width:991px){
    .menu-toggle{
        display:flex;
    }
    .navbar-menu{
        position:absolute;
        top:100%;
        left:-100%;
        width:100%;
        background:linear-gradient(135deg,#d7ead7 0%,#e7dfc9 55%,#f3ebe0 100%);
        padding:30px 0;
        border-radius:0 0 25px 25px;
        transition:.5s ease;
    }
    .navbar-menu.active{
        left:0;
    }
    .navbar-menu ul{
        flex-direction:column;
        width:100%;
        gap:8px;
    }
    .navbar-menu ul li{
        width:100%;
        text-align:center;
    }
   .navbar-menu ul li a{
        display:flex;
         color:#245c3a !important;
         font-weight:600;
        justify-content:center;
        width:90%;
        margin:auto;
    }
    .dropdown-menu{
        position:relative;
        width:90%;
        margin:15px auto;
        display:none;
        opacity:1;
        visibility:visible;
        transform:none;
    }
    .dropdown.active .dropdown-menu{
        display:block;
    }
    .logo img{
        height:60px;
    }
    .donate-btn{
        width:90%;
        justify-content:center;
        margin:auto;
    }
}
/* footer section */
.simple-footer{
    position:relative;
    margin-top:100px;
    background:linear-gradient( 135deg, #f6e2af 0%, #9dd182 55%, #cb861a 100%);
    overflow:hidden;
}
.footer-curve{
    position:absolute;
    top:-70px;
    left:0;
    width:100%;
    height:140px;
    background:linear-gradient(135deg,#d9eedb,#f2e6d3,#f8dada); 
    border-radius:0 0 50% 50%;
}
.footer-content{
    position:relative;
    z-index:2;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    padding:90px 7% 50px;
}
.footer-box p{
    color:#35523c;
    line-height:1.9;
    font-size:16px;
}
.footer-box ul{
    list-style:none;
}
.footer-box ul li{
    margin-bottom:14px;
}
.footer-box ul li a{
    text-decoration:none;
    color:#35523c;
    transition:.3s ease;
}
.footer-box ul li a:hover{
    color:#d62828;
    padding-left:8px;
}
.footer-bottom{
    text-align:center;
    padding:20px;
    background:rgba(255,255,255,.5);
    border-top:1px solid rgba(0,0,0,.08);
}
.footer-bottom p{
    color:#555;
}
.footer-box h3{
    color:#d62828;
    font-size:28px;
    margin-bottom:20px;
    position:relative;
    display:inline-block;
    transition:all .4s ease;
}
.footer-box h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:60px; 
    height:3px;
    background:#d62828;
    border-radius:10px;
}
.footer-box:hover h3{
    transform:translateY(-3px);
    letter-spacing:1px;
}
.footer-box p{
    color:#35523c;
    line-height:1.9;
    font-size:16px;
    display:flex;
    align-items:flex-start;
    gap:12px;
}
.footer-box p i{
    color:#d62828;
    font-size:18px;
    margin-top:5px;
    min-width:20px;
    transition:.3s ease;
}
.footer-box p:hover i{
    transform:scale(1.15);
    color:#b71c1c;
}
@media(max-width:768px){
    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
    }
    .footer-curve{
        height:100px;
    }
    .footer-box h3{
        font-size:24px;
    }
    .contact-box p{
        display:flex;
        justify-content:flex-start;
        align-items:flex-start;
        width:fit-content;
        text-align:left;
    }
    .contact-box p i{
        margin-top:4px;
    }
}
@media(max-width:991px){
    .footer-content{
        grid-template-columns:
        repeat(2,1fr);
    }
}
@media(max-width:768px){
    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
    }
    .footer-curve{
        height:100px;
    }
    .footer-box h3{
        font-size:24px;
    }
}

/* HERO SECTION */
.hero-section{
    position:relative;
    width:100%;
    height:72vh;
    min-height:550px;
    overflow:hidden;
}
.hero-slider{
    position:absolute;
    inset:0;
}
.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transform:scale(1.08);
    transition:
    opacity 1.5s ease,
    transform 7s ease;
}
.hero-slide.active{
    opacity:1;
    transform:scale(1);
}
.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}
.hero-slide:hover img{
    transform:scale(1.05);
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.40),rgba(0,0,0,.35));
    /*backdrop-filter:blur(2px);*/
}
.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:900px;
    height:100%;
    margin:auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 20px;
    animation:fadeUp 1s ease;
}
.hero-subtitle{
    display:inline-block;
    width:max-content;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    font-size:15px;
    margin-bottom:25px;
}
.hero-content h1{
    font-size:58px;
    line-height:1.15;
    color:#fff;
    margin-bottom:20px;
    font-weight:580;
    max-width:850px;
}
.hero-content p{
    color:#f1f1f1;
    font-size:18px;
    line-height:1.9;
    max-width:700px;
}
.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
}
.hero-btn{
    text-decoration:none;
    padding:16px 34px;
    border-radius:60px;
    font-weight:600;
    transition:.4s ease;
}
.primary-btn{
    background:linear-gradient(135deg,#7bb67e,#9fd5a3);
    color:#fff;
}
.primary-btn:hover{
    transform:translateY(-5px);
}
.secondary-btn{
    background:linear-gradient(135deg,#d62828,#ff4d6d);
    color:#fff;
}
.secondary-btn:hover{
    transform:translateY(-5px);
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@media(max-width:991px){
    .hero-section{
        height:65vh;
        min-height:500px;
    }
    .hero-content{
        text-align:center;
        align-items:center;
        padding:0 6%;
    }
    .hero-content h1{
        font-size:42px;
    }
    .hero-content p{
        font-size:16px;
    }
    .hero-buttons{
        flex-direction:column;
        width:100%;
        max-width:300px;
    }
    .hero-btn{
        width:100%;
        text-align:center;
    }
}
@media(max-width:576px){
    .hero-section{
        height:60vh;
        min-height:430px;
    }
    .hero-content h1{
        font-size:32px;
        line-height:1.2;
    }
    .hero-content p{
        font-size:15px;
    }
    .hero-buttons{
        flex-direction:column;
        width:100%;
        max-width:280px;
    }
}
/* ABOUT SECTION */
.about-section{
    padding:70px 8%;
    background:linear-gradient(135deg,#f8fbf6 0%,#fef8ef 100%);
}
.about-container{
    display:grid;
    grid-template-columns:
    1fr 1fr;
    gap:80px;
    align-items:center;
}
.about-images{
    position:relative;
    min-height:550px;
}
.main-img{
    width:100%;
    height:520px;
    border-radius:40px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}
.main-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}
.main-img:hover img{
    transform:scale(1.08);
}
.overlay-img{
    position:absolute;
    border-radius:28px;
    overflow:hidden;
    border:8px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:.4s ease;
}
.overlay-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.img1{
    width:220px;
    height:260px;
    right:-20px;
    top:50px;
}
.img2{
    width:200px;
    height:220px;
    left:-30px;
    bottom:40px;
}
.overlay-img:hover{
    transform:translateY(-10px) scale(1.04);
}
.about-card{
    position:absolute;
    bottom:0;
    right:30px;
    background:#fff;
    padding:25px 35px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    text-align:center;
}
.about-card h4{
    color:#d62828;
    font-size:36px;
    margin-bottom:5px;
}
.about-card p{
    color:#555;
}
.section-tag{
    display:inline-block;
    background:linear-gradient(135deg,#dcefdc,#efe7d3);
    color:#2f855a;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}
.about-content h2{
    font-size:48px;
    line-height:1.2;
    color:#1c3d2a;
    margin-bottom:25px;
}
.about-content p{
    color:#555;
    line-height:1.9;
    font-size:17px;
}
.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;
}
.feature-box{
    background:#fff;
    padding:20px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:.4s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.feature-box i{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient( 135deg, #e5d535, #cc1914);
    color:#fff;
    font-size:22px;
}
.feature-box:hover{
    transform:
    translateY(-8px);
}
.about-btn{
    display:inline-block;
    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    background:linear-gradient(135deg,#d62828,#ff4d6d);
    transition:.4s ease;
}
.about-btn:hover{
    transform:
    translateY(-5px);
}
@media(max-width:991px){
    .about-container{
        grid-template-columns:1fr;
        gap:60px;
    }
    .about-content{
        text-align:center;
    }
    .about-content h2{
        font-size:38px;
    }
    .about-features{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .about-section{
        padding:70px 5%;
    }
    .about-images{
        min-height:420px;
    }
    .main-img{
        height:380px;
    }
    .img1{
        width:140px;
        height:180px;
        right:0;
    }
    .img2{
        width:130px;
        height:160px;
        left:0;
    }
    .about-content h2{
        font-size:30px;
    }
    .about-content p{
        font-size:15px;
    }
}
/* PROGRAM SECTION */
.program-section{
    background:linear-gradient(135deg,#f8fcf7 0%,#fff8ef 100%);
}
.section-title{
    max-width:800px;
    text-align:center;
    margin:auto;
    margin-bottom:80px;
}
.section-title span{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:linear-gradient(135deg,#dcefdc,#efe5cf);
    color:#2f855a;
    font-weight:600;
    margin-bottom:20px;
}
.section-title h2{
    font-size:48px;
    line-height:1.2;
    color:#20382b;
    margin-bottom:20px;
}
.section-title p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}
.program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}
.program-card{
    position:relative;
    transition:.45s ease;
}
.program-card:hover{
    transform:translateY(-12px);
}
.program-image{
    height:260px;
    border-radius:35px;
    overflow:hidden;
    position:relative;
    z-index:2;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}
.program-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s ease;
}
.program-card:hover img{
    transform:scale(1.08);
}
.program-content{
    position:relative;
    margin:-70px 25px 0;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(14px);
    padding:35px 30px;
    border-radius:35px;
    z-index:3;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s ease;
}
.program-card:hover .program-content{
    transform:translateY(-10px);
}
.program-tag{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 18px;
    border-radius:50px;
    background:linear-gradient(135deg,#e1f1e2,#f5ead8);
    color:#2f855a;
    font-size:14px;
    font-weight:600;
}
.program-content h3{
    font-size:28px;
    line-height:1.3;
    color:#20382b;
    margin-bottom:15px;
}
.program-content p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}
@media(max-width:991px){
    .program-grid{
        grid-template-columns:
        repeat(2,1fr);
    }
    .section-title h2{
        font-size:38px;
    }
}
@media(max-width:768px){
    .program-grid{
        grid-template-columns:1fr;
    }
    .program-section{
        padding:70px 5%;
    }
    .section-title h2{
        font-size:30px;
    }
    .program-content{
        margin:-60px 15px 0;
    }
}
/* MODERN IMPACT SECTION */
.modern-impact-section{
    padding:100px 7%;
    background:linear-gradient(135deg,#f9fcf7 0%,#fff8ef 100%);
    position:relative;
    overflow:hidden;
}
.modern-impact-section::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:350px;
    height:350px;
    background:radial-gradient(circle,rgba(214,40,40,.08),transparent);
    border-radius:50%;
}
.modern-impact-container{
    display:grid;
    grid-template-columns:480px 1fr;
    gap:70px;
    align-items:center;
}
.impact-image-wrap{
    position:relative;
}
.impact-image-wrap img{
    width:100%;
    height:560px;
    object-fit:cover;
    border-radius:45px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    transition:.6s ease;
}
.impact-image-wrap:hover img{
    transform:scale(1.03);
}
.image-badge{
    position:absolute;
    left:30px;
    bottom:30px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(16px);
    padding:20px 30px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}
.image-badge h4{
    font-size:42px;
    color:#d62828;
    margin-bottom:5px;
}
.image-badge span{
    color:#555;
    font-weight:500;
}
.impact-label{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:linear-gradient(135deg,#dcefdc,#efe7d3);
    color:#2f855a;
    font-weight:600;
    margin-bottom:20px;
}
.impact-right-content h2{
    font-size:50px;
    line-height:1.2;
    color:#20382b;
    margin-bottom:20px;
}
.impact-right-content p{
    color:#666;
    line-height:1.9;
    font-size:17px;
    margin-bottom:40px;
    max-width:650px;
}
.impact-stats-row{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);

    gap:20px;
}
.impact-box{
    position:relative;
    padding:30px 20px;
    border-radius:30px;
    text-align:center;
    background:linear-gradient(135deg,rgba(255,255,255,.9),rgba(255,255,255,.75));
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.6);
    transition:.45s ease;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.impact-box:hover{
    transform:translateY(-12px);
    background:linear-gradient(135deg,#d62828,#ef5350);
    box-shadow:0 20px 40px rgba(214,40,40,.2);
}
.impact-box:hover h3,
.impact-box:hover span{
    color:#fff;
}
.impact-box h3{
    font-size:38px;
    color:#d62828;
    margin-bottom:8px;
    transition:.4s ease;
}
.impact-box span{
    color:#555;
    font-weight:500;
    transition:.4s ease;
}
@media(max-width:991px){
    .modern-impact-container{
        grid-template-columns:1fr;
    }
    .impact-right-content{
        text-align:center;
    }
    .impact-right-content h2{
        font-size:38px;
    }
    .impact-stats-row{
        grid-template-columns:
        repeat(2,1fr);
    }
}
@media(max-width:576px){
    .modern-impact-section{
        padding:70px 5%;
    }
    .impact-image-wrap img{
        height:360px;
    }
    .impact-right-content h2{
        font-size:30px;
    }
    .impact-stats-row{
        grid-template-columns:1fr;
    }
    .impact-box{
        padding:25px;
    }
}
/* CUSTOM GALLERY */
.custom-gallery-section{
    padding:100px 9%;
    background:linear-gradient(135deg,#f9fcf7,#fff8ef);
}
.gallery-heading{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}
.gallery-heading span{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:linear-gradient(135deg,#dcefdc,#efe7d3);
    color:#2f855a;
    font-weight:600;
    font-size:15px;
    margin-bottom:20px;
}
.gallery-heading h2{
    font-size:48px;
    color:#20382b;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:700;
}
.gallery-heading p{
    color:#666;
    font-size:17px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}
.custom-gallery-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:240px;
    gap:22px;
}
.gallery-box{
    position:relative;
    overflow:hidden;
    border-radius:35px;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:transform .45s ease, box-shadow .45s ease;
}
.gallery-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.14);
}
.gallery-box:nth-child(1){
    grid-column:1 / span 3;
}
.gallery-box:nth-child(2){
    grid-column:4 / span 1;
}
.gallery-box:nth-child(3){
    grid-column:1 / span 1;
}
.gallery-box:nth-child(4){
    grid-column:2 / span 1;
}
.gallery-box:nth-child(5){
    grid-column:3 / span 2;
}
.gallery-box:nth-child(6){
    grid-column:1 / span 1;
}
.gallery-box:nth-child(7){
    grid-column:2 / span 3;
}
.gallery-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease,filter .5s ease;
}
.gallery-box:hover img{
    transform:scale(1.08);
    filter:brightness(.82);
}
.gallery-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px 25px;
    background:linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.72) 35%,rgba(0,0,0,.35) 65%,transparent 100%);
    transform:translateY(100%);
    transition:.45s ease;
    z-index:2;
}
.gallery-box:hover .gallery-content{
    transform:translateY(0);
}
.gallery-content h3{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:8px;
    text-shadow:0 3px 12px rgba(0,0,0,.6);
}
.gallery-content p{
    color:#f5f5f5;
    font-size:15px;
    line-height:1.7;
    margin:0;
    text-shadow:0 2px 8px rgba(0,0,0,.55);
}
@media(max-width:991px){
    .custom-gallery-section{
        padding:80px 6%;
    }
    .custom-gallery-grid{
        grid-template-columns:
        repeat(2,1fr);

        grid-auto-rows:240px;
    }
    .gallery-box{
        grid-column:auto !important;
    }
    .gallery-heading h2{
        font-size:38px;
    }
    .gallery-heading p{
        font-size:16px;
    }
}
@media(max-width:576px){
    .custom-gallery-section{
        padding:70px 5%;
    }
    .custom-gallery-grid{
        grid-template-columns:1fr;
        grid-auto-rows:260px;
        gap:18px;
    }
    .gallery-box{
        grid-column:auto !important;
        border-radius:28px;
    }
    .gallery-heading{
        margin-bottom:50px;
    }
    .gallery-heading h2{
        font-size:30px;
    }
    .gallery-heading p{
        font-size:15px;
    }
    .gallery-content{
        padding:25px 20px;
    }
    .gallery-content h3{
        font-size:22px;
    }
    .gallery-content p{
        font-size:14px;
    }
}
/* MODERN CTA */
.modern-cta{
    position:relative;
    overflow:hidden;
    width:100%;
    padding:70px 8%;
    background:linear-gradient( 135deg, #284034 0%, #5b9572 35%, #c63939 100%);
    text-align:center;
}
.cta-bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.18;
    animation:floating 8s infinite ease-in-out;
}
.cta-bg-circle.one{
    width:250px;
    height:250px;
    background:#fff;
    top:-60px;
    left:-50px;
}
.cta-bg-circle.two{
    width:200px;
    height:200px;
    background:#ffe0b2;
    right:10%;
    top:20%;
}
.cta-bg-circle.three{
    width:280px;
    height:280px;
    background:#ffffff;
    right:-80px;
    bottom:-80px;
}
@keyframes floating{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(20px);
    }
    100%{
        transform:translateY(0);
    }
}
.modern-cta-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}
.cta-mini-title{
    display:inline-block;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:18px;
}
.modern-cta-content h2{
    font-size:52px;
    color:#fff;
    line-height:1.15;
    margin-bottom:15px;
    font-weight:700;
}
.modern-cta-content p{
    color:
    rgba(255,255,255,.92);

    font-size:18px;
    margin-bottom:35px;
}
.modern-cta-btns{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}
.modern-btn{
    text-decoration:none;
    padding:16px 36px;
    border-radius:60px;
    font-weight:600;
    transition:.4s ease;
}
.modern-btn.donate{
    background:#fff;
    color:#d62828;
}
.modern-btn.donate:hover{
    transform:translateY(-6px)scale(1.04);
}
.modern-btn.volunteer{
    background:rgba(255,255,255,.12);
    color:#fff;
    border:1px solid rgba(255,255,255,.2);
}
.modern-btn.volunteer:hover{
   transform:translateY(-6px);
   background:rgba(255,255,255,.18);
}
.bubble{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    background:radial-gradient(circle,rgba(255,255,255,.22),rgba(255,255,255,.05));
    backdrop-filter:blur(12px);
    animation:bubbleFloat linear infinite;
    z-index:1;
}
.bubble1{
    width:120px;
    height:120px;
    top:8%;
    left:8%;
    animation-duration:14s;
}
.bubble2{
    width:80px;
    height:80px;
    top:18%;
    right:15%;
    animation-duration:18s;
}
.bubble3{
    width:160px;
    height:160px;
    bottom:10%;
    left:12%;
    animation-duration:20s;
}
.bubble4{
    width:90px;
    height:90px;
    bottom:12%;
    right:8%;
    animation-duration:16s;
}
.bubble5{
    width:60px;
    height:60px;
    top:45%;
    left:30%;
    animation-duration:12s;
}
.bubble6{
    width:100px;
    height:100px;
    top:55%;
    right:30%;
    animation-duration:17s;
}
@keyframes bubbleFloat{
    0%{
        transform:
        translateY(0)
        scale(1);

        opacity:.25;
    }
    50%{
        transform:
        translateY(-30px)
        scale(1.08);

        opacity:.4;
    }
    100%{
        transform:
        translateY(0)
        scale(1);

        opacity:.25;
    }
}
@media(max-width:991px){
    .modern-cta-content h2{
        font-size:40px;
    }
}
@media(max-width:576px){
    .modern-cta{
        padding:60px 5%;
    }
    .modern-cta-content h2{
        font-size:30px;
    }
    .modern-cta-content p{
        font-size:15px;
    }
    .modern-cta-btns{
        flex-direction:column;
    }
    .modern-btn{
        width:100%;
        text-align:center;
    }
}
/* CONTACT BREADCRUMB */
.contact-breadcrumb{
    width:100%;
    padding:90px 7%;
    text-align:center;
    background:linear-gradient(135deg,#dcefdc 0%,#efe7d3 50%,#f4d2d2 100%);
}
.breadcrumb-content h1{
    font-size:52px;
    color:#20382b;
    margin-bottom:15px;
}
.breadcrumb-content p{
    color:#555;
    font-size:17px;
}

/* CONTACT SECTION */
.contact-section{
    padding:90px 7%;
    background:linear-gradient(135deg,#f8fbf6,#fff8ef);
}
.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:55px;
    align-items:start;
}
.contact-left h2{
    font-size:46px;
    color:#20382b;
    margin:18px 0;
}
.contact-left p{
    color:#4f4f4f;
    line-height:1.8;
    font-size:16px;
}
.contact-info-wrap{
    margin-top:35px;
}
.contact-card{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:28px;
}
.contact-icon{
    width:48px;
    height:48px;
    flex-shrink:0;
    border-radius:14px;
    background:linear-gradient(135deg,#58b77b,#d62828);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    box-shadow:0 10px 20px rgba(0,0,0,.12);
}
.contact-card h4{
    font-size:22px;
    color:#20382b;
    margin-bottom:4px;
}
.contact-card p{
    margin:0;
    color:#555;
    font-size:16px;
}
.contact-form-box{
    padding:40px;
    border-radius:35px;
    background:linear-gradient(135deg,#ffffff,#f6f9f4,#fff7ec);
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.contact-form-box h3{
    font-size:34px;
    color:#20382b;
    margin-bottom:28px;
}
.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}
.form-group{
    margin-bottom:18px;
}
.form-group input,
.form-group textarea{
    width:100%;
    border:none;
    outline:none;
    padding:18px 22px;
    border-radius:18px;
    background:linear-gradient(135deg,#f0f5ee,#fff9f0);
    color:#222;
    font-size:15px;
    font-weight:500;
    border:1px solid rgba(47,133,90,.08);
    transition:.35s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#666;
    font-weight:500;
}
.form-group input:focus,
.form-group textarea:focus{
    background:#fff;
    border:1px solid #58b77b;
    box-shadow:0 0 0 4px rgba(88,183,123,.15);
}
.contact-btn{
    border:none;
    cursor:pointer;
    padding:18px 40px;
    border-radius:60px;
    background:linear-gradient(135deg,#58b77b,#d62828);
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:.4s ease;
}
.contact-btn:hover{
    transform:translateY(-5px)scale(1.02);
    box-shadow:0 18px 30px rgba(214,40,40,.25);
}
.map-section iframe{
    width:100%;
    height:450px;
    border:0;
}
@media(max-width:991px){
    .contact-container{
        grid-template-columns:1fr;
    }
    .contact-left h2{
        font-size:38px;
    }
}
@media(max-width:576px){
    .contact-breadcrumb{
        padding:70px 5%;
    }
    .breadcrumb-content h1{
        font-size:36px;
    }
    .contact-section{
        padding:70px 5%;
    }
    .contact-form-box{
        padding:30px;
    }
    .form-grid{
        grid-template-columns:1fr;
    }
    .contact-left h2{
        font-size:30px;
    }
}