Dr. Bhavesh Hirpara

MD Fertility Consultant | Practicing in infertility since last 15 years..

Book Appointment
Dr. Bhavesh Hirpara

About Dr. Bhavesh Hirpara

Dr. Bhavesh Hirpara is a highly experienced IVF specialist with over 15 years of practice in infertility treatments. With a dedication to improving the lives of patients struggling with infertility, Dr. Hirpara offers advanced IVF techniques, personalized care, and compassionate guidance throughout the treatment journey. Dr. Hirpara is known for his expertise in reproductive health and has helped numerous patients achieve successful pregnancies through IVF and other assisted reproductive technologies. His deep understanding of the complexities of infertility and his commitment to patient care have earned him the trust of countless individuals and families.

Expertise & Specialties

Dr. Bhavesh Hirpara specializes in In Vitro Fertilization (IVF) treatments, offering advanced techniques for patients with infertility issues. With 15 years of experience, Dr. Hirpara offers specialized infertility treatments to help couples realize their dreams of parenthood. Additionally, Dr. Hirpara provides a range of assisted reproductive technologies (ART) to support patients in achieving successful pregnancies.

// banner slider script var swiper = new Swiper(".mySwiper", { spaceBetween: 30, effect: "fade", // autoplay: { // delay: 20000, // }, fadeEffect: { crossFade: true, }, loop: true, pagination: { el: ".swiper-pagination", clickable: true, }, }); swiper.on('slideChange', function (e) { const currentSlideIndex = e?.activeIndex const currentSlide = e?.slides[currentSlideIndex] var videoElement = $(currentSlide).find('.video-banner'); if (videoElement?.length > 0) { videoElement.get(0).currentTime = 0; } }); // patient slider script var swiper = new Swiper(".patient", { slidesPerView: 3, spaceBetween: 30, loop: false, pagination: { el: '.swiper-pagination', clickable: true, dynamicBullets: true }, breakpoints: { 0: { slidesPerView: 1, }, 580: { slidesPerView: 2, spaceBetween: 20, }, 767: { slidesPerView: 3, }, }, }); // blogArtical slider script var swiper = new Swiper(".blogArtical", { slidesPerView: 4, spaceBetween: 20, loop: false, pagination: { el: '.swiper-pagination', clickable: true, dynamicBullets: true }, breakpoints: { 0: { slidesPerView: 1, }, 580: { slidesPerView: 2, }, 767: { slidesPerView: 3, }, 1282: { slidesPerView: 4, }, }, }); // team slider var swiper = new Swiper(".teamSlider", { slidesPerView: 4, spaceBetween: 20, loop: false, pagination: { el: '.swiper-pagination', clickable: true, dynamicBullets: true }, breakpoints: { 0: { slidesPerView: 1, }, 580: { slidesPerView: 2, }, 991: { slidesPerView: 3, }, 1282: { slidesPerView: 4, }, }, }); // header sticky script $(window).scroll(function () { if ($(this).scrollTop() > 100) { $(".site_header").addClass("sticky-header"); } else { $(".site_header").removeClass("sticky-header"); } }); const slider = document.querySelector('.domestic_scroll'); let isDown = false; let startX; let scrollLeft; slider.addEventListener('mousedown', (e) => { isDown = true; slider.classList.add('active'); startX = e.pageX - slider.offsetLeft; scrollLeft = slider.scrollLeft; }); slider.addEventListener('mouseleave', () => { isDown = false; slider.classList.remove('active'); }); slider.addEventListener('mouseup', () => { isDown = false; slider.classList.remove('active'); }); slider.addEventListener('mousemove', (e) => { if (!isDown) return; e.preventDefault(); const x = e.pageX - slider.offsetLeft; const walk = (x - startX) * 3; //scroll-fast slider.scrollLeft = scrollLeft - walk; console.log(walk); });