/*
Theme Name: Uplift Foundation
Theme URI: https://upliftfoundation.org
Author: Custom Theme Architect
Author URI: https://upliftfoundation.org
Description: A custom, performance-optimized, modular WordPress theme built specifically for the Uplift Foundation.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
Text Domain: uplift-foundation
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-logo, custom-menu, featured-images, full-width-template, theme-options, accessibility-ready, education, non-profit
*/

/* === index.html === */

        /* ============================================
           RESET & BASE
           ============================================ */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red: #C41E24;
            --red-dark: #9B1519;
            --red-light: #E8434A;
            --charcoal: #2D2D2D;
            --charcoal-light: #444444;
            --bg: #FAFAFA;
            --bg-warm: #FFF8F0;
            --gold: #D4A853;
            --gold-light: #F0D89A;
            --text: #1A1A1A;
            --text-muted: #6B7280;
            --text-light: #9CA3AF;
            --white: #FFFFFF;
            --border: rgba(0, 0, 0, 0.06);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            overflow-x: clip;
        }

        /* ============================================
           LOADING SCREEN
           ============================================ */
        #loader {
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: var(--charcoal);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        #loader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        #loader .loader-logo {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        #loader .loader-logo .logo-up {
            color: var(--red);
        }

        #loader .loader-logo .logo-lift {
            color: var(--white);
        }

        #loader .progress-track {
            width: 240px;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        #loader .progress-fill {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, var(--red), var(--red-light));
            border-radius: 3px;
            transition: width 0.15s ease;
        }

        #loader .progress-text {
            margin-top: 1rem;
            color: var(--text-light);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        /* Skip link — visually hidden until focused */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
        }

        .skip-link:focus {
            position: fixed;
            top: 8px;
            left: 8px;
            width: auto;
            height: auto;
            overflow: visible;
            clip: auto;
            background: var(--red);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            z-index: 99999;
        }

        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #navbar.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.7rem 2rem;
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
        }

        #navbar .nav-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: baseline;
            gap: 0;
        }

        #navbar .nav-logo .logo-up {
            color: var(--red);
        }

        #navbar .nav-logo .logo-lift {
            color: var(--charcoal);
            transition: color 0.4s ease;
        }

        #navbar.scrolled .nav-logo .logo-lift {
            color: var(--charcoal);
        }

        #navbar .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        #navbar .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        #navbar.scrolled .nav-links a {
            color: var(--charcoal);
        }

        #navbar .nav-links a:hover {
            color: var(--charcoal);
        }

        #navbar.scrolled .nav-links a:hover {
            color: var(--red);
        }

        #navbar .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red);
            transition: width 0.3s ease;
        }

        #navbar .nav-links a:hover::after {
            width: 100%;
        }

        .nav-donate-btn {
            background: var(--red);
            color: var(--white) !important;
            padding: 0.65rem 1.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            box-shadow: 0 2px 12px rgba(196, 30, 36, 0.3);
        }

        .nav-donate-btn:hover {
            background: var(--red-dark) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(196, 30, 36, 0.4);
        }

        .nav-donate-btn::after {
            display: none !important;
        }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
            margin-left: auto;
            position: relative;
            z-index: 1200;
            width: 40px;
            height: 40px;
            border-radius: 8px;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--charcoal);
            border-radius: 2px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        #navbar.scrolled .nav-toggle span {
            background: var(--charcoal);
        }

        /* Animate to X when menu is open */
        #navLinks.open~.nav-toggle span:nth-child(1),
        .nav-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        #navLinks.open~.nav-toggle span:nth-child(2),
        .nav-toggle.is-open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        #navLinks.open~.nav-toggle span:nth-child(3),
        .nav-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ============================================
           HERO SECTION — SCROLL CANVAS
           ============================================ */
        #hero-scroll-container {
            position: relative;
            height: 600vh;
        }

        #hero-sticky {
            position: sticky;
            top: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: var(--charcoal);
        }

        /* Hero layout wrapper — drives dynamic positioning */
        .hero-layout {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 0;
            transition: none;
            /* JS drives these */
        }

        /* Canvas window container — morphs between full & split */
        .canvas-window {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 0;
            transition: top 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                left 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .canvas-window.mode-full {
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 0;
        }

        .canvas-window.mode-split-right {
            top: 5%;
            left: 45%;
            width: 52%;
            height: 90%;
            border-radius: var(--radius-xl);
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
        }

        .canvas-window.mode-split-left {
            top: 5%;
            left: 3%;
            width: 52%;
            height: 90%;
            border-radius: var(--radius-xl);
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
        }

        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Dark overlay gradient for text readability */
        .canvas-overlay {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            transition: opacity 0.7s ease;
        }

        .canvas-overlay.overlay-full {
            background: linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.3) 0%,
                    rgba(0, 0, 0, 0.1) 40%,
                    rgba(0, 0, 0, 0.1) 60%,
                    rgba(0, 0, 0, 0.45) 100%);
        }

        .canvas-overlay.overlay-split {
            background: none;
        }

        /* Hero text panels — two types: centered overlay & side panel */
        .hero-text-panel {
            position: absolute;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        .hero-text-panel.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Full-screen centered text */
        .hero-text-panel.panel-center {
            inset: 0;
            align-items: center;
            text-align: center;
            padding: 2rem;
        }

        /* Side panel — LEFT text */
        .hero-text-panel.panel-left {
            top: 0;
            left: 0;
            bottom: 0;
            width: 42%;
            padding: 6rem 3rem 4rem 5%;
            align-items: flex-start;
            text-align: left;
        }

        /* Side panel — RIGHT text */
        .hero-text-panel.panel-right {
            top: 0;
            right: 0;
            bottom: 0;
            width: 42%;
            padding: 6rem 5% 4rem 3rem;
            align-items: flex-start;
            text-align: left;
        }

        .hero-text-panel h1 {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 5vw, 4.2rem);
            font-weight: 800;
            color: var(--charcoal);
            line-height: 1.1;
            margin-bottom: 1rem;
            text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
        }

        .hero-text-panel h1 .highlight {
            color: var(--red-light);
        }

        .hero-text-panel p {
            font-size: clamp(0.95rem, 1.5vw, 1.2rem);
            color: rgba(255, 255, 255, 0.8);
            max-width: 500px;
            font-weight: 300;
            line-height: 1.7;
        }

        .hero-text-panel .hero-stat {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 900;
            color: var(--charcoal);
            line-height: 1;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 30px rgba(196, 30, 36, 0.4);
        }

        .hero-text-panel .hero-stat .stat-accent {
            color: var(--red-light);
        }

        /* Side panel mini stats */
        .hero-mini-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .hero-mini-stat {
            display: flex;
            flex-direction: column;
        }

        .hero-mini-stat .mini-num {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--red-light);
            line-height: 1.2;
        }

        .hero-mini-stat .mini-label {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* CTA button in hero */
        .hero-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            padding: 0.85rem 2rem;
            background: var(--red);
            color: var(--charcoal);
            text-decoration: none;
            border-radius: 100px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(196, 30, 36, 0.35);
            pointer-events: auto;
        }

        .hero-cta-btn:hover {
            background: var(--red-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(196, 30, 36, 0.45);
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .hero-scroll-indicator.hidden {
            opacity: 0;
        }

        .hero-scroll-indicator span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 500;
        }

        .scroll-arrow {
            width: 20px;
            height: 20px;
            border-right: 2px solid rgba(255, 255, 255, 0.5);
            border-bottom: 2px solid rgba(255, 255, 255, 0.5);
            transform: rotate(45deg);
            animation: scrollBounce 2s ease infinite;
        }

        @keyframes scrollBounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: rotate(45deg) translateY(0);
            }

            40% {
                transform: rotate(45deg) translateY(6px);
            }

            60% {
                transform: rotate(45deg) translateY(3px);
            }
        }

        /* Hero progress bar */
        .hero-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            z-index: 6;
        }

        .hero-progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--red), var(--gold));
            transition: width 0.05s linear;
        }

        /* ============================================
           SHARED SECTION STYLES
           ============================================ */
        html {
            scroll-behavior: smooth;
        }

        section {
            padding: 6rem 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Stories grid — 2-col on desktop, 1-col on mobile (must be before @media blocks) */
        .stories-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 1rem;
        }

        .section-tag::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 2px;
            background: var(--red);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
            color: var(--charcoal);
            line-height: 1.15;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Scroll-triggered animations */
        .reveal {
            opacity: 1 !important;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        .reveal-delay-5 {
            transition-delay: 0.5s;
        }

        .reveal-delay-6 {
            transition-delay: 0.6s;
        }

        /* ============================================
           ABOUT SECTION
           ============================================ */
        #about {
            background: var(--charcoal);
            position: relative;
            overflow: hidden;
        }

        #about::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(196, 30, 36, 0.04), transparent 70%);
            pointer-events: none;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .about-content .about-text {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .about-value {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .about-value .value-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(196, 30, 36, 0.08), rgba(196, 30, 36, 0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .about-value h4 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.2rem;
        }

        .about-value p {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .about-visual {
            position: relative;
        }

        .about-card-stack {
            position: relative;
            height: 420px;
        }

        .about-card {
            position: absolute;
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
        }

        .about-card.mission {
            top: 0;
            left: 0;
            right: 40px;
            z-index: 2;
        }

        .about-card.vision {
            bottom: 0;
            left: 40px;
            right: 0;
            z-index: 1;
        }

        .about-card .card-label {
            font-family: var(--font-display);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .about-card .card-label::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--red);
        }

        .about-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .about-card p {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ============================================
           IMPACT STATS STRIP
           ============================================ */
        #impact-strip {
            background: var(--charcoal);
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }

        #impact-strip::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-item {
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -1rem;
            top: 20%;
            height: 60%;
            width: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-number .stat-suffix {
            color: var(--red-light);
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* ============================================
           PROGRAMS SECTION
           ============================================ */
        #programs {
            background: var(--bg);
            position: relative;
        }

        .programs-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .programs-header .section-subtitle {
            margin: 0 auto;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .program-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: default;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--red), var(--gold));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .program-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .program-card:hover::before {
            opacity: 1;
        }

        .program-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(196, 30, 36, 0.1), rgba(196, 30, 36, 0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
        }

        .program-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.6rem;
        }

        .program-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .program-stat {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--red);
            background: rgba(196, 30, 36, 0.06);
            padding: 0.35rem 0.8rem;
            border-radius: 100px;
        }

        /* ============================================
           APPROACH SECTION
           ============================================ */
        #approach {
            background: var(--white);
            position: relative;
        }

        .approach-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .approach-header .section-subtitle {
            margin: 0 auto;
        }

        .approach-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
        }

        .approach-steps::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, var(--red), var(--gold), var(--red-light), var(--red));
            z-index: 0;
        }

        .approach-step {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 1rem;
        }

        .step-number {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--white);
            border: 3px solid var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--red);
            box-shadow: 0 4px 15px rgba(196, 30, 36, 0.15);
        }

        .approach-step h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .approach-step p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ============================================
           DIFFERENTIATORS SECTION
           ============================================ */
        #differentiators {
            background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
            position: relative;
            overflow: hidden;
        }

        #differentiators::after {
            content: '';
            position: absolute;
            bottom: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(196, 30, 36, 0.1), transparent 70%);
            pointer-events: none;
        }

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

        .diff-header .section-title {
            color: var(--white);
        }

        .diff-header .section-subtitle {
            color: rgba(255, 255, 255, 0.6);
            margin: 0 auto;
        }

        .diff-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .diff-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.4s ease;
        }

        .diff-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(196, 30, 36, 0.3);
            transform: translateY(-4px);
        }

        .diff-card .diff-icon {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .diff-card h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .diff-card p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.6;
        }

        /* ============================================
           TEAM SECTION
           ============================================ */
        #team {
            background: var(--bg);
        }

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

        .team-header .section-subtitle {
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .team-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.4s ease;
        }

        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .team-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--white);
        }

        .team-card:nth-child(1) .team-avatar {
            background: linear-gradient(135deg, var(--red), var(--red-light));
        }

        .team-card:nth-child(2) .team-avatar {
            background: linear-gradient(135deg, var(--charcoal), #555);
        }

        .team-card:nth-child(3) .team-avatar {
            background: linear-gradient(135deg, var(--gold), #c49a40);
        }

        .team-card:nth-child(4) .team-avatar {
            background: linear-gradient(135deg, #2563eb, #60a5fa);
        }

        .team-card:nth-child(5) .team-avatar {
            background: linear-gradient(135deg, var(--red-dark), var(--red));
        }

        .team-card:nth-child(6) .team-avatar {
            background: linear-gradient(135deg, #059669, #34d399);
        }

        .team-card h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.2rem;
        }

        .team-role {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--red);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.75rem;
        }

        .team-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ============================================
           CTA / DONATE SECTION
           ============================================ */
        #donate {
            background: var(--bg-warm);
            position: relative;
            overflow: hidden;
        }

        #donate::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 168, 83, 0.08), transparent 70%);
            pointer-events: none;
        }

        .donate-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .donate-content .donate-text {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .donate-ways {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .donate-way {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem;
            background: var(--white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .donate-way:hover {
            box-shadow: var(--shadow-sm);
            border-color: rgba(196, 30, 36, 0.15);
        }

        .donate-way .way-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(196, 30, 36, 0.1), rgba(196, 30, 36, 0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .donate-way h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.2rem;
        }

        .donate-way p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .bank-details {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }

        .bank-details h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .bank-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
        }

        .bank-row:last-child {
            border-bottom: none;
        }

        .bank-row .bank-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .bank-row .bank-value {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--charcoal);
            font-family: var(--font-display);
        }

        .donate-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            padding: 0.9rem 2.5rem;
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            color: var(--white);
            text-decoration: none;
            border-radius: 100px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(196, 30, 36, 0.3);
        }

        .donate-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(196, 30, 36, 0.4);
        }

        .tax-note {
            margin-top: 1rem;
            font-size: 0.82rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        /* ============================================
           FOOTER
           ============================================ */
        #footer {
            background: var(--charcoal);
            color: rgba(255, 255, 255, 0.7);
            padding: 4rem 2rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-brand .footer-logo {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .footer-brand .footer-logo .logo-up {
            color: var(--red);
        }

        .footer-brand .footer-logo .logo-lift {
            color: var(--white);
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--red);
            color: var(--white);
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.25rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.6rem;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--red-light);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            margin-bottom: 0.75rem;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-contact-item .contact-icon {
            min-width: 16px;
            color: var(--red-light);
        }

        .footer-contact-item a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-item a:hover {
            color: var(--red-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.35);
        }

        .footer-bottom .reg-info {
            font-size: 0.78rem;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .programs-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .diff-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .approach-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .approach-steps::before {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
			.stat-number, [data-count]{
				font-size:30px!important;
			}
            /* Mobile Hero Dynamic Layout */
            .canvas-window.mode-split-right,
            .canvas-window.mode-split-left {
                top: 3%;
                left: 3%;
                width: 94%;
                height: 38%;
                border-radius: var(--radius-lg);
            }

            .hero-text-panel.panel-left,
            .hero-text-panel.panel-right {
                top: 42%;
                left: 0;
                bottom: 0;
                width: 100%;
                padding: 2rem 1.5rem;
                align-items: center;
                text-align: center;
                justify-content: flex-start;
            }

            .hero-text-panel.panel-left .section-tag,
            .hero-text-panel.panel-right .section-tag {
                margin-bottom: 1rem !important;
            }

            .hero-text-panel.panel-left .hero-mini-stats,
            .hero-text-panel.panel-right .hero-mini-stats {
                justify-content: center;
                gap: 1.5rem;
                margin-top: 1.5rem;
            }

            section {
                padding: 4rem 1.25rem;
            }

            .about-grid,
            .stories-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-card-stack {
                height: auto;
                position: static;
            }

            .about-card {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                bottom: auto;
                margin-bottom: 1rem;
            }

            .about-card.vision {
                margin-bottom: 0;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .stat-item:nth-child(2)::after {
                display: none;
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }

            .diff-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .approach-steps {
                grid-template-columns: 1fr;
            }

            .donate-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            /* ---- Slide-in nav panel from right ---- */
            #navLinks {
                display: flex;
                position: fixed;
                top: 0;
                right: 0;
                width: min(300px, 85vw);
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                padding: 5rem 2.5rem 3rem;
                gap: 0;
                box-shadow: -8px 0 50px rgba(0, 0, 0, 0.18);
                z-index: 1100;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                visibility: hidden;
            }

            #navLinks.open {
                transform: translateX(0);
                visibility: visible;
            }

            /* The ul inside the panel */
            #navbar .nav-links {
                display: flex;
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            #navbar .nav-links li a {
                display: block;
                color: var(--charcoal) !important;
                font-size: 1.1rem;
                font-weight: 600;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.06);
                transition: color 0.2s ease;
                letter-spacing: 0.01em;
            }

            #navbar .nav-links li a:hover {
                color: var(--red) !important;
            }

            #navbar .nav-links li a::after {
                display: none;
            }

            /* Donate Now button in slide panel — white text */
            #navbar .nav-links .nav-donate-btn {
                display: block;
                background: var(--red);
                color: var(--white) !important;
                text-align: center;
                border-radius: 100px;
                padding: 0.9rem 2rem;
                margin-top: 1.5rem;
                border-bottom: none;
                box-shadow: 0 4px 16px rgba(196, 30, 36, 0.3);
            }

            #navbar .nav-links .nav-donate-btn:hover {
                background: var(--red-dark);
                color: var(--white) !important;
            }

            /* Dark backdrop behind the panel */
            .nav-backdrop {
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.45);
                z-index: 1099;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.35s ease, visibility 0.35s ease;
                backdrop-filter: blur(2px);
            }

            .nav-backdrop.active {
                opacity: 1;
                visibility: visible;
                z-index: 0;
            }

            .nav-toggle {
                display: flex;
            }

            .about-values {
                grid-template-columns: 1fr;
            }
        }

        /* End styles */
    

/* === about-us.html === */

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red: #C41E24;
            --red-dark: #9B1519;
            --red-light: #E8434A;
            --charcoal: #2D2D2D;
            --charcoal-light: #444444;
            --bg: #FAFAFA;
            --bg-warm: #FFF8F0;
            --gold: #D4A853;
            --gold-light: #F0D89A;
            --text: #1A1A1A;
            --text-muted: #6B7280;
            --text-light: #9CA3AF;
            --white: #FFFFFF;
            --border: rgba(0, 0, 0, 0.06);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        /* Skip link — visually hidden until focused */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
        }

        .skip-link:focus {
            position: fixed;
            top: 8px;
            left: 8px;
            width: auto;
            height: auto;
            overflow: visible;
            clip: auto;
            background: var(--red);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            z-index: 99999;
        }

        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #navbar.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.7rem 2rem;
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
        }

        #navbar .nav-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: baseline;
            gap: 0;
        }

        #navbar .nav-logo .logo-up {
            color: var(--red);
        }

        #navbar .nav-logo .logo-lift {
            color: var(--charcoal);
            transition: color 0.4s ease;
        }

        #navbar.scrolled .nav-logo .logo-lift {
            color: var(--charcoal);
        }

        #navbar .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        #navbar .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        #navbar.scrolled .nav-links a {
            color: var(--charcoal);
        }

        #navbar .nav-links a:hover {
            color: var(--charcoal);
        }

        #navbar.scrolled .nav-links a:hover {
            color: var(--red);
        }

        #navbar .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red);
            transition: width 0.3s ease;
        }

        #navbar .nav-links a:hover::after {
            width: 100%;
        }

        .nav-donate-btn {
            background: var(--red);
            color: var(--white) !important;
            padding: 0.65rem 1.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            box-shadow: 0 2px 12px rgba(196, 30, 36, 0.3);
        }

        .nav-donate-btn:hover {
            background: var(--red-dark) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(196, 30, 36, 0.4);
        }

        .nav-donate-btn::after {
            display: none !important;
        }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
            margin-left: auto;
            position: relative;
            z-index: 1200;
            width: 40px;
            height: 40px;
            border-radius: 8px;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--charcoal);
            border-radius: 2px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        #navbar.scrolled .nav-toggle span {
            background: var(--charcoal);
        }

        /* Animate to X when menu is open */
        #navLinks.open~.nav-toggle span:nth-child(1),
        .nav-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        #navLinks.open~.nav-toggle span:nth-child(2),
        .nav-toggle.is-open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        #navLinks.open~.nav-toggle span:nth-child(3),
        .nav-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header Hero */
        .page-header {
            padding: 8rem 0 4rem 0;
            background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
            text-align: center;
        }

        .page-header h1 {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 900;
            color: var(--charcoal);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .page-header p {
            color: var(--text-muted);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Section Title */
        .section-title-wrap {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            display: inline-block;
            background: rgba(196, 30, 36, 0.08);
            color: var(--red);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.4rem 1rem;
            border-radius: 100px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--charcoal);
        }

        /* Philosophy & Volunteer Model */
        .volunteer-model-section {
            padding: 6rem 0;
            background: var(--charcoal);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .grid-two-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .philosophy-content h3 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--charcoal);
            line-height: 1.3;
        }

        .philosophy-content p {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
        }

        /* Visual Chart Comparison */
        .chart-box {
            background: var(--bg-warm);
            border: 1px solid rgba(212, 168, 83, 0.15);
            border-radius: var(--radius-lg);
            padding: 3rem;
            box-shadow: var(--shadow-md);
        }

        .chart-title {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 2rem;
            text-align: center;
        }

        .chart-row {
            margin-bottom: 2rem;
        }

        .chart-row:last-child {
            margin-bottom: 0;
        }

        .chart-label {
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        .bar-container {
            background: rgba(0, 0, 0, 0.05);
            height: 1.5rem;
            border-radius: 100px;
            overflow: hidden;
            position: relative;
        }

        .bar-fill {
            height: 100%;
            border-radius: 100px;
            transition: width 1s ease-in-out;
        }

        .bar-fill.uplift {
            background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
            width: 100%;
        }

        .bar-fill.typical {
            background: var(--charcoal-light);
            width: 60%;
        }

        .chart-notes {
            margin-top: 1.5rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            text-align: center;
            font-style: italic;
        }

        /* Core Values */
        .values-section {
            padding: 6rem 0;
            background: var(--bg);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .value-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 3rem 2.5rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(196, 30, 36, 0.15);
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--red);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .value-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--charcoal);
        }

        .value-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Team Section */
        .team-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .team-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 3rem 2.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
        }

        .team-card:hover {
            transform: translateY(-10px);
            background: var(--white);
            box-shadow: var(--shadow-lg);
            border-color: rgba(196, 30, 36, 0.15);
        }

        .avatar-circle {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
            color: var(--white);
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem auto;
            box-shadow: 0 8px 20px rgba(196, 30, 36, 0.15);
            border: 3px solid var(--white);
            position: relative;
        }

        .team-card:hover .avatar-circle {
            transform: scale(1.05) rotate(5deg);
            transition: transform 0.4s ease;
        }

        .team-card h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--charcoal);
        }

        .team-role {
            display: inline-block;
            background: rgba(212, 168, 83, 0.1);
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.3rem 1rem;
            border-radius: 100px;
            margin-bottom: 1.5rem;
        }

        .team-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            text-align: justify;
        }

        /* Footer */
        #footer {
            background: var(--charcoal);
            color: var(--white);
            padding: 4rem 2rem 2rem 2rem;
            border-top: 4px solid var(--red);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
        }

        .footer-brand p {
            margin-top: 1rem;
            font-size: 0.88rem;
            color: var(--text-light);
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
        }

        .footer-logo .logo-up {
            color: var(--red);
        }

        .footer-logo .logo-lift {
            color: var(--white);
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-col ul a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

        .footer-col ul a:hover {
            color: var(--red-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .reg-info {
            text-align: center;
        }

        

        

        /* Responsive */
        @media (max-width: 900px) {
            .grid-two-cols {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .values-grid,
            .team-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
			.about-value{
				flex-direction:column;
			}
            #navbar {
                padding: 0.7rem 1.5rem;
            }

            /* Slide-in nav panel from right */
            #navbar .nav-menu {
                display: flex;
                position: fixed;
                top: 0;
                right: 0;
                width: min(300px, 85vw);
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                padding: 5rem 2.5rem 3rem;
                gap: 0;
                box-shadow: -8px 0 50px rgba(0, 0, 0, 0.18);
                z-index: 1100;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                visibility: hidden;
                list-style: none;
                align-items: flex-start;
            }

            #navbar .nav-menu.open {
                transform: translateX(0);
                visibility: visible;
            }

            #navbar .nav-menu li {
                width: 100%;
            }

            #navbar .nav-menu a {
                display: block;
                color: var(--charcoal) !important;
                font-size: 1.1rem;
                font-weight: 600;
                padding: 1rem 0;
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.06);
                transition: color 0.2s ease;
                text-decoration: none;
            }

            #navbar .nav-menu a:hover {
                color: var(--red) !important;
            }

            #navbar .nav-donate-btn {
                display: block !important;
                background: var(--red) !important;
                color: var(--white) !important;
                text-align: center !important;
                border-radius: 100px !important;
                padding: 0.9rem 2rem !important;
                margin-top: 1.5rem !important;
                border-bottom: none !important;
                width: 100% !important;
            }

            

            .chart-box {
                padding: 1.5rem;
            }
        }

        @media (max-width: 600px) {

            .values-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
/* ---- Slide-in nav panel from right ---- */
            #navLinks {
                display: flex;
                position: fixed;
                top: 0;
                right: 0;
                width: min(300px, 85vw);
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                padding: 5rem 2.5rem 3rem;
                gap: 0;
                box-shadow: -8px 0 50px rgba(0, 0, 0, 0.18);
                z-index: 1100;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                visibility: hidden;
            }

            #navLinks.open {
                transform: translateX(0);
                visibility: visible;
            }

            /* The ul inside the panel */
            #navbar .nav-links {
                display: flex;
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            #navbar .nav-links li a {
                display: block;
                color: var(--charcoal) !important;
                font-size: 1.1rem;
                font-weight: 600;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.06);
                transition: color 0.2s ease;
                letter-spacing: 0.01em;
            }

            #navbar .nav-links li a:hover {
                color: var(--red) !important;
            }

            #navbar .nav-links li a::after {
                display: none;
            }

            /* Donate Now button in slide panel — white text */
            #navbar .nav-links .nav-donate-btn {
                display: block;
                background: var(--red);
                color: var(--white) !important;
                text-align: center;
                border-radius: 100px;
                padding: 0.9rem 2rem;
                margin-top: 1.5rem;
                border-bottom: none;
                box-shadow: 0 4px 16px rgba(196, 30, 36, 0.3);
            }

            #navbar .nav-links .nav-donate-btn:hover {
                background: var(--red-dark);
                color: var(--white) !important;
            }

            /* Dark backdrop behind the panel */
            .nav-backdrop {
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.45);
                z-index: 1;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.35s ease, visibility 0.35s ease;
                backdrop-filter: blur(2px);
            }

            .nav-backdrop.active {
                opacity: 1;
                visibility: visible;
                z-index: 0;
            }

            .nav-toggle {
                display: flex;
            }

        }
    

/* === programs.html === */

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red: #C41E24;
            --red-dark: #9B1519;
            --red-light: #E8434A;
            --charcoal: #2D2D2D;
            --charcoal-light: #444444;
            --bg: #FAFAFA;
            --bg-warm: #FFF8F0;
            --gold: #D4A853;
            --gold-light: #F0D89A;
            --text: #1A1A1A;
            --text-muted: #6B7280;
            --text-light: #9CA3AF;
            --white: #FFFFFF;
            --border: rgba(0,0,0,0.06);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        /* Skip link — visually hidden until focused */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
        }

        .skip-link:focus {
            position: fixed;
            top: 8px;
            left: 8px;
            width: auto;
            height: auto;
            overflow: visible;
            clip: auto;
            background: var(--red);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            z-index: 99999;
        }

        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #navbar.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.7rem 2rem;
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
        }

        #navbar .nav-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: baseline;
            gap: 0;
        }

        #navbar .nav-logo .logo-up {
            color: var(--red);
        }

        #navbar .nav-logo .logo-lift {
            color: var(--charcoal);
            transition: color 0.4s ease;
        }

        #navbar.scrolled .nav-logo .logo-lift {
            color: var(--charcoal);
        }

        #navbar .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        #navbar .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        #navbar.scrolled .nav-links a {
            color: var(--charcoal);
        }

        #navbar .nav-links a:hover {
            color: var(--charcoal);
        }

        #navbar.scrolled .nav-links a:hover {
            color: var(--red);
        }

        #navbar .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red);
            transition: width 0.3s ease;
        }

        #navbar .nav-links a:hover::after {
            width: 100%;
        }

        .nav-donate-btn {
            background: var(--red);
            color: var(--white) !important;
            padding: 0.65rem 1.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            box-shadow: 0 2px 12px rgba(196, 30, 36, 0.3);
        }

        .nav-donate-btn:hover {
            background: var(--red-dark) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(196, 30, 36, 0.4);
        }

        .nav-donate-btn::after {
            display: none !important;
        }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
            margin-left: auto;
            position: relative;
            z-index: 1200;
            width: 40px;
            height: 40px;
            border-radius: 8px;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--charcoal);
            border-radius: 2px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        #navbar.scrolled .nav-toggle span {
            background: var(--charcoal);
        }

        /* Animate to X when menu is open */
        #navLinks.open~.nav-toggle span:nth-child(1),
        .nav-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        #navLinks.open~.nav-toggle span:nth-child(2),
        .nav-toggle.is-open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        #navLinks.open~.nav-toggle span:nth-child(3),
        .nav-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header Hero */
        .page-header {
            padding: 8rem 0 4rem 0;
            background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
            text-align: center;
        }

        .page-header h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 7vw, 3rem);
            font-weight: 900;
            color: var(--charcoal);
            line-height: 1.2;
            margin-bottom: 1rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .page-header p {
            color: var(--text-muted);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Programs Sections alternating */
        .program-section {
            padding: 7rem 0;
            border-bottom: 1px solid var(--border);
        }

        .program-section.bg-warm {
            background: var(--bg-warm);
        }

        .program-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 5rem;
            align-items: center;
        }

        .program-grid.reverse {
            grid-template-columns: 0.9fr 1.1fr;
        }

        .program-content h2 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .program-tag {
            display: inline-block;
            background: rgba(196, 30, 36, 0.08);
            color: var(--red);
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.3rem 0.8rem;
            border-radius: 100px;
            margin-bottom: 1rem;
        }

        .program-desc {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
        }

        .features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .features-list li {
            display: flex;
            gap: 1rem;
            font-size: 0.98rem;
            color: var(--text-muted);
        }

        .features-list li .check-icon {
            color: var(--red);
            font-weight: bold;
            font-size: 1.1rem;
            line-height: 1;
        }

        /* Creative 3D visual panels */
        .visual-panel {
            background: var(--charcoal);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .visual-panel:hover {
            transform: translateY(-5px) rotateY(-2deg) rotateX(2deg);
            box-shadow: var(--shadow-xl);
        }

        .visual-panel.red-card {
            background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
            color: var(--white);
            border: none;
        }

        .visual-panel.red-card h3 {
            color: var(--white);
        }

        .visual-panel h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            padding-bottom: 0.8rem;
        }

        .visual-panel.red-card h3 {
            border-bottom-color: rgba(255,255,255,0.15);
        }

        .stat-badge-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .stat-badge {
            background: rgba(0,0,0,0.02);
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: var(--radius-md);
            padding: 1.2rem;
            text-align: center;
        }

        .visual-panel.red-card .stat-badge {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.12);
        }

        .badge-number {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--red);
            line-height: 1.2;
            margin-bottom: 0.3rem;
        }

        .visual-panel.red-card .badge-number {
            color: var(--gold-light);
        }

        .badge-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .visual-panel.red-card .badge-label {
            color: rgba(255,255,255,0.7);
        }

        /* SVG illustrations depicting growing/empowerment path */
        .empowerment-path-svg {
            display: block;
            margin: 0 auto;
            width: 100%;
            max-width: 280px;
            height: auto;
        }

        /* Footer */
        #footer {
            background: var(--charcoal);
            color: var(--white);
            padding: 4rem 2rem 2rem 2rem;
            border-top: 4px solid var(--red);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
        }

        .footer-brand p {
            margin-top: 1rem;
            font-size: 0.88rem;
            color: var(--text-light);
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
        }

        .footer-logo .logo-up {
            color: var(--red);
        }

        .footer-logo .logo-lift {
            color: var(--white);
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-col ul a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

        .footer-col ul a:hover {
            color: var(--red-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .reg-info {
            text-align: center;
        }

        

        

        /* Responsive */
        @media (max-width: 900px) {
            .program-grid, .program-grid.reverse {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .program-grid.reverse .visual-panel {
                order: 2;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

@media (max-width: 768px) {
            #navbar {
                padding: 0.7rem 1.5rem;
            }

            /* Slide-in nav panel from right */
            #navbar .nav-menu {
                display: flex;
                position: fixed;
                top: 0;
                right: 0;
                width: min(300px, 85vw);
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                padding: 5rem 2.5rem 3rem;
                gap: 0;
                box-shadow: -8px 0 50px rgba(0,0,0,0.18);
                z-index: 1100;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                visibility: hidden;
                list-style: none;
                align-items: flex-start;
            }

            #navbar .nav-menu.open {
                transform: translateX(0);
                visibility: visible;
            }

            #navbar .nav-menu li {
                width: 100%;
            }

            #navbar .nav-menu a {
                display: block;
                color: var(--charcoal) !important;
                font-size: 1.1rem;
                font-weight: 600;
                padding: 1rem 0;
                width: 100%;
                border-bottom: 1px solid rgba(0,0,0,0.06);
                transition: color 0.2s ease;
                text-decoration: none;
            }

            #navbar .nav-menu a:hover {
                color: var(--red) !important;
            }

            #navbar .nav-donate-btn {
                display: block !important;
                background: var(--red) !important;
                color: var(--white) !important;
                text-align: center !important;
                border-radius: 100px !important;
                padding: 0.9rem 2rem !important;
                margin-top: 1.5rem !important;
                border-bottom: none !important;
                width: 100% !important;
            }

            
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .visual-panel {
                padding: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .stat-badge-row {
                grid-template-columns: 1fr;
            }
            .page-header h1 {
                font-size: 1.9rem;
            }
            .page-header {
                padding: 6rem 1.25rem 3rem 1.25rem;
            }
        }
        @media (max-width: 768px) {
/* ---- Slide-in nav panel from right ---- */
            #navLinks {
                display: flex;
                position: fixed;
                top: 0;
                right: 0;
                width: min(300px, 85vw);
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                padding: 5rem 2.5rem 3rem;
                gap: 0;
                box-shadow: -8px 0 50px rgba(0, 0, 0, 0.18);
                z-index: 1100;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                visibility: hidden;
            }

            #navLinks.open {
                transform: translateX(0);
                visibility: visible;
            }

            /* The ul inside the panel */
            #navbar .nav-links {
                display: flex;
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            #navbar .nav-links li a {
                display: block;
                color: var(--charcoal) !important;
                font-size: 1.1rem;
                font-weight: 600;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.06);
                transition: color 0.2s ease;
                letter-spacing: 0.01em;
            }

            #navbar .nav-links li a:hover {
                color: var(--red) !important;
            }

            #navbar .nav-links li a::after {
                display: none;
            }

            /* Donate Now button in slide panel — white text */
            #navbar .nav-links .nav-donate-btn {
                display: block;
                background: var(--red);
                color: var(--white) !important;
                text-align: center;
                border-radius: 100px;
                padding: 0.9rem 2rem;
                margin-top: 1.5rem;
                border-bottom: none;
                box-shadow: 0 4px 16px rgba(196, 30, 36, 0.3);
            }

            #navbar .nav-links .nav-donate-btn:hover {
                background: var(--red-dark);
                color: var(--white) !important;
            }

            /* Dark backdrop behind the panel */
            .nav-backdrop {
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.45);
                z-index: 1;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.35s ease, visibility 0.35s ease;
                backdrop-filter: blur(2px);
            }

            .nav-backdrop.active {
                opacity: 1;
                visibility: visible;
                z-index: 0;
            }

            .nav-toggle {
                display: flex;
            }

        }
    

/* === disclosures.html === */

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red: #C41E24;
            --red-dark: #9B1519;
            --red-light: #E8434A;
            --charcoal: #2D2D2D;
            --charcoal-light: #444444;
            --bg: #FAFAFA;
            --bg-warm: #FFF8F0;
            --gold: #D4A853;
            --gold-light: #F0D89A;
            --text: #1A1A1A;
            --text-muted: #6B7280;
            --text-light: #9CA3AF;
            --white: #FFFFFF;
            --border: rgba(0,0,0,0.06);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        /* Skip link — visually hidden until focused */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
        }

        .skip-link:focus {
            position: fixed;
            top: 8px;
            left: 8px;
            width: auto;
            height: auto;
            overflow: visible;
            clip: auto;
            background: var(--red);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            z-index: 99999;
        }

        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #navbar.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.7rem 2rem;
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
        }

        #navbar .nav-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: baseline;
            gap: 0;
        }

        #navbar .nav-logo .logo-up {
            color: var(--red);
        }

        #navbar .nav-logo .logo-lift {
            color: var(--charcoal);
            transition: color 0.4s ease;
        }

        #navbar.scrolled .nav-logo .logo-lift {
            color: var(--charcoal);
        }

        #navbar .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        #navbar .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        #navbar.scrolled .nav-links a {
            color: var(--charcoal);
        }

        #navbar .nav-links a:hover {
            color: var(--charcoal);
        }

        #navbar.scrolled .nav-links a:hover {
            color: var(--red);
        }

        #navbar .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red);
            transition: width 0.3s ease;
        }

        #navbar .nav-links a:hover::after {
            width: 100%;
        }

        .nav-donate-btn {
            background: var(--red);
            color: var(--white) !important;
            padding: 0.65rem 1.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            box-shadow: 0 2px 12px rgba(196, 30, 36, 0.3);
        }

        .nav-donate-btn:hover {
            background: var(--red-dark) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(196, 30, 36, 0.4);
        }

        .nav-donate-btn::after {
            display: none !important;
        }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
            margin-left: auto;
            position: relative;
            z-index: 1200;
            width: 40px;
            height: 40px;
            border-radius: 8px;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--charcoal);
            border-radius: 2px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        #navbar.scrolled .nav-toggle span {
            background: var(--charcoal);
        }

        /* Animate to X when menu is open */
        #navLinks.open~.nav-toggle span:nth-child(1),
        .nav-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        #navLinks.open~.nav-toggle span:nth-child(2),
        .nav-toggle.is-open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        #navLinks.open~.nav-toggle span:nth-child(3),
        .nav-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header Hero */
        .page-header {
            padding: 8rem 0 4rem 0;
            background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
            text-align: center;
        }

        .page-header h1 {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 900;
            color: var(--charcoal);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .page-header p {
            color: var(--text-muted);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Disclosure Table Styles */
        .disclosures-section {
            padding: 6rem 0;
            background: var(--charcoal);
        }

        .intro-text {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 800px;
            margin: 0 auto 3rem auto;
            text-align: center;
        }

        .table-responsive {
            width: 100%;
            overflow-x: auto;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
        }

        .disclosure-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .disclosure-table th, .disclosure-table td {
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--border);
        }

        .disclosure-table th {
            font-family: var(--font-display);
            background: var(--bg-warm);
            color: var(--charcoal);
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .disclosure-table tr:last-child td {
            border-bottom: none;
        }

        .disclosure-table tr {
            transition: background 0.3s ease;
        }

        .disclosure-table tr:hover {
            background: rgba(196, 30, 36, 0.01);
        }

        .doc-title {
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--charcoal);
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .doc-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 400;
            margin-top: 0.2rem;
        }

        .badge {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .badge.active {
            background: rgba(16, 185, 129, 0.1);
            color: #10B981;
        }

        .download-btn {
            background: var(--red);
            color: var(--white);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 10px rgba(196, 30, 36, 0.15);
            transition: all 0.3s ease;
        }

        .download-btn:hover {
            background: var(--red-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 12px rgba(196, 30, 36, 0.25);
        }

        /* SVG icons for docs */
        .doc-svg {
            color: var(--red);
            flex-shrink: 0;
        }

        /* Footer */
        #footer {
            background: var(--charcoal);
            color: var(--white);
            padding: 4rem 2rem 2rem 2rem;
            border-top: 4px solid var(--red);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
        }

        .footer-brand p {
            margin-top: 1rem;
            font-size: 0.88rem;
            color: var(--text-light);
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
        }

        .footer-logo .logo-up {
            color: var(--red);
        }

        .footer-logo .logo-lift {
            color: var(--white);
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-col ul a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

        .footer-col ul a:hover {
            color: var(--red-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .reg-info {
            text-align: center;
        }

        

        

        /* Responsive */
        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

@media (max-width: 768px) {
            #navbar {
                padding: 0.7rem 1.5rem;
            }

            /* Slide-in nav panel from right */
            #navbar .nav-menu {
                display: flex;
                position: fixed;
                top: 0;
                right: 0;
                width: min(300px, 85vw);
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                padding: 5rem 2.5rem 3rem;
                gap: 0;
                box-shadow: -8px 0 50px rgba(0,0,0,0.18);
                z-index: 1100;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                visibility: hidden;
                list-style: none;
                align-items: flex-start;
            }

            #navbar .nav-menu.open {
                transform: translateX(0);
                visibility: visible;
            }

            #navbar .nav-menu li {
                width: 100%;
            }

            #navbar .nav-menu a {
                display: block;
                color: var(--charcoal) !important;
                font-size: 1.1rem;
                font-weight: 600;
                padding: 1rem 0;
                width: 100%;
                border-bottom: 1px solid rgba(0,0,0,0.06);
                transition: color 0.2s ease;
                text-decoration: none;
            }

            #navbar .nav-menu a:hover {
                color: var(--red) !important;
            }

            #navbar .nav-donate-btn {
                display: block !important;
                background: var(--red) !important;
                color: var(--white) !important;
                text-align: center !important;
                border-radius: 100px !important;
                padding: 0.9rem 2rem !important;
                margin-top: 1.5rem !important;
                border-bottom: none !important;
                width: 100% !important;
            }

            
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .disclosure-table th, .disclosure-table td {
                padding: 0.7rem 0.8rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .table-responsive {
                background: transparent;
                border: none;
                box-shadow: none;
                padding: 0;
            }
            .disclosure-table thead {
                display: none;
            }
            .disclosure-table tbody {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
            .disclosure-table tr {
                display: block;
                background: var(--white);
                border: 1px solid var(--border);
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 2px 12px rgba(0,0,0,0.06);
                padding: 0;
            }
            .disclosure-table td {
                display: flex;
                flex-direction: column;
                padding: 0.9rem 1.2rem;
                border-bottom: 1px solid rgba(0,0,0,0.05);
                gap: 0.35rem;
            }
            .disclosure-table td:last-child {
                border-bottom: none;
            }
            .disclosure-table td::before {
                content: attr(data-label);
                font-weight: 700;
                font-size: 0.7rem;
                text-transform: uppercase;
                letter-spacing: 0.08em;
                color: var(--text-light);
            }
        }
        @media (max-width: 768px) {
/* ---- Slide-in nav panel from right ---- */
            #navLinks {
                display: flex;
                position: fixed;
                top: 0;
                right: 0;
                width: min(300px, 85vw);
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                padding: 5rem 2.5rem 3rem;
                gap: 0;
                box-shadow: -8px 0 50px rgba(0, 0, 0, 0.18);
                z-index: 1100;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                visibility: hidden;
            }

            #navLinks.open {
                transform: translateX(0);
                visibility: visible;
            }

            /* The ul inside the panel */
            #navbar .nav-links {
                display: flex;
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            #navbar .nav-links li a {
                display: block;
                color: var(--charcoal) !important;
                font-size: 1.1rem;
                font-weight: 600;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.06);
                transition: color 0.2s ease;
                letter-spacing: 0.01em;
            }

            #navbar .nav-links li a:hover {
                color: var(--red) !important;
            }

            #navbar .nav-links li a::after {
                display: none;
            }

            /* Donate Now button in slide panel — white text */
            #navbar .nav-links .nav-donate-btn {
                display: block;
                background: var(--red);
                color: var(--white) !important;
                text-align: center;
                border-radius: 100px;
                padding: 0.9rem 2rem;
                margin-top: 1.5rem;
                border-bottom: none;
                box-shadow: 0 4px 16px rgba(196, 30, 36, 0.3);
            }

            #navbar .nav-links .nav-donate-btn:hover {
                background: var(--red-dark);
                color: var(--white) !important;
            }

            /* Dark backdrop behind the panel */
            .nav-backdrop {
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.45);
                z-index: 1;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.35s ease, visibility 0.35s ease;
                backdrop-filter: blur(2px);
            }

            .nav-backdrop.active {
                opacity: 1;
                visibility: visible;
                z-index: 0;
            }

            .nav-toggle {
                display: flex;
            }

        }
    

/* === volunteer.html === */

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red: #C41E24;
            --red-dark: #9B1519;
            --red-light: #E8434A;
            --charcoal: #2D2D2D;
            --charcoal-light: #444444;
            --bg: #FAFAFA;
            --bg-warm: #FFF8F0;
            --gold: #D4A853;
            --gold-light: #F0D89A;
            --text: #1A1A1A;
            --text-muted: #6B7280;
            --text-light: #9CA3AF;
            --white: #FFFFFF;
            --border: rgba(0,0,0,0.06);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        /* Skip link — visually hidden until focused */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
        }

        .skip-link:focus {
            position: fixed;
            top: 8px;
            left: 8px;
            width: auto;
            height: auto;
            overflow: visible;
            clip: auto;
            background: var(--red);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            z-index: 99999;
        }

        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #navbar.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.7rem 2rem;
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
        }

        #navbar .nav-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: baseline;
            gap: 0;
        }

        #navbar .nav-logo .logo-up {
            color: var(--red);
        }

        #navbar .nav-logo .logo-lift {
            color: var(--charcoal);
            transition: color 0.4s ease;
        }

        #navbar.scrolled .nav-logo .logo-lift {
            color: var(--charcoal);
        }

        #navbar .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        #navbar .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        #navbar.scrolled .nav-links a {
            color: var(--charcoal);
        }

        #navbar .nav-links a:hover {
            color: var(--charcoal);
        }

        #navbar.scrolled .nav-links a:hover {
            color: var(--red);
        }

        #navbar .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red);
            transition: width 0.3s ease;
        }

        #navbar .nav-links a:hover::after {
            width: 100%;
        }

        .nav-donate-btn {
            background: var(--red);
            color: var(--white) !important;
            padding: 0.65rem 1.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            box-shadow: 0 2px 12px rgba(196, 30, 36, 0.3);
        }

        .nav-donate-btn:hover {
            background: var(--red-dark) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(196, 30, 36, 0.4);
        }

        .nav-donate-btn::after {
            display: none !important;
        }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
            margin-left: auto;
            position: relative;
            z-index: 1200;
            width: 40px;
            height: 40px;
            border-radius: 8px;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--charcoal);
            border-radius: 2px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        #navbar.scrolled .nav-toggle span {
            background: var(--charcoal);
        }

        /* Animate to X when menu is open */
        #navLinks.open~.nav-toggle span:nth-child(1),
        .nav-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        #navLinks.open~.nav-toggle span:nth-child(2),
        .nav-toggle.is-open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        #navLinks.open~.nav-toggle span:nth-child(3),
        .nav-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header Hero */
        .page-header {
            padding: 8rem 0 4rem 0;
            background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
            text-align: center;
        }

        .page-header h1 {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 900;
            color: var(--charcoal);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .page-header p {
            color: var(--text-muted);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Form Layout */
        .form-section {
            padding: 5rem 0;
            background: var(--charcoal);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .form-info h2 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .form-info p {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 2rem;
        }

        .volunteer-guidelines {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .volunteer-guidelines li {
            display: flex;
            gap: 1rem;
        }

        .guideline-num {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(196, 30, 36, 0.08);
            color: var(--red);
            font-family: var(--font-display);
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .guideline-text h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.3rem;
        }

        .guideline-text p {
            font-size: 0.92rem;
            margin-bottom: 0;
            color: var(--text-muted);
        }

        /* Card Form */
        .form-panel {
            background: var(--bg-warm);
            border: 1px solid rgba(212, 168, 83, 0.15);
            border-radius: var(--radius-lg);
            padding: 3.5rem;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-group label {
            display: block;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .form-control {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: var(--radius-sm);
            background: var(--white);
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(196, 30, 36, 0.08);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.92rem;
            color: var(--text-muted);
            cursor: pointer;
        }

        .checkbox-label input {
            cursor: pointer;
            accent-color: var(--red);
        }

        .submit-btn {
            background: var(--red);
            color: var(--white);
            border: none;
            width: 100%;
            padding: 1rem 2rem;
            border-radius: 100px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            box-shadow: 0 6px 15px rgba(196, 30, 36, 0.2);
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            background: var(--red-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(196, 30, 36, 0.3);
        }

        /* Success Animation Dialog */
        .success-overlay {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-warm);
            border-radius: var(--radius-lg);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            padding: 3rem;
            z-index: 10;
            animation: fadeIn 0.4s ease forwards;
        }

        .success-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.1);
            color: #10B981;
            font-size: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        .success-overlay h3 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .success-overlay p {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 320px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes popIn {
            from { transform: scale(0); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        /* Footer */
        #footer {
            background: var(--charcoal);
            color: var(--white);
            padding: 4rem 2rem 2rem 2rem;
            border-top: 4px solid var(--red);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
        }

        .footer-brand p {
            margin-top: 1rem;
            font-size: 0.88rem;
            color: var(--text-light);
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
        }

        .footer-logo .logo-up {
            color: var(--red);
        }

        .footer-logo .logo-lift {
            color: var(--white);
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-col ul a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

        .footer-col ul a:hover {
            color: var(--red-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .reg-info {
            text-align: center;
        }

        

        

        /* Responsive */
        @media (max-width: 900px) {
            .form-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

@media (max-width: 768px) {
            #navbar {
                padding: 0.7rem 1.5rem;
            }

            /* Slide-in nav panel from right */
            #navbar .nav-menu {
                display: flex;
                position: fixed;
                top: 0;
                right: 0;
                width: min(300px, 85vw);
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                padding: 5rem 2.5rem 3rem;
                gap: 0;
                box-shadow: -8px 0 50px rgba(0,0,0,0.18);
                z-index: 1100;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                visibility: hidden;
                list-style: none;
                align-items: flex-start;
            }

            #navbar .nav-menu.open {
                transform: translateX(0);
                visibility: visible;
            }

            #navbar .nav-menu li {
                width: 100%;
            }

            #navbar .nav-menu a {
                display: block;
                color: var(--charcoal) !important;
                font-size: 1.1rem;
                font-weight: 600;
                padding: 1rem 0;
                width: 100%;
                border-bottom: 1px solid rgba(0,0,0,0.06);
                transition: color 0.2s ease;
                text-decoration: none;
            }

            #navbar .nav-menu a:hover {
                color: var(--red) !important;
            }

            #navbar .nav-donate-btn {
                display: block !important;
                background: var(--red) !important;
                color: var(--white) !important;
                text-align: center !important;
                border-radius: 100px !important;
                padding: 0.9rem 2rem !important;
                margin-top: 1.5rem !important;
                border-bottom: none !important;
                width: 100% !important;
            }

            
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .form-panel {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .checkbox-group {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
/* ---- Slide-in nav panel from right ---- */
            #navLinks {
                display: flex;
                position: fixed;
                top: 0;
                right: 0;
                width: min(300px, 85vw);
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                padding: 5rem 2.5rem 3rem;
                gap: 0;
                box-shadow: -8px 0 50px rgba(0, 0, 0, 0.18);
                z-index: 1100;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                visibility: hidden;
            }

            #navLinks.open {
                transform: translateX(0);
                visibility: visible;
            }

            /* The ul inside the panel */
            #navbar .nav-links {
                display: flex;
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            #navbar .nav-links li a {
                display: block;
                color: var(--charcoal) !important;
                font-size: 1.1rem;
                font-weight: 600;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.06);
                transition: color 0.2s ease;
                letter-spacing: 0.01em;
            }

            #navbar .nav-links li a:hover {
                color: var(--red) !important;
            }

            #navbar .nav-links li a::after {
                display: none;
            }

            /* Donate Now button in slide panel — white text */
            #navbar .nav-links .nav-donate-btn {
                display: block;
                background: var(--red);
                color: var(--white) !important;
                text-align: center;
                border-radius: 100px;
                padding: 0.9rem 2rem;
                margin-top: 1.5rem;
                border-bottom: none;
                box-shadow: 0 4px 16px rgba(196, 30, 36, 0.3);
            }

            #navbar .nav-links .nav-donate-btn:hover {
                background: var(--red-dark);
                color: var(--white) !important;
            }

            /* Dark backdrop behind the panel */
            .nav-backdrop {
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.45);
                z-index: 1;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.35s ease, visibility 0.35s ease;
                backdrop-filter: blur(2px);
            }

            .nav-backdrop.active {
                opacity: 1;
                visibility: visible;
                z-index: 0;
            }

            .nav-toggle {
                display: flex;
            }

        }
    

/* === privacy-policy.html === */

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red: #C41E24;
            --red-dark: #9B1519;
            --red-light: #E8434A;
            --charcoal: #2D2D2D;
            --charcoal-light: #444444;
            --bg: #FAFAFA;
            --bg-warm: #FFF8F0;
            --gold: #D4A853;
            --gold-light: #F0D89A;
            --text: #1A1A1A;
            --text-muted: #6B7280;
            --text-light: #9CA3AF;
            --white: #FFFFFF;
            --border: rgba(0,0,0,0.06);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Header Style */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0.7rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 20px rgba(0,0,0,0.06);
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: baseline;
        }

        .nav-logo .logo-up {
            color: var(--red);
        }

        .nav-logo .logo-lift {
            color: var(--charcoal);
        }

        .nav-home-btn {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-home-btn:hover {
            color: var(--red);
        }

        /* Layout Grid */
        .policy-container {
            max-width: 1200px;
            margin: 7rem auto 4rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Sidebar Style */
        .sidebar {
            position: sticky;
            top: 6rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .sidebar h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border);
        }

        .sidebar ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .sidebar ul a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: block;
            padding: 0.4rem 0.6rem;
            border-radius: var(--radius-sm);
        }

        .sidebar ul a:hover {
            color: var(--red);
            background: rgba(196, 30, 36, 0.04);
        }

        .sidebar ul li.active a {
            color: var(--red);
            background: rgba(196, 30, 36, 0.06);
            font-weight: 600;
        }

        /* Content Panel Style */
        .content-panel {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 3rem;
            box-shadow: var(--shadow-sm);
        }

        .content-panel h1 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--charcoal);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .last-updated {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .content-panel h2 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--charcoal);
            margin: 2.2rem 0 1rem 0;
        }

        .content-panel p {
            color: var(--text-muted);
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }

        .content-panel ul {
            list-style: none;
            margin-bottom: 1.5rem;
            padding-left: 1rem;
        }

        .content-panel ul li {
            position: relative;
            color: var(--text-muted);
            margin-bottom: 0.6rem;
            font-size: 0.95rem;
            padding-left: 1.5rem;
        }

        .content-panel ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--red);
            font-weight: bold;
        }

        /* Footer Style */
        #footer {
            background: var(--charcoal);
            color: var(--white);
            padding: 4rem 2rem 2rem 2rem;
            margin-top: 4rem;
            border-top: 4px solid var(--red);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
        }

        .footer-brand p {
            margin-top: 1rem;
            font-size: 0.88rem;
            color: var(--text-light);
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
        }

        .footer-logo .logo-up {
            color: var(--red);
        }

        .footer-logo .logo-lift {
            color: var(--white);
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-col ul a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

        .footer-col ul a:hover {
            color: var(--red-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .reg-info {
            text-align: right;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .policy-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                position: relative;
                top: 0;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .reg-info {
                text-align: center;
            }
            .content-panel {
                padding: 1.5rem;
            }
        }
    

/* === disclaimer.html === */

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red: #C41E24;
            --red-dark: #9B1519;
            --red-light: #E8434A;
            --charcoal: #2D2D2D;
            --charcoal-light: #444444;
            --bg: #FAFAFA;
            --bg-warm: #FFF8F0;
            --gold: #D4A853;
            --gold-light: #F0D89A;
            --text: #1A1A1A;
            --text-muted: #6B7280;
            --text-light: #9CA3AF;
            --white: #FFFFFF;
            --border: rgba(0,0,0,0.06);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Header Style */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0.7rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 20px rgba(0,0,0,0.06);
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: baseline;
        }

        .nav-logo .logo-up {
            color: var(--red);
        }

        .nav-logo .logo-lift {
            color: var(--charcoal);
        }

        .nav-home-btn {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-home-btn:hover {
            color: var(--red);
        }

        /* Layout Grid */
        .policy-container {
            max-width: 1200px;
            margin: 7rem auto 4rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Sidebar Style */
        .sidebar {
            position: sticky;
            top: 6rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .sidebar h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border);
        }

        .sidebar ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .sidebar ul a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: block;
            padding: 0.4rem 0.6rem;
            border-radius: var(--radius-sm);
        }

        .sidebar ul a:hover {
            color: var(--red);
            background: rgba(196, 30, 36, 0.04);
        }

        .sidebar ul li.active a {
            color: var(--red);
            background: rgba(196, 30, 36, 0.06);
            font-weight: 600;
        }

        /* Content Panel Style */
        .content-panel {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 3rem;
            box-shadow: var(--shadow-sm);
        }

        .content-panel h1 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--charcoal);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .last-updated {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .content-panel h2 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--charcoal);
            margin: 2.2rem 0 1rem 0;
        }

        .content-panel p {
            color: var(--text-muted);
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }

        .content-panel ul {
            list-style: none;
            margin-bottom: 1.5rem;
            padding-left: 1rem;
        }

        .content-panel ul li {
            position: relative;
            color: var(--text-muted);
            margin-bottom: 0.6rem;
            font-size: 0.95rem;
            padding-left: 1.5rem;
        }

        .content-panel ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--red);
            font-weight: bold;
        }

        /* Footer Style */
        #footer {
            background: var(--charcoal);
            color: var(--white);
            padding: 4rem 2rem 2rem 2rem;
            margin-top: 4rem;
            border-top: 4px solid var(--red);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
        }

        .footer-brand p {
            margin-top: 1rem;
            font-size: 0.88rem;
            color: var(--text-light);
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
        }

        .footer-logo .logo-up {
            color: var(--red);
        }

        .footer-logo .logo-lift {
            color: var(--white);
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-col ul a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

        .footer-col ul a:hover {
            color: var(--red-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .reg-info {
            text-align: right;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .policy-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                position: relative;
                top: 0;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .reg-info {
                text-align: center;
            }
            .content-panel {
                padding: 1.5rem;
            }
        }
    

/* === terms-conditions.html === */

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red: #C41E24;
            --red-dark: #9B1519;
            --red-light: #E8434A;
            --charcoal: #2D2D2D;
            --charcoal-light: #444444;
            --bg: #FAFAFA;
            --bg-warm: #FFF8F0;
            --gold: #D4A853;
            --gold-light: #F0D89A;
            --text: #1A1A1A;
            --text-muted: #6B7280;
            --text-light: #9CA3AF;
            --white: #FFFFFF;
            --border: rgba(0,0,0,0.06);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Header Style */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0.7rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 20px rgba(0,0,0,0.06);
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: baseline;
        }

        .nav-logo .logo-up {
            color: var(--red);
        }

        .nav-logo .logo-lift {
            color: var(--charcoal);
        }

        .nav-home-btn {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-home-btn:hover {
            color: var(--red);
        }

        /* Layout Grid */
        .policy-container {
            max-width: 1200px;
            margin: 7rem auto 4rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Sidebar Style */
        .sidebar {
            position: sticky;
            top: 6rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .sidebar h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border);
        }

        .sidebar ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .sidebar ul a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: block;
            padding: 0.4rem 0.6rem;
            border-radius: var(--radius-sm);
        }

        .sidebar ul a:hover {
            color: var(--red);
            background: rgba(196, 30, 36, 0.04);
        }

        .sidebar ul li.active a {
            color: var(--red);
            background: rgba(196, 30, 36, 0.06);
            font-weight: 600;
        }

        /* Content Panel Style */
        .content-panel {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 3rem;
            box-shadow: var(--shadow-sm);
        }

        .content-panel h1 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--charcoal);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .last-updated {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .content-panel h2 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--charcoal);
            margin: 2.2rem 0 1rem 0;
        }

        .content-panel p {
            color: var(--text-muted);
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }

        .content-panel ul {
            list-style: none;
            margin-bottom: 1.5rem;
            padding-left: 1rem;
        }

        .content-panel ul li {
            position: relative;
            color: var(--text-muted);
            margin-bottom: 0.6rem;
            font-size: 0.95rem;
            padding-left: 1.5rem;
        }

        .content-panel ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--red);
            font-weight: bold;
        }

        /* Footer Style */
        #footer {
            background: var(--charcoal);
            color: var(--white);
            padding: 4rem 2rem 2rem 2rem;
            margin-top: 4rem;
            border-top: 4px solid var(--red);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
        }

        .footer-brand p {
            margin-top: 1rem;
            font-size: 0.88rem;
            color: var(--text-light);
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
        }

        .footer-logo .logo-up {
            color: var(--red);
        }

        .footer-logo .logo-lift {
            color: var(--white);
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-col ul a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

        .footer-col ul a:hover {
            color: var(--red-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .reg-info {
            text-align: right;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .policy-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                position: relative;
                top: 0;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .reg-info {
                text-align: center;
            }
            .content-panel {
                padding: 1.5rem;
            }
        }
    

/* === copyright-notice.html === */

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red: #C41E24;
            --red-dark: #9B1519;
            --red-light: #E8434A;
            --charcoal: #2D2D2D;
            --charcoal-light: #444444;
            --bg: #FAFAFA;
            --bg-warm: #FFF8F0;
            --gold: #D4A853;
            --gold-light: #F0D89A;
            --text: #1A1A1A;
            --text-muted: #6B7280;
            --text-light: #9CA3AF;
            --white: #FFFFFF;
            --border: rgba(0,0,0,0.06);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Header Style */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0.7rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 20px rgba(0,0,0,0.06);
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: baseline;
        }

        .nav-logo .logo-up {
            color: var(--red);
        }

        .nav-logo .logo-lift {
            color: var(--charcoal);
        }

        .nav-home-btn {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-home-btn:hover {
            color: var(--red);
        }

        /* Layout Grid */
        .policy-container {
            max-width: 1200px;
            margin: 7rem auto 4rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Sidebar Style */
        .sidebar {
            position: sticky;
            top: 6rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .sidebar h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border);
        }

        .sidebar ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .sidebar ul a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: block;
            padding: 0.4rem 0.6rem;
            border-radius: var(--radius-sm);
        }

        .sidebar ul a:hover {
            color: var(--red);
            background: rgba(196, 30, 36, 0.04);
        }

        .sidebar ul li.active a {
            color: var(--red);
            background: rgba(196, 30, 36, 0.06);
            font-weight: 600;
        }

        /* Content Panel Style */
        .content-panel {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 3rem;
            box-shadow: var(--shadow-sm);
        }

        .content-panel h1 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--charcoal);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .last-updated {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .content-panel h2 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--charcoal);
            margin: 2.2rem 0 1rem 0;
        }

        .content-panel p {
            color: var(--text-muted);
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }

        .content-panel ul {
            list-style: none;
            margin-bottom: 1.5rem;
            padding-left: 1rem;
        }

        .content-panel ul li {
            position: relative;
            color: var(--text-muted);
            margin-bottom: 0.6rem;
            font-size: 0.95rem;
            padding-left: 1.5rem;
        }

        .content-panel ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--red);
            font-weight: bold;
        }

        /* Footer Style */
        #footer {
            background: var(--charcoal);
            color: var(--white);
            padding: 4rem 2rem 2rem 2rem;
            margin-top: 4rem;
            border-top: 4px solid var(--red);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
        }

        .footer-brand p {
            margin-top: 1rem;
            font-size: 0.88rem;
            color: var(--text-light);
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
        }

        .footer-logo .logo-up {
            color: var(--red);
        }

        .footer-logo .logo-lift {
            color: var(--white);
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-col ul a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

        .footer-col ul a:hover {
            color: var(--red-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .reg-info {
            text-align: right;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .policy-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                position: relative;
                top: 0;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .reg-info {
                text-align: center;
            }
            .content-panel {
                padding: 1.5rem;
            }
        }
    




/* === Contrast & Reveal Fixes === */
.hero-text-panel h1 {
    color: var(--white) !important;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6) !important;
}

.hero-text-panel .hero-stat {
    color: var(--white) !important;
    text-shadow: 0 4px 30px rgba(196, 30, 36, 0.6) !important;
}

#about .section-title {
    color: var(--white) !important;
}

#about .about-content .about-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

#about .about-value {
    color: rgba(255, 255, 255, 0.85) !important;
}

.reveal {
            opacity: 1 !important;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active,
.reveal.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


/* Force all reveal elements to be 100% visible by default */
.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}



/* ============================================================
   CRITICAL COMPONENT & LAYOUT FIXES
   ============================================================ */

/* 1. Policy Pages Grid Layout — Prevent Sidebar Overlapping */
.policy-container {
    max-width: 1200px !important;
    margin: 120px auto 60px !important;
    padding: 0 2rem !important;
    display: flex !important;
    grid-template-columns: 280px 1fr !important;
    gap: 3rem !important;
    align-items: start !important;
}
@media (max-width: 900px){
	.policy-container{
		flex-direction:column;
	}
}
.policy-container > aside.sidebar {
    grid-column: 1 !important;
    position: sticky ;
    top: 100px;
    width: 100%;
}
@media (max-width: 900px){

	.policy-container > aside.sidebar{
position:relative;
		top:0;
width: 100%;
}
}

.policy-container > .content-panel,
.policy-container > main {
    grid-column: 2 !important;
    min-width: 0 !important;
}

/* 2. Counter Animation Visibility & Contrast */
.stat-num,
[data-count] {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #FFFFFF !important;
    line-height: 1;
    display: inline-block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    margin-top: 0.5rem !important;
}

/* 3. Dark Background Text & Icon Alignment */
#about,
#differentiators,
#impact-stats,
.dark-section {
    background: var(--charcoal) !important;
    color: #FFFFFF !important;
}

#about p,
#about span,
#about div,
#about .about-text,
#about .section-subtitle,
#differentiators p,
#differentiators span,
#differentiators .diff-card p,
.dark-section p {
    color: rgba(255, 255, 255, 0.9) !important;
}

#about h1, #about h2, #about h3, #about h4,
#differentiators h1, #differentiators h2, #differentiators h3, #differentiators h4,
#impact-stats h1, #impact-stats h2, #impact-stats h3, #impact-stats h4 {
    color: #FFFFFF !important;
}

#about .section-tag,
#differentiators .section-tag {
    color: var(--red-light) !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

/* Icon Alignment in About Values Grid */
.about-values {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    margin-top: 2.5rem !important;
}

.about-value {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1.25rem !important;
}

.about-value svg {
    flex-shrink: 0 !important;
    width: 32px !important;
    height: 32px !important;
    margin-top: 2px !important;
    color: var(--red-light) !important;
}

.about-value div,
.about-value p,
.about-value span {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* 4. Force Reveal Visibility */
.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}



/* ============================================================
   WHITE CARDS CONTRAST FIX IN ABOUT SECTION
   ============================================================ */
.about-card-stack .about-card,
.about-card {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.about-card .card-label {
    color: #C41E24 !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    margin-bottom: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

.about-card h3 {
    color: #2D2D2D !important;
    font-family: var(--font-display), sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.6rem !important;
}

.about-card p {
    color: #4B5563 !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
}



/* ============================================================
   VOLUNTEER PAGE & DARK SECTIONS HIGH-CONTRAST WHITE TEXT FIX
   ============================================================ */
.form-info,
.form-info h2,
.form-info h3,
.form-info h4,
.guideline-text h4,
.volunteer-guidelines h4 {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}

.form-info p,
.guideline-text p,
.volunteer-guidelines p,
.volunteer-guidelines li {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

.guideline-num {
    background: #C41E24 !important;
    color: #FFFFFF !important;
    font-weight: 800 !important;
}



/* ============================================================
   FINAL VERIFIED TEXT CONTRAST & VISIBILITY RULES
   ============================================================ */

/* A. WHITE CARDS (Mission & Vision) — MUST BE BLACK TEXT */
.about-card-stack .about-card,
.about-card {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.about-card .card-label {
    color: #C41E24 !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    margin-bottom: 0.5rem !important;
}

.about-card h3 {
    color: #111111 !important;
    font-family: var(--font-display), sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.6rem !important;
}

.about-card p {
    color: #333333 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

/* B. DARK SECTIONS (About Us, Volunteer, Hero, Differentiators, Stats) — MUST BE 100% PURE WHITE TEXT */
#about,
#differentiators,
#impact-stats,
.form-section,
.page-header,
.dark-section {
    background: #2D2D2D !important;
    color: #FFFFFF !important;
}

#about p,
#about span,
#about li,
#about .about-text,
#about .section-subtitle,
#differentiators p,
#differentiators span,
#impact-stats p,
#impact-stats span,
.form-info p,
.guideline-text p,
.volunteer-guidelines p,
.volunteer-guidelines li,
.page-header p,
.about-text,
.about-values p,
.about-values div,
.about-values span {
    color: #FFFFFF !important;
}

#about h1, #about h2, #about h3, #about h4,
#differentiators h1, #differentiators h2, #differentiators h3, #differentiators h4,
#impact-stats h1, #impact-stats h2, #impact-stats h3, #impact-stats h4,
.form-info h1, .form-info h2, .form-info h3, .form-info h4,
.guideline-text h4, .page-header h1 {
    color: #FFFFFF !important;
}

.about-values div h4,
.about-value h4 {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}

/* C. FORCE REVEAL OPACITY */
.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* D. COUNTER NUMBER VISIBILITY */
.stat-number,
[data-count] {
    color: #FFFFFF !important;
    font-weight: 800 !important;
}



/* ============================================================
   100% PURE WHITE TEXT & PURE BLACK CARD OVERRIDES
   ============================================================ */

/* A. WHITE CARDS (Mission & Vision) — MUST BE BLACK TEXT */
.about-card-stack .about-card,
.about-card {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.about-card .card-label {
    color: #C41E24 !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    margin-bottom: 0.5rem !important;
}

.about-card h3 {
    color: #000000 !important;
    font-family: var(--font-display), sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.6rem !important;
}

.about-card p {
    color: #111111 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

/* B. DARK SECTIONS (About Us, Volunteer, Hero, Differentiators, Stats) — MUST BE 100% PURE WHITE TEXT */
#about,
#differentiators,
#impact-stats,
.form-section,
.page-header,
.dark-section,
body.page-template-page-about-us main,
body.page-template-page-volunteer main {
    background: #2D2D2D !important;
    color: #FFFFFF !important;
}

#about p,
#about span,
#about li,
#about .about-text,
#about .section-subtitle,
#differentiators p,
#differentiators span,
#impact-stats p,
#impact-stats span,
.form-info p,
.guideline-text p,
.volunteer-guidelines p,
.volunteer-guidelines li,
.page-header p,
.about-text,
.about-values p,
.about-values div,
.about-values span {
    color: #FFFFFF !important;
}

#about h1, #about h2, #about h3, #about h4,
#differentiators h1, #differentiators h2, #differentiators h3, #differentiators h4,
#impact-stats h1, #impact-stats h2, #impact-stats h3, #impact-stats h4,
.form-info h1, .form-info h2, .form-info h3, .form-info h4,
.guideline-text h4, .page-header h1 {
    color: #FFFFFF !important;
}

.about-values div h4,
.about-value h4 {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}

/* C. FORCE REVEAL OPACITY */
.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* D. COUNTER NUMBER VISIBILITY */
.stat-number,
[data-count] {
    color: #FFFFFF !important;
    font-weight: 800 !important;
}



/* ============================================================
   MOBILE MENU SLIDE-IN PANEL & TOGGLE STYLES
   ============================================================ */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 32px !important;
        height: 24px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 1200 !important;
        position: relative !important;
        padding: 0 !important;
    }
    
    .nav-toggle span {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        background: #2D2D2D !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
    }

    #navbar.scrolled .nav-toggle span {
        background: #2D2D2D !important;
    }
    
    #navLinks {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 280px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        background: #FFFFFF !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.25) !important;
        z-index: 1100 !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 5rem 2rem 2rem !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        visibility: hidden !important;
    }
    
    #navLinks.open {
        transform: translateX(0) !important;
        visibility: visible !important;
    }
    
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .nav-links a {
        color: #2D2D2D !important;
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        display: block !important;
        padding: 0.5rem 0 !important;
        border-bottom: 1px solid #F3F4F6 !important;
    }

    .nav-links a.nav-donate-btn {
        background: #C41E24 !important;
        color: #FFFFFF !important;
        text-align: center !important;
        border-radius: 8px !important;
        margin-top: 1rem !important;
        border-bottom: none !important;
    }
    
    .nav-backdrop {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 1 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease !important;
    }
    
    .nav-backdrop.active {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}



/* ============================================================
   ULTIMATE MOBILE MENU OVERRIDES
   ============================================================ */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 32px !important;
        height: 24px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 1200 !important;
        position: relative !important;
        padding: 0 !important;
    }
    
    .nav-toggle span {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        background: #2D2D2D !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
    }

    #navbar.scrolled .nav-toggle span {
        background: #2D2D2D !important;
    }
    
    .nav-menu-wrapper,
    #navLinks {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 280px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        background: #FFFFFF !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.25) !important;
        z-index: 1100 !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 5rem 2rem 2rem !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        visibility: hidden !important;
    }
    
    .nav-menu-wrapper.open,
    #navLinks.open {
        transform: translateX(0) !important;
        visibility: visible !important;
    }
    
    .nav-links,
    .nav-menu-wrapper ul,
    #navLinks ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .nav-links a,
    .nav-menu-wrapper a,
    #navLinks a {
        color: #2D2D2D !important;
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        display: block !important;
        padding: 0.5rem 0 !important;
        border-bottom: 1px solid #F3F4F6 !important;
    }

    .nav-links a.nav-donate-btn,
    .nav-menu-wrapper a.nav-donate-btn,
    #navLinks a.nav-donate-btn {
        background: #C41E24 !important;
        color: #FFFFFF !important;
        text-align: center !important;
        border-radius: 8px !important;
        margin-top: 1rem !important;
        border-bottom: none !important;
    }
    
    .nav-backdrop {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 1 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease !important;
    }
    
    .nav-backdrop.active {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}
