// NGIS website — Why NGIS (unique features, vision & mission, affiliations)
function AffiliationCard({ a }) {
const [hover, setHover] = React.useState(false);
return (
setHover(true)}
onMouseLeave={() => setHover(false)}
style={{
display: 'flex', flexDirection: 'column', alignItems: 'center', textAlign: 'center',
background: 'var(--surface-card)', border: '1px solid var(--border)', borderRadius: 'var(--radius-xl)',
padding: 'var(--space-7) var(--space-6)',
boxShadow: hover ? 'var(--shadow-md)' : 'var(--shadow-sm)',
transform: hover ? 'translateY(-4px)' : 'translateY(0)',
transition: 'transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard)',
}}
>
{a.role}
{a.d}
);
}
function WhyNgisScreen({ onNav }) {
const { Card, EyebrowLabel, Button } = window.NGISDesignSystem_f6dc23;
const Icon = window.Icon;
const { PATTERNS, NAVY_GRADIENT, SectionDecor, PhotoFrame, EduMotifs } = window.Decor;
const crestAccents = ['green', 'navy', 'blue', 'gold'];
const features = [
{ icon: 'star', t: 'Faith-Centered Learning', d: 'Friends of Quran programme, Prophet Muhammad ﷺ as our role model — Islamic values woven into every school day.' },
{ icon: 'flask', t: 'ETM Garage', d: "Pakistan's first Centre for Innovation & Entrepreneurship — where students build, code and invent with real technology." },
{ icon: 'languages', t: 'Trilingual by Design', d: 'Arabic, Korean & Chinese languages taught alongside the core curriculum — preparing students for a global stage.' },
{ icon: 'award', t: 'Korea Certified', d: 'Accredited by Robotron, South Korea — a Robotron Certified System regularly audited to maintain international standards.' },
{ icon: 'lightbulb', t: 'Discovery Hubs', d: 'Traditional classrooms replaced with Discovery & Innovation Hubs — every space is designed for curiosity, not compliance.' },
{ icon: 'trophy', t: 'Talent Feeder Program', d: "Pakistan's first Talent Feeder Program — identifying and nurturing exceptional students for national and international competitions." },
];
const affiliations = [
{ name: 'Educational Transformation Movement', logo: './assets/photos/Logos (2).png', role: 'The movement', d: "NGIS is proudly powered by ETM — Pakistan's first ETM-powered school." },
{ name: 'Robotron', logo: './assets/photos/Logos (1).png', role: 'Certification body', d: 'Our systems are certified and regularly audited by Robotron, South Korea.' },
{ name: 'Robotmea', logo: './assets/photos/Logos (4).png', role: 'Parent organisation', d: 'NGIS is an initiative of Robotmea.' },
];
return (