/* LabsCampusFee.jsx — Sections 11–14: FULLY RESPONSIVE */ const LabsSection = () => { const { isMobile } = useResponsive(); const tiles = [ { label: 'SOC Simulation Lab', desc: 'Live security operations centre environment running real-world threat scenarios.' }, { label: 'Cyber Range', desc: 'Controlled environment for ethical hacking, network defence, and capture-the-flag exercises.' }, { label: 'Digital Forensics Lab', desc: 'Hardware and software for breach investigation, malware analysis, and evidence handling.' }, { label: 'Industry Certifications Built-In', desc: 'CompTIA Security+, CEH foundations, AWS Cloud Security, Microsoft Security Fundamentals — no extra cost.' }, ]; return (
Inside the Classroom

Where theory meets the terminal.

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

{t.label}

{t.desc}

))}
); }; const CampusSection = () => { const { isMobile } = useResponsive(); return (
The Campus

Rajamahendravaram. Where you'll spend the four years that change your life.

{[0,1].map(i => (
Campus Photo {i + 1}
))}
{[0,1,2].map(i => (
Photo {i + 3}
))}
{[ 'Modern academic blocks, dedicated cyber labs, and a 24×7 SOC environment', 'On-campus residences, sports, libraries, and student-led tech clubs', 'Cultural festivals, hackathons, and inter-university cyber competitions', ].map((b, i) => (
{b}
))}
Plan a campus visit →
); }; const FeeSection = () => { const { isMobile } = useResponsive(); const included = [ 'Full B.Tech (CSE Cyber Security) curriculum', 'KPMG-led specialisation modules', 'Macquarie University co-credential', 'All lab and infrastructure access', 'Industry certifications (Security+, CEH foundations, cloud security)', 'Internship placement support', 'Career bootcamp and placement assistance', ]; const notIncluded = [ 'Hostel, mess, and transport (separate, optional)', 'Examination, registration, and one-time university charges', 'Optional Macquarie immersion programme (if availed)', ]; return (
Your Investment

One transparent fee. Everything that matters, included.

4.0 Lakh
per annum
Total programme fee: ₹16.0 Lakh over four years.

Tuition includes:

{included.map((item, i) => (
{item}
))}

Not included:

{notIncluded.map((item, i) => (
{item}
))}
Scholarships: Merit-based for top entrance scorers.
Education loans: Tie-ups with leading banks.
Talk to fee counsellor
); }; const AdmissionSection = () => { const { isMobile } = useResponsive(); const steps = [ { num: '01', title: 'Apply Online', desc: '5-minute application form. No application fee.' }, { num: '02', title: 'Counsellor Call', desc: 'Within 24 hours, a counsellor reaches out.' }, { num: '03', title: 'Eligibility Check', desc: '10+2 with PCM, min 60%. EAPCET / JEE Main accepted.' }, { num: '04', title: 'Offer Letter', desc: 'Provisional offer within 3 working days.' }, { num: '05', title: 'Confirm Seat', desc: 'Accept offer, pay fees, join orientation.' }, ]; const [visibleStep, setVisibleStep] = React.useState(0); const [ref, inView] = useInView(0.3); React.useEffect(() => { if (!inView) return; const timers = steps.map((_, i) => setTimeout(() => setVisibleStep(i), i * 400)); return () => timers.forEach(clearTimeout); }, [inView]); return (
How to Apply

Five steps. One career-changing decision.

{/* Stepper */} {isMobile ? (
{steps.map((s, i) => (
{s.num}

{s.title}

{s.desc}

))}
) : (
{steps.map((s, i) => (
{s.num}

{s.title}

{s.desc}

))}
)}
Applications closing soon. Limited seats — cohort capped at 60 students.
Start your application
); }; Object.assign(window, { LabsSection, CampusSection, FeeSection, AdmissionSection });