// ─────────── Invisalign Gallery — Happy Patients ─────────── const HAPPY_PHOTOS = [ { src: 'Invisalign%20delivery%20/IMG-20220523-WA0043.webp', alt: 'Patient smiling after Invisalign' }, { src: 'Invisalign%20delivery%20/IMG-20220519-WA0029.webp', alt: 'Dr. Abhijit handing Invisalign kit to patient' }, { src: 'Invisalign%20delivery%20/IMG_20220523_115813_354.webp', alt: 'Patient smiling with new aligners' }, { src: 'Invisalign%20delivery%20/IMG-20220519-WA0019.webp', alt: 'Dr. Abhijit with happy patient' }, { src: 'Invisalign%20delivery%20/IMG_20220503_115219.webp', alt: 'Patient receiving RTS clear aligners' }, { src: 'Invisalign%20delivery%20/IMG_20220523_115745_373.webp', alt: 'Patient with Never Compromise sign' }, { src: 'Invisalign%20delivery%20/IMG-20220523-WA0027__01.webp', alt: 'Patient with aligner kit' }, ]; const InvisalignGallery = () => (

Happy patients

Invisalign. Delivered with a smile.

Every aligner kit handed over is the result of months of planning and trust. Real patients, real results — at Align-O-Dent, Mulund.

{HAPPY_PHOTOS.map((p, i) => (
{p.alt}
))}
); // ─────────── Doctor in Action ─────────── const ACTION_PHOTOS = [ { src: 'Invisalign%20delivery%20/IMG-20220511-WA0057.webp', alt: 'Dr. Abhijit treating patient' }, { src: 'Invisalign%20delivery%20/IMG-20220427-WA0037.webp', alt: 'Dr. Abhijit at work' }, { src: 'Invisalign%20delivery%20/IMG-20220519-WA0021.webp', alt: 'Dr. Abhijit reviewing X-ray with patient' }, { src: 'Invisalign%20delivery%20/IMG-20220511-WA0061.webp', alt: 'Treatment in progress' }, { src: 'Invisalign%20delivery%20/IMG-20220523-WA0036.webp', alt: 'Dr. Abhijit treating patient' }, ]; const DoctorInAction = () => (

Doctor in action

Dr. Abhijit, at work.

Candid shots from the clinic. Every patient treated with focus, precision, and patience — and the camera caught some of it.

{ACTION_PHOTOS.map((p, i) => (
{p.alt}
))}
); Object.assign(window, { InvisalignGallery, DoctorInAction });