/* CareersAndFoundation.jsx — Sections 9–10: FULLY RESPONSIVE */ const CareersSection = () => { const { isMobile } = useResponsive(); const roles = [ { title: 'Cyber Security Analyst', salary: '₹5–9 LPA', desc: 'Monitor, detect, and respond to security incidents in a SOC environment.' }, { title: 'Penetration Tester / Ethical Hacker', salary: '₹6–12 LPA', desc: 'Find vulnerabilities before attackers do, across networks, web apps, and mobile.' }, { title: 'Cyber Forensics Investigator', salary: '₹6–10 LPA', desc: 'Investigate breaches, trace attackers, and preserve digital evidence.' }, { title: 'Cloud Security Engineer', salary: '₹7–14 LPA', desc: 'Design and defend cloud-native infrastructure on AWS, Azure, GCP.' }, { title: 'GRC Consultant', salary: '₹5–10 LPA', desc: 'Help organisations meet regulatory, audit, and risk requirements.' }, { title: 'AI Security Specialist', salary: '₹8–16 LPA', desc: 'Defend AI systems and use AI to detect threats at scale.' }, { title: 'Threat Intelligence Analyst', salary: '₹6–12 LPA', desc: 'Track adversaries, profile attack groups, and surface early warnings.' }, ]; const hiringPartners = [ 'Deloitte', 'EY', 'PwC', 'KPMG', 'Infosys', 'TCS', 'Wipro', 'HCLTech', 'Accenture', 'Tech Mahindra', 'IBM', 'CrowdStrike', 'Palo Alto Networks', 'Mandiant', 'Check Point', 'Fortinet', 'Rapid7', ]; return (
Career Outcomes

Where this degree takes you.

Roles, indicative salaries, and the skills you'll build across four years.

{roles.map((r, i) => (
{ e.currentTarget.style.transform = 'translateY(-4px)'; e.currentTarget.style.boxShadow = '0 8px 24px rgba(0,0,0,0.08)'; }} onMouseLeave={e => { e.currentTarget.style.transform = 'translateY(0)'; e.currentTarget.style.boxShadow = 'none'; }} >

{r.title}

{r.salary}

{r.desc}

Explore this path →
))}

Salary bands are indicative, based on industry reports for entry to mid-level roles in India, 2024–25.

Where our graduates can land.

{hiringPartners.map((p, i) => (
{p}
))}

Indicative target employers — based on cyber security hiring patterns in India.

); }; const GGUFoundationSection = () => { const { isMobile } = useResponsive(); const tiles = [ { title: 'NAAC A++ Accreditation (3rd Cycle)', body: 'The highest grade awarded by India\'s apex higher education accreditation body. A signal of academic rigour, faculty quality, and institutional governance.' }, { title: 'NIRF Ranked — 6 Consecutive Years', body: 'Ranked in the 201–300 band by India\'s official Ministry of Education ranking system, year after year.' }, { title: '47 Years of Educational Excellence', body: 'Part of one of A.P.\'s most respected educational groups, with a track record spanning four decades.' }, { title: 'UC Berkeley Haas Partnership', body: 'Academic partnership with the University of California, Berkeley\'s Haas School of Business — bringing world-class teaching frameworks to GGU classrooms.' }, { title: '100+ Patents Filed', body: 'A research-active institution with faculty and student innovation contributing to over a hundred patent filings.' }, { title: 'Outlook — No. 1 Private University in A.P.', body: 'Independently rated by Outlook as the top private university in the state.' }, ]; return (
Why GGU

A 47-year educational legacy. Built for the next 40.

Godavari Global University is one of Andhra Pradesh's most accredited private universities — and one of very few in the country to hold a NAAC A++ accreditation.

{tiles.map((t, i) => (

{t.title}

{t.body}

))}

In a higher-education market where credentials matter more than ever, GGU's A++ accreditation isn't a marketing claim — it's a verified, government-recognised standard. Verify on the official NAAC website.

); }; Object.assign(window, { CareersSection, GGUFoundationSection });