// NGIS website — Contact Us (phone/address/email for both campuses) function ContactScreen({ onNav }) { const { Card, EyebrowLabel, Button } = window.NGISDesignSystem_f6dc23; const Icon = window.Icon; const { PATTERNS, NAVY_GRADIENT, SectionDecor } = window.Decor; const campuses = [ { accent: 'navy', chapter: 'Malir City Main Chapter', address: 'Plot 20/423, Kala Board, Malir, Karachi', phone: '0371 7423151', email: 'info@ngis.pk', }, { accent: 'gold', chapter: 'Jinnah Avenue Chapter', address: 'E-7/4, Block A, Kazimabad, Model Colony, Karachi', phone: '0371 7423151', email: 'info@ngis.pk', }, ]; return (
{/* ===================== Header ===================== */}
Get in touch

Contact NextGen International School

Speak to our admissions team, book a campus tour, or simply say hello. We welcome you at either of our two Karachi campuses.

{/* ===================== Contact details ===================== */}
Two campuses in Karachi

Reach out to either chapter

{campuses.map(c => (
NextGen International School

{c.chapter}

Call us now
{c.phone}
Visit us
{c.address}
Email
{c.email}
))}
{/* ===================== Photos + social ===================== */} {/* ===================== CTA ===================== */}

Ready to visit or enquire?

Our admissions team is ready to answer your questions.

); } window.ContactScreen = ContactScreen;