📞 Call Us Now +91-9895273547

Top Health Insurance Plans

Ensurance is one of India's leading
digital insurance platform
10.5 crore Registered Consumers
51 Insurance Partners
5.3 crore Policies Sold
⭐ Best Plan Claim settled in 3 months: 100%

Secure Health Plus

₹650/month Cover: ₹5,00,000
View Details
⭐ Best Plan Claim settled in 3 months: 100%

ICICI Elevate

₹650/month Cover: ₹5,00,000
View Details
⭐ Best Plan Claim settled in 3 months: 100%

ICICI MaxProtect

₹650/month Cover: ₹5,00,000
View Details
⭐ Best Plan Claim settled in 3 months: 100%

Niva Bupa Reassure

₹650/month Cover: ₹5,00,000
View Details
⭐ Best Plan Claim settled in 3 months: 100%

Secure Health Plus

₹650/month Cover: ₹5,00,000
View Details
🔥 Most Sold Claim settled in 3 months: 97%

Family Shield Basic

₹490/month Cover: ₹3,00,000
View Details
🔥 Most Sold Claim settled in 3 months: 97%

Family Shield Basic

₹490/month Cover: ₹3,00,000
View Details
function calculatePremium() { const age = Number(document.getElementById('age').value); const sumInsured = Number(document.getElementById('sum-insured').value); if (!age || !sumInsured || age < 18 || age > 65) { alert('Please enter a valid age between 18 and 65 and sum insured.'); return; } // Simple example premium calculation logic const baseRate = 500; // base premium at age 25 for 5L sum insured const ageFactor = age / 25; const sumFactor = sumInsured / 500000; const premium = Math.round(baseRate * ageFactor * sumFactor); const resultDiv = document.getElementById('premium-result'); if(resultDiv) { resultDiv.style.display = 'block'; resultDiv.innerHTML = `Your calculated premium: ₹${premium}/month`; } }