Bank Details
Beneficiary name: SUCCINCT FINTECH SERVICES PRIVATE LTD
UPI ID: succinct.ia@validicici
Bank Name: ICICI Bank
Account No: 040105002339
Account Type: Current Account
IFSC Code: ICIC0000401
Branch Name: 75/A, 100 feet road, 6th phase JP Nagar, Bangalore-560078
You can use the above QR for making payment. You need to scan using your UPI app and enter the billed amount and pay.
Alternatively you can use the QR code available in the invoice, which will also have the amount to be paid.
/** * ============================================================ * Succinct FinTech — About Us Accessibility Fixes v4 * ============================================================ * Covers: SFT26-14, SFT26-15, SFT26-16, SFT26-17, SFT26-18, * SFT26-19, SFT26-20, SFT26-138 * * v4 changes: Full try/catch isolation around every function * so Zoho's MutationObserver error cannot kill our script. * Uses window.setTimeout (not setTimeout) to avoid scope issues. * ============================================================ */ window.setTimeout(function () { try { // ── sr-only CSS ──────────────────────────────────────── try { if (!document.getElementById('sft-sr-only-style')) { var style = document.createElement('style'); style.id = 'sft-sr-only-style'; style.textContent = '.sft-sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;}'; document.head.appendChild(style); } } catch(e) { console.warn('SFT CSS:', e); } // ── SFT26-14: Fix About Us image alt text ───────────── try { var img = document.querySelector('img[src*="Aboutus"]'); if (img) { img.setAttribute('alt', 'Two financial advisors in a client meeting discussing a personalised financial plan'); } } catch(e) { console.warn('SFT26-14:', e); } // ── SFT26-15: Semantic region landmarks ─────────────── try { var h1 = document.querySelector('h1'); if (h1) { var introContainer = h1.closest('div[class*="section"],div[class*="row"],div[class*="component"],div[class*="col"]'); if (introContainer) { introContainer.setAttribute('role', 'region'); introContainer.setAttribute('aria-label', 'About Succinct FinTech'); } } document.querySelectorAll('h2,h3').forEach(function(h) { var map = { 'Vision':'Our Vision', 'Mission':'Our Mission', 'Meet the Founders':'Meet the Founders' }; var label = map[h.textContent.trim()]; if (label) { var p = h.closest('div[class*="section"],div[class*="row"],div[class*="component"],div[class*="col"]'); if (p && !p.getAttribute('role')) { p.setAttribute('role', 'region'); p.setAttribute('aria-label', label); } } }); } catch(e) { console.warn('SFT26-15:', e); } // ── SFT26-16: Promote Vision/Mission to heading level 2 try { document.querySelectorAll('h3').forEach(function(h) { if (h.textContent.trim() === 'Vision' || h.textContent.trim() === 'Mission') { h.setAttribute('role', 'heading'); h.setAttribute('aria-level', '2'); } }); } catch(e) { console.warn('SFT26-16:', e); } // ── SFT26-17 + SFT26-20: Main landmark + skip link ──── try { if (!document.querySelector('main,[role="main"]')) { var h1b = document.querySelector('h1'); if (h1b) { var main = h1b.closest('div[class*="page-body"],div[class*="content-wrap"],div[class*="main"],div[class*="body"]') || h1b.parentElement; if (main) { main.setAttribute('role', 'main'); if (!document.getElementById('thememaincontent')) { main.setAttribute('id', 'thememaincontent'); } main.setAttribute('tabindex', '-1'); } } } } catch(e) { console.warn('SFT26-17/20:', e); } // ── SFT26-18: Clickable phone/email + contact region ── try { // Mark registration block as contact region var allEls = document.querySelectorAll('p,div,span'); for (var i = 0; i < allEls.length; i++) { var el=allEls[i]; if (el.children.length=== 0 && el.textContent.includes('Name of Investment Adviser as registered with SEBI')) { var cont=el.closest('div[class*="section"],div[class*="row"]') || el.parentElement; if (cont) { cont.setAttribute('role', 'contentinfo'); cont.setAttribute('aria-label', 'Registered firm details and contact information'); } break; } } // Linkify phone numbers and emails via TreeWalker var phoneMap={ '+91-80-4112-3767': 'tel:+918041123767', '91 99869 91220': 'tel:+919986991220', '+91 85 530 18810': 'tel:+918553018810' }; var emailMap={ 'clientservices@succinctfintech.com': 'mailto:clientservices@succinctfintech.com', 'soubhagya.patra@succinctfintech.com': 'mailto:soubhagya.patra@succinctfintech.com' }; function linkify(root, map, type) { var walker=document.createTreeWalker(root, NodeFilter.SHOW_TEXT, null, false); var nodes=[]; var n; while ((n=walker.nextNode())) nodes.push(n); nodes.forEach(function(tn) { if (tn.parentElement.tagName=== 'A') return; var content=tn.textContent; Object.keys(map).forEach(function(key) { if (content.includes(key)) { var parts=content.split(key); var frag=document.createDocumentFragment(); parts.forEach(function(part, idx) { frag.appendChild(document.createTextNode(part)); if (idx< parts.length - 1) { var a=document.createElement('a'); a.href=map[key]; a.textContent=key; if (type=== 'email') a.setAttribute('aria-label', key + ' (send email)'); frag.appendChild(a); } }); if (tn.parentNode) tn.parentNode.replaceChild(frag, tn); } }); }); } linkify(document.body, phoneMap, 'phone'); linkify(document.body, emailMap, 'email'); } catch(e) { console.warn('SFT26-18:', e); } // ── SFT26-19: New tab warnings ───────────────────────── try { document.querySelectorAll('a[target="_blank" ]').forEach(function(link) { if (link.getAttribute('data-sft-newtab')) return; link.setAttribute('data-sft-newtab', 'true'); var warn=document.createElement('span'); warn.className='sft-sr-only' ; warn.textContent=' (opens in new tab)' ; link.appendChild(warn); var rel=link.getAttribute('rel') || ''; if (!rel.includes('noopener')) link.setAttribute('rel', (rel + ' noopener noreferrer').trim()); }); } catch(e) { console.warn('SFT26-19:', e); } // ── SFT26-138: Accordion keyboard accessibility ──────── try { var triggers=document.querySelectorAll('div[data-element-type="accordionheader"]'); triggers.forEach(function(trigger, i) { if (trigger.getAttribute('data-sft-a11y')) return; trigger.setAttribute('data-sft-a11y', 'true'); trigger.setAttribute('tabindex', '0'); trigger.setAttribute('role', 'button'); var isExpanded=trigger.classList.contains('zpaccordion-active'); trigger.setAttribute('aria-expanded', String(isExpanded)); var nameSpan=trigger.querySelector('.zpaccordion-name'); var label=nameSpan ? nameSpan.textContent.trim() : ('Section ' + (i + 1)); var contentId=trigger.getAttribute('data-content-id') || ('sft-acc-panel-' + i); trigger.setAttribute('aria-controls', contentId); var panel=document.getElementById(contentId) || trigger.nextElementSibling || trigger.parentElement.nextElementSibling; if (panel) { panel.setAttribute('id', contentId); panel.setAttribute('role', 'region'); panel.setAttribute('aria-label', label); } trigger.addEventListener('keydown', function(e) { if (e.key=== 'Enter' || e.key=== ' ') { e.preventDefault(); trigger.click(); } }); trigger.addEventListener('click', function() { window.setTimeout(function() { trigger.setAttribute('aria-expanded', String(trigger.classList.contains('zpaccordion-active'))); }, 80); }); }); } catch(e) { console.warn('SFT26-138:', e); } console.log('[SFT A11Y] All fixes applied successfully.'); } catch(globalErr) { console.warn('[SFT A11Y] Global error:', globalErr); } }, 300); // 300ms — accordion is ready at 101ms, so 300ms is safe with margin