/* WhyAndCurriculum.jsx — Sections 5–6: FULLY RESPONSIVE */ const WhyDifferentSection = () => { const { isMobile } = useResponsive(); const cards = [ { title: 'Curriculum co-built with KPMG cyber experts', body: 'Designed alongside KPMG India\'s Cyber Consulting practice — every module maps to a live skill the industry hires for.' }, { title: 'Globally-certified by Macquarie University', body: 'Earn a co-credential from Sydney\'s Cyber Skills Academy — recognised by employers across India, the UK, Australia, and the GCC.' }, { title: 'Hands-on labs, not just lectures', body: 'Ethical hacking ranges, live SOC simulations, malware reverse-engineering, and network defence labs from semester three onward.' }, { title: 'Industry certifications stacked into the degree', body: 'Exit ready for CompTIA Security+, CEH foundations, and entry-level cloud security certifications — no extra fee.' }, { title: 'Internships and live capstone projects', body: 'Two mandatory internships and a final-year capstone solving a real industry brief — supervised by KPMG mentors.' }, { title: 'Career paths into Cyber Forensics, GRC, and AI Defence', body: 'Specialisation tracks in cyber forensics, governance-risk-compliance, and AI-driven threat detection from semester five.' }, ]; return (
Why This Program

Six things no other B.Tech in A.P. or Telangana offers.

{cards.map((c, i) => (

{c.title}

{c.body}

))}
Want a counsellor to walk you through this? Book a 15-min call
); }; /* ── Section 6: Curriculum ───────────────────────────────────── */ const CurriculumSection = () => { const { isMobile } = useResponsive(); const [activeYear, setActiveYear] = React.useState(0); const years = [ { title: 'Year 1 — Foundations', semesters: [ { name: 'Semester 1', subjects: ['Engineering Maths I', 'Programming with Python', 'Digital Logic', 'Communication Skills', 'Intro to Cyber Security'] }, { name: 'Semester 2', subjects: ['Engineering Maths II', 'Data Structures', 'Computer Organisation', 'Discrete Mathematics', 'Linux & Shell Scripting'] }, ], }, { title: 'Year 2 — Core Computer Science', semesters: [ { name: 'Semester 3', subjects: ['Operating Systems', 'Object-Oriented Programming (Java)', 'DBMS', 'Networks Fundamentals', { text: 'Cryptography I', tag: 'KPMG co-taught' }] }, { name: 'Semester 4', subjects: ['Computer Networks', 'Software Engineering', 'Web Technologies', { text: 'Cryptography II', tag: null }, { text: 'Ethical Hacking Foundations', tag: 'Lab-heavy' }] }, ], }, { title: 'Year 3 — Applied Cyber Security', semesters: [ { name: 'Semester 5', subjects: ['Information Security Management', { text: 'Network Security & Firewalls', tag: null }, 'Cloud Computing', { text: 'Cyber Forensics I', tag: null }, 'Elective Track Starts'] }, { name: 'Semester 6', subjects: [{ text: 'AI in Cyber Defence', tag: null }, { text: 'SOC Operations & Incident Response', tag: 'KPMG-led' }, 'Mobile & IoT Security', { text: 'Industry Internship I', tag: '6 weeks' }] }, ], }, { title: 'Year 4 — Specialisation & Industry', semesters: [ { name: 'Semester 7', subjects: [{ text: 'Governance, Risk & Compliance (GRC)', tag: 'KPMG-led' }, { text: 'Threat Intelligence & Red Teaming', tag: null }, { text: 'Capstone Project Phase I', tag: null }, 'Elective II'] }, { name: 'Semester 8', subjects: [{ text: 'Capstone Project Phase II', tag: null }, { text: 'Industry Internship II', tag: '12 weeks' }, { text: 'Macquarie Certification Module', tag: null }, 'Career Bootcamp'] }, ], }, ]; return (
What You'll Learn

Four years. Eight semesters.{isMobile ? ' ' :
}One career-ready cyber professional.

Each semester combines foundational engineering, applied cyber security, and live industry exposure.

{/* Year tabs */}
{years.map((y, i) => ( ))}

{years[activeYear].title}

{years[activeYear].semesters.map((sem, si) => (
{sem.name}
{sem.subjects.map((subj, j) => { const text = typeof subj === 'string' ? subj : subj.text; const tag = typeof subj === 'string' ? null : subj.tag; const isBold = typeof subj !== 'string'; return (
{text} {tag && ({tag})}
); })}
))}
{/* Sidebar: Download CTA */}

Download detailed syllabus PDF

Get the full semester-by-semester breakdown with module descriptions.

Download Syllabus
); }; Object.assign(window, { WhyDifferentSection, CurriculumSection });