class TechnologySection extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

Technology & Innovation

Cutting-edge digital solutions for the modern business

Web Development

Custom websites and web applications built for performance

Mobile Apps

iOS and Android applications with beautiful UI/UX

Data Analytics

Actionable insights from your business data

`; } } customElements.define('technology-section', TechnologySection);