import React from 'react'; import { Users, Ambulance, Hospital, HeartPulse } from 'lucide-react'; const Services = () => { const services = [ { icon: , title: "Injury Prevention - Outreach Activity", description: "Community-based programs including first responder training for laypersons, schools and workplace groups. Education in helmet use, bleeding control, safe transport practices and initial life-saving care." }, { icon: , title: "Pre-Hospital Care", description: "24x7 ambulance service for trauma calls and transfers (Contact: +91 97919 79797). Early triage, stabilization and rapid transport to definitive care." }, { icon: , title: "Clinical Services - In-Hospital Care", description: "Level-1 trauma centre with dedicated trauma wards, ICU units, six trauma OTs, resuscitation bay, 24×7 consultant-led teams and on-call interventional radiology for polytrauma, road-traffic injuries, falls and complex cases." }, { icon: , title: "Post-Trauma Rehabilitation", description: "Structured recovery programs through PMR Department including physiotherapy, occupational therapy, prosthetic support and return-to-work planning." } ]; return (

Our Services

We provide urgent care for

{services.map((service, index) => (
{service.icon}

{service.title}

{service.description}

))}
); }; export default Services;