Pushpanjali Logo

Orthopedics

About the Department

Orthopedic department at the Pushpanjali Hospital & Research Centre is functional right from the inception of the hospital in year 2003. Since then the department is at the forefront of orthopedic activities in the country. The department has been instrumental in hosting various academic and training activities attended by stalwarts and peers, both inland and abroad.

Services Available at Pushpanjali Hospital

Almost all surgeries in current scenario of orthopedics are conducted in state of the art theaters with well-qualified staff and support systems.

Joint Replacement Surgery


  • 1: Total Hip Replacement (THR.)
  • 2: Total Knee Replacement (TKR.)
  • 3: Partial, total and reverse shoulder replacement

Arthroscopy and Sports Orthopaedics


  • 1: Ligament Injury - Repair / Reconstruction ( ACL / PCL )
  • 2: Meniscus injuries
  • 3: Cartilage and meniscal reconstruction
  • 4: Shoulder Arthroscopy – Dislocation, Frozen shoulder, etc.

Management of Orthopedic Trauma


  • 1: Pelvic-acetabular trauma
  • 2: Pediatric Fractures
  • 3: Complex Intra-articular fractures
  • 4: Long bones fracture surgeries
  • 5: Spinal fractures & kyphoplasty/vertebroplasty

Limb Surgeries


  • 1: Osteotomy and realignment surgeries
  • 2: Limb lengthening for discrepancies
  • 3: Residual Polio & Crush injury treatment
  • 4: Complex trauma, non-unions & malunions

Spine Surgeries


  • 1: Degenerative & congenital spine issues
  • 2: Spinal Reconstruction and Tuberculosis
  • 3: Microscopic discectomy/laminectomy

Paediatric Orthopaedics


  • 1: Hip Dislocation/Dysplasia (DDH)
  • 2: Club Foot, Flat Feet, Blount’s disease
  • 3: Juvenile Rheumatoid Arthritis
  • 4: Adolescent Knee & Back Pain

Meet Our Doctors

Need Expert Care For Bones?

Book Appointment

Connect with top doctors across departments — from diagnosis to recovery, we’ve got you covered. Our team is available 24X7 to guide you.

Book an appointment with our specialists today.

Patient Testimonials

Hear what our patients have to say about their experiences at Pushpanjali Hospital

Frequently Asked Questions

Find answers to common questions about our services, appointments, insurance, and more.

Home
Department
Book
Appointment
Chat
Call Us
+91-9389925195 script> // Video Testimonials Carousel const videoSlider = document.querySelector( ".video-testimonials-slider" ); const videoCards = document.querySelectorAll( ".video-card" ); let videoCurrentPosition = 0; const videoCardsToShow = window.innerWidth >= 1024 ? 3 : window.innerWidth >= 768 ? 2 : 1; const videoCardWidth = 100 / videoCardsToShow; let videoAutoplayInterval; // Initialize video slider function initVideoSlider () { videoCards.forEach( ( card ) => { card.style.width = `${videoCardWidth}%`; } ); startVideoAutoplay(); } // Move video slider function moveVideoSlider () { videoCurrentPosition -= videoCardWidth; if ( videoCurrentPosition < -( videoCards.length - videoCardsToShow ) * videoCardWidth ) { videoCurrentPosition=0; } console.log( "transform width is: " , `translateX(${videoCurrentPosition}%)` ) videoSlider.style.transform=`translateX(${videoCurrentPosition}%)`; videoSlider.style.overflow="visible" ; } // Start autoplay for video slider function startVideoAutoplay () { videoAutoplayInterval=setInterval( moveVideoSlider, 3000 ); } // Stop autoplay function stopVideoAutoplay () { clearInterval( videoAutoplayInterval ); } // Video Modal const videoThumbnails=document.querySelectorAll( ".video-thumbnail" ); const videoModal=document.getElementById( "videoModal" ); const modalOverlay=document.getElementById( "modalOverlay" ); const closeModalBtn=document.getElementById( "closeModal" ); const youtubeVideo=document.getElementById( "youtubeVideo" ); // Open video modal videoThumbnails.forEach( ( thumbnail )=> { thumbnail.addEventListener( "click", () => { const videoId = thumbnail.getAttribute( "data-video-id" ); youtubeVideo.src = `https://www.youtube.com/embed/${videoId}?autoplay=1`; videoModal.classList.remove( "hidden" ); document.body.style.overflow = "hidden"; stopVideoAutoplay(); } ); } ); // Close video modal function closeVideoModal () { youtubeVideo.src = ""; videoModal.classList.add( "hidden" ); document.body.style.overflow = "auto"; startVideoAutoplay(); } closeModalBtn.addEventListener( "click", closeVideoModal ); modalOverlay.addEventListener( "click", closeVideoModal ); // Initialize video slider on load