LIC Share Price Target 2025, 2026, 2030, 2040, 2050 – Should You Invest Now?
Are you wondering if LIC shares are a smart long-term investment? You’re not alone. Many Indians are confused – should I buy LIC stock now or wait for better returns in the future? With so many ups and downs in the stock market, it’s natural to have questions.
Life Insurance Corporation (LIC) is a trusted name in every Indian household. It’s not just an insurance giant – it’s also a publicly listed company with crores of investors hoping for strong returns in the coming years. But the big question is – where is the LIC share price headed by 2025, 2030, or even 2050?
In this blog, we’ll break down everything in simple words. You’ll get LIC’s share price predictions for 2025, 2026, 2030, 2040, and 2050 based on current trends, past performance, and expert analysis. Whether you’re a beginner or an experienced investor, this guide will help you decide what’s best for your money.
No complicated terms. No boring talk. Just clear, helpful info that you can actually use.
Let’s dive in and explore if LIC stock is the right choice for your future investment goals!
LIC Company Overview
Life Insurance Corporation of India (LIC) is the largest life insurance company in India, owned by the Government of India. Established in 1956 , LIC has been a pillar of India’s insurance and investment landscape for decades.
🔹 Key Highlights:
Founded: 1st September 1956
Headquarters: Mumbai, Maharashtra, India
Industry: Insurance & Financial Services
Ownership: Government of India
Market Listing: Listed on NSE and BSE in May 2022
🔹 LIC IPO & Stock Market Presence:
LIC made headlines with its Initial Public Offering (IPO) in May 2022 – one of the biggest IPOs in India’s history , raising over ₹21,000 crore. The stock was listed at around ₹872 per share but faced fluctuations due to market sentiments and broader economic conditions.
🔹 Business Model:
LIC offers a wide range of insurance products including:
Term insurance
Endowment plans
Pension & annuity products
ULIPs
Health insurance
Apart from insurance, LIC is also a major investor in government securities, public sector enterprises, and equity markets. Its massive Assets Under Management (AUM) make it one of the biggest institutional investors in India.
🔹 Market Share:
LIC continues to dominate the life insurance market with over 60% market share (as of recent data), despite rising competition from private players like HDFC Life, ICICI Prudential, and SBI Life.
🔹 Financial Strength:
One of the largest insurers globally by AUM
Strong claim settlement ratio
Backed by sovereign ownership
Large customer base across urban and rural India
LIC Share Price Today Live
.live-heading {
font-size: 22px;
font-weight: bold;
font-family: ‘Segoe UI’, sans-serif;
color: #2c3e50;
background: #f0f9ff;
padding: 15px 20px;
border-radius: 8px;
border: 2px solid #d6ecff;
display: inline-flex;
align-items: center;
gap: 10px;
max-width: fit-content;
margin: 20px auto;
}
.blinking-dot {
width: 10px;
height: 10px;
background-color: #2ecc71;
border-radius: 50%;
animation: blink 1s infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.1; }
}
LIC Share Price Target 2026 Up To 2050 Long-Term
Future Investment Value
—
Real Returns (Inflation Adjusted)
—
Year-by-Year Projection
Year
Price
Growth (₹)
Growth (%)
Investment Value
Enter parameters to see yearly breakdown
📈 Historical CAGR Examples
Company
5 Years
10 Years
15 Years
20 Years
Reliance Industries
12.5%
15.2%
18.7%
22.3%
TCS
14.8%
16.5%
19.2%
21.0%
HDFC Bank
10.2%
17.8%
20.5%
23.1%
Infosys
13.7%
14.9%
16.3%
18.9%
ITC
8.5%
9.2%
11.7%
14.3%
Nifty 50 Index
11.2%
12.8%
13.5%
14.1%
Note: Past performance is not indicative of future results. Values are approximate.
📚 Smart Investing Tips
📊
Diversify
Spread your investments across different sectors to reduce risk and volatility.
⏳
Long-Term Focus
Compounding works best over longer periods. Stay invested for 5+ years.
💰
Reinvest Dividends
Reinvesting dividends can significantly boost your total returns over time.
📉
Market Cycles
Understand that markets move in cycles – don’t panic during downturns.
🔍
Research
Always research companies thoroughly before investing.
🧘
Emotional Control
Don’t let fear or greed drive your investment decisions.
Dark Mode
Get Embed Code for Your Website
Copy Embed Code
Note: This calculator provides estimates based on the compound growth formula. Actual stock performance may vary significantly due to market conditions, company performance, and other factors. Always conduct thorough research before making investment decisions.
document.addEventListener(‘DOMContentLoaded’, function() {
// Initialize variables
let priceChart = null;
// Populate year dropdown (2025-2050)
const yearSelect = document.getElementById(‘target-year’);
const currentYear = new Date().getFullYear();
for (let year = currentYear + 1; year {
button.addEventListener(‘click’, function() {
const target = this.dataset.target;
const value = this.dataset.value;
document.getElementById(target).value = value;
});
});
// Toggle Advanced Options
const advancedToggleBtn = document.getElementById(‘advanced-toggle-btn’);
advancedToggleBtn.addEventListener(‘click’, function() {
const content = document.getElementById(‘advanced-content’);
content.classList.toggle(‘show’);
const icon = this.querySelector(‘svg’);
icon.style.transform = content.classList.contains(‘show’) ? ‘rotate(180deg)’ : ‘rotate(0)’;
});
// Calculate Button
const calculateBtn = document.getElementById(‘calculate-btn’);
calculateBtn.addEventListener(‘click’, calculateFuturePrice);
function calculateFuturePrice() {
// Get input values
const currentPrice = parseFloat(document.getElementById(‘current-price’).value) || 3000;
const cagr = parseFloat(document.getElementById(‘expected-cagr’).value) / 100 || 0.10;
const targetYear = parseInt(document.getElementById(‘target-year’).value);
const dividendYield = parseFloat(document.getElementById(‘dividend-yield’).value) / 100 || 0;
const inflationRate = parseFloat(document.getElementById(‘inflation-rate’).value) / 100 || 0.06;
const investmentAmount = parseFloat(document.getElementById(‘investment-amount’).value) || 0;
// Validate inputs
if (!targetYear) {
alert(‘Please select a target year’);
return;
}
// Calculate years
const currentYear = new Date().getFullYear();
const years = targetYear – currentYear;
if (years 0) {
document.getElementById(‘future-investment’).textContent = ‘₹’ + futureInvestmentValue.toFixed(2);
document.getElementById(‘real-returns’).textContent = ‘₹’ + (sharesOwned * realFuturePrice).toFixed(2) +
‘ (‘ + (realReturnRate * 100).toFixed(2) + ‘% annual real return)’;
} else {
document.getElementById(‘future-investment’).textContent = ‘–‘;
document.getElementById(‘real-returns’).textContent = ‘–‘;
}
// Generate yearly breakdown
generateYearlyBreakdown(currentPrice, totalGrowthRate, years, investmentAmount);
// Generate chart
generatePriceChart(currentPrice, totalGrowthRate, years);
}
function generateYearlyBreakdown(currentPrice, growthRate, years, investmentAmount) {
const tableBody = document.querySelector(‘#yearly-table tbody’);
tableBody.innerHTML = ”;
let prevPrice = currentPrice;
let sharesOwned = investmentAmount > 0 ? investmentAmount / currentPrice : 0;
for (let year = 1; year <= years; year++) {
const currentYear = new Date().getFullYear();
const yearLabel = currentYear + year;
const price = currentPrice * Math.pow(1 + growthRate, year);
const growthAmount = price – prevPrice;
const growthPercentage = (growthAmount / prevPrice) * 100;
const investmentValue = sharesOwned * price;
const row = document.createElement('tr');
row.innerHTML = `
${yearLabel}
₹${price.toFixed(2)}
₹${growthAmount.toFixed(2)}
${growthPercentage.toFixed(2)}%
${investmentAmount > 0 ? ‘₹’ + investmentValue.toFixed(2) : ‘–‘}
`;
tableBody.appendChild(row);
prevPrice = price;
}
}
function generatePriceChart(currentPrice, growthRate, years) {
const ctx = document.getElementById(‘price-chart’).getContext(‘2d’);
const labels = [];
const data = [];
const currentYear = new Date().getFullYear();
labels.push(currentYear + ‘ (Current)’);
data.push(currentPrice);
for (let year = 1; year {
button.addEventListener(‘click’, function() {
const platform = this.dataset.platform;
const url = encodeURIComponent(window.location.href);
const text = encodeURIComponent(“Check out this Share Price Target Estimator to project future stock prices based on CAGR!”);
let shareUrl;
switch(platform) {
case ‘twitter’:
shareUrl = `https://twitter.com/intent/tweet?text=${text}&url=${url}`;
break;
case ‘facebook’:
shareUrl = `https://www.facebook.com/sharer/sharer.php?u=${url}`;
break;
case ‘linkedin’:
shareUrl = `https://www.linkedin.com/shareArticle?mini=true&url=${url}&title=${text}`;
break;
case ‘whatsapp’:
shareUrl = `https://wa.me/?text=${text} ${url}`;
break;
}
window.open(shareUrl, ‘_blank’, ‘width=600,height=400’);
});
});
// Copy Link Button
document.getElementById(‘copy-link-btn’).addEventListener(‘click’, function() {
navigator.clipboard.writeText(window.location.href).then(() => {
alert(‘Link copied to clipboard!’);
});
});
// Toggle Embed Section
const embedToggleBtn = document.getElementById(’embed-toggle-btn’);
if (embedToggleBtn) {
embedToggleBtn.addEventListener(‘click’, function() {
const container = document.getElementById(’embed-code-container’);
container.classList.toggle(‘show’);
const icon = this.querySelector(‘svg’);
icon.style.transform = container.classList.contains(‘show’) ? ‘rotate(180deg)’ : ‘rotate(0)’;
updateEmbedCode(); // Refresh URL in case it changed
});
}
// Update Embed Code with Current URL
function updateEmbedCode() {
const currentUrl = window.location.href;
const embedCode = “;
document.getElementById(’embed-code’).value = embedCode;
}
// Copy Embed Code
const copyEmbedBtn = document.getElementById(‘copy-embed-btn’);
if (copyEmbedBtn) {
copyEmbedBtn.addEventListener(‘click’, function() {
const embedCode = document.getElementById(’embed-code’);
embedCode.select();
try {
navigator.clipboard.writeText(embedCode.value).then(() => {
this.textContent = ‘Copied!’;
setTimeout(() => this.textContent = ‘Copy Embed Code’, 2000);
});
} catch (err) {
// Fallback for older browsers
embedCode.select();
document.execCommand(‘copy’);
this.textContent = ‘Copied!’;
setTimeout(() => this.textContent = ‘Copy Embed Code’, 2000);
}
});
}
// Initial calculation on page load
calculateFuturePrice();
});
:root {
–primary-color: #3b82f6; /* Modern blue */
–primary-dark: #2563eb;
–primary-light: #93c5fd;
–secondary-color: #10b981; /* Emerald green */
–accent-color: #8b5cf6; /* Purple accent */
–success-color: #10b981;
–warning-color: #f59e0b;
–danger-color: #ef4444;
–bg-light: #ffffff;
–bg-dark: #1e293b;
–bg-darker: #0f172a;
–text-dark: #1f2937;
–text-light: #f8fafc;
–text-muted: #64748b;
–card-bg: #ffffff;
–highlight-bg: #3b82f6;
–input-bg: #f1f5f9;
–border-light: #e2e8f0;
–border-dark: #334155;
–twitter-blue: #1DA1F2;
–facebook-blue: #4267B2;
–linkedin-blue: #0077B5;
–whatsapp-green: #25D366;
–email-red: #D44638;
–link-purple: #8A2BE2;
–shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
–shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
–shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
–shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
–shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
–radius-sm: 0.25rem;
–radius: 0.5rem;
–radius-md: 0.75rem;
–radius-lg: 1rem;
–radius-xl: 1.5rem;
–transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
–font-main: ‘Inter’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
–font-heading: ‘Inter’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
–font-mono: ‘SFMono-Regular’, Consolas, ‘Liberation Mono’, Menlo, monospace;
}
/* Base Styles */
body {
font-family: var(–font-main);
line-height: 1.6;
color: var(–text-dark);
background-color: #f8fafc;
margin: 0;
padding: 2rem;
min-height: 100vh;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Dark Mode */
body.dark-mode {
background: var(–bg-darker);
color: var(–text-light);
}
body.dark-mode .share-price-estimator {
background: var(–bg-dark);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
border: 1px solid var(–border-dark);
}
body.dark-mode .tool-header h2,
body.dark-mode .tool-header p,
body.dark-mode .results-header h3,
body.dark-mode .historical-section h3,
body.dark-mode .tips-section h3,
body.dark-mode .disclaimer {
color: var(–text-light);
}
body.dark-mode .form-control,
body.dark-mode .price-display,
body.dark-mode .historical-table,
body.dark-mode .tips-grid,
body.dark-mode .yearly-breakdown {
background: var(–bg-dark);
border-color: var(–border-dark);
color: var(–text-light);
}
body.dark-mode .calculate-btn,
body.dark-mode .copy-btn,
body.dark-mode .export-btn {
background: var(–primary-color);
color: white;
}
body.dark-mode .price-card {
background: #334155;
color: var(–text-light);
}
body.dark-mode table {
color: var(–text-light);
}
body.dark-mode table th,
body.dark-mode table td {
border-color: var(–border-dark);
}
body.dark-mode .tip-card {
background: #334155;
}
body.dark-mode .input-hint {
color: #94a3b8;
}
body.dark-mode .quick-btn {
background: #334155;
color: var(–text-light);
border: 1px solid var(–border-dark);
}
body.dark-mode .advanced-content {
background: rgba(59, 130, 246, 0.1);
border-color: rgba(59, 130, 246, 0.3);
}
body.dark-mode .embed-toggle-btn {
background: #334155;
border-color: var(–border-dark);
color: var(–primary-light);
}
body.dark-mode .embed-code-container {
background: #334155;
border-color: var(–border-dark);
}
body.dark-mode #embed-code {
background: #1e293b;
color: var(–text-light);
}
body.dark-mode #copy-embed-btn {
background: #334155;
border-color: var(–border-dark);
color: var(–primary-light);
}
body.dark-mode .disclaimer {
background: rgba(59, 130, 246, 0.1);
border-left-color: var(–primary-color);
}
/* Main Container */
.share-price-estimator {
font-family: var(–font-main);
max-width: 1000px;
margin: 0 auto;
padding: 2.5rem;
background: linear-gradient(145deg, #ffffff, #f8fafc);
border-radius: var(–radius-xl);
box-shadow: var(–shadow-lg);
transition: var(–transition);
animation: fadeInUp 0.6s ease-in-out;
border: 1px solid var(–border-light);
position: relative;
overflow: hidden;
}
.share-price-estimator::before {
content: ”;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
background: linear-gradient(90deg, var(–primary-color), var(–accent-color));
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Tool Header */
.tool-header {
text-align: center;
margin-bottom: 2.5rem;
position: relative;
padding-bottom: 1.5rem;
}
.tool-header::after {
content: ”;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: linear-gradient(90deg, var(–primary-color), var(–accent-color));
border-radius: 2px;
}
.tool-header h2 {
color: var(–primary-color);
font-size: 2.25rem;
font-weight: 800;
margin: 0;
font-family: var(–font-heading);
letter-spacing: -0.025em;
line-height: 1.2;
margin-bottom: 0.5rem;
}
.tool-header p {
color: var(–text-muted);
font-size: 1.125rem;
margin-top: 0.75rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
}
/* Section Headers */
.section-header {
margin: 2rem 0 1.25rem;
padding-bottom: 0.75rem;
border-bottom: 2px solid var(–primary-color);
position: relative;
}
.section-header h3 {
color: var(–primary-color);
margin: 0;
font-size: 1.375rem;
font-weight: 700;
font-family: var(–font-heading);
display: inline-block;
background: linear-gradient(90deg, var(–primary-color), var(–accent-color));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.section-header::after {
content: ”;
position: absolute;
bottom: -2px;
left: 0;
width: 60px;
height: 2px;
background: var(–accent-color);
}
/* Form Styling */
.tool-form {
background: var(–input-bg);
padding: 2rem;
border-radius: var(–radius-lg);
margin-bottom: 2.5rem;
border: 1px solid var(–border-light);
box-shadow: var(–shadow-sm);
transition: var(–transition);
}
.tool-form:hover {
box-shadow: var(–shadow);
}
.form-group {
margin-bottom: 1.5rem;
position: relative;
}
.form-group label {
font-weight: 600;
color: var(–text-dark);
margin-bottom: 0.75rem;
display: block;
font-size: 0.9375rem;
}
.form-control {
width: 100%;
padding: 0.875rem 1.25rem;
border-radius: var(–radius);
border: 1px solid var(–border-light);
font-size: 1rem;
transition: var(–transition);
background-color: white;
font-family: var(–font-main);
box-shadow: var(–shadow-sm);
}
.form-control:focus {
border-color: var(–primary-color);
outline: none;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.input-with-buttons {
display: flex;
flex-direction: column;
gap: 1rem;
}
.quick-buttons {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
}
.quick-btn {
flex: 1;
min-width: 60px;
padding: 0.625rem;
background: white;
border: 1px solid var(–border-light);
border-radius: var(–radius-sm);
cursor: pointer;
transition: var(–transition);
font-size: 0.875rem;
font-weight: 600;
box-shadow: var(–shadow-sm);
color: var(–primary-color);
}
.quick-btn:hover {
background: var(–primary-color);
color: white;
transform: translateY(-2px);
box-shadow: var(–shadow);
}
.quick-btn:active {
transform: translateY(0);
}
.input-hint {
font-size: 0.8125rem;
color: var(–text-muted);
margin-top: 0.5rem;
font-style: italic;
}
.calculate-btn {
width: 100%;
padding: 1rem;
background: linear-gradient(135deg, var(–primary-color), var(–accent-color));
color: white;
border: none;
border-radius: var(–radius);
font-size: 1.0625rem;
font-weight: 700;
cursor: pointer;
transition: var(–transition);
margin-top: 1rem;
letter-spacing: 0.025em;
text-transform: uppercase;
box-shadow: var(–shadow);
position: relative;
overflow: hidden;
}
.calculate-btn::after {
content: ”;
position: absolute;
top: -50%;
left: -60%;
width: 200%;
height: 200%;
background: linear-gradient(
to right,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.2) 50%,
rgba(255, 255, 255, 0) 100%
);
transform: rotate(30deg);
transition: all 0.3s ease;
}
.calculate-btn:hover {
transform: translateY(-3px);
box-shadow: var(–shadow-md);
}
.calculate-btn:hover::after {
left: 100%;
}
.calculate-btn:active {
transform: translateY(0);
box-shadow: var(–shadow);
}
/* Advanced Options */
.advanced-options {
margin: 2rem 0;
border-radius: var(–radius);
overflow: hidden;
}
.advanced-toggle-btn {
width: 100%;
padding: 0.875rem 1.25rem;
background: var(–input-bg);
border: none;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
gap: 0.75rem;
color: var(–primary-color);
font-weight: 700;
cursor: pointer;
font-size: 1rem;
transition: var(–transition);
border-radius: var(–radius);
box-shadow: var(–shadow-sm);
}
.advanced-toggle-btn:hover {
background: #e2e8f0;
color: var(–primary-dark);
}
.advanced-toggle-btn svg {
transition: transform 0.3s ease;
}
.advanced-content {
display: none;
margin-top: 0.5rem;
padding: 1.5rem;
background: rgba(59, 130, 246, 0.05);
border-radius: 0 0 var(–radius) var(–radius);
border: 1px dashed rgba(59, 130, 246, 0.3);
border-top: none;
animation: fadeIn 0.4s ease;
}
.advanced-content.show {
display: block;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
/* Results Section */
.results-section {
margin-bottom: 3rem;
}
.results-header {
margin-bottom: 1.5rem;
text-align: center;
}
.results-header h3 {
color: var(–text-dark);
margin: 0;
font-size: 1.5rem;
font-weight: 700;
position: relative;
display: inline-block;
padding-bottom: 0.5rem;
}
.results-header h3::after {
content: ”;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, var(–primary-color), var(–accent-color));
border-radius: 3px;
}
.price-display {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-bottom: 2rem;
}
.price-card {
padding: 1.5rem;
background: white;
border-radius: var(–radius-lg);
text-align: center;
box-shadow: var(–shadow);
border: 1px solid var(–border-light);
transition: var(–transition);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.price-card:hover {
transform: translateY(-5px);
box-shadow: var(–shadow-md);
}
.price-card.highlight {
background: linear-gradient(135deg, var(–primary-color), var(–accent-color));
color: white;
border: none;
position: relative;
overflow: hidden;
}
.price-card.highlight::before {
content: ”;
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
to bottom right,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.1) 50%,
rgba(255, 255, 255, 0) 100%
);
transform: rotate(30deg);
animation: shine 3s infinite linear;
}
@keyframes shine {
0% { transform: translateX(-100%) rotate(30deg); }
100% { transform: translateX(100%) rotate(30deg); }
}
.price-card.highlight .price-label {
color: rgba(255, 255, 255, 0.9);
}
.price-label {
font-weight: 600;
color: var(–text-muted);
margin-bottom: 0.75rem;
font-size: 0.9375rem;
letter-spacing: 0.05em;
text-transform: uppercase;
}
.price-value {
font-size: 2rem;
font-weight: 800;
letter-spacing: -0.025em;
line-height: 1.2;
margin: 0.25rem 0;
}
.investment-result {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
margin-bottom: 2rem;
}
.result-card {
padding: 1.5rem;
background: white;
border-radius: var(–radius-lg);
box-shadow: var(–shadow);
border: 1px solid var(–border-light);
transition: var(–transition);
}
.result-card:hover {
transform: translateY(-3px);
box-shadow: var(–shadow-md);
}
.result-label {
font-weight: 600;
color: var(–text-muted);
font-size: 0.9375rem;
margin-bottom: 0.75rem;
line-height: 1.4;
}
.result-value {
font-size: 1.5rem;
font-weight: 700;
color: var(–primary-color);
line-height: 1.3;
}
/* Chart Container */
.price-chart-container {
margin: 3rem 0;
background: white;
padding: 1.5rem;
border-radius: var(–radius-lg);
box-shadow: var(–shadow);
border: 1px solid var(–border-light);
transition: var(–transition);
}
.price-chart-container:hover {
box-shadow: var(–shadow-md);
}
.price-chart-container canvas {
width: 100% !important;
height: 350px !important;
}
/* Yearly Breakdown */
.yearly-breakdown {
margin-top: 3rem;
}
.yearly-breakdown h4 {
color: var(–primary-color);
margin-bottom: 1.25rem;
font-size: 1.25rem;
font-weight: 700;
text-align: center;
}
.table-container {
overflow-x: auto;
border-radius: var(–radius-lg);
border: 1px solid var(–border-light);
box-shadow: var(–shadow);
margin-bottom: 1rem;
}
table {
width: 100%;
border-collapse: collapse;
background: white;
border-radius: var(–radius-lg);
overflow: hidden;
min-width: 650px;
}
th, td {
padding: 1rem 1.25rem;
text-align: left;
border-bottom: 1px solid var(–border-light);
font-size: 0.9375rem;
}
th {
background: linear-gradient(90deg, var(–primary-color), var(–accent-color));
color: white;
font-weight: 600;
letter-spacing: 0.025em;
text-transform: uppercase;
font-size: 0.8125rem;
}
tr:nth-child(even) {
background-color: #f8fafc;
}
tr:hover {
background-color: #f1f5f9;
}
td {
font-weight: 500;
}
/* Historical Performance Section */
.historical-section {
margin-bottom: 3rem;
background: white;
padding: 2rem;
border-radius: var(–radius-lg);
box-shadow: var(–shadow);
border: 1px solid var(–border-light);
}
.historical-section h3 {
color: var(–text-dark);
margin-bottom: 1.5rem;
font-size: 1.5rem;
font-weight: 700;
text-align: center;
position: relative;
padding-bottom: 0.75rem;
}
.historical-section h3::after {
content: ”;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, var(–primary-color), var(–accent-color));
border-radius: 3px;
}
.historical-table {
overflow-x: auto;
border-radius: var(–radius);
border: 1px solid var(–border-light);
box-shadow: var(–shadow-sm);
}
.note {
font-size: 0.8125rem;
color: var(–text-muted);
margin-top: 1.25rem;
font-style: italic;
text-align: center;
}
/* Investment Tips Section */
.tips-section {
margin-bottom: 3rem;
background: white;
padding: 2rem;
border-radius: var(–radius-lg);
box-shadow: var(–shadow);
border: 1px solid var(–border-light);
}
.tips-section h3 {
color: var(–text-dark);
margin-bottom: 1.5rem;
font-size: 1.5rem;
font-weight: 700;
text-align: center;
position: relative;
padding-bottom: 0.75rem;
}
.tips-section h3::after {
content: ”;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, var(–primary-color), var(–accent-color));
border-radius: 3px;
}
.tips-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.tip-card {
padding: 1.75rem;
background: white;
border-radius: var(–radius);
box-shadow: var(–shadow-sm);
border: 1px solid var(–border-light);
transition: var(–transition);
position: relative;
overflow: hidden;
}
.tip-card::before {
content: ”;
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: linear-gradient(to bottom, var(–primary-color), var(–accent-color));
}
.tip-card:hover {
transform: translateY(-5px);
box-shadow: var(–shadow-md);
}
.tip-icon {
font-size: 2rem;
margin-bottom: 1.25rem;
color: var(–primary-color);
}
.tip-card h4 {
margin-top: 0;
margin-bottom: 1rem;
color: var(–primary-color);
font-size: 1.125rem;
font-weight: 700;
}
.tip-card p {
margin-bottom: 0;
color: var(–text-muted);
font-size: 0.9375rem;
line-height: 1.6;
}
/* Dark Mode Toggle */
.dark-mode-toggle {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 2rem;
padding: 0.875rem 1.25rem;
background: var(–input-bg);
border-radius: var(–radius);
width: fit-content;
box-shadow: var(–shadow-sm);
border: 1px solid var(–border-light);
transition: var(–transition);
}
.dark-mode-toggle:hover {
box-shadow: var(–shadow);
}
.switch {
position: relative;
display: inline-block;
width: 50px;
height: 26px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #cbd5e1;
transition: .4s;
}
.slider:before {
position: absolute;
content: “”;
height: 18px;
width: 18px;
left: 4px;
bottom: 4px;
background-color: white;
transition: .4s;
}
input:checked + .slider {
background: linear-gradient(90deg, var(–primary-color), var(–accent-color));
}
input:checked + .slider:before {
transform: translateX(24px);
}
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.dark-mode-toggle span {
font-size: 0.9375rem;
font-weight: 600;
color: var(–text-dark);
}
/* Sharing & Embed Sections */
.sharing-section, .embed-section {
margin: 3rem 0;
background: white;
padding: 2rem;
border-radius: var(–radius-lg);
box-shadow: var(–shadow);
border: 1px solid var(–border-light);
}
.sharing-section h3 {
color: var(–text-dark);
margin-bottom: 1.5rem;
font-size: 1.5rem;
font-weight: 700;
text-align: center;
position: relative;
padding-bottom: 0.75rem;
}
.sharing-section h3::after {
content: ”;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, var(–primary-color), var(–accent-color));
border-radius: 3px;
}
.social-share-buttons {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}
.social-share {
width: 48px;
height: 48px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border: none;
cursor: pointer;
transition: var(–transition);
box-shadow: var(–shadow-sm);
position: relative;
overflow: hidden;
}
.social-share::after {
content: ”;
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
to bottom right,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.2) 50%,
rgba(255, 255, 255, 0) 100%
);
transform: rotate(30deg);
transition: all 0.3s ease;
}
.social-share:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: var(–shadow);
}
.social-share:hover::after {
left: 100%;
}
.social-share svg {
width: 20px;
height: 20px;
position: relative;
z-index: 1;
}
.twitter { background: var(–twitter-blue); }
.facebook { background: var(–facebook-blue); }
.linkedin { background: var(–linkedin-blue); }
.whatsapp { background: var(–whatsapp-green); }
.link { background: var(–link-purple); }
.embed-toggle-btn {
width: 100%;
padding: 1rem 1.5rem;
background: var(–input-bg);
border: 1px solid var(–border-light);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
gap: 0.75rem;
font-weight: 700;
cursor: pointer;
border-radius: var(–radius);
transition: var(–transition);
color: var(–primary-color);
box-shadow: var(–shadow-sm);
}
.embed-toggle-btn:hover {
background: #e2e8f0;
box-shadow: var(–shadow);
}
.embed-toggle-btn svg {
transition: transform 0.3s ease;
}
.embed-code-container {
display: none;
background: #f8f9fa;
border: 1px solid var(–border-light);
border-top: none;
border-radius: 0 0 var(–radius) var(–radius);
overflow: hidden;
}
.embed-code-container.show {
display: block;
animation: fadeIn 0.3s ease;
}
#embed-code {
width: 100%;
padding: 1.25rem;
border: none;
resize: none;
font-family: var(–font-mono);
font-size: 0.875rem;
line-height: 1.5;
background: white;
min-height: 120px;
}
#copy-embed-btn {
width: 100%;
padding: 0.875rem;
background: var(–input-bg);
border: none;
border-top: 1px solid var(–border-light);
cursor: pointer;
font-weight: 700;
color: var(–primary-color);
transition: var(–transition);
}
#copy-embed-btn:hover {
background: #e2e8f0;
}
/* Disclaimer */
.disclaimer {
font-size: 0.875rem;
color: var(–text-muted);
padding: 1.5rem;
background-color: var(–input-bg);
border-left: 4px solid var(–primary-color);
border-radius: var(–radius);
margin-top: 3rem;
box-shadow: var(–shadow-sm);
}
.disclaimer strong {
color: var(–text-dark);
}
/* Tooltip Styles */
.tooltip {
position: relative;
display: inline-block;
cursor: pointer;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 200px;
background-color: #333;
color: #fff;
text-align: center;
border-radius: var(–radius-sm);
padding: 0.5rem;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
font-size: 0.8125rem;
font-weight: normal;
}
.tooltip .tooltiptext::after {
content: “”;
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #333 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
/* Responsive Design */
@media (max-width: 768px) {
body {
padding: 1rem;
}
.share-price-estimator {
padding: 1.5rem;
border-radius: var(–radius-lg);
}
.tool-header h2 {
font-size: 1.75rem;
}
.tool-header p {
font-size: 1rem;
}
.tool-form {
padding: 1.5rem;
}
.price-display, .investment-result {
grid-template-columns: 1fr;
}
.historical-section, .tips-section, .sharing-section, .embed-section {
padding: 1.5rem;
}
.tips-grid {
grid-template-columns: 1fr;
}
table {
min-width: 100%;
}
}
@media (max-width: 480px) {
.share-price-estimator {
padding: 1.25rem;
}
.tool-header h2 {
font-size: 1.5rem;
}
.quick-buttons {
flex-direction: column;
}
.quick-btn {
width: 100%;
}
}
/* Animations */
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.pulse {
animation: pulse 2s infinite;
}
/* Loading Spinner */
.spinner {
display: inline-block;
width: 20px;
height: 20px;
border: 3px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: white;
animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/* Print Styles */
@media print {
body {
background: white;
color: black;
padding: 0;
}
.share-price-estimator {
box-shadow: none;
border: none;
padding: 0;
max-width: 100%;
}
.dark-mode-toggle, .sharing-section, .embed-section {
display: none;
}
.price-card, .result-card, .historical-section, .tips-section {
break-inside: avoid;
}
}
LIC Share Price History (Year-wise Chart/Table)
To understand LIC’s future price targets, it’s important to first look at its historical performance since listing. LIC was listed on the Indian stock market in May 2022 , and its journey since then has been full of ups and downs influenced by market sentiment, quarterly results, interest rate trends, and government policies.
Below is a quick overview of LIC’s share price performance over the years:
📅 LIC Share Price History Table (Year-wise)
Year Opening Price (₹) Highest Price (₹) Lowest Price (₹) Closing Price (₹) Key Highlights 2022 (Listed) 872.00 920.00 588.00 690.00 IPO launch, weak debut 2023 690.00 750.00 530.00 610.00 Market volatility, FII selling 2024 610.00 960.00 590.00 915.00 (Est.) Recovery, better earnings, dividend
📌 Note: Prices are indicative and rounded off. Use live data for exact values.
Observations:
LIC stock listed below its issue price and remained under pressure due to initial valuation concerns and market conditions.
In late 2023 and early 2024 , the stock began recovering, supported by better-than-expected earnings, strong AUM growth, and rising investor confidence.
The Government’s continued stake and dividend potential kept long-term investors interested despite short-term fluctuations.
Why Price History Matters:
Helps in identifying long-term support/resistance levels
Reflects investor sentiment over time
Serves as the base for technical and fundamental analysis
Indicates how the stock reacts to market-wide or policy-based events
Frequently Asked Questions (FAQs)
What are the key risks associated with investing in LIC shares?
Some major risks include:u003cbru003e- u003cstrongu003eSlow digital adoptionu003c/strongu003e compared to private peersu003cbru003e- Dependency on government policies and disinvestment plansu003cbru003e- Volatility in LIC’s investment portfolio (stocks, bonds, etc.)u003cbru003eu003cstrongu003e- Intense competitionu003c/strongu003e from private insurers offering flexible plansu003cbru003e- Investors should also consider u003cstrongu003eregulatory changes (IRDAI)u003c/strongu003e and economic shifts that may impact LIC’s growth trajectory.
Is LIC a good dividend-paying stock?
Yes, LIC is known for u003cstrongu003epaying regular dividendsu003c/strongu003e, backed by its large asset base and steady income from premium collections and investments. While the dividend yield may not be the highest in the market, u003cstrongu003eit offers a reliable income streamu003c/strongu003e, especially attractive to senior citizens and low-risk investors.
What makes LIC different from other insurance companies?
LIC’s u003cstrongu003egovernment ownershipu003c/strongu003e, extensive rural reach, decades of trust, and the largest market share make it different. Unlike private insurers, LIC benefits from a loyal customer base and significant influence in the Indian economy through its investments.
Is LIC suitable for long-term investment?
Absolutely. LIC is ideal for u003cstrongu003elong-term, low-risk investorsu003c/strongu003e seeking stable growth and regular dividends. With India’s growing insurance market, LIC is likely to benefit from rising demand, especially if it modernizes and expands aggressively.
While private insurers like HDFC Life and SBI Life may offer u003cstrongu003efaster short-term growthu003c/strongu003e, LIC’s u003cstrongu003escale, trust factor, and government backingu003c/strongu003e give it strong long-term potential. With digital transformation and product innovation, LIC can become more competitive and potentially outperform in the long run.