PM Surya Ghar Yojana 2026
Get Up to ₹10,8000 Subsidy

Government solar subsidy for homes.
Free site visit | Expert assistance | 30-year warranty
Our experts handle the complete process from application to approval.
Choose from top brands like Tata Solar, Adani Solar and Waree Solar panels.

PM SURYA GHAR YOJANA 2026

What is PM Surya Ghar: Muft Bijli Yojana?

The PM Surya Ghar Yojana is a flagship initiative by the Government of India, launched in 2024, aimed at promoting rooftop solar energy in residential homes. This scheme allows eligible homeowners in Kanpur, Lucknow & Unnao to install rooftop solar panels with a subsidy of up to ₹10,8000, making clean energy affordable and reducing monthly electricity bills by up to 90%.

Under this scheme, 1kW solar system gets ₹30,000 subsidy, 2kW gets ₹60,000, and 3kW gets ₹10,8000. The subsidy is directly transferred to the homeowner's bank account after successful installation through government-approved vendors like Green Energy Engineering listed on the National Solar Portal. We install premium quality solar panels from leading brands including Tata Solar, Adani Solar and Waree Solar under this scheme.

With this initiative, the government aims to empower 1 crore households across India, including those in Kanpur, Lucknow and Unnao, to generate their own renewable electricity, reduce reliance on conventional power sources, and contribute to a greener, sustainable India.

PM Surya Ghar Yojana Eligibility Criteria for homes in Kanpur, Lucknow & Unnao

Who is Eligible for PM Surya Ghar Yojana?

  • Indian citizen with a valid electricity connection in Kanpur, Lucknow or Unnao
  • Residential property (independent house, villa, row house) in Kanpur, Lucknow or Unnao
  • Must not have an existing rooftop solar system under any government scheme
  • Valid Aadhaar card and bank account linked to Aadhaar
  • Average monthly electricity consumption suitable for solar (typically 300+ units)
  • No pending dues on electricity bill

Note: Eligibility applies regardless of which solar brand you choose — Tata Solar, Adani Solar or Waree Solar panels are all approved under PM Surya Ghar Yojana.

How Green Energy Engineering Helps With PM Surya Ghar Subsidy

You don't need to navigate government portals alone. Green Energy Engineering handles the entire process for you in Kanpur, Lucknow & Unnao. We install top brands like Tata Solar, Adani Solar and Waree Solar panels under this scheme.

Complete application filing on National Portal (pmsuryaghar.gov.in)
DISCOM coordination in Kanpur, Lucknow & Unnao
Net meter installation support and approval
Subsidy claim follow-up until credited to your bank account
Free site survey and customized solar design with Tata Solar, Adani Solar or Waree Solar
30-year panel warranty and 5-year maintenance on all brands
📞 WhatsApp
const submitBtn = document.getElementById('submitBtn'); const successMsg = document.getElementById('successMessage'); const openModalBtns = document.querySelectorAll('.open-modal-btn'); // ========== OPEN MODAL ========== openModalBtns.forEach(btn => { btn.addEventListener('click', function (e) { e.preventDefault(); openModal(); }); }); function openModal() { if (modal) { modal.style.display = 'flex'; document.body.style.overflow = 'hidden'; } } // ========== CLOSE MODAL ========== if (closeBtn) closeBtn.addEventListener('click', closeModal); if (modal) { modal.addEventListener('click', function (e) { if (e.target === modal) closeModal(); }); } document.addEventListener('keydown', function (e) { if (e.key === 'Escape' && modal && modal.style.display === 'flex') closeModal(); }); function closeModal() { if (modal) { modal.style.display = 'none'; document.body.style.overflow = ''; } if (form) { form.reset(); form.style.display = 'block'; } if (successMsg) successMsg.style.display = 'none'; hideAllErrors(); resetSubmitBtn(); if (typeof grecaptcha !== 'undefined') { try { grecaptcha.reset(); } catch (e) { } } } // ========== ERROR HELPERS ========== function hideAllErrors() { document.querySelectorAll('.error-message').forEach(el => el.classList.remove('show')); document.querySelectorAll('.form-control').forEach(el => el.classList.remove('error')); } function showError(inputId, errorId) { const input = document.getElementById(inputId); const error = document.getElementById(errorId); if (input) input.classList.add('error'); if (error) error.classList.add('show'); } // ========== INPUT RESTRICTIONS ========== const phoneInput = document.getElementById('phoneNumber'); if (phoneInput) { phoneInput.addEventListener('input', function () { this.value = this.value.replace(/[^0-9]/g, '').slice(0, 10); this.classList.remove('error'); const err = document.getElementById('phoneError'); if (err) err.classList.remove('show'); }); } const pincodeInput = document.getElementById('pincode'); if (pincodeInput) { pincodeInput.addEventListener('input', function () { this.value = this.value.replace(/[^0-9]/g, '').slice(0, 6); this.classList.remove('error'); const err = document.getElementById('pincodeError'); if (err) err.classList.remove('show'); }); } document.querySelectorAll('.form-control').forEach(input => { input.addEventListener('input', function () { this.classList.remove('error'); const errorEl = document.getElementById(this.id + 'Error'); if (errorEl) errorEl.classList.remove('show'); }); }); // ========== VALIDATION ========== function validateForm() { let isValid = true; hideAllErrors(); const fullName = document.getElementById('fullName'); if (!fullName || !fullName.value.trim()) { showError('fullName', 'nameError'); isValid = false; } const phone = document.getElementById('phoneNumber'); if (!phone || !/^\d{10}$/.test(phone.value.trim())) { showError('phoneNumber', 'phoneError'); isValid = false; } const pincode = document.getElementById('pincode'); if (!pincode || !/^\d{6}$/.test(pincode.value.trim())) { showError('pincode', 'pincodeError'); isValid = false; } if (typeof grecaptcha !== 'undefined') { const recaptchaResponse = grecaptcha.getResponse(); if (!recaptchaResponse || recaptchaResponse.length === 0) { const recaptchaError = document.getElementById('recaptchaError'); if (recaptchaError) recaptchaError.classList.add('show'); isValid = false; } } return isValid; } // ========== SUBMIT BUTTON STATE ========== function setSubmitting(state) { if (!submitBtn) return; if (state) { submitBtn.disabled = true; submitBtn.textContent = 'Sending...'; submitBtn.style.opacity = '0.7'; } else { submitBtn.disabled = false; submitBtn.textContent = 'Schedule Consultation'; submitBtn.style.opacity = '1'; } } function resetSubmitBtn() { setSubmitting(false); isSubmitting = false; } // ========== FORM SUBMIT ========== let isSubmitting = false; if (form) { form.addEventListener('submit', function (e) { e.preventDefault(); if (isSubmitting) return; if (!validateForm()) return; isSubmitting = true; setSubmitting(true); const formData = new FormData(form); fetch('send-mail.php', { method: 'POST', body: formData }) .then(function (response) { if (!response.ok) throw new Error('Server returned status ' + response.status); return response.text(); }) .then(function (text) { let data; try { data = JSON.parse(text); } catch (parseErr) { console.error('Non-JSON response:', text); throw new Error('Server error. Please call us at +91 9289828476.'); } if (data.success) { // Hide form, show success message form.style.display = 'none'; if (successMsg) successMsg.style.display = 'block'; // Auto-close after 3 seconds setTimeout(function () { closeModal(); }, 3000); } else { alert('Error: ' + (data.message || 'Something went wrong. Please try again.')); resetSubmitBtn(); } }) .catch(function (error) { console.error('Fetch error:', error); alert(error.message || 'Network error. Please check your connection and try again.'); resetSubmitBtn(); }); }); } // ========== FAQ ACCORDION ========== const faqItems = document.querySelectorAll('.faq-item'); faqItems.forEach(item => { const question = item.querySelector('.faq-question'); question.addEventListener('click', () => { const isActive = item.classList.contains('active'); faqItems.forEach(other => { other.classList.remove('active'); other.querySelector('.faq-question').setAttribute('aria-expanded', 'false'); }); if (!isActive) { item.classList.add('active'); question.setAttribute('aria-expanded', 'true'); } }); }); if (faqItems.length > 0) { faqItems[0].classList.add('active'); faqItems[0].querySelector('.faq-question').setAttribute('aria-expanded', 'true'); } // ========== TESTIMONIALS CAROUSEL ========== const testimonialsCarousel = document.getElementById('testimonialsCarousel'); const testimonialCards = document.querySelectorAll('.testimonial-card'); if (testimonialsCarousel && testimonialCards.length > 0) { let currentIndex = 0; const cardWidth = 350 + 25; const dotsContainer = document.getElementById('carouselDots'); if (dotsContainer) { dotsContainer.innerHTML = ''; testimonialCards.forEach((_, index) => { const dot = document.createElement('button'); dot.className = 'carousel-dot' + (index === 0 ? ' active' : ''); dot.setAttribute('aria-label', 'Go to testimonial ' + (index + 1)); dot.setAttribute('role', 'tab'); dot.addEventListener('click', (e) => { e.preventDefault(); scrollToIndex(index); }); dotsContainer.appendChild(dot); }); } const dots = document.querySelectorAll('.carousel-dot'); function updateActiveCard() { const scrollPos = testimonialsCarousel.scrollLeft; currentIndex = Math.round(scrollPos / cardWidth); currentIndex = Math.max(0, Math.min(currentIndex, testimonialCards.length - 1)); dots.forEach((dot, i) => dot.classList.toggle('active', i === currentIndex)); testimonialCards.forEach((card, i) => card.classList.toggle('active', i === currentIndex)); const prevBtn = document.getElementById('prevBtn'); const nextBtn = document.getElementById('nextBtn'); if (prevBtn) prevBtn.disabled = currentIndex === 0; if (nextBtn) nextBtn.disabled = currentIndex === testimonialCards.length - 1; } function scrollToIndex(index) { index = Math.max(0, Math.min(index, testimonialCards.length - 1)); testimonialsCarousel.scrollTo({ left: index * cardWidth, behavior: 'smooth' }); } const nextBtn = document.getElementById('nextBtn'); const prevBtn = document.getElementById('prevBtn'); if (nextBtn) { nextBtn.addEventListener('click', (e) => { e.preventDefault(); if (currentIndex < testimonialCards.length - 1) scrollToIndex(currentIndex + 1); }); } if (prevBtn) { prevBtn.addEventListener('click', (e) => { e.preventDefault(); if (currentIndex > 0) scrollToIndex(currentIndex - 1); }); } let scrollTimeout; testimonialsCarousel.addEventListener('scroll', () => { clearTimeout(scrollTimeout); scrollTimeout = setTimeout(updateActiveCard, 50); }); setTimeout(updateActiveCard, 100); } // ========== SCROLL ANIMATIONS ========== const animateElements = document.querySelectorAll('.animate'); if (animateElements.length > 0) { const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) entry.target.classList.add('visible'); }); }, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' }); animateElements.forEach(el => observer.observe(el)); } // ========== NAVBAR SCROLL ========== const navbar = document.querySelector('.navbar'); if (navbar) { window.addEventListener('scroll', () => { if (window.scrollY > 50) { navbar.style.boxShadow = '0 5px 20px rgba(0,0,0,0.1)'; navbar.style.padding = '8px 0'; } else { navbar.style.boxShadow = '0 2px 20px rgba(0,0,0,0.1)'; navbar.style.padding = '12px 0'; } }); } }); // end DOMContentLoaded