/* FaqCtaFooter.jsx — Sections 15–17: FULLY RESPONSIVE */ const FAQSection = () => { const { isMobile } = useResponsive(); const [openIndex, setOpenIndex] = React.useState(0); const faqs = [ { q: 'Is this an actual B.Tech degree, or just a certificate course?', a: 'This is a full 4-year B.Tech degree in Computer Science & Engineering (Cyber Security), awarded by Godavari Global University — a UGC-recognised, NAAC A++ accredited university. The KPMG and Macquarie credentials are additional, not substitutes.' }, { q: 'What is GGU\'s accreditation?', a: 'GGU holds NAAC A++ accreditation in its 3rd cycle, is NIRF-ranked in the 201–300 band for six consecutive years, and is the No. 1 private university in A.P. as rated by Outlook.' }, { q: 'What does "co-created with KPMG" actually mean?', a: 'The cyber security curriculum was designed jointly with KPMG India\'s Cyber Consulting practice. KPMG senior practitioners deliver masterclasses, mentor capstone projects, and provide live industry briefs through the four years.' }, { q: 'What is the Macquarie University credential?', a: 'Students earn a co-credential from Macquarie University Sydney\'s Cyber Skills Academy alongside their B.Tech degree — a globally recognised signal of international-standard cyber training.' }, { q: 'Are placements guaranteed?', a: 'No reputable university can guarantee placements — and anyone who does should be questioned. What we can guarantee: a curriculum mapped to where the industry hires, mentorship from KPMG, dedicated placement support, and an alumni network across major cyber recruiters.' }, { q: 'What are the eligibility criteria?', a: '10+2 with Physics, Chemistry, and Mathematics, minimum 60% aggregate. We accept AP EAPCET, TS EAMCET, JEE Main scores, or our own entrance assessment.' }, { q: 'Is the ₹4.0 LPA fee inclusive of everything?', a: 'The ₹4.0 LPA covers tuition, lab access, industry certifications, KPMG-led modules, and the Macquarie credential. Hostel, mess, transport, and examination charges are separate.' }, { q: 'Are scholarships available?', a: 'Yes — merit-based scholarships for top entrance scorers and need-based assistance through bank tie-ups. Counsellors share full details on request.' }, { q: 'Where is the campus and what\'s it like?', a: 'The campus is in Rajamahendravaram, Andhra Pradesh — fully residential, with dedicated cyber labs, a SOC environment, and full student amenities.' }, ]; return (
Frequently Asked Questions

Your questions, answered.

{faqs.map((f, i) => (
{openIndex === i && (
{f.a}
)}
))}
{/* Support card */}

Still have questions?

Talk to a counsellor — they'll spend as long as you need.

+91 89777 80866
Call Now WhatsApp Us

Mon–Sat · 9:30 AM to 7:00 PM IST

); }; const FinalCTASection = () => { const { isMobile } = useResponsive(); return (

Your future is in play, now.

60 seats. One first-of-its-kind program. A career built with KPMG and credentialed globally. Apply before the cohort closes.

Apply Now Talk to a Counsellor

NAAC A++ · KPMG in India · Macquarie University Sydney · 1st Time in A.P. & Telangana

); }; const LPFooter = () => { const { isMobile } = useResponsive(); const cols = [ { title: 'GGU', items: ['Godavari Global University', 'Rajamahendravaram, A.P., India', '+91 89777 80866', 'admissions@ggu.edu.in'] }, { title: 'Programs', items: ['B.Tech CSE (Cyber Security)', 'B.Tech CSE (AI & ML) — IBM', 'B.Tech CSE (Data Science) — IBM', 'Other Programs at GGU'] }, { title: 'Resources', items: ['Download Brochure', 'Fee Structure', 'Scholarships', 'Hostel & Campus', 'Admissions FAQ'] }, { title: 'About', items: ['About GGU', 'Accreditations', 'Industry Partners', 'Careers at GGU', 'Contact'] }, ]; return ( ); }; const WhatsAppBubble = () => ( ); Object.assign(window, { FAQSection, FinalCTASection, LPFooter, WhatsAppBubble });