// 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.name}

{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 (
{/* ===================== Header ===================== */}
Why NGIS

Why choose NextGen International School

Pakistan’s first ETM-powered school brings together South Korean academic standards, an emerging-technology curriculum and deep-rooted Islamic values — an education you won’t find anywhere else.

{/* ===================== Unique features ===================== */}
Why choose NGIS

Unique features you won’t find elsewhere

{features.map((f, i) => { const accent = crestAccents[i % 4]; return (

{f.t}

{f.d}

); })}
{/* ===================== Vision & Mission ===================== */}
Vision & mission

What drives everything we do

Our vision

“Transforming Education for Better Tomorrow.”

We envision a Pakistan where every child has access to a world-class, faith-rooted education that prepares them not just for exams, but for life — and for leadership in a rapidly changing world.

Our mission

“Empowering every child to become a confident tech entrepreneur, compassionate thought leader, and ambassador of Islam.”

To deliver a world-class, ETM-powered educational system aligned with Islamic values, emerging technologies, South Korean academic standards, and a 21st-century STEAM framework.

{/* ===================== Affiliation ===================== */}
Backed by

Our affiliations

NGIS is a project of the Educational Transformation Movement, an initiative of Robotmea, accredited by Robotron, South Korea.

{affiliations.map(a => )}
{/* ===================== CTA ===================== */}

See it for yourself

Book a tour or begin your child’s application today.

); } window.WhyNgisScreen = WhyNgisScreen;