Weight Loss Surgery at Basavanna Hospitals

Transform Your Life with Advanced Bariatric Surgery

Under the expert care of Dr. Vemuri Prasanna Kumar, our renowned bariatric surgeon, Basavanna Hospitals offers life-changing obesity surgery solutions with a 98% success rate. Our Center for Metabolic and Bariatric Surgery combines cutting-edge techniques with personalized care to help patients achieve sustainable weight loss and improved health.

.candidate-section { background: #f8f9fa; padding: 2rem; border-radius: 10px; margin: 2rem 0; } .candidate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; } .candidate-card { background: white; padding: 1.5rem; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); display: flex; align-items: center; } .candidate-icon { font-size: 1.8rem; margin-right: 1rem; min-width: 50px; text-align: center; } .bmi-calculator { background: #1a5f9e; padding: 2rem; border-radius: 10px; color: white; text-align: center; } .bmi-inputs { display: flex; gap: 1rem; justify-content: center; margin: 1rem 0; } .bmi-input { padding: 0.8rem; border: 2px solid #e67e22; border-radius: 8px; width: 150px; } .bmi-result { font-size: 1.5rem; margin-top: 1rem; font-weight: bold; } /* Color Coding for BMI Results */ .normal { color: #27ae60; } .overweight { color: #f1c40f; } .obese { color: #e74c3c; }

Are You a Candidate?

BMI ≥40

Class III Obesity

BMI ≥35 + Conditions

Diabetes, Hypertension, Sleep Apnea

BMI 30-34.9

Uncontrolled Type 2 Diabetes

Failed Attempts

Previous Weight Loss Efforts

Check Your BMI Now

function calculateBMI() { const height = document.getElementById('height').value/100; const weight = document.getElementById('weight').value; const result = document.getElementById('bmi-result'); if(height && weight) { const bmi = (weight/(height*height)).toFixed(1); let category = ''; let colorClass = ''; if(bmi < 18.5) { category = 'Underweight'; colorClass = 'underweight'; } else if(bmi < 25) { category = 'Normal'; colorClass = 'normal'; } else if(bmi < 30) { category = 'Overweight'; colorClass = 'overweight'; } else { category = 'Obese'; colorClass = 'obese'; } result.innerHTML = `BMI: ${bmi} (${category})`; } else { result.innerHTML = 'Please enter valid values'; } }
:root { --primary: #1a5f9e; --secondary: #e67e22; --success: #27ae60; } .surgical-solutions { padding: 4rem 0; background: #f8f9fa; } .procedure-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; } .procedure-card { background: white; border-radius: 15px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s ease; position: relative; overflow: hidden; } .procedure-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); } .procedure-header { display: flex; align-items: center; margin-bottom: 1.5rem; } .procedure-icon { width: 60px; height: 60px; background: rgba(26, 95, 158, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); margin-right: 1rem; } .success-rate { background: var(--success); color: white; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.9rem; position: absolute; top: 1rem; right: 1rem; } .key-points { list-style: none; padding: 0; margin: 1.5rem 0; } .key-points li { padding: 0.8rem 0; border-bottom: 1px solid #eee; display: flex; align-items: center; } .key-points li:last-child { border-bottom: none; } .key-points i { color: var(--secondary); margin-right: 0.8rem; } .ideal-for { background: rgba(230, 126, 34, 0.1); padding: 1rem; border-radius: 10px; margin-top: 1.5rem; } .bmi-scale { width: 100%; height: 10px; background: #ddd; border-radius: 5px; margin: 2rem 0; position: relative; } .bmi-marker { position: absolute; top: -5px; width: 20px; height: 20px; background: var(--primary); border-radius: 50%; transform: translateX(-50%); } @keyframes cardEntrance { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } } .animate-card { animation: cardEntrance 0.8s ease forwards; } @media (max-width: 768px) { .procedure-grid { grid-template-columns: 1fr; } }

Our Surgical Solutions

75-80% EWL

Sleeve Gastrectomy

  • Reduces stomach size by 80%
  • No intestinal rerouting
  • 60-90 minute procedure
Ideal for: Most patients, especially those with GERD
70-75% EWL

Gastric Bypass

  • Creates small stomach pouch
  • Intestinal bypass
  • Best metabolic outcomes
Best for: Severe obesity with diabetes
40-50% EWL

Gastric Band

  • Adjustable silicone band
  • Minimally invasive
  • Reversible procedure
Suitable for: Lower BMI patients
85-90% EWL

Duodenal Switch

  • Combines sleeve + bypass
  • Highest weight loss
  • Malabsorptive component
For: Super obesity (BMI >50)
const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if(entry.isIntersecting) { entry.target.classList.add('animate-card'); } }); }, { threshold: 0.1 }); document.querySelectorAll('.procedure-card').forEach(card => { observer.observe(card); });
:root { --primary: #1a5f9e; --secondary: #e67e22; --success: #27ae60; --danger: #e74c3c; } .why-choose-accordion { margin: 3rem 0; } .accordion-item { border-radius: 15px; overflow: hidden; margin-bottom: 1.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .accordion-header { background: white; padding: 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s; border-left: 5px solid var(--primary); } .accordion-header:hover { background: rgba(26, 95, 158, 0.05); } .accordion-header.active { background: var(--primary); color: white; } .accordion-header.active .icon { color: white; } .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; } .accordion-content-inner { padding: 2rem; background: rgba(245, 247, 250, 0.8); } .stats-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; } .stats-table th { background: var(--primary); color: white; padding: 1rem; text-align: left; } .stats-table td { padding: 1rem; border-bottom: 1px solid #eee; } .stats-table tr:nth-child(even) { background: white; } .comparison-badge { display: inline-block; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.9rem; } .our-result { background: rgba(39, 174, 96, 0.15); color: var(--success); } .national-average { background: rgba(231, 76, 60, 0.15); color: var(--danger); } .progress-bar { height: 10px; background: #eee; border-radius: 5px; overflow: hidden; } .progress-fill { height: 100%; background: var(--secondary); transition: width 0.5s ease; } @keyframes slideIn { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } } .animate-slide { animation: slideIn 0.8s ease forwards; }

Surgical Excellence

1.2% Complications

Dr. Vemuri Prakash

12+ years experience | 2000+ successful procedures

Advanced Techniques

Laparoscopic/Robotic-assisted surgery

95% Minimally Invasive Rate
1.2% Complication Rate
4-6% National Average

Comprehensive Care

5-Year Follow-Up

Pre-Operative

  • Psychological Evaluation
  • Nutritional Counseling
  • Cardiac Clearance

Intra-Operative

  • Enhanced Recovery Protocols
  • Advanced Pain Management
  • 24/7 Surgical Team

Post-Operative

  • 5-Year Follow-Up Program
  • Support Group Access
  • Mobile App Tracking

Proven Results

94% Success Rate
Metric Our Results National Average
Average Weight Loss (1 Year) 65-85% 50-60%
Diabetes Resolution 86% 68%
Hypertension Improvement 78% 55%
Sleep Apnea Resolution 94% 82%
Our Results
National Average
document.querySelectorAll('.accordion-header').forEach(header => { header.addEventListener('click', () => { header.classList.toggle('active'); const content = header.nextElementSibling; content.style.maxHeight = content.style.maxHeight ? null : `${content.scrollHeight}px`; }); }); // Intersection Observer for animations const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if(entry.isIntersecting) { entry.target.style.animationDelay = `${entry.target.dataset.delay || 0}ms`; entry.target.classList.add('animate-slide'); } }); }, { threshold: 0.1 }); document.querySelectorAll('.accordion-item').forEach((item, index) => { item.dataset.delay = index * 150; observer.observe(item); });
.surgical-journey { padding: 4rem 0; background: #f8f9fa; } .timeline { position: relative; max-width: 1200px; margin: 0 auto; padding: 40px 0; } .timeline::after { content: ''; position: absolute; width: 4px; background: #1a5f9e; top: 0; bottom: 0; left: 50%; margin-left: -2px; } .timeline-card { position: relative; width: 45%; background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin: 20px 0; transition: all 0.3s ease; } .timeline-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); } .left { left: 0; } .right { left: 55%; } .timeline-card::after { content: ''; position: absolute; width: 20px; height: 20px; background: #e67e22; border: 4px solid white; top: 30px; border-radius: 50%; z-index: 1; } .left::after { right: -15px; } .right::after { left: -15px; } .step-number { position: absolute; top: -15px; font-size: 1.5rem; font-weight: bold; color: #1a5f9e; background: white; padding: 0 10px; } .step-icon { font-size: 2rem; color: #e67e22; margin-bottom: 1rem; } .step-content ul { list-style: none; padding: 0; } .step-content li { padding: 0.8rem 0; border-bottom: 1px solid #eee; display: flex; align-items: center; } .step-content li:last-child { border-bottom: none; } .step-content li i { margin-right: 10px; color: #1a5f9e; } @media (max-width: 768px) { .timeline::after { left: 31px; } .timeline-card { width: 100%; left: 0 !important; margin-left: 40px; } .timeline-card::after { left: -15px !important; } }

The Surgical Journey

01

Consultation

  • Health evaluation
  • Psychological assessment
  • Insurance verification
02

Pre-Op Preparation

  • 2-Week Liver Shrinking Diet
  • Smoking cessation program
  • Physical therapy assessment
03

Surgery

  • 60-90 Minute Procedure
  • 1-2 Night Hospital Stay
  • Pain Management Protocol
04

Recovery & Beyond

  • Week 1: Liquid diet & walking
  • Month 1: Pureed foods & vitamins
  • Year 1: Monthly support groups
const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if(entry.isIntersecting) { entry.target.style.opacity = 1; entry.target.style.transform = 'translateX(0)'; } }); }, { threshold: 0.1 }); document.querySelectorAll('.timeline-card').forEach(card => { card.style.opacity = 0; card.style.transition = 'all 0.6s ease'; if(card.classList.contains('left')) { card.style.transform = 'translateX(-50px)'; } else { card.style.transform = 'translateX(50px)'; } observer.observe(card); });
.benefits-section { padding: 4rem 0; background: #f8f9fa; } .grid-3col { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; } .benefit-card { background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.3s; } .benefit-card:hover { transform: translateY(-5px); } .flame-icon { color: #e67e22; font-size: 2rem; margin-bottom: 1rem; } .financing-section { background: #1a5f9e; color: white; padding: 3rem 0; } .financing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; } .finance-item { text-align: center; padding: 1.5rem; } .testimonial-section { padding: 4rem 0; } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; } .testimonial-card { background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-left: 4px solid #e67e22; } .user-icon { font-size: 2.5rem; color: #1a5f9e; margin-bottom: 1rem; } .section-title { text-align: center; margin-bottom: 3rem; } .section-title h2 { color: #1a5f9e; position: relative; display: inline-block; } .section-title h2::after { content: ''; position: absolute; width: 60px; height: 3px; background: #e67e22; bottom: -10px; left: 50%; transform: translateX(-50%); }

Health Benefits Beyond Weight Loss

Reverse Type 2 Diabetes

86% of patients achieve diabetes remission

Improve Heart Health

78% reduction in cardiovascular risks

Resolve Sleep Apnea

94% patients report improved sleep quality

Reduce Cancer Risk

Up to 33% lower cancer mortality risk

Enhance Fertility

Improved hormonal balance and fertility rates

Relieve Joint Pain

Significant reduction in weight-bearing joint pain

Insurance & Financing

Insurance Coverage

Covered by most insurers for BMI ≥40

EMI Options

Flexible payment plans available

Tax Benefits

Under Section 80D of Income Tax Act

Patient Success Stories

"Lost 65kg, Diabetes-Free!"
- Ramesh, 42
"Gained a New Life Post-Surgery"
- Sunita, 38