* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background: #f8f9fa;
}
.container {
display: grid;
grid-template-columns: 1fr 350px;
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
@media (max-width: 1024px) {
.container {
grid-template-columns: 1fr;
gap: 2rem;
}
.sidebar {
position: static;
top: auto;
height: auto;
margin-bottom: 2rem;
}
}
.hero {
background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
color: white;
padding: 4rem 2rem;
border-radius: 12px;
margin-bottom: 2rem;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
font-weight: 700;
}
.hero p {
font-size: 1.1rem;
opacity: 0.95;
margin-bottom: 1rem;
}
.meta {
display: flex;
gap: 1.5rem;
font-size: 0.9rem;
opacity: 0.9;
}
.meta-item {
display: flex;
align-items: center;
gap: 0.5rem;
}
.main-content {
background: white;
border-radius: 8px;
padding: 2rem;
}
.tl-dr {
background: #e6f7ed;
border-left: 4px solid #48bb78;
padding: 1.5rem;
margin-bottom: 2rem;
border-radius: 8px;
}
.tl-dr h2 {
color: #48bb78;
margin-bottom: 1rem;
font-size: 1.1rem;
}
.tl-dr ol {
margin-left: 1.5rem;
color: #555;
}
.tl-dr li {
margin-bottom: 0.7rem;
line-height: 1.5;
}
.section {
margin-bottom: 2rem;
}
h2 {
color: #48bb78;
font-size: 1.8rem;
margin-bottom: 1rem;
margin-top: 1.5rem;
border-bottom: 2px solid #e6f7ed;
padding-bottom: 0.5rem;
}
h3 {
color: #38a169;
font-size: 1.3rem;
margin-top: 1.5rem;
margin-bottom: 0.8rem;
}
.step-guide {
background: #fafafa;
border-radius: 8px;
padding: 0;
margin: 1.5rem 0;
}
.step {
padding: 1.5rem;
border-bottom: 1px solid #eee;
display: flex;
gap: 1rem;
}
.step:last-child {
border-bottom: none;
}
.step-number {
background: #48bb78;
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
flex-shrink: 0;
margin-top: 0.2rem;
}
.step-content h4 {
color: #333;
margin-bottom: 0.5rem;
font-size: 1.05rem;
}
.step-content p {
color: #666;
margin-bottom: 0.5rem;
}
.info-box {
background: #f3f4f6;
border-left: 4px solid #48bb78;
padding: 1rem;
margin: 1.5rem 0;
border-radius: 4px;
}
.info-box strong {
color: #48bb78;
}
.warning-box {
background: #fef3c7;
border-left: 4px solid #f59e0b;
padding: 1rem;
margin: 1.5rem 0;
border-radius: 4px;
color: #92400e;
}
.success-box {
background: #dcfce7;
border-left: 4px solid #22c55e;
padding: 1rem;
margin: 1.5rem 0;
border-radius: 4px;
color: #166534;
}
table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
th {
background: #48bb78;
color: white;
padding: 1rem;
text-align: left;
font-weight: 600;
}
td {
padding: 1rem;
border-bottom: 1px solid #e5e7eb;
}
tr:hover {
background: #f9fafb;
}
.faq-section {
margin-top: 2rem;
}
.faq-item {
margin-bottom: 1rem;
background: white;
border-radius: 8px;
border: 1px solid #e5e7eb;
}
.faq-question {
cursor: pointer;
padding: 1.2rem;
display: flex;
justify-content: space-between;
align-items: center;
user-select: none;
background: #f9fafb;
border-radius: 8px;
transition: background 0.2s;
}
.faq-question:hover {
background: #f3f4f6;
}
.faq-question h4 {
color: #333;
font-size: 1.05rem;
margin: 0;
}
.faq-toggle {
color: #48bb78;
font-size: 1.5rem;
font-weight: bold;
transition: transform 0.3s;
}
.faq-item.active .faq-toggle {
transform: rotate(45deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
max-height: 500px;
}
.faq-answer p {
padding: 0 1.2rem 1.2rem;
color: #666;
line-height: 1.6;
}
.sidebar {
position: sticky;
top: 2rem;
height: fit-content;
}
.tool-card {
background: white;
border-radius: 12px;
padding: 1.5rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
margin-bottom: 1.5rem;
}
.tool-card h3 {
color: #48bb78;
font-size: 1.2rem;
margin-bottom: 1rem;
margin-top: 0;
border-bottom: 2px solid #e6f7ed;
padding-bottom: 0.5rem;
}
.form-group {
margin-bottom: 1rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: #333;
font-weight: 500;
font-size: 0.9rem;
}
.form-group input {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 0.95rem;
}
.btn {
background: #48bb78;
color: white;
border: none;
padding: 0.8rem 1.2rem;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
width: 100%;
transition: background 0.2s;
}
.btn:hover {
background: #38a169;
}
.result {
margin-top: 1rem;
padding: 1rem;
border-radius: 6px;
display: none;
}
.result.success {
background: #dcfce7;
color: #166534;
display: block;
}
.result.error {
background: #fee2e2;
color: #991b1b;
display: block;
}
.highlight {
background: #fff3cd;
padding: 0.2rem 0.4rem;
border-radius: 3px;
font-weight: 500;
}
strong {
color: #48bb78;
font-weight: 600;
}
ul {
margin-left: 1.5rem;
color: #666;
}
ul li {
margin-bottom: 0.7rem;
}
.footer-cta {
background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
color: white;
padding: 2rem;
border-radius: 8px;
margin-top: 2rem;
text-align: center;
}
.footer-cta h3 {
color: white;
margin-top: 0;
}
.read-time {
color: #666;
font-size: 0.9rem;
}
.benefit-card {
background: #e6f7ed;
padding: 1rem;
border-radius: 6px;
margin-bottom: 1rem;
border-left: 4px solid #48bb78;
}
.benefit-card strong {
display: block;
margin-bottom: 0.3rem;
}
.benefit-card p {
margin: 0;
font-size: 0.9rem;
color: #333;
}
How to Check PM-KISAN Subsidy Status
Real-time payment tracking for farmers - know exactly when your subsidy arrives
TL;DR - Quick Answers
- Check Status URL: pmkisan.gov.in - Official PM-KISAN portal
- Documents Needed: Aadhaar or Account/Mobilenumber - just one is enough
- Subsidy Amount: ₹6,000 per year (₹2,000 every 4 months)
- Processing Time: Fund transfer happens within 4 months of application approval
- Mobile App Available: Download from Google Play Store for quick checks
What is PM-KISAN Scheme?
The Pradhan Mantri Kisan Samman Nidhi (PM-KISAN) is a government scheme that provides direct cash transfers of ₹6,000 per year to eligible farmers. This money is transferred directly to their bank accounts in three installments of ₹2,000 each (every 4 months).
🌾 Scheme Overview: Started in December 2018, PM-KISAN has benefited over 10 crore (100 million) farmers across India with direct subsidy payments.
Key Benefits of PM-KISAN
💰 Direct Cash Transfer
₹6,000 per year deposited directly into your bank account - no middlemen
⚡ Fast & Transparent
Track status in real-time. Know exactly when your payment is credited
📱 Easy Access
Check status online via website or mobile app from anywhere
✅ No Hassle
No lengthy paperwork or verification. Once approved, transfers happen automatically
Who is Eligible for PM-KISAN?
✅ You Qualify if:
- You are a farmer (landholding farmer, tenant farmer, or sharecropper)
- Your household owns cultivable land (no minimum size limit)
- You have an Aadhaar number or bank account
- Your family doesn't fall in exclusion criteria (see below)
❌ You Don't Qualify if:
- You are a government employee or pensioner (including retired teachers, doctors, etc.)
- Your household has annual income >₹2 lakh (from non-farm sources)
- You are a professional person: doctors, lawyers, engineers, accountants, etc.
- You own any 4-wheeler vehicle
- You already received benefit in the past and ceased to be eligible
⚠️ Important: If you received PM-KISAN benefits previously but are now ineligible (e.g., took government job), you must inform the authorities and return the funds if demanded.
Step-by-Step: How to Check Your PM-KISAN Status
Visit the Official Portal
Go to pmkisan.gov.in (the only official website). Bookmark it to avoid fake websites and scams.
Click "Beneficiary Status"
Look for "Beneficiary Status" link on the homepage. It's under the "Farmers Corner" section on the left sidebar.
Select Your State
Choose your state from the dropdown. The list includes all Indian states and union territories.
Enter Your Aadhaar Number
Enter your 12-digit Aadhaar number in the search box. Make sure it's correctly linked to your land records and bank account.
Click "Get Data"
Click the "Get Data" button to fetch your PM-KISAN status. The system will search across land records and show your eligibility status.
View Your Payment History
Your dashboard will show: registration status, installment dates, amount credited, pending payments, and any rejection reasons.
💡 Alternative Methods: You can also check status using your mobile number or bank account number on the same portal. Choose whichever is available.
PM-KISAN Payment Schedule - When Will Your Money Come?
Once approved, you'll receive ₹6,000 per financial year in three installments:
| Installment | Amount | Period | Expected Timing |
|---|---|---|---|
| 1st Installment | ₹2,000 | April - July | Usually by May-June |
| 2nd Installment | ₹2,000 | August - November | Usually by September-October |
| 3rd Installment | ₹2,000 | December - March | Usually by January-February |
Payment Delays - What to Do?
If you don't receive your payment within the expected timeline:
- Check the Beneficiary Status page - see if there are any rejection reasons or pending documents
- Verify your Aadhaar-Bank account linking - payments fail if Aadhaar isn't linked to your bank account
- Check your land records - ensure your name is registered as the land owner/cultivator
- Contact your nearest CSC (Common Service Center) - they can help verify documents and submit corrections
- Call the PM-KISAN helpline: 1800-115-526 (toll-free) for assistance
✅ Tip: Aadhaar-bank account linking is the #1 reason for payment delays. Ensure they're linked on the Aadhaar website (uidai.gov.in).
Registration Documents Required
To register for PM-KISAN, you'll need these documents at the Common Service Center (CSC):
| Document | Details | Why Needed |
|---|---|---|
| Land Documents | Lease deed, land certificate, revenue records (Pattas) | Prove land ownership/cultivator status |
| Aadhaar Card | Original Aadhaar number | Identity verification and data linkage |
| Bank Account Details | Account number, IFSC, account holder name | Direct fund transfer (must be yours) |
| Mobile Number | Active mobile linked to Aadhaar | Receive OTP and payment notifications |
| Passport Photo | Recent 4x6 cm passport-sized photo | Verification document |
🏪 Where to Register: Visit your nearest Common Service Center (CSC) with these documents. Find your nearest CSC at csc.gov.in. Registration is completely free.
Common Issues & How to Solve Them
Issue #1: Status Shows "Rejected" or "Ineligible"
Possible Reasons:
- Your Aadhaar is not linked to land records
- Land documents don't match your Aadhaar name
- You fall in ineligible category (government employee, high income, etc.)
- Bank account is not in your name
Solution: Visit CSC or contact the district agriculture office to verify documents. If name mismatch, update your land records with government office.
Issue #2: Money Didn't Come Despite "Approved" Status
Possible Reasons:
- Aadhaar-bank account not linked
- Bank account closed or blocked
- Payment delayed due to government processing
Solution: Link Aadhaar to your bank account immediately on uidai.gov.in. Call your bank to confirm account status. Wait 5-7 more days before escalating.
Issue #3: "Duplicate Registration" Error
Possible Reason: You registered multiple times with different documents/names.
Solution: Contact CSC to delete duplicate registrations. Only one registration per farmer should be active.
Issue #4: Can't Find Yourself on the Portal
Possible Reason: Aadhaar not linked to your land records at state agriculture department.
Solution: Register your land in the state's agriculture portal (your district agriculture office) first. Then register for PM-KISAN at CSC.
Frequently Asked Questions (FAQ)
I'm a tenant farmer. Am I eligible for PM-KISAN?
+
Yes, tenant farmers and sharecroppers are eligible. However, you'll need a lease deed or cultivator certificate from the village authorities proving your tenancy. The scheme recognizes three types: landholding farmers (owners), tenant farmers (on lease), and sharecroppers (farming as part of share arrangement).
Can I receive PM-KISAN if my Aadhaar is not linked to my bank account?
+
No, Aadhaar-bank account linking is mandatory. If not linked, your payment will be held. Link your Aadhaar to your bank account immediately at uidai.gov.in or visit your bank branch. This is the #1 reason for payment delays.
I got a government job. Will my PM-KISAN be stopped?
+
Yes, PM-KISAN eligibility ends once you become a government employee. You must inform the authorities and stop receiving benefits. If you continue to receive benefits after becoming ineligible, the government may demand refund of all received amounts.
How long does registration take?
+
Registration at CSC takes 10-15 minutes. Government verification takes 5-7 days. Once approved, your first payment typically comes within the next installment period (up to 4 months). New registrations done in February-March may get their first payment in April-May installment.
What if my name in Aadhaar doesn't match land records?
+
This is a major blocker. You need to update your name in both Aadhaar and land records to match. Visit the Aadhaar UIDAI office to update your Aadhaar, and the district collector or revenue office to update land records. This process can take 10-15 days.
Is PM-KISAN a loan or a gift?
+
PM-KISAN is a pure subsidy/gift. It's not a loan, so you don't need to repay it. No interest charges. You only need to remain eligible. If circumstances change (like getting a government job), your eligibility ends.
Key Takeaways
- Check status at pmkisan.gov.in - the only official portal
- Use Aadhaar to check - most reliable and fastest method
- Aadhaar-bank linking is crucial - this is why 80% of delays happen
- Payment comes in 3 installments - ₹2,000 every 4 months
- First payment within 4 months of approval - don't expect instant payment
- Register at CSC, not online directly - local verification needed
- Name match in all documents is essential - Aadhaar, land records, and bank account
- Inform authorities if eligibility changes - government jobs, retirement, etc.
💰 Payment Calculator
Know your annual subsidy
Once approved, transfers happen automatically
📋 Eligibility Checklist
Are you eligible?
✅ All checked? Register at your nearest CSC!
📞 Helpful Links
// FAQ Toggle Functionality
document.querySelectorAll('.faq-question').forEach(question => {
question.addEventListener('click', function() {
const item = this.parentElement;
item.classList.toggle('active');
});
});
// PM-KISAN Status Check
function checkPMKisanStatus() {
const aadhaar = document.getElementById('aadhaar').value.trim();
const state = document.getElementById('state').value;
const result = document.getElementById('statusResult');
if (!aadhaar || !state) {
result.textContent = 'Please enter Aadhaar and select state';
result.className = 'result error';
return;
}
if (aadhaar.length !== 12 || isNaN(aadhaar)) {
result.textContent = 'Aadhaar must be 12 digits';
result.className = 'result error';
return;
}
// Simulate API call
result.innerHTML = `✅ Status Check Submitted
For official status, visit pmkisan.gov.in with your Aadhaar number. Your status will show within 24 hours.`;
result.className = 'result success';
}
// Allow Enter key
document.getElementById('aadhaar').addEventListener('keypress', function(e) {
if (e.key === 'Enter') checkPMKisanStatus();
});