*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
}

.top-bar{
    background:#c8102e;
    padding:10px 0;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-left{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.top-left a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
}

.top-left i{
    margin-right:8px;
}

.donate-btn{
    background:#ffc107;
    color:#000;
    padding:10px 20px;
    border-radius:30px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
}
@media(max-width:768px){

.top-bar .container{
    flex-direction:column;
    gap:10px;
    text-align:center;
}

.top-left{
    justify-content:center;
    gap:10px;
}

.top-left a{
    font-size:15px;
}

.donate-btn{
    padding:8px 15px;
}

}
@media(max-width:768px){

.top-left a:last-child{
    display:none;
}

}

.main-header{
  
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
  position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
}

.main-header .container{
     position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    width:70px;
    margin-right:10px;
}

.logo-text h2{
    color:#c8102e;
    font-size:26px;
}

.logo-text span{
    color:#0b6b3a;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-weight:600;
}

nav ul li a:hover{
    color:#c8102e;
}
.footer{
    background:#111;
    color:#fff;
    padding:60px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-box h3{
    margin-bottom:20px;
    color:#fff;
    position:relative;
}

.footer-box h3:after{
    content:'';
    width:50px;
    height:3px;
    background:#c8102e;
    position:absolute;
    left:0;
    bottom:-8px;
}

.footer-logo{
    width:80px;
    margin-bottom:15px;
}

.footer-box p{
    line-height:1.8;
    margin-bottom:10px;
    color:#ddd;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#c8102e;
    padding-left:5px;
}

.social-links{
    margin-top:20px;
}

.social-links a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#c8102e;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px;
    padding:20px 0;
}

.footer-bottom .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-bottom p{
    margin:5px 0;
    color:#ccc;
}

.footer-bottom a{
    color:#ffc107;
    text-decoration:none;
}

@media(max-width:768px){

.footer-bottom .container{
    flex-direction:column;
    text-align:center;
}

}
/* =========================
   GLOBAL CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    line-height:1.7;
    color:#333;
    background:#f8f9fa;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   BUTTONS
========================= */

.btn-red{
    background:#c8102e;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    display:inline-block;
    transition:.4s;
    font-weight:600;
}

.btn-green{
    background:#0b6b3a;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    display:inline-block;
    transition:.4s;
    font-weight:600;
}

.btn-red:hover,
.btn-green:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* =========================
   HERO SECTION
========================= */

.hero{
    height:90vh;
    background:
    linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('../images/banner.jpg');

    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.hero-content{
    max-width:850px;
}

.hero h4{
    color:#ffd700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.hero h1{
    font-size:65px;
    margin-bottom:20px;
    font-weight:700;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.hero .btn-red{
    margin-right:15px;
}

/* =========================
   COUNTER
========================= */

.counter-section{
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.counter-box{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.counter-box:hover{
    transform:translateY(-10px);
}

.counter-box i{
    font-size:50px;
    color:#c8102e;
    margin-bottom:15px;
}

.counter-box h2{
    font-size:35px;
    color:#0b6b3a;
}

/* =========================
   ABOUT
========================= */

.about{
    padding:100px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-content span{
    color:#c8102e;
    font-weight:700;
}

.about-content h2{
    font-size:42px;
    margin:15px 0;
}

.about-content p{
    margin-bottom:20px;
}

.about-content ul{
    list-style:none;
    margin-bottom:25px;
}

.about-content ul li{
    margin-bottom:12px;
}

.about-content ul li i{
    color:#0b6b3a;
    margin-right:10px;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#111;
}

.section-title p{
    color:#777;
}

/* =========================
   SERVICES
========================= */

.services{
    padding:100px 0;
    background:#fff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.service-card i{
    font-size:55px;
    color:#c8102e;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
}

/* =========================
   MISSION
========================= */

.mission{
    padding:100px 0;
    background:#f5f5f5;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mission-box{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:15px;
    transition:.4s;
}

.mission-box:hover{
    transform:translateY(-10px);
}

.mission-box i{
    font-size:60px;
    color:#0b6b3a;
    margin-bottom:20px;
}

/* =========================
   GALLERY
========================= */

.gallery-preview{
    padding:100px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-grid img{
    height:280px;
    width:100%;
    object-fit:cover;
    border-radius:15px;
    transition:.5s;
}

.gallery-grid img:hover{
    transform:scale(1.08);
}

.text-center{
    text-align:center;
    margin-top:40px;
}

/* =========================
   DONATE SECTION
========================= */

.donate-section{
    padding:100px 0;
    text-align:center;
    background:
    linear-gradient(135deg,#c8102e,#ff3d5a);
    color:#fff;
}

.donate-section h2{
    font-size:45px;
    margin-bottom:20px;
}

.donate-section p{
    margin-bottom:30px;
}

.donate-section .btn-red{
    background:#fff;
    color:#c8102e;
}

/* =========================
   VOLUNTEER
========================= */

.volunteer-section{
    padding:100px 0;
    text-align:center;
    background:#0b6b3a;
    color:#fff;
}

.volunteer-section h2{
    font-size:45px;
    margin-bottom:20px;
}

.volunteer-section p{
    margin-bottom:30px;
}

/* =========================
   ANIMATION
========================= */

.service-card,
.counter-box,
.mission-box,
.gallery-grid img{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.hero h1{
    font-size:45px;
}

.counter-grid,
.about-grid,
.service-grid,
.mission-grid,
.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.hero{
    height:auto;
    padding:120px 20px;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.counter-grid,
.about-grid,
.service-grid,
.mission-grid,
.gallery-grid{
    grid-template-columns:1fr;
}

.about{
    padding:60px 0;
}

.services,
.mission,
.gallery-preview,
.donate-section,
.volunteer-section{
    padding:70px 0;
}

.section-title h2{
    font-size:32px;
}

}
/* =========================
   GLOBAL CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    line-height:1.7;
    color:#333;
    background:#f8f9fa;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   BUTTONS
========================= */

.btn-red{
    background:#c8102e;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    display:inline-block;
    transition:.4s;
    font-weight:600;
}

.btn-green{
    background:#0b6b3a;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    display:inline-block;
    transition:.4s;
    font-weight:600;
}

.btn-red:hover,
.btn-green:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* =========================
   HERO SECTION
========================= */

.hero{
    height:90vh;
    background:
    linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('../images/banner.jpg');

    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.hero-content{
    max-width:850px;
}

.hero h4{
    color:#ffd700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.hero h1{
    font-size:65px;
    margin-bottom:20px;
    font-weight:700;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.hero .btn-red{
    margin-right:15px;
}

/* =========================
   COUNTER
========================= */

.counter-section{
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.counter-box{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.counter-box:hover{
    transform:translateY(-10px);
}

.counter-box i{
    font-size:50px;
    color:#c8102e;
    margin-bottom:15px;
}

.counter-box h2{
    font-size:35px;
    color:#0b6b3a;
}

/* =========================
   ABOUT
========================= */

.about{
    padding:100px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-content span{
    color:#c8102e;
    font-weight:700;
}

.about-content h2{
    font-size:42px;
    margin:15px 0;
}

.about-content p{
    margin-bottom:20px;
}

.about-content ul{
    list-style:none;
    margin-bottom:25px;
}

.about-content ul li{
    margin-bottom:12px;
}

.about-content ul li i{
    color:#0b6b3a;
    margin-right:10px;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#111;
}

.section-title p{
    color:#777;
}

/* =========================
   SERVICES
========================= */

.services{
    padding:100px 0;
    background:#fff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.service-card i{
    font-size:55px;
    color:#c8102e;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
}

/* =========================
   MISSION
========================= */

.mission{
    padding:100px 0;
    background:#f5f5f5;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mission-box{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:15px;
    transition:.4s;
}

.mission-box:hover{
    transform:translateY(-10px);
}

.mission-box i{
    font-size:60px;
    color:#0b6b3a;
    margin-bottom:20px;
}

/* =========================
   GALLERY
========================= */

.gallery-preview{
    padding:100px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-grid img{
    height:280px;
    width:100%;
    object-fit:cover;
    border-radius:15px;
    transition:.5s;
}

.gallery-grid img:hover{
    transform:scale(1.08);
}

.text-center{
    text-align:center;
    margin-top:40px;
}

/* =========================
   DONATE SECTION
========================= */

.donate-section{
    padding:100px 0;
    text-align:center;
    background:
    linear-gradient(135deg,#c8102e,#ff3d5a);
    color:#fff;
}

.donate-section h2{
    font-size:45px;
    margin-bottom:20px;
}

.donate-section p{
    margin-bottom:30px;
}

.donate-section .btn-red{
    background:#fff;
    color:#c8102e;
}

/* =========================
   VOLUNTEER
========================= */

.volunteer-section{
    padding:100px 0;
    text-align:center;
    background:#0b6b3a;
    color:#fff;
}

.volunteer-section h2{
    font-size:45px;
    margin-bottom:20px;
}

.volunteer-section p{
    margin-bottom:30px;
}

/* =========================
   ANIMATION
========================= */

.service-card,
.counter-box,
.mission-box,
.gallery-grid img{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.hero h1{
    font-size:45px;
}

.counter-grid,
.about-grid,
.service-grid,
.mission-grid,
.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.hero{
    height:auto;
    padding:120px 20px;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.counter-grid,
.about-grid,
.service-grid,
.mission-grid,
.gallery-grid{
    grid-template-columns:1fr;
}

.about{
    padding:60px 0;
}

.services,
.mission,
.gallery-preview,
.donate-section,
.volunteer-section{
    padding:70px 0;
}

.section-title h2{
    font-size:32px;
}

}
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#c8102e;
}

.navbar ul{
    display:flex;
    list-style:none;
}

.navbar ul li{
    margin-left:20px;
}

.navbar ul li a{
    color:#333;
    font-weight:600;
    text-decoration:none;
}

/* Mobile */

@media(max-width:991px){

.menu-toggle{
    display:block;
}

.navbar{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 10px 20px rgba(0,0,0,.1);

    max-height:0;
    overflow:hidden;

    transition:.4s;
}

.navbar.active{
    max-height:700px;
}

.navbar ul{
    flex-direction:column;
}

.navbar ul li{
    margin:0;
    border-bottom:1px solid #eee;
}

.navbar ul li a{
    display:block;
    padding:15px 20px;
}

}
.page-banner{
    background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url('../images/banner.jpg');
    background-size:cover;
    background-position:center;
    padding:120px 0;
    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-size:55px;
    margin-bottom:10px;
}

.about-page{
    padding:100px 0;
}

.mission-vision,
.objectives,
.team{
    padding:100px 0;
}

.mv-grid,
.objective-grid,
.team-grid{
    display:grid;
    gap:30px;
}

.mv-grid{
    grid-template-columns:repeat(2,1fr);
}

.objective-grid{
    grid-template-columns:repeat(3,1fr);
}

.team-grid{
    grid-template-columns:repeat(2,1fr);
}

.mv-box,
.objective-card,
.team-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.mv-box:hover,
.objective-card:hover,
.team-card:hover{
    transform:translateY(-10px);
}

.mv-box i,
.objective-card i{
    font-size:50px;
    color:#c8102e;
    margin-bottom:20px;
}

.team-card img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;
    border:5px solid #c8102e;
}

@media(max-width:768px){

.mv-grid,
.objective-grid,
.team-grid{
    grid-template-columns:1fr;
}

.page-banner h1{
    font-size:36px;
}

}
.programs-page{
    padding:100px 0;
    background:#f8f9fa;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.program-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.program-card:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#c8102e;
}

.program-card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.program-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#fff3f5;
    display:flex;
    align-items:center;
    justify-content:center;
}

.program-icon i{
    font-size:40px;
    color:#c8102e;
}

.program-card h3{
    margin-bottom:15px;
    color:#222;
}

.program-card p{
    color:#666;
    line-height:1.8;
}

.program-card:hover .program-icon{
    transform:rotateY(360deg);
    transition:1s;
}

@media(max-width:991px){

.program-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.program-grid{
    grid-template-columns:1fr;
}

}
.volunteer-intro,
.why-volunteer,
.volunteer-form-section{
    padding:100px 0;
}

.why-volunteer{
    background:#f8f9fa;
}

.volunteer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.volunteer-box{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.volunteer-box:hover{
    transform:translateY(-10px);
}

.volunteer-box i{
    font-size:55px;
    color:#c8102e;
    margin-bottom:20px;
}

.form-wrapper{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-heading{
    text-align:center;
    margin-bottom:40px;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    transition:.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#c8102e;
}

.submit-btn{
    background:#c8102e;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:40px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

.submit-btn:hover{
    background:#0b6b3a;
}

.join-cta{
    padding:100px 0;
    text-align:center;
    color:#fff;
    background:linear-gradient(135deg,#c8102e,#ff4b68);
}

.join-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

@media(max-width:768px){

.volunteer-grid,
.form-row{
    grid-template-columns:1fr;
}

.form-wrapper{
    padding:25px;
}

.join-cta h2{
    font-size:30px;
}

}

.donation-page,
.donation-form-section,
.impact-section{
    padding:100px 0;
}

.donation-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:center;
}

.donation-content span{
    color:#c8102e;
    font-weight:700;
}

.donation-content h2{
    font-size:42px;
    margin:15px 0;
}

.donation-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.qr-image{
    width:250px;
    margin:auto;
    margin-bottom:20px;
}

.scan-text{
    font-weight:600;
    color:#0b6b3a;
}

.bank-table{
    width:100%;
    margin-top:20px;
}

.bank-table td{
    padding:12px;
    border-bottom:1px solid #eee;
    text-align:left;
}

.feature{
    display:flex;
    align-items:center;
    margin:15px 0;
}

.feature i{
    color:#c8102e;
    margin-right:15px;
    font-size:22px;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.impact-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.impact-card:hover{
    transform:translateY(-10px);
}

.impact-card i{
    font-size:50px;
    color:#c8102e;
    margin-bottom:20px;
}

@media(max-width:768px){

.donation-grid,
.impact-grid{
    grid-template-columns:1fr;
}

.qr-image{
    width:180px;
}

}
.hero-slider{
    width:100%;
}

.swiper{
    width:100%;
    height:85vh;
}

.swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.swiper{
    width:100%;
    height:85vh;
}

.swiper-slide{
    height:100%;
}

.swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

@media(max-width:768px){

.swiper{
        height:250px;
    }

}
.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:99999;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.3s;
}

.call-float{
    position:fixed;
    right:20px;
    bottom:90px;
    width:60px;
    height:60px;
    background:#e30613;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    z-index:99999;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.3s;
}

.whatsapp-float:hover,
.call-float:hover{
    transform:scale(1.1);
    color:#fff;
}

@media(max-width:768px){

.whatsapp-float,
.call-float{
    width:55px;
    height:55px;
}

}

.whatsapp-float,
.call-float{
    animation:pulse 2s infinite;
}

@keyframes pulse{

0%{
    box-shadow:0 0 0 0 rgba(0,0,0,.4);
}

70%{
    box-shadow:0 0 0 15px rgba(0,0,0,0);
}

100%{
    box-shadow:0 0 0 0 rgba(0,0,0,0);
}

}
.gallery-folder-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.gallery-folder-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.gallery-folder-card:hover{
    transform:translateY(-10px);
}

.gallery-folder-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.gallery-folder-content{
    padding:20px;
    text-align:center;
}

.gallery-folder-content h3{
    margin-bottom:10px;
}

.gallery-folder-content span{
    color:#c8102e;
    font-weight:600;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

@media(max-width:768px){

.gallery-folder-grid,
.gallery-grid{
    grid-template-columns:1fr;
}

}

.events-section{
    padding:100px 0;
    background:#f8f9fa;
}

.event-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.event-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.event-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.event-image{
    position:relative;
    overflow:hidden;
}

.event-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
}

.event-card:hover img{
    transform:scale(1.1);
}

.event-date{
    position:absolute;
    top:15px;
    left:15px;
    background:#c8102e;
    color:#fff;
    padding:10px 15px;
    border-radius:10px;
    font-weight:bold;
}

.event-content{
    padding:25px;
}

.event-category{
    display:inline-block;
    background:#fff3f3;
    color:#c8102e;
    padding:6px 15px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.event-content h3{
    margin-bottom:15px;
}

.event-meta{
    list-style:none;
    padding:0;
    margin-bottom:15px;
}

.event-meta li{
    margin-bottom:8px;
    color:#666;
}

.event-meta i{
    color:#c8102e;
    margin-right:8px;
}

.event-btn{
    display:inline-block;
    background:#0b6b3a;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    margin-top:10px;
    transition:.3s;
}

.event-btn:hover{
    background:#c8102e;
}

@media(max-width:991px){

.event-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.event-grid{
    grid-template-columns:1fr;
}

}
.contact-page{
    padding:100px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info span{
    color:#c8102e;
    font-weight:700;
}

.contact-info h2{
    font-size:42px;
    margin:15px 0;
}

.contact-box{
    display:flex;
    align-items:flex-start;
    margin:25px 0;
    padding:20px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.4s;
}

.contact-box:hover{
    transform:translateX(10px);
}

.contact-box i{
    font-size:30px;
    color:#c8102e;
    margin-right:20px;
    margin-top:5px;
}

.contact-form-wrapper{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form-wrapper h3{
    margin-bottom:25px;
}

.social-contact{
    margin-top:30px;
}

.social-contact a{
    width:45px;
    height:45px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    background:#c8102e;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    transition:.4s;
}

.social-contact a:hover{
    transform:translateY(-5px);
    background:#0b6b3a;
}

.map-section iframe{
    display:block;
}

@media(max-width:768px){

.contact-grid{
    grid-template-columns:1fr;
}

.contact-info h2{
    font-size:32px;
}

.contact-form-wrapper{
    padding:25px;
}

}