const TESTIMONIALS = [ { quote: "They told me the boring truth at exactly the moment I wanted to do something exciting. That's the whole job — and it's saved me from at least three expensive mistakes.", name: "Anaya Krishnan", role: "Founder · Bangalore", since: "Client since 2014", image: "https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=200&q=80", }, { quote: "I'm an NRI in Toronto and managing my Indian assets used to mean a stack of WhatsApp messages with five people. MaxWealth replaced all of that with one quarterly call and a clean dashboard.", name: "Karan Sethi", role: "Software Architect · NRI Canada", since: "Client since 2019", image: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&q=80", }, { quote: "We moved our company's ₹8 crore reserves from a 3.5% sweep-in to a properly designed treasury portfolio. The yield went up; the access didn't change. Highly recommended.", name: "Meera Bansal", role: "CFO · D2C Brand, Delhi NCR", since: "Client since 2022", image: "https://images.unsplash.com/photo-1580489944761-15a19d654956?w=200&q=80", }, { quote: "Honest, patient and proactive. They restructured our SIPs, fixed two insurance overlaps we didn't know we had, and built a retirement plan I actually understand.", name: "Dr. Ravinder Singh", role: "Cardiologist · Mohali", since: "Client since 2016", image: "https://images.unsplash.com/photo-1612349317150-e413f6a5b16d?w=200&q=80", }, ]; const Stars = () => (
{[0,1,2,3,4].map(i => ( ))}
); const Testimonials = () => { const [idx, setIdx] = useState(0); const cur = TESTIMONIALS[idx]; return (
{/* Left column */}

Quiet trust. Built over decades.

94% of our clients have been with us for more than five years. Here's what a few of them have to say — unedited, used with permission.

{/* Overall rating card */}
4.9 / 5.0

Based on 312 verified client reviews on Google, JustDial and direct surveys (FY 2024-25).

{/* Right column: testimonial carousel */}
{/* Big quote mark */}
{cur.quote}
{cur.name}
{cur.name}
{cur.role} · {cur.since}
{/* Controls */}
{TESTIMONIALS.map((_, i) => (
); }; window.Testimonials = Testimonials;