B-CARE PRODUCT

Transforming Healthcare Access Through B-Care

High-quality, proactive healthcare made affordable and accessible

B-Care: Our Flagship Subscription

B-Care is BIMA’s signature phygital health subscription that brings together telemedicine, diagnostics, insurance, and seamless payment via mobile.

At up to 5x better value, B-Care offers comprehensive coverage at unmatched affordability. It all starts with a certified BIMA doctor, guiding each customer through a personalized journey — from diagnosis to treatment.

A True Cashless Experience

Everything is handled digitally: from consultations and tests to prescriptions and insurance claims — all at the tap of a button.

With B-Care, members enjoy a fully cashless medical experience through our integrated partner network — including labs, hospitals, and pharmacies.

Transforming Healthcare Access Through B-Care

High-quality, proactive healthcare made affordable and accessible

B-Care: Our Flagship Subscription

B-Care is BIMA’s signature phygital health subscription that brings together telemedicine, diagnostics, insurance, and seamless payment via mobile.

At up to 5x better value, B-Care offers comprehensive coverage at unmatched affordability. It all starts with a certified BIMA doctor, guiding each customer through a personalized journey — from diagnosis to treatment.

A True Cashless Experience

Everything is handled digitally: from consultations and tests to prescriptions and insurance claims — all at the tap of a button.

With B-Care, members enjoy a fully cashless medical experience through our integrated partner network — including labs, hospitals, and pharmacies.

import { useState } from "react"; import { motion, AnimatePresence } from "framer-motion"; import { Button } from "@/components/ui/button"; import { ChevronRight, ChevronLeft } from "lucide-react"; const slides = [ { title: "Innovating Digital Health Solutions for Better Care", image: "/dc2fec09-aa1f-4425-ade4-b802f22630e7.png", // update this path as needed buttonText: "Learn More", }, // Add more slides as needed ]; export default function HeadingSlider() { const [current, setCurrent] = useState(0); const nextSlide = () => setCurrent((prev) => (prev === slides.length - 1 ? 0 : prev + 1)); const prevSlide = () => setCurrent((prev) => (prev === 0 ? slides.length - 1 : prev - 1)); return (
{/* Left Content */}

{slides[current].title}

{/* Right Image */} Slide visual
{/* Navigation Buttons */}
); }