/* DemandAndProgram.jsx — Sections 3–4: FULLY RESPONSIVE + REDESIGNED PROGRAM */ /* ── Hooks ───────────────────────────────────────────────────── */ const useCountUp = (target, duration = 2000, inView = false) => { const [val, setVal] = React.useState(0); React.useEffect(() => { if (!inView) return; let start = 0; const step = (ts) => { if (!start) start = ts; const progress = Math.min((ts - start) / duration, 1); const eased = 1 - Math.pow(1 - progress, 3); setVal(Math.round(target * eased)); if (progress < 1) requestAnimationFrame(step); }; requestAnimationFrame(step); }, [inView, target, duration]); return val; }; const useInView = (threshold = 0.3) => { const ref = React.useRef(null); const [inView, setInView] = React.useState(false); React.useEffect(() => { const obs = new IntersectionObserver( ([e]) => { if (e.isIntersecting) setInView(true); }, { threshold } ); if (ref.current) obs.observe(ref.current); return () => obs.disconnect(); }, []); return [ref, inView]; }; /* ── Section 3: Cyber Security Demand ────────────────────────── */ const CyberDemandSection = () => { const { isMobile } = useResponsive(); const [ref, inView] = useInView(0.2); const stat1 = useCountUp(1, 2000, inView); const stat3 = useCountUp(30, 2000, inView); return (
The Cyber Opportunity

India needs cyber defenders. The world is hiring them at premium salaries.

Cyberattacks against Indian organisations grew sharply over the last five years. India faces a projected shortage of nearly one million skilled cyber security professionals — and global firms are paying entry-level talent above the market average to fill the gap.

{[ { num: `~${stat1} Million`, caption: 'Estimated cyber security talent gap in India' }, { num: '₹6–12 LPA', caption: 'Typical fresher package for skilled cyber roles' }, { num: `${stat3}%+`, caption: 'Year-on-year growth in demand for cyber professionals' }, ].map((s, i) => (
{s.num}
{s.caption}
))}

Source: industry estimates including DSCI, NASSCOM, and major recruitment firms.

This program is built for that demand.

); }; /* ── Section 4: Program at a Glance — REDESIGNED ─────────────── */ const ProgramGlanceSection = () => { const { isMobile, isTablet } = useResponsive(); const facts = [ { label: 'Duration', value: '4 Years · 8 Semesters', icon: '⏱' }, { label: 'Degree', value: 'B.Tech CSE (Cyber Security)', sub: 'UGC-recognised · NAAC A++ university' }, { label: 'Co-created with', value: 'KPMG in India', highlight: true }, { label: 'Academic Partner', value: 'Macquarie University Sydney', sub: 'Cyber Skills Academy' }, { label: 'Tuition Fee', value: '₹4.0 Lakh per annum', highlight: true }, { label: 'Campus', value: 'Rajamahendravaram, Andhra Pradesh' }, ]; return (
{/* Subtle grid pattern overlay */}
{/* Section header */}
Program Overview

Everything you need to know, at a glance.

A degree built for the cyber security era. Co-created with industry leaders.

{/* Facts grid */}
{facts.map((f, i) => (
{f.label}
{f.value}
{f.sub && (
{f.sub}
)}
))}
{/* Right: CTA card with fee highlight */}
{/* Fee callout */}
Course Fee
4.0 LPA
per annum · all inclusive
KPMG-led specialisation modules
Macquarie University co-credential
Industry certifications included
Apply Now — Limited to 60 Seats Talk to a Counsellor
Merit scholarships available for top scorers
{/* Bottom CTA link */}
See full 8-semester curriculum →
); }; Object.assign(window, { CyberDemandSection, ProgramGlanceSection, useInView, useCountUp });