/* ===== BOOK ACTION BUTTON ===== */ .book-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; font-size: 15px; font-weight: 600; background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #ffffff; border: none; border-radius: 10px; cursor: pointer; box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25); transition: all 0.25s ease; } /* Hover */ .book-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35); background: linear-gradient(135deg, #1d4ed8, #1e40af); } /* Active */ .book-btn:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25); } /* Disabled (future use) */ .book-btn:disabled { background: #9ca3af; cursor: not-allowed; box-shadow: none; } /* ========================= CONTAINER ========================= */ .container { max-width: 1100px; margin: auto; padding: 48px 24px; font-family: 'Segoe UI', Roboto, Arial, sans-serif; } /* ========================= PAGE HEADER ========================= */ .page-header { text-align: center; margin-bottom: 48px; } .page-header h1 { font-size: 34px; font-weight: 800; color: #0b2c5d; letter-spacing: -0.4px; margin-bottom: 10px; } .page-header p { color: #5a677d; font-size: 16px; max-width: 720px; margin: auto; line-height: 1.6; } /* ========================= ORGAN PACKAGE CARD ========================= */ .organ-package { background: #ffffff; border: 1px solid #dde5ef; border-radius: 18px; padding: 36px 40px; margin-bottom: 48px; box-shadow: 0 6px 22px rgba(11, 44, 93, 0.06); } .organ-package h2 { font-size: 26px; font-weight: 800; color: #0b2c5d; margin-bottom: 14px; letter-spacing: -0.3px; } /* ========================= DESCRIPTION ========================= */ .organ-desc { font-size: 16px; color: #4b5b73; line-height: 1.7; margin-bottom: 24px; } /* ========================= TEST LIST (STANDARD LOOK) ========================= */ .organ-tests { list-style: none; padding: 0; margin-bottom: 28px; } .organ-tests li { font-size: 15px; font-weight: 600; color: #1e293b; padding: 10px 14px; margin-bottom: 10px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; } /* ========================= ACTION BUTTONS ========================= */ .organ-actions { display: flex; gap: 16px; flex-wrap: wrap; } /* Primary */ .book-btn { background: linear-gradient(135deg, #0b5ed7, #094bb5); color: #ffffff; border: none; padding: 14px 30px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; letter-spacing: 0.3px; } /* Secondary */ .call-btn { background: #ffffff; color: #0b5ed7; padding: 14px 30px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; border: 2px solid #0b5ed7; } /* ========================= TESTS INCLUDED – PREMIUM UI ========================= */ .tests-block h3 { margin-bottom: 14px; font-size: 16px; color: #0b2c5d; } .tests-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; } .test-item { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 14px 16px; } .test-name { display: block; font-weight: 700; font-size: 14px; color: #0b2c5d; margin-bottom: 4px; } .test-desc { display: block; font-size: 13px; color: #4a5568; line-height: 1.4; } /* Know More Button */ .know-more-btn { margin: 18px 0 26px; background: #ffffff; color: #0b5ed7; border: 2px solid #0b5ed7; padding: 12px 26px; font-size: 14px; font-weight: 700; border-radius: 8px; cursor: pointer; } /* Hidden Content */ .organ-more-details { display: none; margin-bottom: 26px; } /* Expanded */ .organ-more-details.active { display: block; } /* Overlay */ .booking-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); display: none; align-items: center; justify-content: center; z-index: 9999; } /* Card */ .booking-card { background: #ffffff; width: 92%; max-width: 420px; padding: 26px; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.25); position: relative; animation: fadeIn 0.25s ease; } /* Close */ .close-btn { position: absolute; top: 14px; right: 16px; font-size: 22px; background: none; border: none; cursor: pointer; color: #444; } /* ========================= OVERLAY (SMART BLUR) ========================= */ .simple-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.55); /* medical dark blue */ backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; z-index: 9999; } /* ========================= MODAL (MOBILE FIRST) ========================= */ .simple-modal { background: #ffffff; width: 92%; max-width: 420px; padding: 24px; border-radius: 14px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25); position: relative; animation: popIn 0.25s ease; } /* Desktop spacing */ @media (min-width: 768px) { .simple-modal { padding: 32px; } } /* ========================= CLOSE BUTTON ========================= */ .close-x { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: #f1f5f9; border: none; font-size: 20px; cursor: pointer; color: #374151; } /* ========================= HEADINGS ========================= */ .modal-heading { font-size: 20px; font-weight: 600; color: #0f172a; margin-bottom: 6px; } .modal-desc { font-size: 14px; color: #64748b; margin-bottom: 22px; line-height: 1.5; } /* ========================= LABELS ========================= */ .simple-modal label { display: block; font-size: 13px; font-weight: 500; color: #334155; margin-bottom: 6px; margin-top: 18px; } /* ========================= INPUTS ========================= */ .simple-modal input, .simple-modal textarea { width: 100%; padding: 14px 15px; font-size: 14px; border-radius: 8px; border: 1px solid #cbd5e1; background: #ffffff; transition: border 0.2s, box-shadow 0.2s; } .simple-modal input:focus, .simple-modal textarea:focus { outline: none; border-color: #2563eb; box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15); } .simple-modal input[readonly] { background: #f8fafc; font-weight: 600; } /* ========================= TEXTAREA ========================= */ .simple-modal textarea { resize: none; height: 88px; } /* ========================= LOCATION LINK ========================= */ .location-link { margin-top: 8px; background: none; border: none; color: #2563eb; font-size: 13px; cursor: pointer; padding: 0; } /* ========================= PRIMARY BUTTON ========================= */ .confirm-btn { margin-top: 26px; width: 100%; background: #2563eb; color: #ffffff; padding: 15px; font-size: 15px; font-weight: 600; border: none; border-radius: 10px; cursor: pointer; transition: background 0.2s, transform 0.1s; } .confirm-btn:hover { background: #1d4ed8; } .confirm-btn:active { transform: scale(0.98); } /* ========================= FOOTER NOTE ========================= */ .call-note { margin-top: 16px; font-size: 13px; color: #64748b; text-align: center; } /* ========================= ANIMATION ========================= */ @keyframes popIn { from { transform: translateY(10px) scale(0.96); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } } /* =============================== CORE ORGAN HERO BANNER ================================ */ .core-organ-hero { background: linear-gradient(135deg, #0f766e, #14b8a6); padding: 60px 16px; display: flex; justify-content: center; align-items: center; text-align: center; } .core-organ-hero-content { max-width: 900px; color: #ffffff; } .hero-badge { display: inline-block; background: rgba(255, 255, 255, 0.15); padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 16px; } .core-organ-hero h1 { font-size: 28px; font-weight: 800; line-height: 1.25; margin-bottom: 14px; } .core-organ-hero h1 span { color: #ecfeff; } .core-organ-hero p { font-size: 15px; line-height: 1.6; color: #e6fffb; margin-bottom: 26px; } .hero-actions { display: flex; flex-direction: column; gap: 12px; } .hero-btn { padding: 14px 18px; border-radius: 12px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.25s ease; } .hero-btn.primary { background: #ffffff; color: #0f766e; } .hero-btn.primary:hover { transform: translateY(-2px); } .hero-btn.secondary { border: 1px solid rgba(255,255,255,0.6); color: #ffffff; } .hero-btn.secondary:hover { background: rgba(255,255,255,0.15); } /* =============================== DESKTOP ENHANCEMENTS ================================ */ @media (min-width: 768px) { .core-organ-hero { padding: 90px 24px; text-align: left; } .core-organ-hero-content { text-align: left; } .core-organ-hero h1 { font-size: 44px; } .core-organ-hero p { font-size: 17px; max-width: 720px; } .hero-actions { flex-direction: row; gap: 16px; } }
Niva Health Kare
Location Select city
Niva Health Kare
Your Location Bangalore

Your Cart

checkout test: 0 Total Price: ₹0
Proceed
Niva Health Care

Core Body Organ
Health Packages

Select an organ to understand recommended diagnostic tests and book a specialized health screening for your heart, kidneys, liver, bones, hormones, vitamins, thyroid, gut, and more.

Heart Health Checkup Package

Tests Included in This Package

ECG Checks heart rhythm & electrical activity
Lipid Profile Measures cholesterol & heart risk
Blood Pressure Detects high or low BP
HbA1c Evaluates diabetes-related heart risk
2D Echo Heart structure & pumping (if advised)
hs-CRP Inflammation linked to heart disease

Heart Checkup

A comprehensive heart screening designed to detect early signs of heart disease, assess cardiovascular risk, and help you take preventive action before symptoms appear.

Who Should Take This Test?

  • People above 30 years
  • High BP, diabetes, obesity
  • Family history of heart disease
  • Smokers or high-stress lifestyle

Why This Checkup Is Important

Heart diseases often progress silently. Early detection helps prevent heart attacks, strokes, and long-term complications.

Kidney Health Checkup Package

Tests Included in This Package

Serum Creatinine Measures kidney filtration efficiency
Blood Urea Evaluates waste removal by kidneys
eGFR Estimates overall kidney function
Urine Routine Examination Detects infection, protein & sugar
Urine Albumin Early marker of kidney damage
Electrolytes (Na, K) Checks fluid & salt balance

Kidney Health Checkup

This package helps assess kidney performance, detect early kidney damage, and prevent progression to chronic kidney disease through timely diagnosis.

Who Should Take This Test?

  • People with diabetes or high blood pressure
  • Individuals with frequent urinary infections
  • Family history of kidney disease
  • Long-term medication users

Why This Checkup Is Important

Kidney diseases often show no early symptoms. Regular screening helps identify reduced kidney function early, allowing lifestyle changes and treatment to prevent serious complications.

Liver Health Checkup Package

Tests Included in This Package

SGOT (AST) Detects liver cell injury
SGPT (ALT) Evaluates liver inflammation
Alkaline Phosphatase Checks bile duct function
Total Bilirubin Detects jaundice & bile issues
Direct & Indirect Bilirubin Identifies liver or bile obstruction
Serum Albumin Measures protein production by liver

Liver Health Checkup

This package helps assess liver function, detect infections or fatty liver, and monitor damage caused by alcohol, medications, or lifestyle factors.

Who Should Take This Test?

  • People with fatty liver or alcohol consumption
  • Individuals with diabetes or obesity
  • History of jaundice or hepatitis
  • Long-term medication users

Why This Checkup Is Important

Liver diseases often progress silently. Regular liver screening helps identify damage early, prevent cirrhosis, and maintain overall metabolic health.

Bone Health Checkup Package

Tests Included in This Package

DEXA Scan Measures bone mineral density
Calcium Evaluates bone strength & density
Vitamin D (25-OH) Detects vitamin D deficiency
Phosphorus Supports bone formation
Alkaline Phosphatase Indicates bone turnover activity
Parathyroid Hormone (PTH) Regulates calcium balance

Bone Health Checkup

This package helps evaluate bone strength, detect osteoporosis early, and prevent fractures by identifying mineral and vitamin deficiencies.

Who Should Take This Test?

  • People above 40 years of age
  • Post-menopausal women
  • Individuals with frequent fractures or bone pain
  • Vitamin D or calcium deficiency

Why This Checkup Is Important

Bone loss often occurs silently. Early screening helps prevent osteoporosis, reduces fracture risk, and maintains mobility and independence.

Vitamin Deficiency Checkup Package

Tests Included in This Package

Vitamin D (25-OH) Detects vitamin D deficiency affecting bones & immunity
Vitamin B12 Evaluates nerve health & red blood cell formation
Vitamin B9 (Folate) Supports red blood cell production
Calcium Essential for bone & muscle function
Magnesium Supports muscle & nerve function
Iron Studies Identifies iron deficiency & anemia

Vitamin Deficiency Checkup

This package helps identify common vitamin and mineral deficiencies that can cause fatigue, weakness, bone pain, hair loss, and low immunity.

Who Should Take This Test?

  • People with constant fatigue or weakness
  • Hair fall, brittle nails, or frequent illness
  • Vegetarians or restricted diets
  • Individuals with poor nutrient absorption

Why This Checkup Is Important

Vitamin deficiencies often go unnoticed but can lead to long-term health issues. Early detection allows timely correction through diet and supplements.

Hormone Health Checkup Package

Tests Included in This Package

TSH Evaluates thyroid hormone balance
T3 & T4 Measures active thyroid hormones
Cortisol Assesses stress hormone levels
Insulin (Fasting) Checks insulin resistance
Prolactin Detects hormonal imbalance
Testosterone / Estrogen Gender-specific hormone evaluation

Hormone Health Checkup

This package helps detect hormonal imbalances that can affect metabolism, mood, fertility, weight, sleep, and overall body regulation.

Who Should Take This Test?

  • People experiencing unexplained weight gain or loss
  • Irregular menstrual cycles or fertility concerns
  • Chronic stress, fatigue, or sleep disturbances
  • Mood changes, hair loss, or low energy levels

Why This Checkup Is Important

Hormones control vital body functions. Even minor imbalances can cause significant health issues over time. Early screening helps restore balance, prevent complications, and improve long-term well-being.

Gut Health Checkup Package

Tests Included in This Package

Stool Routine Detects infections & digestion issues
Stool Culture Identifies bacterial imbalance
H. Pylori Detects stomach infection
Calprotectin Checks gut inflammation
Occult Blood Identifies hidden blood in stool

Gut Health Checkup

This package helps evaluate digestive health, nutrient absorption, and gut-related conditions that can impact immunity, energy levels, and overall well-being.

Who Should Take This Test?

  • People with bloating, gas, or frequent indigestion
  • Chronic constipation or diarrhea
  • Food intolerances or poor digestion
  • Low immunity, fatigue, or unexplained weight changes

Why This Checkup Is Important

Poor gut health affects digestion, immunity, and mental health. Early detection of gut imbalances helps improve nutrient absorption, reduce inflammation, and support long-term digestive wellness.

Blood Health Checkup Package

Tests Included in This Package

Complete Blood Count (CBC) Evaluates overall blood health
Hemoglobin Detects anemia
ESR Checks inflammation levels
Iron Studies Measures iron deficiency
Platelet Count Assesses clotting ability

Blood Health Checkup

This package helps evaluate overall blood health, detect anemia, infections, and nutritional deficiencies, and ensure optimal oxygen and nutrient delivery throughout the body.

Who Should Take This Test?

  • People with fatigue, dizziness, or weakness
  • Frequent infections or low immunity
  • Suspected anemia or nutritional deficiencies
  • Individuals undergoing routine health screening

Why This Checkup Is Important

Blood disorders often show subtle symptoms. Early screening helps identify anemia, infections, and deficiencies, enabling timely treatment and preventing long-term complications.

Reproductive Health Checkup Package

Tests Included in This Package

FSH & LH Evaluates fertility hormones
Prolactin Detects ovulation issues
Testosterone / Estrogen Checks reproductive hormone balance
Semen Analysis / Pelvic Scan Gender-specific evaluation

Reproductive Health Checkup

This package helps assess reproductive health, hormonal balance, and fertility-related factors for both men and women, enabling early detection and preventive care.

Who Should Take This Test?

  • Couples planning pregnancy
  • Irregular menstrual cycles or hormonal issues
  • Fertility concerns or delayed conception
  • Individuals experiencing reproductive health symptoms

Why This Checkup Is Important

Reproductive health issues often remain undetected until advanced stages. Early screening supports timely diagnosis, fertility planning, and improved reproductive outcomes.

Thyroid Health Checkup Package

Tests Included in This Package

TSH Primary thyroid screening test
T3 Measures active thyroid hormone
T4 Evaluates thyroid hormone production
Anti-TPO Detects autoimmune thyroid disease

Thyroid Health Checkup

This package helps evaluate thyroid gland function and detect hormonal imbalances that can affect metabolism, weight, energy levels, and overall body regulation.

Who Should Take This Test?

  • People with unexplained weight gain or weight loss
  • Fatigue, hair fall, or dry skin
  • Irregular menstrual cycles or fertility concerns
  • Family history of thyroid disorders

Why This Checkup Is Important

Thyroid disorders often develop gradually and may go unnoticed. Early screening helps maintain hormonal balance, prevent complications, and support long-term metabolic health.

1
2
3

Enter Mobile Number

Complete Booking

Booking Confirmed 🎉

Thank you! Our team will call you shortly to confirm your booking.

“Fast reports & polite support. Highly recommended.”

Shashank N.
⭐⭐⭐⭐⭐

“Home sample collection was on time and very hygienic.”

Ananya R.
⭐⭐⭐⭐⭐

“Booked a full body checkup. Got reports within hours.”

Rohit Kumar
⭐⭐⭐⭐⭐

“Very smooth experience. Support team was helpful.”

Divya M.
⭐⭐⭐⭐⭐

What Patients Say
On Google

Trusted by thousands for accurate reports and convenient home sample collection. Rated 4.3★ on Google.


4.3
Rating
👥
10k+
Users
🏥
NABL
Labs
WhatsApp Call Support
Added to Cart