html{

    scroll-behavior:smooth;

}

body{

    overflow-x:hidden;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   GOOGLE FONT
========================= */

body{

    font-family:'Poppins',sans-serif;
    background:#F8F9FA;
    color:#333;
    overflow-x:hidden;

}

/* =========================
   COLORS
========================= */

:root{

--primary:#1E3A5F;
--secondary:#D4AF37;
--accent:#2E7D32;
--light:#F8F9FA;
--white:#ffffff;
--text:#444;

}

/* =========================
   GENERAL
========================= */

section{

    padding:70px 0;

}

h1,h2,h3,h4,h5{

    font-weight:700;

}

p{

    color:#666;
    line-height:1.8;

}

.section-subtitle{

    color:var(--accent);

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

img{

    max-width:100%;

}

/* =========================
   BUTTONS
========================= */

.btn-primary{

background:var(--primary);
border:none;
padding:14px 30px;
border-radius:50px;
font-weight:600;

}

.btn-primary:hover{

background:var(--secondary);
color:#000;

}

.btn-secondary{

background:var(--accent);
border:none;
padding:14px 30px;
border-radius:50px;

}

.btn-secondary:hover{

background:var(--secondary);
color:#000;

}


/* =========================
   NAVBAR STYLING
========================= */

.navbar {
    padding: 12px 0;
    transition: all 0.3s ease;
}


.logo-img {
    width: 150px;
    height: auto;
    object-fit: contain;
}


/* Navbar Links */

.navbar-nav .nav-link {

    color: #1E3A5F;
    font-weight: 500;
    font-size: 16px;
    margin-left: 18px;
    transition: all 0.3s ease;

}


.navbar-nav .nav-link:hover {

    color: #D4AF37;

}


/* Active Menu */

.navbar-nav .nav-link.active {

    color: #D4AF37;
    font-weight: 600;

}


/* Donate Button */

.donate-btn {

    background-color: #1E3A5F;
    border: 2px solid #1E3A5F;

    color: #ffffff !important;

    padding: 9px 22px;

    border-radius: 30px;

    font-weight: 600;

    transition: all 0.3s ease;

}


.donate-btn:hover {

    background-color: #D4AF37;

    border-color: #D4AF37;

    color: #ffffff !important;

}



/* Mobile Navbar */

@media(max-width:991px){

    .navbar-nav {

        padding-top:20px;

    }


    .navbar-nav .nav-link {

        margin-left:0;

        padding:10px 0;

    }


    .donate-btn {

        display:inline-block;

        margin-top:10px;

    }

}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(20,40,70,.70),rgba(20,40,70,.70)),
    url('../images/hero/hero-bg.jpg');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    color:#fff;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size: 35px;
    font-weight:500;
    line-height:1.2;
    margin-bottom:15px;
}

.hero p{
    font-size:20px;
    max-width:600px;
    margin-bottom:28px;
    color:#f1f1f1;
}

.hero-buttons .btn{
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    margin-right:15px;
}

.btn-primary{
    background:#D4AF37;
    border:none;
}

.btn-primary:hover{
    background:#bf9925;
}

.btn-secondary{
    background:transparent;
    border:2px solid #fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#1E3A5F;
}

/* =========================
   ABOUT SECTION
========================= */

.about{

    background:#ffffff;

}

.about img{

    border-radius:20px;
    transition:.4s;

}

.about img:hover{

    transform:scale(1.03);

}

.about h2{

    color:var(--primary);
    margin-bottom:25px;

}

.about p{

    margin-bottom:20px;

}


/* =========================
   PROGRAMS
========================= */

.programs{

    background:#F5F8FC;

}

/* =========================
   IMPACT SECTION
========================= */

.impact{

    background:var(--primary);
    color:white;

}

.impact h2,
.impact p,
.impact .section-subtitle{

    color:white;

}

.impact-card{

    background:rgba(255,255,255,.10);
    border-radius:18px;
    transition:.35s;

}

.impact-card:hover{

    background:rgba(255,255,255,.18);
    transform:translateY(-8px);

}

.impact-card h2{

    color:var(--secondary);
    font-size:48px;
    margin-bottom:10px;

}

.impact-card p{

    color:white;
    margin-bottom:0;

}

/* =========================
   EVENTS SECTION
========================= */

.events{

    background:#ffffff;

}

.events .card{

    border:none;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;

}

.events .card img{

    height:240px;
    object-fit:cover;
    transition:.4s;

}

.events .card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.events .card:hover img{

    transform:scale(1.08);

}

.events .card-body{

    padding:25px;

}

.events h5{

    color:var(--primary);
    font-weight:700;

}


/* =========================
   GALLERY SECTION
========================= */

.gallery{

    background:#F5F8FC;

}

.gallery img{

    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:15px;
    transition:.35s;
    cursor:pointer;

}

.gallery img:hover{

    transform:scale(1.05);
    box-shadow:0 20px 40px rgba(0,0,0,.18);

}


/* =========================
   VOLUNTEER SECTION
========================= */

.volunteer{

    background:white;

}

.volunteer img{

    border-radius:20px;
    transition:.4s;

}

.volunteer img:hover{

    transform:scale(1.03);

}

.volunteer h2{

    color:var(--primary);

}

.volunteer ul li{

    font-size:18px;
    margin-bottom:15px;

}

.volunteer i{

    color:var(--accent);
    margin-right:10px;

}

/* =========================
   DONATION SECTION
========================= */

.donation{

    background:#F5F8FC;

}

.donation img{

    border-radius:20px;
    transition:.4s;

}

.donation img:hover{

    transform:scale(1.03);

}

.donation h2{

    color:var(--primary);

}

.donation .btn-outline-primary{

    border:2px solid var(--primary);
    color:var(--primary);
    border-radius:50px;
    padding:14px 30px;
    font-weight:600;

}

.donation .btn-outline-primary:hover{

    background:var(--primary);
    color:#fff;

}


/* =========================
   TESTIMONIALS
========================= */

.testimonials{

    background:#ffffff;

}

.testimonials .card{

    border:none;
    border-radius:20px;
    transition:.35s;
    height:100%;

}

.testimonials .card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.testimonials i{

    color:var(--secondary);

}

.testimonials h5{

    color:var(--primary);

}


/* =========================
   SMOOTH SCROLL
========================= */

html{

    scroll-behavior:smooth;

}

/* =========================
   SHADOWS
========================= */

.shadow{

    box-shadow:0 12px 30px rgba(0,0,0,.10)!important;

}


/* =========================
   BORDER RADIUS
========================= */

.rounded{

    border-radius:18px!important;

}

/* =========================
   ACTIVE MENU
========================= */

.nav-link.active{

    color:var(--primary)!important;
    font-weight:700;
    position:relative;

}

.nav-link.active::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:3px;
    background:var(--secondary);
    border-radius:5px;

}

section{

    position:relative;

}

/* =========================
   ABOUT PAGE
========================= */

.about-story{

    background:#ffffff;

}

.about-story img{

    border-radius:20px;
    transition:.4s;

}

.about-story img:hover{

    transform:scale(1.03);

}

.about-story h2{

    color:var(--primary);

}

/* =========================
   VISION & MISSION
========================= */

.vision-mission{

    background:#F5F8FC;

}

.vm-card{

    background:#fff;
    border-radius:20px;
    transition:.35s;

}

.vm-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.vm-card h3{

    color:var(--primary);

}

.vm-card i{

    font-size:70px;

}

/* =========================
   CORE VALUES
========================= */

.core-values{

    background:#ffffff;

}

.value-card{

    background:#fff;
    border-radius:20px;
    transition:.35s;
    height:100%;

}

.value-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.value-card i{

    font-size:60px;

}

.value-card h4{

    color:var(--primary);
    margin-top:20px;

}

/* =========================
   WHY CHOOSE US
========================= */

.why-us{

    background:#F5F8FC;

}

.feature-card{

    background:#fff;
    border-radius:20px;
    transition:.35s;
    height:100%;

}

.feature-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.feature-card i{

    font-size:60px;

}

.feature-card h4{

    color:var(--primary);
    margin-top:20px;

}

/* =========================
   OUR OBJECTIVES
========================= */

.objectives{

    background:#ffffff;

}

.objective-card{

    background:#fff;
    border-radius:20px;
    transition:.35s;
    height:100%;

}

.objective-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.objective-card i{

    font-size:55px;

}

.objective-card h5{

    color:var(--primary);
    margin-top:18px;

}

/* =========================
   OUR JOURNEY
========================= */

.journey{

    background:#F5F8FC;

}

.timeline{

    position:relative;
    margin:40px auto;

}

.timeline::before{

    content:"";
    position:absolute;
    left:30px;
    top:0;
    width:4px;
    height:100%;
    background:var(--secondary);

}

.timeline-item{

    position:relative;
    padding-left:90px;
    margin-bottom:50px;

}

.timeline-icon{

    position:absolute;
    left:10px;
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;

}

.timeline-content{

    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;

}

.timeline-content:hover{

    transform:translateX(8px);

}

.timeline-content h4{

    color:var(--primary);
    margin-bottom:10px;

}

/*==============================
 Leadership Section
==============================*/

.leadership-section{
    background:#ffffff;
}

.leader-image{
    max-width:320px;
    border-radius:20px;
}

.leadership-section p{
    color:#555;
    line-height:1.9;
    font-size:17px;
}

/*==============================
 About CTA
==============================*/

.about-cta{
    background: linear-gradient(135deg,#0d6efd,#198754);
    color:#fff;
    text-align:center;
}

.about-cta h2{
    font-weight:700;
}

.about-cta p{
    font-size:18px;
    line-height:1.8;
    max-width:750px;
    margin:0 auto 30px;
}

.about-cta .btn{
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.about-cta .btn:hover{
    transform:translateY(-3px);
}

/*==============================
 Programs Hero
==============================*/

.programs-hero{

    background:linear-gradient(rgba(13,110,253,.85),rgba(25,135,84,.85)),
    url("../images/programs/programs-banner.jpg") center/cover;

    color:#fff;

    padding:120px 0;

    text-align:center;

}

.programs-hero h1{

    font-size:52px;

    font-weight:700;

    margin-bottom:20px;

}

.programs-hero p{

    font-size:20px;

    max-width:750px;

    margin:auto;

    line-height:1.8;

}

/*==============================
 Focus Areas
==============================*/

.focus-areas{
    background:#f8f9fa;
}

.section-subtitle{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
    line-height:1.8;
}

.focus-card{

    background:#ffffff;

    padding:35px 25px;

    text-align:center;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

    transition:.35s;
}

.focus-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.focus-icon{

    font-size:55px;

    margin-bottom:20px;

}

.focus-card h4{

    margin-bottom:15px;

    font-weight:700;

}

.focus-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;

}

/*==============================
 Featured Programs
==============================*/

.featured-programs{
    background:#ffffff;
}

.program-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.program-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.program-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.program-content{

    padding:30px;

}

.program-content h4{

    font-weight:700;

    margin-bottom:15px;

}

.program-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

/*==============================
 Impact Statistics
==============================*/

.impact-section{

    background:#f8f9fa;

}

.impact-card{

    background:#ffffff;

    padding:40px 20px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.impact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.impact-card h2{

    font-size:48px;

    font-weight:700;

    color:#198754;

    margin-bottom:15px;

}

.impact-card h5{

    color:#555;

    font-weight:600;

    margin:0;

}

/*==============================
 Program Process
==============================*/

.program-process{
    background:#ffffff;
}

.process-card{

    background:#f8f9fa;

    border-radius:15px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.process-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.process-number{

    width:70px;

    height:70px;

    background:#198754;

    color:#fff;

    border-radius:50%;

    margin:0 auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    font-weight:700;

}

.process-card h4{

    margin-bottom:15px;

    font-weight:700;

}

.process-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;

}

/*==============================
 Upcoming Initiatives
==============================*/

.upcoming-programs{
    background:#f8f9fa;
}

.initiative-card{

    background:#ffffff;

    padding:35px;

    border-radius:15px;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.initiative-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.initiative-date{

    display:inline-block;

    background:#198754;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:20px;

    font-size:14px;

    font-weight:600;

}

.initiative-card h4{

    margin-bottom:15px;

    font-weight:700;

}

.initiative-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;

}

/*==============================
 Programs CTA
==============================*/

.programs-cta{

    background:linear-gradient(135deg,#0d6efd,#198754);

    color:#ffffff;

    text-align:center;

}

.programs-cta h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

}

.programs-cta p{

    max-width:760px;

    margin:0 auto 35px;

    line-height:1.9;

    font-size:18px;

}

.programs-cta .btn{

    border-radius:50px;

    padding:14px 32px;

    font-weight:600;

    transition:.3s;

}

.programs-cta .btn:hover{

    transform:translateY(-4px);

}

/*==============================
 Events Hero
==============================*/

.events-hero{

    background:linear-gradient(rgba(13,110,253,.85),rgba(25,135,84,.85)),
    url("../images/events/events-banner.jpg") center/cover;

    color:#fff;

    text-align:center;

    padding:120px 0;

}

.events-hero h1{

    font-size:54px;

    font-weight:700;

    margin-bottom:20px;

}

.events-hero p{

    max-width:760px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

}

/*==============================
 Upcoming Events
==============================*/

.upcoming-events{
    background:#f8f9fa;
}

.event-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.event-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.event-image{

    position:relative;

}

.event-image img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.event-date {

    position:absolute;

    top:20px;

    left:20px;

    background:#198754;

    color:#fff;

    width:70px;

    height:70px;

    border-radius:12px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    font-weight:700;

    z-index:2;

}

.event-date span{

    font-size:24px;

    line-height:1;

}

.event-date small{

    font-size:12px;

    letter-spacing:1px;

}

.event-content{

    padding:30px;

}

.event-content h4{

    margin-bottom:15px;

    font-weight:700;

}

.event-content p{

    color:#666;

    line-height:1.8;

}

.event-info{

    list-style:none;

    padding:0;

    margin:20px 0;

}

.event-info li{

    margin-bottom:10px;

    color:#555;

}

/*==============================
 Past Events Gallery
==============================*/

.past-events{
    background:#ffffff;
}

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.gallery-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.4s;

}

.gallery-overlay h5{

    color:#ffffff;

    font-weight:700;

    text-align:center;

}

.gallery-card:hover img{

    transform:scale(1.1);

}

.gallery-card:hover .gallery-overlay{

    opacity:1;

}

/*==============================
 Annual Events Calendar
==============================*/

.events-calendar{
    background:#f8f9fa;
}

.calendar-table{

    background:#ffffff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.calendar-table thead{

    background:#198754;

    color:#ffffff;

}

.calendar-table th{

    padding:18px;

    font-weight:700;

    border:none;

}

.calendar-table td{

    padding:18px;

    vertical-align:middle;

}

.calendar-table tbody tr{

    transition:.3s;

}

.calendar-table tbody tr:hover{

    background:#eef8f1;

}

/*==============================
 Event Highlights
==============================*/

.event-highlights{
    background:#ffffff;
}

.highlight-card{

    background:#f8f9fa;

    padding:35px 25px;

    text-align:center;

    border-radius:18px;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.highlight-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.highlight-icon{

    font-size:50px;

    margin-bottom:20px;

}

.highlight-card h3{

    color:#198754;

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;

}

.highlight-card h5{

    color:#555;

    font-weight:600;

    margin-bottom:0;

}

/* Events CTA */

.events-cta{

    background:#f8f9fa;

}

.events-cta img{

    width:100%;
    border-radius:15px;

}

.events-cta h2{

    color:#1E3A5F;
    font-weight:700;
    margin-bottom:20px;

}

.events-cta p{

    color:#555;
    line-height:1.8;

}

/*==============================
 Programs Hero
==============================*/

.programs-hero{
    background:
    linear-gradient(rgba(30,58,95,.80),rgba(46,125,50,.75)),
    url("../images/programs/programs-banner.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    min-height:420px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    color:#fff;
}

.programs-hero h1{

    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
    color:#fff;

}

.programs-hero p{

    font-size:22px;
    color:#f5f5f5;
    max-width:750px;
    margin:auto;
    line-height:1.8;

}

.programs-hero{

    background:linear-gradient(135deg,#1E3A5F,#2E7D32);

    min-height:420px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    color:#fff;

}

.focus-areas{

    margin-top:30px;

}

.section-title::after{

    content:"";

    width:70px;

    height:4px;

    background:#198754;

    display:block;

    margin:15px auto 0;

    border-radius:10px;

}

/*==============================
 Website Font
==============================*/

body{

    font-family:'Poppins', sans-serif;

    color:#333;

    line-height:1.7;

}


h1,
h2,
h3,
h4,
h5{

    font-family:'Poppins', sans-serif;

}

/* Events Hero Text Fix */

.events-hero p{

    color:#ffffff;

    font-size:20px;

    line-height:1.8;

}

/* Event Card Fix */

.event-image{

    position:relative;

}


.event-date{

    position:absolute;

    top:20px;

    left:20px;

    z-index:2;

}


.event-content h4{

    margin-top:15px;

    padding-top:10px;

    font-size:24px;

    line-height:1.3;

}

.event-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:15px 15px 0 0;

}

/* =========================
   Section Heading
========================= */

.section-title {

    text-align:center;
    margin-bottom:40px;

}


.section-title h2 {

    font-size:38px;
    font-weight:700;
    color:#1E3A5F;
    margin-bottom:15px;

}


.section-title p {

    font-size:17px;
    color:#666;
    max-width:750px;
    margin:0 auto;
    line-height:1.8;

}

/* ==========================
   Event Highlights Section
========================== */

.event-highlights {
    background: #f8f9fa;
}


.event-highlights .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1b4332;
    text-align: center;
}


.event-highlights .section-subtitle {
    max-width: 750px;
    margin: 15px auto 0;
    text-align: center;
    color: #666;
    line-height: 1.7;
}


/* Highlight Cards */

.highlight-card {

    background: #ffffff;

    padding: 35px 20px;

    text-align: center;

    border-radius: 15px;

    height: 100%;

    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    transition: 0.3s ease;

}


.highlight-card:hover {

    transform: translateY(-8px);

}


/* Icons */

.highlight-icon {

    width:70px;

    height:70px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#1b4332;

    color:white;

    border-radius:50%;

    font-size:30px;

}


/* Numbers */

.highlight-card h3 {

    font-size:40px;

    font-weight:700;

    color:#1b4332;

    margin-bottom:10px;

}


/* Titles */

.highlight-card h5 {

    font-size:18px;

    color:#555;

    margin:0;

}


/* Mobile Alignment */

@media(max-width:768px){

    .event-highlights .section-title{

        font-size:30px;

    }

}

/* ==========================
   Events Page Alignment Fix
========================== */


/* Section Heading */

.section-title {

    font-size:36px;
    font-weight:700;
    color:#1b4332;
    text-align:center;
    margin-bottom:15px;

}


.section-title::after {

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:#2d6a4f;

    margin:15px auto;

    border-radius:10px;

}


.section-subtitle {

    text-align:center;

    max-width:750px;

    margin:auto;

    color:#666;

}


/* Upcoming Events Cards */

.event-card {

    height:100%;

    background:#ffffff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);

}


.event-image img {

    width:100%;

    height:250px;

    object-fit:cover;

}


.event-content {

    padding:25px;

}


.event-content h4 {

    color:#1b4332;

    font-weight:700;

}


.event-info {

    list-style:none;

    padding:0;

}


.event-info li {

    margin-bottom:8px;

}


/* Event Date */

.event-date {

    position:absolute;

    bottom:15px;

    left:15px;

    background:#1b4332;

    color:white;

    padding:10px 15px;

    border-radius:10px;

    text-align:center;

}


.event-image {

    position:relative;

}

.section-text{

    max-width:850px;
    margin:20px auto;
    color:#666;
    line-height:1.8;
    font-size:17px;

}

/*=========================
    FOCUS AREAS
==========================*/

.focus-section{

    background:#f8faf8;

}

.focus-card{

    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;

}

.focus-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.focus-card i{

    font-size:55px;
    color:#198754;
    margin-bottom:20px;
    display:block;

}

.focus-card h4{

    color:#1E3A5F;
    font-weight:700;
    margin-bottom:15px;

}

.focus-card p{

    color:#666;
    line-height:1.7;
    margin-bottom:0;

}

/*=========================
      IMPACT SECTION
==========================*/

.impact-section{

    background:#ffffff;

}

.impact-card{

    background:#198754;
    color:#fff;
    padding:40px 20px;
    border-radius:20px;
    transition:.3s;

}

.impact-card:hover{

    transform:translateY(-10px);

}

.impact-card h2{

    font-size:48px;
    font-weight:700;
    margin-bottom:10px;

}

.impact-card p{

    margin:0;
    font-size:18px;

}

/*=========================
    PROGRAM SECTION
==========================*/

.program-section{

    background:#f8faf8;

}

.program-card{

    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;

}

.program-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.program-icon{

    width:75px;
    height:75px;
    background:#198754;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;

}

.program-card h4{

    color:#1E3A5F;
    font-weight:700;
    margin-bottom:15px;

}

.program-card p{

    color:#666;
    line-height:1.8;
    margin-bottom:25px;

}

.program-btn{

    text-decoration:none;
    color:#198754;
    font-weight:600;
    transition:.3s;

}

.program-btn:hover{

    color:#146c43;

}

.program-btn i{

    margin-left:8px;

}

/*=========================
      EVENTS SECTION
==========================*/

.events-section{

    background:#ffffff;

}

.event-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;

}

.event-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.event-image{

    height:220px;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;

}

.event-image i{

    font-size:80px;
    color:white;

}

.education-bg{

    background:linear-gradient(135deg,#4CAF50,#2E7D32);

}

.environment-bg{

    background:linear-gradient(135deg,#66BB6A,#2E7D32);

}

.health-bg{

    background:linear-gradient(135deg,#26A69A,#00897B);

}

.event-date{

    position:absolute;
    top:20px;
    left:20px;

    width:70px;
    height:70px;

    background:white;
    border-radius:15px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:#198754;

    font-weight:700;

}

.event-date span{

    font-size:24px;
    line-height:1;

}

.event-date small{

    font-size:13px;

}

.event-content{

    padding:30px;

}

.event-content h4{

    color:#1E3A5F;
    font-weight:700;
    margin-bottom:15px;

}

.event-content p{

    color:#666;
    line-height:1.7;
    margin-bottom:25px;

}

/*=========================
      CTA SECTION
==========================*/

.cta-section{

    background:#f8faf8;

}

.cta-box{

    background:linear-gradient(135deg,#198754,#146c43);

    border-radius:25px;

    padding:60px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.cta-box h2{

    font-size:42px;

    font-weight:700;

}

.cta-box p{

    font-size:18px;

    opacity:.95;

}

.btn-warning{

    background:#FFC107;

    border:none;

    color:#000;

    font-weight:600;

}

.btn-warning:hover{

    background:#ffca2c;

}

.btn-light{

    font-weight:600;

}

/*=========================
     TESTIMONIAL SECTION
==========================*/

.testimonial-section{

    background:#ffffff;

}

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.stars{

    color:#FFC107;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-text{

    color:#666;

    line-height:1.8;

    font-style:italic;

    min-height:140px;

}

.testimonial-card h5{

    color:#1E3A5F;

    margin-bottom:5px;

    font-weight:700;

}

.testimonial-card span{

    color:#198754;

    font-weight:600;

}

/*=========================
      PARTNERS SECTION
==========================*/

.partners-section{

    background:#f8faf8;

}

.partner-card{

    background:#fff;

    border-radius:20px;

    padding:40px 20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.partner-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.partner-card i{

    font-size:55px;

    color:#198754;

    margin-bottom:20px;

}

.partner-card h5{

    color:#1E3A5F;

    font-weight:700;

}

/*=========================
      GALLERY SECTION
==========================*/

.gallery-section{
    background: #f8faf8;
}

.gallery-card{
    height: 260px;
    border-radius: 20px;
    background: linear-gradient(135deg, #198754, #20c997);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
    cursor: pointer;
}

.gallery-card:hover{
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.gallery-card i{
    font-size: 60px;
    margin-bottom: 20px;
}

.gallery-card h5{
    font-size: 22px;
    font-weight: 700;
}
/*=========================
       FAQ SECTION
==========================*/

.faq-section{

    background:#ffffff;

}

.accordion-item{

    border:none;

    border-radius:15px !important;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.accordion-button{

    font-weight:600;

    padding:22px;

}

.accordion-button:not(.collapsed){

    background:#198754;

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    line-height:1.8;

    color:#555;

}

/*=========================
         FOOTER
==========================*/

.footer{

    background:#1E3A5F;

    color:#fff;

    padding:70px 0 25px;

}

.footer h3,
.footer h4{

    margin-bottom:25px;

    font-weight:700;

}

.footer p{

    color:#d8d8d8;

    line-height:1.8;

}

.footer-links,
.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li,
.footer-contact li{

    margin-bottom:15px;

}

.footer-links a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:8px;

}

.footer-contact i{

    color:#20c997;

    margin-right:10px;

}

.social-icons{

    margin-top:25px;

}

.social-icons a{

    width:45px;

    height:45px;

    background:rgba(255,255,255,.12);

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    margin-right:10px;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.social-icons a:hover{

    background:#20c997;

}

.footer hr{

    margin:45px 0 25px;

    border-color:rgba(255,255,255,.15);

}

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    margin:0;

    color:#ccc;

}

/* =========================
   MISSION & VISION
========================= */

.mission-vision{
    background:#f8f9fa;
}

.mission-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.mission-card:hover{
    transform:translateY(-8px);
}

.mission-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.mission-card h3{
    color:#1E3A5F;
    font-weight:700;
    margin-bottom:15px;
}

.mission-card i{
    color:#198754;
    margin-right:8px;
}

/* =========================
   IMPACT
========================= */

.impact{

    background:#1E3A5F;

    color:#fff;

}

.impact .section-title{

    color:#fff;

}

.impact-box{

    padding:30px 20px;

}

.impact-box i{

    font-size:50px;

    color:#D4AF37;

    margin-bottom:20px;

}

.impact-box h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;

}

.impact-box p{

    font-size:18px;

    margin:0;

}

.scroll-down{
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    font-size:30px;
    color:#fff;
    animation:bounce 2s infinite;
}

@keyframes bounce{

    0%,20%,50%,80%,100%{
        transform:translate(-50%,0);
    }

    40%{
        transform:translate(-50%,-12px);
    }

    60%{
        transform:translate(-50%,-6px);
    }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{

    background:#ffffff;

    padding:100px 0;

}

.about-img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    transition:.4s;

}

.about-img:hover{

    transform:scale(1.03);

}

.section-tag{

    color:#2E7D32;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#1E3A5F;

    margin-bottom:25px;

}

.section-text{

    font-size:18px;

    line-height:1.9;

    color:#666;

}

.about-list{

    margin-top:30px;

}

.about-list p{

    font-size:18px;

    margin-bottom:15px;

}

.about-list i{

    color:#2E7D32;

    margin-right:12px;

    font-size:20px;

}

/* =========================
   FOCUS AREAS
========================= */

.focus-areas{

    background:#f8f9fa;

}

.focus-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

}

.focus-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.focus-card img{

    width:100%;

    height:230px;

    object-fit:cover;

    transition:.5s;

}

.focus-card:hover img{

    transform:scale(1.08);

}

.focus-content{

    padding:30px;

    text-align:center;

}

.focus-content i{

    font-size:42px;

    color:#2E7D32;

    margin-bottom:15px;

}

.focus-content h4{

    color:#1E3A5F;

    font-weight:700;

    margin-bottom:15px;

}

.focus-content p{

    color:#666;

    line-height:1.8;

}

/* =========================
   IMPACT SECTION
========================= */

.impact-section{

    background:#1E3A5F;

    color:#fff;

}

.impact-section .section-title{

    color:#fff;

}

.impact-section .section-text{

    color:#ddd;

}

.impact-box{

    background:rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px 25px;

    transition:.35s;

    height:100%;

}

.impact-box:hover{

    transform:translateY(-10px);

    background:#2E7D32;

}

.impact-box i{

    font-size:55px;

    color:#D4AF37;

    margin-bottom:20px;

}

.impact-box h2{

    font-size:48px;

    font-weight:700;

    margin-bottom:10px;

}

.impact-box p{

    font-size:18px;

    margin:0;

}

/* =========================
   FEATURED PROGRAMS
========================= */

.featured-programs{
    background:#ffffff;
    padding:100px 0;
}

.program-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.program-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.program-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
}

.program-card:hover img{
    transform:scale(1.05);
}

.program-content{
    padding:30px;
}

.program-content h4{
    color:#1E3A5F;
    font-weight:700;
    margin-bottom:15px;
}

.program-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

/* =========================
   EVENTS
========================= */

.events-section{

    background:#f8f9fa;

    padding:100px 0;

}

.event-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.event-card:hover{

    transform:translateY(-10px);

}

.event-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.event-content{

    padding:25px;

    position:relative;

}

.event-date{

    position:absolute;

    top:-35px;

    right:20px;

    background:#2E7D32;

    color:#fff;

    width:70px;

    height:70px;

    border-radius:15px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    font-weight:700;

}

.event-date span{

    font-size:22px;

    line-height:1;

}

.event-date small{

    font-size:12px;

}

/* =========================
   GALLERY PREVIEW
========================= */

.gallery-preview{

    background:#ffffff;

    padding:100px 0;

}

.gallery-img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:18px;

    transition:.4s;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.gallery-img:hover{

    transform:scale(1.05);

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

/* =========================
   VOLUNTEER CTA
========================= */

.volunteer-section{

    background:url('../images/hero/volunteer.jpg');

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}

.volunteer-overlay{

    background:rgba(20,40,70,.75);

    padding:140px 0;

}

.volunteer-section .btn{

    border-radius:50px;

    font-weight:600;

}

/* =========================
   DONATE
========================= */

.donate-section{

    background:#F8FAFC;

    padding:100px 0;

}

.donate-box{

    background:#ffffff;

    border-radius:25px;

    padding:70px 50px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.donate-box .btn{

    border-radius:50px;

    padding:14px 35px;

    font-weight:600;

}

/* =========================
   GLOBAL BUTTON STYLE
========================= */

.btn{

    border-radius:50px;

    padding:14px 32px;

    font-weight:600;

    transition:0.3s ease;

}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

/* =========================
   GLOBAL CARD HOVER
========================= */

.program-card,
.focus-card,
.event-card,
.impact-box{

    transition:all 0.35s ease;

}

.program-card:hover,
.focus-card:hover,
.event-card:hover,
.impact-box:hover{

    transform:translateY(-8px);

}

/* =========================
   GLOBAL SECTION SPACING
========================= */

section{

    padding:90px 0;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#1E3A5F;

    margin-bottom:20px;

}

.section-text{

    font-size:18px;

    color:#666;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}

/* =========================
   GLOBAL IMAGE STYLE
========================= */

img{

    max-width:100%;

    display:block;

}

.about-img,
.program-card img,
.focus-card img,
.event-card img,
.gallery-img{

    border-radius:18px;

}

/* =========================
   COMMON PAGE BANNER
========================= */

.page-banner {

    background: linear-gradient(
        135deg,
        #1E3A5F,
        #2E7D32
    );

    padding: 90px 0;

    text-align: center;

    color: #ffffff;

}


.page-banner h1 {

    color: #D4AF37;

    font-size: 45px;

    font-weight: 700;

    margin-bottom: 15px;

}


.page-banner p {

    color: #ffffff;

    font-size: 18px;

    max-width: 800px;

    margin: auto;

}

/* =========================
   ABOUT CONTENT
========================= */

.about-content{

    padding:80px 0;

}

.about-content h2{

    color:#1E3A5F;

    font-weight:700;

    margin-bottom:20px;

}

.about-content p{

    font-size:18px;

    line-height:1.8;

    color:#666;

}

/* =========================
   MISSION & VISION
========================= */

.mission-section{

    background:#F8FAFC;

}

.mission-box{

    background:#fff;

    padding:40px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    height:100%;

}

.mission-box i{

    font-size:50px;

    color:#2E7D32;

    margin-bottom:20px;

}

.mission-box h3{

    color:#1E3A5F;

    margin-bottom:15px;

    font-weight:700;

}

.mission-box p{

    color:#666;

    line-height:1.8;

}

/* =========================
   CORE VALUES
========================= */

.values-section{

    background:#ffffff;

}

.value-box{

    background:#F8FAFC;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 20px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;

}

.value-box:hover{

    transform:translateY(-8px);

}

.value-box i{

    font-size:45px;

    color:#2E7D32;

    margin-bottom:15px;

}

.value-box h4{

    color:#1E3A5F;

    font-weight:700;

    margin-bottom:15px;

}

/* =========================
   WHY CHOOSE US
========================= */

.why-us{

    background:#F8FAFC;

}

.why-card{

    background:#fff;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 20px rgba(0,0,0,.08);

    transition:0.3s;

    height:100%;

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-card i{

    font-size:45px;

    color:#D4AF37;

    margin-bottom:20px;

}

.why-card h4{

    color:#1E3A5F;

    font-weight:700;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    margin:0;

}

.events-section .card-img-top,
.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* =========================
   Gallery Page
========================= */

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30,58,95,0.85);
    color: white;
    padding: 15px;
    text-align: center;
}

.gallery-overlay h5 {
    margin: 0;
    font-size: 18px;
}

/* Force CTA Layout */

.events-cta .row{
    display:flex !important;
    align-items:center !important;
}

.events-cta .col-lg-6{
    width:50% !important;
    flex:0 0 50% !important;
}

.events-cta img{
    width:100%;
    display:block;
}

@media(max-width:991px){

.events-cta .col-lg-6{
    width:100% !important;
    flex:0 0 100% !important;
}

}

/* CTA Section */

.events-cta,
.bg-light{

    background:#f8f9fa;

}

.events-cta img,
.bg-light img{

    width:100%;
    border-radius:12px;

}

.events-cta .row,
.bg-light .row{

    align-items:center;

}

.events-cta h2,
.bg-light h2{

    color:#1E3A5F;
    font-weight:700;
    margin-bottom:20px;

}

.events-cta p,
.bg-light p{

    line-height:1.8;

}

/* Volunteer & Donation Sections */

.events-cta img,
.support-mission img{
    transition:0.4s ease;
}

.events-cta img:hover,
.support-mission img:hover{
    transform:scale(1.03);
}

.events-cta .btn,
.support-mission .btn{
    border-radius:30px;
    padding:12px 30px;
    font-weight:600;
}

/* =========================
   PAGE HERO
========================= */

.page-hero{

    background:linear-gradient(135deg,#1E3A5F,#2E7D32);

    padding:100px 0;

    text-align:center;

    color:#fff;

}

.page-hero h1{

    color:#fff;

    font-size:50px;

    font-weight:700;

    margin-bottom:20px;

}

.page-hero p{

    color:#fff;

    font-size:18px;

    max-width:750px;

    margin:0 auto;

    line-height:1.8;

}

/* =========================
   JOIN OUR MISSION
========================= */

.join-mission{

    background:#ffffff;

    padding:80px 0;

    text-align:center;

}

.join-mission h1{

    color:#1E3A5F;

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;

}

.join-mission p{

    color:#666666;

    font-size:18px;

    line-height:1.8;

    max-width:750px;

    margin:0 auto;

}

.join-mission h1::after{

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:#D4AF37;

    margin:18px auto 0;

    border-radius:50px;

}

/* =========================
   VOLUNTEER FORM
========================= */

#volunteer-form .form-control,
#volunteer-form .form-select{

    padding:14px;

    border-radius:10px;

    border:1px solid #ddd;

}

#volunteer-form .form-control:focus,
#volunteer-form .form-select:focus{

    border-color:#2E7D32;

    box-shadow:0 0 10px rgba(46,125,50,.2);

}

#volunteer-form button{

    padding:14px 40px;

    border-radius:30px;

    font-weight:600;

}

/* =========================
   VOLUNTEER OPPORTUNITIES
========================= */

.opportunity-card{

    background:#ffffff;

    padding:35px 25px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;

}

.opportunity-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.opportunity-card i{

    font-size:60px;

    margin-bottom:20px;

    display:inline-block;

}

/* Different color for each icon */

.bi-book-half{
    color:#0d6efd;
}

.bi-tree-fill{
    color:#198754;
}

.bi-heart-pulse-fill{
    color:#dc3545;
}

.bi-mortarboard-fill{
    color:#fd7e14;
}

.bi-calendar-event-fill{
    color:#6f42c1;
}

.bi-globe-central-south-asia{
    color:#20c997;
}

.opportunity-card h4{

    color:#1E3A5F;

    font-weight:700;

    margin-bottom:15px;

}

.opportunity-card p{

    color:#666;

    line-height:1.7;

}

.bi-people-fill{
    color:#0dcaf0;
}

.bi-shield-check{
    color:#ffc107;
}

/* Header Logo Size */

.logo-img {

    height: 55px;

    width: auto;

    object-fit: contain;

}

/* Header Menu Spacing */

.navbar-nav .nav-item {
    margin-left: 12px;
    margin-right: 12px;
}

/* Header Menu Spacing */

.header-menu .nav-item:not(:last-child) {
    margin-left: 12px;
    margin-right: 12px;
}


/* Keep Donate button position */

.header-menu .nav-item:last-child {
    margin-left: 25px;
}

/* =========================
   Compact Header
========================= */

.navbar {
    padding-top: 6px;
    padding-bottom: 6px;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Navigation Links */

.navbar .nav-link{
    position: relative;
    color: #444;
    font-weight: 600;
    margin-left: 20px;
    text-decoration: none;
}

/* Hover Effect */

.navbar .nav-link:hover{
    color: var(--primary);
}

/* Underline ONLY for the active page */

.navbar .nav-link.active::after{

    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 5px;

}

/* =========================
   FOOTER
========================= */


.footer {

    background:#1E3A5F;

}


.footer h5 {

    color:#D4AF37;

    font-weight:600;

}


.footer p {

    color:#ffffff;

    line-height:1.7;

}



.footer a {

    color:#ffffff;

    text-decoration:none;

    transition:0.3s;

}



.footer a:hover {

    color:#D4AF37;

}



.footer ul li {

    margin-bottom:10px;

}



.footer-badge {


    display:inline-block;

    padding:7px 14px;

    margin-right:8px;

    border:1px solid #D4AF37;

    border-radius:20px;

    color:#D4AF37;

    font-size:14px;


}



.social-links a {


    display:inline-flex;

    width:38px;

    height:38px;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:1px solid #ffffff;

    margin-right:10px;

    font-size:18px;


}


.social-links a:hover {

    background:#D4AF37;

    color:#1E3A5F;

    border-color:#D4AF37;

}

/* =========================
   DONATE CTA SECTION
========================= */


.donate-section {

    background:#f8f9fa;

}



.donate-image-wrapper {

    position:relative;

}



.donate-image-wrapper img {

    width:100%;

    max-height:420px;

    object-fit:cover;

}



.donate-action-btn {

    background:#2E7D32;

    border-color:#2E7D32;

}



.donate-action-btn:hover {

    background:#1E3A5F;

    border-color:#1E3A5F;

}



.section-tag {

    display:inline-block;

    color:#2E7D32;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

}



.section-title {

    color:#1E3A5F;

    font-size:38px;

    font-weight:700;

    line-height:1.3;

}



.section-text {

    color:#555;

    font-size:17px;

    line-height:1.8;

}



@media(max-width:768px){


    .section-title {

        font-size:30px;

    }


}