Legal Gallery

Official certificates, government registrations, approvals & compliance documents of Bhavishya Nidhi Yojana.

Verified & Registered Organization
All Documents Government Authenticated
Compliance Maintained Since 2024
Transparent Legal Records
(function () { /* Document data — exactly 5 entries matching the image 👉 Replace downloadUrl values with your actual PDF file paths or URLs */ const DOCS = [ { title : 'Certificate of Incorporation', issuer : 'Ministry of Corporate Affairs, Govt. of India', number : 'CIN-U74999UP2015NPL073284', date : '12 March 2015', valid : 'Perpetual', type : 'Certificate', seal : '🏛️', bg : 'linear-gradient(145deg,#0e3a14,#1e7030)', downloadUrl : 'assets/docs/certificate-of-incorporation.pdf', }, { title : 'Company Pan Card', issuer : 'Income Tax Department, Govt. of India', number : 'AABCB1234P', date : '2015', valid : 'Lifetime', type : 'Tax Document', seal : '💳', bg : 'linear-gradient(145deg,#2a0e6e,#5a2ab5)', downloadUrl : 'assets/docs/company-pan-card.pdf', }, { title : 'Company TAN Certificate', issuer : 'Income Tax Department, Govt. of India', number : 'DELB12345A', date : '2015', valid : 'Perpetual', type : 'Tax Registration', seal : '📋', bg : 'linear-gradient(145deg,#1a2c6e,#2a4db5)', downloadUrl : 'assets/docs/company-tan-certificate.pdf', }, { title : 'Udyam Certificate', issuer : 'Ministry of MSME, Govt. of India', number : 'UDYAM-UP-00-0123456', date : '2020', valid : 'Lifetime', type : 'MSME Registration', seal : '⭐', bg : 'linear-gradient(145deg,#6e5a0e,#b59a2a)', downloadUrl : 'assets/docs/udyam-certificate.pdf', }, { title : 'ISO Certificate', issuer : 'International Standards Organization (Accredited Body)', number : 'ISO 9001:2015 / IN-7834', date : '05 September 2020', valid : '3 Years (Renewed 2023)', type : 'Quality Certificate', seal : '🏅', bg : 'linear-gradient(145deg,#0e3a3a,#1e7070)', downloadUrl : 'assets/docs/iso-certificate.pdf', }, ]; const lb = document.getElementById('nlg-lightbox'); const lbBg = document.getElementById('nlg-lb-bg'); const lbTitle = document.getElementById('nlg-lb-title'); const lbSub = document.getElementById('nlg-lb-sub'); const lbClose = document.getElementById('nlg-lb-close'); const lbPrev = document.getElementById('nlg-lb-prev'); const lbNext = document.getElementById('nlg-lb-next'); const lbCount = document.getElementById('nlg-lb-counter'); const certBody = document.getElementById('nlg-cert-body'); let current = 0; const lbDownload = document.getElementById('nlg-lb-download'); function renderCert(i) { const d = DOCS[i]; lbTitle.textContent = d.title; lbSub.textContent = d.type; lbCount.textContent = (i + 1) + ' / ' + DOCS.length; /* Update download button */ lbDownload.href = d.downloadUrl; lbDownload.download = d.title.replace(/\s+/g, '-').toLowerCase() + '.pdf'; certBody.innerHTML = `
Government of India
Bhavishya Nidhi Yojana
${d.seal}
${d.type}
Document${d.title}
Issued By${d.issuer}
Reference No.${d.number}
Issue Date${d.date}
Validity${d.valid}
Verified & Authentic — Status: Valid & Active
`; } window.openLB = function (index) { current = index; renderCert(current); lb.classList.add('open'); document.body.style.overflow = 'hidden'; }; function closeLB() { lb.classList.remove('open'); document.body.style.overflow = ''; } lbClose.addEventListener('click', closeLB); lbBg.addEventListener('click', closeLB); lbPrev.addEventListener('click', () => { current = (current - 1 + DOCS.length) % DOCS.length; renderCert(current); }); lbNext.addEventListener('click', () => { current = (current + 1) % DOCS.length; renderCert(current); }); document.addEventListener('keydown', e => { if (!lb.classList.contains('open')) return; if (e.key === 'Escape') closeLB(); if (e.key === 'ArrowLeft') { current = (current - 1 + DOCS.length) % DOCS.length; renderCert(current); } if (e.key === 'ArrowRight') { current = (current + 1) % DOCS.length; renderCert(current); } }); })();