/* Partners.jsx — Sections 7–8: FULLY RESPONSIVE */ const KPMGSection = () => { const { isMobile } = useResponsive(); const bullets = [ 'Curriculum co-designed by KPMG Cyber Consulting', 'Quarterly masterclasses by KPMG senior practitioners', 'Mentorship for final-year capstone projects', 'Internship and project briefs from KPMG client engagements', ]; return (
{/* KPMG panel */}
KPMG
IN INDIA
Cyber Consulting Practice
{/* Copy */}
Partner Spotlight

Learn from the people who secure India's largest enterprises.

KPMG in India is one of the country's most trusted advisory firms, with a Cyber Consulting practice that protects banks, governments, telecoms, and Fortune 500 companies operating in India.

Through this program, KPMG cyber consultants co-design the curriculum, deliver guest masterclasses, mentor capstone projects, and open doors for internships.

{bullets.map((b, i) => (
{b}
))}

"Cyber threats are only growing. India needs trained professionals who can think like attackers and defend like architects. That's what we're building at GGU."

— KPMG India, Cyber Consulting (placeholder)

); }; const MacquarieSection = () => { const { isMobile } = useResponsive(); const bullets = [ 'Co-credential from Macquarie University Sydney\'s Cyber Skills Academy', 'Curriculum aligned to international cyber education benchmarks', 'Optional short-term exchange and immersion opportunities (subject to eligibility)', 'Credential recognised by global cyber recruiters', ]; return (
{/* Copy */}
Global Credential

A credential that travels. Australia today. The world tomorrow.

Macquarie University's Cyber Skills Academy in Sydney is one of Australia's most respected centres for cyber education. Through this partnership, GGU students earn a Macquarie co-credential alongside their B.Tech degree.

That credential signals globally that you've been trained to international standards — opening pathways to employers in Australia, the UK, the UAE, and across Indian IT services giants.

{bullets.map((b, i) => (
{b}
))}
{/* Macquarie panel */}
MACQUARIE
University
SYDNEY, AUSTRALIA
Cyber Skills Academy
Global recognition.
International standards.
); }; Object.assign(window, { KPMGSection, MacquarieSection });