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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            scroll-behavior: smooth;
        }

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

        /* Header */
        header {
            background: transparent;
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            width: 120px;
            transition: all 0.3s ease;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        /* Hide mobile drawer close button on desktop by default */
        .nav-close {
            display: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: #a8d5ba;
        }

        /* Hover state for dark text (when header is white) */
        .nav-links a.dark-text:hover {
            color: #4a7c59;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(44, 85, 48, 0.1), rgb(180 255 203 / 20%)), 
                        url('https://agrirelief.co.za/photos/hero2.webp');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero_golfday {
            background: url('../photos/ARF_Banner.png');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero_golfday::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero_golfday > * {
            position: relative;
            z-index: 2;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.45);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .main-hero-txt{
            display: flex;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .hero-subtitle {
            font-size: 2rem;
            margin-bottom: 2rem;
            font-weight: bold;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: #f7941d;
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            border: none;
        }

        .cta-button:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        /* Section Styling */
        section {
            padding: 80px 0;
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            /* color: #8dc63f; */
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background:
                radial-gradient(1200px 400px at 50% -200px, rgba(141,198,63,0.12), transparent 60%),
                #f8fffe;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3rem;
            align-items: start;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #2c3e50;
            position: relative;
        }

        .about-text h3::after {
            content: '';
            display: block;
            width: 64px;
            height: 4px;
            margin-top: 10px;
            border-radius: 999px;
            background: linear-gradient(90deg, #8dc63f, #f7941d);
        }

        .about-text p {
            margin-bottom: 1.25rem;
            font-size: 1.05rem;
            line-height: 1.8;
            color: #425466;
        }

        .about-text p:first-of-type {
            font-size: 1.12rem;
            color: #2c3e50;
        }

        .highlight-box {
            background: #fff;
            padding: 2rem;
            border-radius: 18px;
            border: 1px solid #eef5ee;
            box-shadow: 0 12px 40px rgba(0,0,0,0.06);
            position: relative;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            border-radius: 18px 18px 0 0;
            background: linear-gradient(90deg, #8dc63f, #f7941d);
        }

        .highlight-box h3 {
            color: #2c3e50;
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }

        .highlight-box p {
            color: #4b5b6a;
            line-height: 1.75;
            margin-bottom: 1rem;
        }

        .highlight-box p strong {
            color: #2c3e50;
        }

        /* Emphasize gallery CTA */
        #galleryBtn {
            background: linear-gradient(135deg, #8dc63f, #6ba83a);
            box-shadow: 0 10px 30px rgba(77, 160, 60, 0.35);
        }

        #galleryBtn:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 40px rgba(77, 160, 60, 0.45);
        }

        /* Video Sections */
        .video-section {
            background: white;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .video-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-card:hover {
            transform: translateY(0);
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 200px;
            background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 0.9rem;
        }

        .video-placeholder svg {
            width: 60px;
            height: 60px;
            margin-bottom: 1rem;
            opacity: 0.6;
        }

        .video-info {
            padding: 1.5rem;
        }

        .video-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #8dc63f;
        }

        .video-info p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Featured Video Section */
        .featured-video {
            /* background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%); */
            padding: 100px 0;
        }

        .video-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4rem;
            gap: 2rem;
        }

        .video-header-content {
            flex: 1;
        }

        .video-header-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #8dc63f;
            line-height: 1.2;
        }

        .video-header-content p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.6;
        }

        .video-header-icon {
            flex-shrink: 0;
            opacity: 0.8;
        }

        .modern-video-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .video-wrapper {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            /* box-shadow: 0 20px 60px rgba(0,0,0,0.15); */
            /* background: #000; */
        }

        .video-wrapper video {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }

        .video-wrapper:hover .video-overlay {
            opacity: 0;
        }

        .play-button {
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .video-wrapper:hover .play-button {
            transform: scale(0.8);
        }

        .video-info-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            position: relative;
        }

        /* Hide video controls completely */
        video::-webkit-media-controls {
            display: none !important;
        }

        video::-webkit-media-controls-panel {
            display: none !important;
        }

        video::-webkit-media-controls-play-button {
            display: none !important;
        }

        video::-webkit-media-controls-timeline {
            display: none !important;
        }

        video::-webkit-media-controls-current-time-display {
            display: none !important;
        }

        video::-webkit-media-controls-time-remaining-display {
            display: none !important;
        }

        video::-webkit-media-controls-mute-button {
            display: none !important;
        }

        video::-webkit-media-controls-volume-slider {
            display: none !important;
        }

        video::-webkit-media-controls-fullscreen-button {
            display: none !important;
        }

        video::-webkit-media-controls-overlay-play-button {
            display: none !important;
        }

        /* Donation Card Styles */
        .donate-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            overflow: hidden;
            max-width: 800px;
            width: 100%;
        }

        .modal-donate-card {
            max-width: 700px;
        }

        .qr-code-section {
            flex: 1;
            padding: 2rem;
            text-align: center;
            background: #f8f9fa;
        }

        .modal-qr-section {
            padding: 1.5rem;
        }

        .or-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #8dc63f;
            color: white;
            font-weight: bold;
            font-size: 1rem;
            padding: 0.2rem 0.1rem;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            min-height: 300px;
            width: 2px;
        }

        .modal-or-divider {
            font-size: 0.8rem;
            padding: 0.1rem 0.05rem;
            min-height: 250px;
        }

        .banking-details-section {
            flex: 1;
            padding: 2rem;
            background: #f8f9fa;
        }

        .modal-banking-section {
            padding: 1.5rem;
            height: -webkit-fill-available;
        }

        /* Modern Mobile Navigation */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.3rem;
            z-index: 1001;
            width: 40px;
            height: 25px;
            justify-content: space-between;
        }

        /* Show hamburger on mobile */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }

        .hamburger span {
            width: 18px;
            height: 2px;
            background: #8dc63f;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 1px;
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

        /* Mobile Drawer Menu */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                width: 300px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
                flex-direction: column;
                padding: 80px 0 1rem 0; /* space for fixed header */
                transform: translateX(100%);
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1100;
                border-left: 1px solid rgba(0, 0, 0, 0.06);
            }

            .nav-links.active {
                transform: translateX(0);
                display: flex;
            }

            .nav-links li {
                margin: 0;
                opacity: 0;
                transform: translateY(-10px);
                transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateY(0);
            }

            .nav-links li:nth-child(1) { transition-delay: 0.05s; }
            .nav-links li:nth-child(2) { transition-delay: 0.1s; }
            .nav-links li:nth-child(3) { transition-delay: 0.15s; }
            .nav-links li:nth-child(4) { transition-delay: 0.2s; }
            .nav-links li:nth-child(5) { transition-delay: 0.25s; }
            .nav-links li:nth-child(6) { transition-delay: 0.3s; }
            .nav-links li:nth-child(7) { transition-delay: 0.35s; }

            .nav-links a {
                font-size: 0.9rem;
                font-weight: 500;
                color: #2c3e50 !important;
                text-decoration: none;
                padding: 0.6rem 1.2rem;
                border-radius: 8px;
                transition: all 0.2s ease;
                display: block;
                margin: 0.2rem 0.8rem;
            }

            .nav-links a:hover {
                background: rgba(141, 198, 63, 0.1);
                color: #8dc63f;
                transform: translateX(4px);
            }

            /* Modern hamburger positioning */
            .hamburger.active {
                position: relative;
            }

            /* Drawer close button */
            .nav-links .nav-close {
                position: absolute;
                top: 14px;
                right: 12px;
                width: 36px;
                height: 36px;
                border-radius: 50%;
                border: 1px solid rgba(0,0,0,0.08);
                background: rgba(0,0,0,0.04);
                color: #2c3e50;
                font-size: 20px;
                line-height: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: background 0.2s ease, transform 0.2s ease;
            }

            .nav-links .nav-close:hover {
                background: rgba(0,0,0,0.07);
                transform: scale(1.05);
            }

            /* Ensure close button is visible on mobile drawer */
            .nav-close { display: flex; }

            /* Backdrop for drawer */
            .nav-backdrop {
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.35);
                backdrop-filter: blur(2px);
                z-index: 1090;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.2s ease;
            }

            .nav-backdrop.active {
                opacity: 1;
                pointer-events: auto;
            }
        }

        .video-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8dc63f, #f7941d);
            border-radius: 20px 20px 0 0;
        }

        .video-info-card h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2c3e50;
            line-height: 1.3;
        }

        .video-info-card p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #666;
        }

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

        .testimonial-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-3px);
        }

        .testimonial-video {
            position: relative;
            width: 100%;
            height: 180px;
            background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-content {
            padding: 1.5rem;
        }

        .testimonial-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: #8dc63f;
        }

        .testimonial-content .farmer-name {
            font-size: 0.9rem;
            color: #4a7c59;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .testimonial-content .location {
            font-size: 0.8rem;
            color: #999;
        }

        /* Services Section */
        .services {
            background: white;
            padding: 100px 0;
        }

        .services-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4rem;
            gap: 2rem;
        }

        .services-header-content {
            flex: 1;
        }

        .services-header-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #8dc63f;
            line-height: 1.2;
        }

        .services-header-content p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.6;
        }

        .services-header-icon {
            flex-shrink: 0;
            opacity: 0.8;
        }

        .modern-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .modern-service-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
            border: 1px solid #f0f0f0;
        }

        .modern-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .modern-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8dc63f, #f7941d);
        }

        .service-icon {
            padding: 2rem 2rem 1rem 2rem;
            display: flex;
            justify-content: center;
        }

        .service-content {
            padding: 0 2rem 2.5rem 2rem;
        }

        .service-content h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2c3e50;
            text-align: center;
        }

        .service-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
            text-align: center;
        }

        /* Directors Section */
        .directors {
            background: white;
            padding: 100px 0;
        }

        .directors-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4rem;
            gap: 2rem;
        }

        .directors-header-content {
            flex: 1;
        }

        .directors-header-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #8dc63f;
            line-height: 1.2;
        }

        .directors-header-content p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.6;
        }

        .directors-header-icon {
            flex-shrink: 0;
            opacity: 0.8;
        }

        .modern-directors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .modern-director-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
            border: 1px solid #f0f0f0;
            padding: 2.5rem;
            text-align: center;
        }

        .modern-director-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 70px rgba(0,0,0,0.15);
        }

        .modern-director-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8dc63f, #f7941d);
        }

        .director-avatar-container {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .director-avatar {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #8dc63f, #6ba83a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: white;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .avatar-ring {
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            border: 3px solid #f7941d;
            border-radius: 50%;
            opacity: 0.6;
        }

        .director-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .director-content h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .director-content h3 a:hover {
            color: #8dc63f;
        }

        .director-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
        }

        /* Get Involved Section */
        .get-involved {
            background: linear-gradient(rgba(44, 85, 48, 0.85), rgb(74 124 89 / 0%)), url(../photos/hero3.jpg) center center;
            background-size: cover;
            background-attachment: fixed;
            background-repeat: no-repeat;
            color: white;
            text-align: center;
            position: relative;
        }

        .get-involved-golfday {
            background: linear-gradient(rgba(44, 85, 48, 0.85), rgb(74 124 89 / 0%)), url(../photos/ARF_Banner2.png) center center;
            background-size: cover;
            background-attachment: fixed;
            background-repeat: no-repeat;
            color: white;
            text-align: center;
            position: relative;
        }

        .get-involved h2 {
            color: white;
        }

        .involvement-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .option-card {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .option-card h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Contact Section */
        .contact {
            background: #f8fffe;
            text-align: center;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
        }

        .contact-item h3 {
            color: #8dc63f;
            margin-bottom: 1rem;
        }

        .contact-item a {
            color: #4a7c59;
            text-decoration: none;
            font-weight: 500;
        }

        .contact-item a:hover {
            text-decoration: underline;
        }

        /* Funding Section */
        .funding {
            background: #f8fffe;
            padding: 100px 0;
        }

        .funding-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4rem;
            gap: 2rem;
        }

        .funding-header-content {
            flex: 1;
        }

        .funding-header-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #8dc63f;
            line-height: 1.2;
        }

        .funding-header-content p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.6;
        }

        .funding-header-icon {
            flex-shrink: 0;
            opacity: 0.8;
        }

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

        .funding-main-card,
        .governance-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
            overflow: hidden;
            position: relative;
            border: 1px solid #f0f0f0;
        }

        .funding-main-card::before,
        .governance-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8dc63f, #f7941d);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 2rem 2rem 1rem 2rem;
        }

        .card-icon {
            flex-shrink: 0;
        }

        .card-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
        }

        .card-content {
            padding: 0 2rem 2.5rem 2rem;
        }

        .card-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
            margin-bottom: 1.5rem;
        }

        .funding-highlight {
            background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
            border-left: 4px solid #8dc63f;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }

        .highlight-label {
            font-weight: 700;
            color: #8dc63f;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .funding-highlight p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .governance-points {
            margin-top: 1.5rem;
        }

        .governance-point {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .point-icon {
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .point-content {
            flex: 1;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
        }

        /* Donate Section */
        .donate {
            background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: white;
            /* margin: 2% auto; */
            padding: 2rem;
            border-radius: 15px;
            width: 90%;
            max-width: 750px;
            text-align: center;
            position: relative;
            /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
        }

        .gallery-modal-content {
            max-width: 90%;
            max-height: 90%;
            overflow-y: auto;
            padding: 1rem;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            right: 15px;
            top: 10px;
            cursor: pointer;
        }

        .close:hover {
            color: #8dc63f;
        }

        .modal h2 {
            color: #8dc63f;
            margin-bottom: 1rem;
        }

        .warning-icon {
            font-size: 3rem;
            color: #f7941d;
            margin-bottom: 1rem;
        }

        .modal-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .modal-button {
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-button.primary {
            background: #4a7c59;
            color: white;
        }

        .modal-button.primary:hover {
            background: #8dc63f;
        }

        .modal-button.secondary {
            background: #e0e0e0;
            color: #333;
        }

        .modal-button.secondary:hover {
            background: #d0d0d0;
        }

        .age-input {
            padding: 10px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            margin: 1rem;
            width: 100px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 1rem;
            font-size: 0.9rem;
        }

        /* Lightbox (fullscreen image viewer) */
        .lightbox-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.95);
            z-index: 3000;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .lightbox-img {
            max-width: 92vw;
            max-height: 92vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
            user-select: none;
            -webkit-user-drag: none;
        }

        .lightbox-close {
            position: absolute;
            top: 16px;
            right: 20px;
            color: #fff;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
            background: rgba(0,0,0,0.4);
            border-radius: 6px;
            padding: 6px 10px;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 26px;
            font-weight: 700;
            background: rgba(0,0,0,0.35);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 999px;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            user-select: none;
        }

        .lightbox-prev { left: 18px; }
        .lightbox-next { right: 18px; }

        .lightbox-counter {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255,255,255,0.85);
            font-size: 14px;
            background: rgba(0,0,0,0.35);
            padding: 6px 10px;
            border-radius: 999px;
        }
        .or-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #8dc63f;
            color: white;
            font-weight: bold;
            font-size: 1rem;
        }

        .donate-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            overflow: hidden;
            max-width: 800px;
        }

        .qr-code-section {
            flex: 1;
            padding: 2rem;
            text-align: center;
            background: #f8f9fa;
        }

        .banking-details-section {
            flex: 1;
            padding: 2rem;
            background: #f8f9fa;
        }

        @media (max-width: 768px) {
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 22px;
            }
            .lightbox-close {
                font-size: 24px;
                padding: 6px 9px;
            }
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 2rem;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .hero {
                background-attachment: fixed;
            }

            .get-involved {
                background-attachment: fixed;
            }

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

            .testimonial-video-grid {
                grid-template-columns: 1fr;
            }

            .video-section-header {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .video-header-content h2 {
                font-size: 2.2rem;
            }

            .modern-video-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .video-wrapper video {
                height: 250px;
            }

            .video-info-card {
                padding: 2rem;
            }

            .services-header {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .services-header-content h2 {
                font-size: 2.2rem;
            }

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

            .modern-service-card {
                margin: 0 0rem;
            }

            .funding-header {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .funding-header-content h2 {
                font-size: 2.2rem;
            }

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

            .card-header {
                padding: 1.5rem 1.5rem 1rem 1.5rem;
            }

            .card-content {
                padding: 0 1.5rem 2rem 1.5rem;
            }

            .directors-header {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .directors-header-content h2 {
                font-size: 2.2rem;
            }

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

            .modern-director-card {
                padding: 2rem;
            }

            .director-avatar {
                width: 80px;
                height: 80px;
                font-size: 1.8rem;
            }

            .gallery-modal-content {
                max-width: 90%;
                max-height: 90%;
                overflow-y: auto;
                padding: 1rem;
            }
            .or-divider {
                display: none;
            }
            .donate-card {
                flex-direction: column;
                width: -webkit-fill-available;
            }

            .qr-code-section {
                background: none;
                width: -webkit-fill-available;
                padding: 2rem 10px;
            }

            .banking-details-section {
                background: none;
                width: -webkit-fill-available;
                padding: 10px;
            }

        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }