/* IGI — Homepage */ function Home({ navigate }) { return ( <> ); } /* ----- HERO ----- */ function HomeHero({ navigate }) { const [insure, setInsure] = React.useState('motor'); const insureOptions = [ { id: 'motor', label: 'Car', icon: I.Car }, { id: 'home', label: 'Home', icon: I.Home }, { id: 'travel', label: 'Travel', icon: I.Plane }, { id: 'health', label: 'Health', icon: I.Heart }, ]; return (
{/* Subtle radial glow */}
{/* Grid pattern */}
{/* LEFT */}
ANNUAL REPORT 2025 RELEASED

Insurance built
for the way
Pakistan lives.

From your first car to your family's health, your home to your business — get protection that's clear, claims that are quick, and people who pick up the phone.

{[ ['72+', 'Years protecting Pakistan'], ['9', 'Cities nationwide'], ['AA', 'PACRA-rated, 9 yrs'], ].map(([n, l]) => (
{n}
{l}
))}
{/* RIGHT — Quote builder card */}
Get an instant quote
No paperwork. No phone calls. ~2 minutes.
Secure
{insureOptions.map(opt => ( ))}
{insure === 'motor' && (
PKR
)} {insure !== 'motor' && (
)}
256-bit encrypted · SECP-regulated · No spam, ever
); } /* ----- TRUST BAR ----- */ function TrustBar() { const partners = ['Atlas Honda', 'Suzuki', 'Toyota Indus', 'Habib Bank', 'MCB Bank', 'Engro', 'PSO', 'Lucky Cement']; return (
Trusted by Pakistan's leading institutions
{partners.map(p => (
{p}
))}
); } /* ----- PRODUCTS GRID ----- */ function ProductsGrid({ navigate }) { return (
Our products

One insurer.
Every cover you'll need.

{PRODUCTS.map((p, i) => ( ))}
); } /* ----- CLAIMS HOW IT WORKS ----- */ function ClaimsHow({ navigate }) { const steps = [ { n: '01', t: 'Report in 60 seconds', d: 'Open the app or call 111-308-308. Snap a few photos, share what happened.', icon: I.Phone }, { n: '02', t: 'We assign a surveyor', d: 'A claims officer is dispatched within 4 hours. You get their number on WhatsApp.', icon: I.User }, { n: '03', t: 'Approval & payment', d: '85% of claims under PKR 500,000 are settled within 7 working days. Direct to your account.', icon: I.CreditCard }, ]; return (
Claims, simplified

Three steps from
incident to paid.

No jargon. No runaround. We've redesigned the claims experience around one principle: tell us once, and we'll handle the rest.

{steps.map((s, i) => (
{s.n}
{s.t}
{s.d}
))}
); } /* ----- WHY CHOOSE ----- */ function WhyChoose() { const items = [ { icon: I.Award, title: 'AA-rated by PACRA', desc: 'Insurer Financial Strength rating sustained for 9 consecutive years.' }, { icon: I.Hospital, title: '450+ panel hospitals', desc: 'Cashless treatment at top hospitals across all major cities of Pakistan.' }, { icon: I.Wrench, title: '180+ approved workshops', desc: 'From Karachi to Skardu — your car gets serviced where you trust it.' }, { icon: I.Headset, title: '24/7 multilingual support', desc: 'English, Urdu, Punjabi, Sindhi, Pashto. Real humans, not bots.' }, { icon: I.Zap, title: 'Quote in 2 minutes', desc: 'Buy online, pay with debit/credit card, JazzCash or Easypaisa.' }, { icon: I.ShieldCheck, title: 'Sharia-compliant takaful', desc: 'A full takaful range certified by our independent Sharia board.' }, ]; return (
Why IGI

The fundamentals,
done right.

{items.map(it => (
{it.title}
{it.desc}
))}
); } /* ----- TESTIMONIALS ----- */ function Testimonials() { const t = [ { quote: 'Filed my motor claim from the parking lot of the accident. The surveyor showed up before the recovery van. Genuinely impressed.', name: 'Ahmed Faraz', role: 'Karachi · Motor Comprehensive', rating: 5 }, { quote: 'My mother needed cardiac surgery at AKU. Cashless from admission to discharge — not a single rupee out of pocket. Worth every paisa.', name: 'Sana Riaz', role: 'Lahore · Health Plan Gold', rating: 5 }, { quote: 'We insure our entire factory through IGI. Their engineering surveyors actually understand textile machinery. That makes a difference.', name: 'Tariq Mahmood', role: 'Faisalabad · Industrial', rating: 5 }, ]; return (
Customer voices

What our policyholders say.

{[1,2,3,4,5].map(i => )}
4.7 / 5
from 12,400+ reviews
{t.map((q, i) => (
{Array.from({ length: q.rating }).map((_, k) => )}

"{q.quote}"

{q.name[0]}
{q.name}
{q.role}
))}
); } /* ----- FAQ ----- */ function FAQ() { const [open, setOpen] = React.useState(0); const items = [ { q: 'How quickly can I get a quote?', a: 'Most quotes are generated in under 2 minutes. For complex commercial covers, an underwriter may follow up within 1 working day.' }, { q: 'What documents do I need to buy a policy online?', a: 'For most policies: CNIC, vehicle registration (for motor), and a valid mobile number. Health policies may require a brief health declaration. No medical exam for plans up to PKR 1 million sum insured.' }, { q: 'How are claims paid out?', a: 'Direct bank transfer (IBFT) for motor and property claims. For health, we settle directly with our 450+ panel hospitals — you pay nothing at the hospital.' }, { q: 'Do you offer Takaful (Sharia-compliant) plans?', a: 'Yes. IGI Takaful offers a full range of Sharia-compliant covers across motor, property, health, and family takaful, certified by our independent Sharia Supervisory Board.' }, { q: 'What if I want to cancel my policy?', a: 'You can cancel within 14 days of purchase for a full refund (cooling-off period). After that, refunds are pro-rated based on the unused period of cover, less administrative charges as per your policy schedule.' }, { q: 'Is my data secure?', a: 'All data is encrypted at rest and in transit using 256-bit encryption. We are SECP-regulated and adhere to the Personal Data Protection Bill standards.' }, ]; return (
FAQ

Questions,
answered.

Can't find what you're looking for? Our 24/7 support team is one call or chat away.

Browse all 120+ FAQs
{items.map((it, i) => (
{open === i && (
{it.a}
)}
))}
); } /* ----- FINAL CTA ----- */ function FinalCTA({ navigate }) { return (

Get the cover you need.
Get on with your day.

Quote in 2 minutes. Buy in 5. Backed by 72 years of Pakistani insurance heritage.

); } window.Home = Home;