const Solutions = () => { const items = [ { artKey: 'Chatbots', icon: 'Chat', title: 'AI Chatbots & Conversational AI', desc: 'Voice and text agents that resolve customer requests, qualify leads, and operate inside your stack — not beside it.', tag: 'CX · Sales · Support', stat: '−71% ticket load', color: '#E63329', }, { artKey: 'StartupOps', icon: 'Briefcase', title: 'Startup Management Systems', desc: 'AI-native CRM + Ops. Pipeline, billing, projects, and people in a single intelligent surface that learns your business.', tag: 'CRM · Ops', stat: '+34% pipeline', color: '#F5C518', }, { artKey: 'Documents', icon: 'Doc', title: 'Smart Document Processing', desc: 'OCR + LLMs + workflow. Invoices, contracts, KYC, claims — extracted, validated, routed, posted. Untouched by hand.', tag: 'OCR · Automation', stat: '98.6% accuracy', color: '#14A04A', }, { artKey: 'Workflow', icon: 'Flow', title: 'Business Workflow Automation', desc: 'No-code orchestration with AI in the loop. Triggers, agents, approvals, escalations across every department.', tag: 'Orchestration', stat: '14× cycle speed', color: '#1B7BD6', }, { artKey: 'HRMS', icon: 'Users', title: 'HRMS — AI Employee Lifecycle', desc: 'Hire to retire. Resume parsing, onboarding flows, performance signals, retention prediction — with humans in command.', tag: 'People Ops', stat: '+22% retention', color: '#E63329', }, { artKey: 'ERP', icon: 'Cube', title: 'AI-Enabled ERP', desc: 'Finance, inventory, operations — re-architected so forecasts, anomalies, and recommendations live inside the ledger.', tag: 'Finance · Inventory', stat: '−87% close time', color: '#1B7BD6', }, ]; const [active, setActive] = useState(null); return (
{items.map((it, i) => { const IconCmp = I[it.icon]; const Art = SolutionArt[it.artKey]; const isActive = active === i; return ( setActive(i)} onMouseLeave={() => setActive(null)} className="reveal card group relative overflow-hidden transition-all hover:-translate-y-1" style={{ transitionDelay: `${i*40}ms`, boxShadow: isActive ? `0 20px 40px -20px ${it.color}55` : undefined, }} itemScope itemType="https://schema.org/Service" itemProp="itemListElement" > {/* Media */}
{Art ? : null}
Product · {String(i+1).padStart(2,'0')}
{it.stat}
{/* Body */}

{it.title}

{it.desc}

{it.tag} Explore
); })}
); }; window.Solutions = Solutions;