Pushpanjali Logo

Orthopedics

About the Department

Since 2003, the Orthopedic Department at Pushpanjali Hospital & Research Centre has been a leader in advanced orthopedic care. Renowned for its expertise in Hip Replacement and Knee Replacement Surgeries, the department employs cutting-edge techniques and premium implants to restore mobility and enhance quality of life

Supported by modern technology and a highly skilled team, the department also offers comprehensive services including trauma care, arthroscopy, and spine surgery. With a focus on patient safety and personalized treatment, Pushpanjali provides some of the best orthopedic care in Agra and the surrounding region.

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

See what our patients shares 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