/* VARIABLES */ 
:root {
    --primary-color: #d32f2f; /* Red - Main Theme Color */
    --secondary-color: #019191; /* Teal - Headings */
    --accent-blue: #0277bd; /* Blue - Secondary Buttons */
    --accent-hover: #b71c1c; /* Darker Red for hover */
    
    --text-dark: #333;
    --text-light: #fff;
    --white: #ffffff;
    --bg-light: #f4f4f4;
    --bg-soft: #f1f8e9;
    
    --max-width: 1200px;
    --nav-height: 70px;
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden; /* Prevents horizontal scroll on mobile */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* LAYOUT HELPERS */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding { padding: 4rem 1.5rem; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}
p { margin-bottom: 1rem; }

/* NAVBAR */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; width: auto; }
.logo-text {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    font-size: 0.9rem;
}

.nav-links { display: flex; gap: 20px; align-items: center; }

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Donate Button in Nav */
.nav-donate {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 5px;
    border: none !important;
}
.nav-donate:hover { background: var(--accent-hover); }

/* Hamburger Menu */
.hamburger {
    display: none;
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* HERO SECTION (Home) */
.hero {
    min-height: 80vh;
    background: url('images/canva.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: -1px; /* Removes gap */
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darker for better text read */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    color: #fff !important;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: #fff !important;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* BUTTONS */
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
}

.btn-primary { background: var(--primary-color); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }

.btn-secondary { background: var(--accent-blue); color: #fff; }
.btn-secondary:hover { background: #01579b; transform: translateY(-2px); }

/* STATS SECTION */
.stats-section { background: #fff; padding: 2rem 0; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.stats-grid { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 2rem; }
.stat-box h2 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 0.2rem; }
.stat-box p { font-weight: 600; color: #555; }

/* IMPACT SECTION & TABS */
.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.impact-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.impact-image img { width: 100%; height: 100%; object-fit: cover; }

.image-overlay-text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}
.image-overlay-text h3 { color: #fff; margin: 0; font-size: 1.3rem; }

/* TABS STYLING */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    color: #777;
    position: relative;
    transition: 0.3s;
}

.tab-btn:hover { color: var(--primary-color); }

.tab-btn.active-tab {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    margin-bottom: -2px; /* Sits on the line */
}

.tab-content { display: none; animation: fadeIn 0.5s ease; }
.tab-content.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* PROGRESS BARS */
.cause-bar { margin-bottom: 1.5rem; }
.bar-info { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }

.progress-bg {
    height: 12px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color); /* Changed to RED (Primary) */
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* HERO 3-COLS (Projects) - RED OVERLAY FIXED */
.hero-3cols { display: flex; flex-wrap: wrap; width: 100%; }
.hero-item { flex: 1; min-width: 300px; position: relative; margin: 0; }
.hero-img { width: 100%; height: 350px; object-fit: cover; display: block; }

.hero-item figcaption {
    background: rgba(211, 47, 47, 0.9); /* FIXED: Uses Primary Red with transparency */
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* PROJECT CONTENT */
.content-container { max-width: 800px; margin: 0 auto; text-align: center; }
.content-container h1 { font-size: 2.5rem; color: var(--primary-color); }
.subtitle { font-size: 1.25rem; color: #666; font-weight: 400; margin-bottom: 2rem; }
.text-body { text-align: left; font-size: 1.1rem; line-height: 1.8; color: #444; }
.text-body .lead { font-size: 1.2rem; font-weight: 500; color: var(--text-dark); border-left: 4px solid var(--primary-color); padding-left: 15px; }

/* LARGE CTA BUTTON */
.cta-wrapper { margin-top: 3rem; text-align: center; }
.btn-donate-large {
    background: var(--primary-color);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-donate-large:hover { background: var(--accent-hover); transform: translateY(-3px); }
.cta-subtext { margin-top: 10px; font-size: 0.9rem; color: #888; }

/* VIDEO SECTION */
.video-section { background: var(--bg-soft); }
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #000;
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* FOOTER */
footer { background: #f9f9f9; padding: 4rem 1.5rem 1rem; margin-top: auto; border-top: 1px solid #ddd; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-logo { height: 60px; margin-bottom: 1rem; }
.footer-social .social-icons a { margin-right: 15px; font-size: 1.2rem; color: #555; }
.footer-social .social-icons a:hover { color: var(--primary-color); }
.copyright { text-align: center; border-top: 1px solid #eee; padding-top: 1.5rem; color: #888; font-size: 0.9rem; }

/* ANIMATION */
.fade-in { opacity: 0; transform: translateY(20px); transition: 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- NEW: DONATION PAGE ENHANCEMENTS --- */
.donation-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Soft shadow */
    padding: 3rem 2rem;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    border-top: 5px solid var(--primary-color); /* Red top border */
}

.paypal-section {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.btn-paypal-custom {
    background-color: #003087; /* PayPal Blue for trust */
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 48, 135, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 350px;
    justify-content: center;
}

.btn-paypal-custom:hover {
    background-color: #001c64;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 48, 135, 0.4);
    color: #fff;
}

.payment-icons {
    margin-top: 15px;
    font-size: 1.8rem;
    color: #888;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.bank-box {
    background: #f8f9fa; /* Light grey background */
    border-radius: 10px;
    padding: 2rem;
    text-align: left;
    border: 1px solid #eee;
    margin-top: 2rem;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 0.8rem;
}
.bank-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.bank-label { font-weight: 600; color: #555; }
.bank-value { font-weight: 500; color: #333; text-align: right; }

/* ================= MOBILE RESPONSIVENESS ================= */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.5rem; }
    .impact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .impact-image { height: 300px; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }

    .nav-links {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%); /* Hidden by default */
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links.active { transform: translateY(0); } /* Show when active */

    .hero-3cols { flex-direction: column; }
    .hero-img { height: 250px; }
    
    .hero-content h1 { font-size: 2rem; }
    .stats-grid { gap: 1.5rem; }
    
    .btn-donate-large { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }

    /* Bank Row Stacking for Small Screens */
    .bank-row { flex-direction: column; text-align: left; }
    .bank-value { text-align: left; margin-top: 2px; }
    .donation-card { padding: 2rem 1.5rem; }
}
/* Overall Wrapper */
.projects-wrapper { 
    max-width: 1100px; 
    margin: auto; 
    padding: 2rem 1rem; 
}

/* Case Card */
.case-section { 
    background: #fff; 
    border-radius: 12px; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
    margin-bottom: 3rem; 
    overflow: hidden; 
}

/* Badge/Label */
.case-label { 
    display: inline-block; 
    margin: 1rem; 
    padding: 4px 12px; 
    font-size: 0.7rem; 
    font-weight: 600; 
    color: var(--primary-color); 
    background: rgba(211,47,47,0.1); 
    border-radius: 20px; 
}

/* --- SLIDER SYSTEM (RESPONSIVE) --- */
.slider { 
    position: relative; 
    width: 100%; 
    aspect-ratio: 16 / 9; /* Desktop ratio */
    background: #000; 
    overflow: hidden; 
}

.slides { 
    display: flex; 
    height: 100%; 
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
}

.slide { 
    min-width: 100%; 
    flex-shrink: 0; 
}

.slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; /* Keeps image full on desktop */
}

/* Navigation Arrows (Touch Friendly & Fixed) */
.slider-btn { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(0,0,0,0.4); 
    color: #fff; 
    border: none; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    cursor: pointer; 
    z-index: 10; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.slider-btn:hover { background: rgba(0,0,0,0.7); }

/* --- FIX: Arrow Positioning (Left & Right) --- */
.prev-btn { left: 15px; }
.next-btn { right: 15px; }

/* --- CONTENT AREA --- */
.case-content { padding: 1.5rem; }

.case-content h2 { 
    color: var(--secondary-color); 
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.case-content p {
    font-size: 0.95rem;
    color: #444;
}

/* Read More Button */
.read-more-btn { 
    margin-top: 1rem; 
    background: none; 
    border: 2px solid var(--primary-color); 
    color: var(--primary-color); 
    padding: 10px 20px; 
    border-radius: 30px; 
    cursor: pointer; 
    font-weight: 600; 
    width: auto; 
    display: inline-block;
    transition: 0.3s;
}
.read-more-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.read-more-content { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease-out; 
}

/* --- YOUTUBE SECTION (RESPONSIVE GRID) --- */
.impact-video-section { 
    background: var(--bg-soft); 
    padding: 3rem 1rem; 
    margin-top: 2rem;
}

.impact-header h2 { 
    text-align: center;
    font-size: 1.8rem; 
    margin-bottom: 2rem;
}

.impact-video-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* Desktop: 2 Columns */
    gap: 1.5rem; 
}

.impact-video { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    border-radius: 10px; 
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}

.impact-video iframe { 
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%; border: none; 
}

/* ================= PROJECTS MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {
    /* 1. Make Slider Square (1:1) so it's bigger on phone */
    .slider { 
        aspect-ratio: 1 / 1; 
    }

    /* 2. Force Image to Cover the Area (No Black Bars) */
    .slide img { 
        object-fit: cover; 
    }

    /* 3. Slider Arrows Bigger & Clearer */
    .slider-btn {
        width: 45px;
        height: 45px;
        background: rgba(0,0,0,0.5); 
        font-size: 1.2rem;
    }

    /* 4. Single Column for Videos */
    .impact-video-grid { 
        grid-template-columns: 1fr; 
    }

    .case-content h2 {
        font-size: 1.4rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .projects-wrapper { padding: 1rem 0.5rem; }
    .case-section { border-radius: 0; } 
    .read-more-btn { width: 100%; text-align: center; }
    .impact-header h2 { font-size: 1.5rem; }
}

/* ============================================================= */
/* THEME-ALIGNED UPDATES FOR NEW SECTIONS        */
/* ============================================================= */

.section-header-centered {
    text-align: center;
    margin-bottom: 3.5rem;
}

.accent-line {
    width: 50px;
    height: 4px;
    background: var(--primary-color); /* Match established red line style */
    margin: 10px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f2f2f2;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-soft);
    color: var(--secondary-color); /* Initial teal */
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color); /* Hover red transition */
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* WHY IT MATTERS - BRANDED THEME */
.why-it-matters {
    background-color: var(--secondary-color); /* Dark Teal Background */
    color: white;
    text-align: center;
}

.matters-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.why-it-matters h2 {
    color: white !important;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    display: inline-block;
    padding-bottom: 10px;
}

.why-it-matters p:not(.highlight-text) {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .why-it-matters h2 { font-size: 1.8rem; }
    .highlight-text { font-size: 1.1rem; }
}
/* ============================================================= */
/* ABOUT PAGE UPDATES                                            */
/* ============================================================= */

.section-title-left { 
    margin-bottom: 0.5rem; 
    color: var(--secondary-color);
}

.accent-line-left { 
    width: 50px; 
    height: 4px; 
    background: var(--primary-color); 
    margin-bottom: 1.5rem; 
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.mv-card {
    background: var(--bg-soft);
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 5px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.section-title-centered { 
    text-align: center; 
    margin-bottom: 0.5rem; 
    color: var(--secondary-color);
}

.accent-line-centered { 
    width: 60px; 
    height: 4px; 
    background: var(--primary-color); 
    margin: 0 auto 3rem; 
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.value-item {
    padding: 2.5rem 1.5rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover { 
    transform: translateY(-5px); 
    border-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.value-item i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.value-item h4 { 
    color: var(--secondary-color); 
    margin-bottom: 0.5rem; 
}

.value-item p { 
    font-size: 0.95rem; 
    color: #555; 
    margin-bottom: 0; 
}

@media (max-width: 768px) {
    .mission-vision-grid { grid-template-columns: 1fr; }
    .mv-card { padding: 2rem 1.5rem; }
}





/* ======================================================== */
/* DONATION PAGE REDESIGN (Specific Styles)                 */
/* ======================================================== */

/* Layout Wrapper */
.donate-layout-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Info takes more space, Card takes less */
    gap: 3rem;
    align-items: start;
}

/* --- Left Column: Info --- */
.donate-info-col {
    padding-right: 1rem;
}

.section-badge {
    display: inline-block;
    background: rgba(211, 47, 47, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.donate-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.donate-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Impact Grid (Renamed to avoid conflict with Index) */
.donate-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.impact-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: transform 0.3s, border-color 0.3s;
}

.impact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.impact-card .amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.impact-note {
    color: #888;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Scroll Button */
.btn-donate-scroll {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Why Donate Box */
.why-donate-box {
    background: var(--bg-soft);
    padding: 2rem;
    border-radius: 12px;
}

.why-donate-box h3 { margin-bottom: 1rem; }

.why-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}
.why-list i { color: var(--secondary-color); }


/* --- Right Column: Payment Card --- */
.donate-payment-col {
    position: sticky;
    top: 100px; /* Sticks on scroll */
}

.payment-card-modern {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    border-top: 6px solid var(--primary-color);
}

.payment-header {
    background: #fdfdfd;
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.payment-header h2 { margin-bottom: 0.5rem; font-size: 1.8rem; }
.payment-header p { color: #28a745; font-size: 0.9rem; font-weight: 600; margin: 0; }

.payment-body { padding: 2rem; }

/* PayPal Button */
.btn-paypal-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: #003087;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 48, 135, 0.2);
}
.btn-paypal-block:hover { background: #001c64; transform: translateY(-2px); }

.payment-methods-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
    font-size: 1.8rem;
    color: #ccc;
}

/* Divider */
.divider-line {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}
.divider-line::before {
    content: "";
    position: absolute;
    top: 50%; left: 0; width: 100%; height: 1px;
    background: #eee;
}
.divider-line span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: #aaa;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Bank Section */
.bank-transfer-block h4 { text-align: center; margin-bottom: 1rem; font-size: 1.1rem; }

.bank-details-list {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    font-size: 0.9rem;
}

.bd-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 0.8rem;
}
.bd-row:last-child { border: none; padding-bottom: 0; margin-bottom: 0; }
.bd-row span { color: #666; }
.bd-row strong { color: #333; text-align: right; }

.email-highlight { color: var(--primary-color) !important; font-size: 1rem; }

/* After Donate Actions */
.after-donate-action {
    text-align: center;
    margin-top: 2rem;
}
.after-donate-action p { font-size: 0.9rem; margin-bottom: 0.5rem; }

.btn-whatsapp-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #25d366;
    color: #25d366;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}
.btn-whatsapp-outline:hover { background: #25d366; color: #fff; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .donate-layout-wrapper {
        grid-template-columns: 1fr; /* Stack on Tablet/Mobile */
        gap: 3rem;
    }
    
    .donate-info-col { padding-right: 0; }
    
    .donate-payment-col {
        position: relative;
        top: 0;
    }
}

@media (max-width: 600px) {
    .donate-title { font-size: 2rem; }
    .donate-impact-grid { grid-template-columns: 1fr 1fr; } /* 2x2 grid on mobile */
    .btn-donate-scroll { width: 100%; justify-content: center; }
}






/* ======================================================== */
/* PROJECTS PAGE: NEW CORE PROGRAMS SECTION                 */
/* ======================================================== */

.proj-intro-section {
    margin-bottom: 4rem;
    padding: 1rem 0;
}

.proj-intro-header {
    text-align: center;
    margin-bottom: 3rem;
}

.proj-intro-header h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.proj-intro-header .accent-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.proj-intro-layout {
    display: grid;
    grid-template-columns: 350px 1fr; /* Fixed Video Width | Fluid Content */
    gap: 3rem;
    align-items: start;
}

/* --- Vertical Video (Left Column) --- */
.proj-video-col {
    position: sticky;
    top: 90px;
    text-align: center;
}

.vertical-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%; /* 9:16 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #000;
    border: 4px solid #fff;
}

.vertical-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* --- Programs Grid (Right Column) --- */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.program-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-left: 5px solid var(--secondary-color); /* Teal Accent */
}

.program-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--primary-color); /* Red on Hover */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.prog-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.prog-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.prog-list {
    list-style: none;
    margin-bottom: 1rem;
    padding-left: 5px;
}

.prog-list li {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.prog-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.prog-footer {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    border-top: 1px dashed #eee;
    padding-top: 10px;
    margin: 0;
}

.prog-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}
.prog-link:hover { text-decoration: underline; }

/* --- Responsive Projects Page --- */
@media (max-width: 992px) {
    .proj-intro-layout {
        grid-template-columns: 1fr; /* Stack Video and Grid */
        gap: 3rem;
    }

    .proj-video-col {
        position: relative;
        top: 0;
        max-width: 350px;
        margin: 0 auto; /* Center video on tablet/mobile */
    }
}

@media (max-width: 600px) {
    .proj-intro-header h1 { font-size: 2rem; }
    .programs-grid { grid-template-columns: 1fr; }
}



/* Footer credit links */
.copyright a {
  color: #e63946;
  text-decoration: none;
  font-weight: 500;
}

.copyright a:hover {
  text-decoration: underline;
}
