function Services() { const items = [ { num: '01', title: 'Career counseling', desc: 'One-on-one sessions mapping your goals to programs and industries — with real data on outcomes, not hype.' }, { num: '02', title: 'Admission support', desc: 'Document checklists, application review, deadlines, and direct coordination with university admission cells.' }, { num: '03', title: 'Placement assistance', desc: 'Curated openings, resume review, 9 months of post-enrolment career support across hiring cycles.' }, { num: '04', title: 'Mentorship program', desc: 'Industry mentors across product, finance, tech and design — matched to your track, available monthly.' }, { num: '05', title: 'Scholarship guidance', desc: 'We surface the scholarships you actually qualify for and help you complete every application on time.' }, { num: '06', title: 'Interview & resume prep', desc: 'Mock interviews, feedback cycles, portfolio reviews — built with hiring managers from partner companies.' }, ]; return (
Student services

From course pick to career-ready,
we stay with you.

Enrolling is the easy part. Everything that happens after is what separates a transcript from a career.

{items.map((s, i) => (
{s.num}
{s.title}

{s.desc}

))}
); } window.Services = Services;