+
+
Free Forever — No Credit Card
-
Run Your GCC Clinic on WhatsApp —
Reminders, Leads & Follow-Ups, Automated.
-
Every other clinic software sends reminders. Clinera sends WhatsApp reminders — the ones your patients actually open.
+
Run Your GCC Clinic on WhatsApp — Reminders, Leads & Follow-Ups, Automated.
+
Every other clinic software sends reminders. Clinera sends WhatsApp reminders — the ones your patients actually open. Built for GCC clinics. Free forever.
- 🇦🇪 DubaiAbu Dhabi🇸🇦 RiyadhJeddah
+ 🇦🇪 Dubai
+ Abu Dhabi
+ 🇸🇦 Riyadh
+ Jeddah
+
+
@@ -617,15 +653,28 @@
initSlider('photoSlider', 'photoPrev', 'photoNext', 'photoDots');
initSlider('testiSlider', 'testiPrev', 'testiNext', 'testiDots');
- // ── Hero image crossfade ──
+ // ── Hero image crossfade + dots ──
(function() {
const imgs = document.querySelectorAll('#heroSlider .hero-img');
+ const dotsEl = document.getElementById('heroDots');
let idx = 0;
- setInterval(() => {
+
+ imgs.forEach((_, i) => {
+ const d = document.createElement('div');
+ d.className = 'hero-dot' + (i === 0 ? ' active' : '');
+ d.addEventListener('click', () => goTo(i));
+ dotsEl.appendChild(d);
+ });
+
+ function goTo(i) {
imgs[idx].classList.remove('active');
- idx = (idx + 1) % imgs.length;
+ dotsEl.children[idx].classList.remove('active');
+ idx = i;
imgs[idx].classList.add('active');
- }, 4000);
+ dotsEl.children[idx].classList.add('active');
+ }
+
+ setInterval(() => goTo((idx + 1) % imgs.length), 4000);
})();