
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary: #D4AF37; 
            --primary-dark: #B4941F;
            --secondary: #004d25; 
            --secondary-light: #006b33;
            --dark: #0f172a;
            --light: #f8fafc;
            --white: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --radius: 20px;
            --shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            background-color: var(--light);
            overflow-x: hidden;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--dark); line-height: 1.2; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; display: block; object-fit: cover; }
        button { cursor: pointer; border: none; font-family: inherit; background: transparent; }

        /* --- UTILITIES --- */
        .container { width: 92%; max-width: 1200px; margin: 0 auto; }
        .section-padding { padding: 30px 0; }
        .text-center { text-align: center; }

        /* --- BUTTONS --- */
        .btn-cta { background: var(--secondary); color: white; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 15px; transition: var(--transition); display: inline-block; }
        .btn-cta:hover { background: var(--secondary-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 77, 37, 0.25); }
        .btn-outline { border: 2px solid var(--secondary); color: var(--secondary); padding: 12px 30px; border-radius: 50px; font-weight: 600; transition: var(--transition); display: inline-block; }
        .btn-outline:hover { background: var(--secondary); color: white; }
        .btn-disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

        /* --- NAVIGATION --- */
        .navbar { position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--transition); }
        .nav-container { display: flex; justify-content: space-between; align-items: center; height: 85px; }
        .logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--secondary); display: flex; align-items: center; gap: 12px; }
        .logo img { height: 45px; 
            /* border-radius: 50%; */
         }
        .nav-links { display: flex; gap: 35px; align-items: center; }
        .nav-link { font-weight: 500; font-size: 15px; position: relative; color: var(--text-main); }
        .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--primary); transition: var(--transition); }
        .nav-link:hover { color: var(--secondary); }
        .nav-link:hover::after { width: 100%; }
        .mobile-toggle { display: none; font-size: 28px; color: var(--dark); cursor: pointer; padding: 10px; }

        /* --- HERO SLIDER --- */
        .hero { position: relative; height: 100vh; min-height: 650px; overflow: hidden; display: flex; align-items: center; }
        .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease-in-out; background-size: cover; background-position: center; transform: scale(1.05); }
        .slide.active { opacity: 1; transform: scale(1); transition: opacity 1s ease, transform 6s linear; }
        .slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.3) 100%); }
        .hero-content { position: relative; z-index: 2; color: white;  padding-top: 60px; }
        .hero-badge { background: rgba(212, 175, 55, 0.2); border: 1px solid var(--primary); color: var(--primary); padding: 8px 20px; border-radius: 30px; font-weight: 600; font-size: 14px; display: inline-block; margin-bottom: 24px; backdrop-filter: blur(5px); }
        .hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 24px; color: white; }
        .hero p { font-size: clamp(1.1rem, 2vw, 1.3rem); margin-bottom: 40px; opacity: 0.9; font-weight: 300; }
        .slider-controls { position: absolute; bottom: 40px; right: 5%; z-index: 10; display: flex; gap: 15px; }
        .slider-btn { width: 55px; height: 55px; border-radius: 50%; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); color: white; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2); transition: var(--transition); font-size: 18px; }
        .slider-btn:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); }

        /* --- PARTNERS MARQUEE --- */
        .partners-section { background: white; padding: 40px 0; overflow: hidden; border-bottom: 1px solid #eee; }
        .marquee-container { display: flex; width: max-content; animation: marquee 25s linear infinite; }
        .marquee-container:hover { animation-play-state: paused; }
        .partner-logo { width: 220px; padding: 0 40px;  opacity: 1; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
        .partner-logo img { max-height: 50px; }
        .partner-logo:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* --- STICKY SCROLL SECTION (WHY GHANA - DESKTOP) --- */
        .sticky-layout { display: flex; gap: 60px; align-items: flex-start; position: relative; }
        .sticky-media-wrapper { position: sticky; top: 120px; width: 50%; height: 75vh; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
        .sticky-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease-in-out, transform 0.6s ease; transform: scale(1.05); z-index: 1; }
        .sticky-img.active { opacity: 1; transform: scale(1); z-index: 2; } 
        .scrolling-content { width: 50%; padding-bottom: 30vh; }
        .scroll-card { min-height: 45vh; display: flex; flex-direction: column; justify-content: center; padding: 40px 0; opacity: 1; transition: opacity 0.4s ease; }
        .scroll-card.is-active { opacity: 1; }
        .mobile-card-img { display: none; } 
        .feature-icon { width: 70px; height: 70px; background: rgba(212, 175, 55, 0.1); color: var(--primary-dark); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 24px; box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.3); }
        .scroll-card h3 { font-size: 2.2rem; margin-bottom: 15px; }
        .scroll-card p { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; }

        /* --- HORIZONTAL SCROLL SECTION (PROGRAMS) --- */
        .bg-green-tint { background-color: #f0fdf4; border-radius: 50px 50px 0 0; }
        .horizontal-scroll-container { display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 20px 4% 80px 4%; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
        .horizontal-scroll-container::-webkit-scrollbar { display: none; }
        .program-card { scroll-snap-align: center; flex: 0 0 400px; background: white; border-radius: var(--radius); padding: 25px; box-shadow: 0 4px 25px rgba(0,0,0,0.05); transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); }
        .program-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: rgba(212, 175, 55, 0.3); }
        .program-card img { width: 100%; height: 240px; border-radius: 12px; margin-bottom: 25px; }
        .program-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
        .program-card p { color: var(--text-muted); margin-bottom: 25px; font-size: 1rem; }
        .program-link { color: var(--secondary); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; font-size: 1.05rem; }
        .program-card:hover .program-link i { transform: translateX(5px); transition: 0.3s; }

        /* --- UNIQUE BENTO GALLERY --- */
        .bento-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 20px; margin-top: 50px; }
        .bento-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow); }
        .bento-item.large { grid-column: span 2; grid-row: span 2; }
        .bento-item.wide { grid-column: span 2; }
        .bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
        .bento-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); opacity: 0; transition: var(--transition); }
        .bento-item:hover img { transform: scale(1.08); }
        .bento-item:hover::after { opacity: 1; }
        .bento-caption { position: absolute; bottom: 25px; left: 25px; right: 25px; color: white; z-index: 2; opacity: 0; transform: translateY(15px); transition: var(--transition); }
        .bento-item:hover .bento-caption { opacity: 1; transform: translateY(0); }
        .bento-caption h4 { color: white; font-size: 1.4rem; margin-bottom: 5px; }
        .bento-caption p { font-size: 0.9rem; opacity: 0.8; margin: 0; font-family: 'Inter', sans-serif; }

        /* --- TEAM SECTION --- */
        .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
        .team-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.04); text-align: center; border: 1px solid rgba(0,0,0,0.03); transition: var(--transition); }
        .team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
        .team-img-wrapper { height: 350px; overflow: hidden; position: relative; }
        .team-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .team-card:hover .team-img-wrapper img { transform: scale(1.05); }
        .team-info { padding: 30px; }
        .team-info h3 { font-size: 1.4rem; margin-bottom: 8px; }
        .team-info p { color: var(--primary-dark); font-weight: 600; font-size: 0.95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
        .social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--light); color: var(--text-muted); margin: 0 8px; font-size: 18px; transition: var(--transition); }
        .social-links a:hover { background: var(--secondary); color: white; }

        /* =======================================================================
           MODULAR WIZARD CSS (Extractable)
           ======================================================================= */
        .wizard-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.9); backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity 0.4s ease; overflow-y: auto; }
        .wizard-overlay.show { opacity: 1; display: flex; }
        .wizard-card { background: white; width: 100%; max-width: 750px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4); transform: scale(0.95) translateY(20px); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); margin: auto; }
        .wizard-overlay.show .wizard-card { transform: scale(1) translateY(0); }
        
        .wizard-header { background: var(--dark); padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; position: relative; }
        .wizard-header h3 { color: white; margin: 0; font-size: 1.6rem; }
        .close-btn { background: none; border: none; color: white; font-size: 32px; cursor: pointer; line-height: 1; opacity: 0.8; transition: 0.3s; }
        .close-btn:hover { opacity: 1; transform: scale(1.1); }
        
        .wizard-progress { height: 6px; background: #334155; width: 100%; }
        .progress-fill { height: 100%; background: var(--primary); width: 33.33%; transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
        
        .wizard-body { padding: 30px; max-height: 70vh; overflow-y: auto; }
        
        .wizard-step { display: none; animation: fadeIn 0.4s ease; }
        .wizard-step.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        
        .step-title { font-family: 'Playfair Display', serif; color: var(--secondary); margin-bottom: 20px; font-size: 1.4rem; border-bottom: 2px solid #f1f5f9; padding-bottom: 10px; }
        
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 20px; }
        .form-group { margin-bottom: 20px; }
        .form-group.full-width { grid-column: span 2; }
        .form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; color: var(--dark); }
        
        .form-control { width: 100%; padding: 14px 16px; border: 2px solid #e2e8f0; border-radius: 10px; font-family: inherit; font-size: 1rem; transition: 0.3s; background: var(--light); color: var(--text-main); }
        .form-control:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1); }
        textarea.form-control { resize: vertical; min-height: 100px; }

        .options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
        .option-card { border: 2px solid #e2e8f0; border-radius: 10px; padding: 12px 15px; cursor: pointer; transition: 0.3s; background: white; display: flex; align-items: center; gap: 10px; }
        .option-card:hover { border-color: var(--primary); background: #fdfaf0; }
        .option-card input { accent-color: var(--secondary); transform: scale(1.2); }
        
        .file-upload-box { border: 2px dashed #cbd5e1; border-radius: 10px; padding: 25px; text-align: center; background: #f8fafc; cursor: pointer; transition: 0.3s; position: relative; }
        .file-upload-box:hover { border-color: var(--secondary); background: #f0fdf4; }
        .file-upload-box i { font-size: 24px; color: var(--text-muted); margin-bottom: 10px; display: block; }
        .file-upload-box input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }

        .wizard-footer-nav { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid #e2e8f0; margin-top: 10px; }

        .flatpickr-calendar.hasRange { box-shadow: var(--shadow); border: none; border-radius: 12px; padding: 10px; }
        .flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange { background: var(--secondary) !important; border-color: var(--secondary) !important; }
        .flatpickr-day.inRange { background: #e6f0eb !important; border-color: #e6f0eb !important; box-shadow: none !important; }

        @media (max-width: 768px) {
            .form-grid { grid-template-columns: 1fr; }
            .form-group.full-width { grid-column: span 1; }
            .wizard-card { margin: 10px; }
        }
        
        /* =======================================================================
           MODULAR LIGHTBOX CSS (Extractable)
           ======================================================================= */
        .lightbox-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.95); backdrop-filter: blur(10px); z-index: 3000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; }
        .lightbox-overlay.show { opacity: 1; display: flex; }
        .lightbox-content { max-width: 900px; width: 90%; text-align: center; transform: scale(0.95); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; align-items: center; }
        .lightbox-overlay.show .lightbox-content { transform: scale(1); }
        .lightbox-content img { max-height: 70vh; max-width: 100%; border-radius: 12px; box-shadow: 0 25px 50px rgba(0,0,0,0.5); object-fit: contain; transition: opacity 0.2s ease-in-out; }
        .lightbox-details { margin-top: 20px; color: white; }
        .lightbox-details h3 { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 2rem; margin-bottom: 5px; }
        .lightbox-details p { color: #cbd5e1; font-size: 1.1rem; }
        .lightbox-close { position: absolute; top: 30px; right: 40px; background: none; border: none; color: white; font-size: 45px; cursor: pointer; opacity: 0.7; transition: 0.3s; line-height: 1; z-index: 3010; }
        .lightbox-close:hover { opacity: 1; transform: scale(1.1); color: var(--primary); }
        
        .lightbox-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; width: 65px; height: 65px; border-radius: 50%; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(5px); transition: 0.3s; z-index: 3010; }
        .lightbox-nav-btn:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); }
        .lightbox-nav-btn.prev { left: 40px; }
        .lightbox-nav-btn.next { right: 40px; }
        
        @media (max-width: 768px) {
            .lightbox-nav-btn { width: 45px; height: 45px; font-size: 18px; }
            .lightbox-nav-btn.prev { left: 15px; }
            .lightbox-nav-btn.next { right: 15px; }
            .lightbox-close { top: 15px; right: 20px; font-size: 35px; }
            .lightbox-content img { max-height: 55vh; }
            .lightbox-details h3 { font-size: 1.5rem; }
        }
        /* ======================================================================= */

        /* --- FOOTER --- */
        footer { background: var(--dark); color: white; padding: 100px 0 30px; position: relative; overflow: hidden; }
        footer::before { content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px; background: var(--primary); opacity: 0.05; border-radius: 50%; filter: blur(50px); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 60px; position: relative; z-index: 2; }
        .footer-grid h4 { color: white; margin-bottom: 24px; font-size: 1.3rem; letter-spacing: 0.5px; }
        .footer-links li { margin-bottom: 15px; }
        .footer-links a { color: #94a3b8; transition: var(--transition); display: inline-block; }
        .footer-links a:hover { color: var(--primary); transform: translateX(5px); }

        /* --- RESPONSIVE / MOBILE DESIGN LOGIC --- */
        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 992px) {
            .nav-links { position: fixed; top: 85px; right: -100%; width: 100%; height: calc(100vh - 85px); background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); flex-direction: column; justify-content: flex-start; padding-top: 50px; transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: -10px 0 30px rgba(0,0,0,0.05); }
            .nav-links.active { right: 0; }
            .mobile-toggle { display: block; }
            .hero h1 { font-size: 2.5rem; }
            .sticky-layout { display: block; } 
            .sticky-media-wrapper { display: none; } 
            .scrolling-content { width: 100%; padding-bottom: 0; }
            .scroll-card { opacity: 1 !important; padding: 30px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 30px; min-height: auto; }
            .scroll-card h3 { font-size: 1.8rem; }
            .mobile-card-img { display: block; width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin-bottom: 20px; }
            .program-card { flex: 0 0 88%; } 
            .bento-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 12px; }
            .bento-item.large, .bento-item.wide { grid-column: span 1; grid-row: span 1; } 
            .bento-caption { bottom: 15px; left: 15px; right: 15px; opacity: 1; transform: translateY(0); } 
            .bento-caption h4 { font-size: 1.1rem; }
            .bento-caption p { font-size: 0.75rem; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .section-padding { padding: 20px 0; }
        }