WebExpertOvi
STATUS AVAILABLE FOR AUDITS

Md Atiar Rahman Ovi · Junior Manager at Razib Marketing

Accessibility CLIENT: Commercial Lending Institution YEAR: 2024

WCAG 2.1 AA/AAA Accessibility Audit & Engineering Remediation

Remediating complex financial calculator widgets, focus traps, and 400% zoom reflow for ADA compliance.

WCAG 2.1 AA/AAA WAI-ARIA VoiceOver NVDA Axe Core Semantic HTML5 Modern CSS
[ 01 // THE CORE PROBLEM ]

The client faced legal ADA exposure due to inaccessible multi-step loan calculators, keyboard trap modals, low-contrast UI widgets, and complete failure under 400% zoom reflow.

[ 02 // THE CHALLENGE ]

Remediating custom dynamic JavaScript slider widgets, financial charts, and modal authentication dialogs to meet strict WCAG 2.1 AA/AAA criteria without redesigning the brand's visual identity.

[ 03 // VERIFIED OUTCOME ]

Achieved 100% WCAG 2.1 AA and targeted AAA compliance across all customer-facing mortgage and lending tools. Mitigated legal exposure and improved form completion rates by 19%.

[ INVESTIGATION & FORENSICS ]

Automated Axe Core scans flagged 142 distinct violations; manual screen-reader auditing with NVDA and VoiceOver revealed that screen-reader users could not increment loan term sliders or perceive dynamic interest rate recalculations.

[ SYSTEM ARCHITECTURE BLUEPRINT ]

Rebuilt interface components using WAI-ARIA authoring practices, native `<dialog>` overlays with strict focus trapping, `aria-live='polite'` calculation announcement regions, and fluid CSS clamp layouts.

[ ENGINEERING IMPLEMENTATION ]

Engineered keyboard-navigable dual-handle sliders with `role='slider'` and `aria-valuenow`, implemented high-contrast focus rings with minimum 3:1 contrast against adjacent colors, resolved two-dimensional table scrolling, and refactored form inputs with explicit labels and error associations.

[ RIGOROUS VALIDATION PROTOCOL ]

Rigorous testing with NVDA (Windows), VoiceOver (macOS/iOS), JAWS, full keyboard-only navigation workflows, color contrast analyzers, and browser zoom stress testing up to 400%.

Project Context

A regional commercial bank with over $1.2B in assets was issued an ADA demand letter citing inaccessible online lending calculators. They required rapid, uncompromising engineering remediation of their entire digital mortgage application pipeline.

The Technical Deficiencies

  1. Interactive Slider Failure: The dynamic loan amount slider was constructed using non-semantic <div> elements with mouse-only mousedown and mousemove listeners. Keyboard users could not alter values.
  2. Missing Calculation Announcements: When a user modified loan terms, the calculated monthly payment updated visually on screen, but assistive technologies received zero notification.
  3. Reflow Collapse: At 400% zoom (1.4.10 Reflow), the multi-step calculator collapsed horizontally, clipping the “Submit Loan Application” button completely off-screen.

Engineering Remediation

1. Accessible Custom Slider with ARIA Semantics

<div 
  role="slider"
  tabindex="0"
  aria-label="Loan Amount in Dollars"
  aria-valuemin="50000"
  aria-valuemax="2000000"
  aria-valuenow="450000"
  aria-valuetext="$450,000"
  class="relative h-2 bg-dark-elevated rounded-full focus-visible:ring-2 focus-visible:ring-brand"
>
  <div class="h-full bg-brand rounded-full" style="width: 22.5%;"></div>
  <div class="absolute top-1/2 -translate-y-1/2 -translate-x-1/2 w-6 h-6 bg-brand rounded-full cursor-grab"></div>
</div>

2. Real-Time Polite Calculation Announcements

<div 
  aria-live="polite" 
  aria-atomic="true" 
  class="sr-only" 
  id="calculator-announcer"
>
  Monthly payment calculated: $2,845 per month at 6.2% interest.
</div>

Validation & Certifications

  • Passed independent third-party accessibility audit with 0 critical or moderate severity issues remaining.
  • Complete keyboard operable verification: Tab, Shift+Tab, Arrow keys, Home, End, Escape, and Enter all perform standardized native behaviors.
RELATED SERVICE: Accessibility Engineering & WCAG →
[ DIRECT INTAKE ]

Book Technical Consultation

CONSULTATION SCOPE 45-MIN TECHNICAL DIAGNOSIS

A targeted architecture review to diagnose data loss, evaluate GA4/GTM pipelines, inspect WordPress bottlenecks, or scope WCAG compliance.

GA4 / sGTM Audit
Meta CAPI Parity
WP Core Web Vitals
WCAG 2.1 Reflow
Primary Receiver: ovi.cse23@gmail.com

Direct Engineering: Handled personally by Md Atiar Rahman Ovi.

Full Agency Scope: Larger multidisciplinary engagements can be onboarded through our team at Razib Marketing.

ovi@edge-node-dac01:~ (zsh)
WebExpertOvi CLI [v2.4.0-edge]
Connected to Cloudflare Edge (Dhaka / DAC-01) · Latency: 24ms
Welcome to Md Atiar Rahman Ovi's interactive technical terminal.
Type help to view all available system commands.
ovi@edge:~$