@php
$services = [
[
'icon' => '🛠️',
'title' => 'Custom Web Application Development',
'description' => 'We specialize in building fully customized web applications that are aligned with your business processes and growth strategy. Whether you need a customer portal, internal tool, or product platform—we design intuitive interfaces and engineer robust back-end systems.',
'highlight' => 'Highlights: Unique UX/UI tailored to your audience, built using modern frameworks and secure architecture, optimized for performance, SEO, and scalability.',
'number' => '01',
],
[
'icon' => '🏢',
'title' => 'Enterprise Web Applications',
'description' => 'Designed for high performance, multi-user access, and complex workflows, our enterprise-grade web applications help organizations digitize operations, streamline collaboration, and make data-driven decisions.',
'highlight' => 'Examples: Business process automation tools, HR, finance, or inventory management systems, Role-based access control and data privacy features.',
'number' => '02',
],
[
'icon' => '⚡',
'title' => 'Progressive Web Applications (PWAs)',
'description' => 'PWAs combine the best of web and mobile. We build high-performance, offline-capable applications that offer fast loading, push notifications, and a native-app-like experience across all devices.',
'highlight' => 'Benefits: Reduced load times, Works seamlessly on any browser or OS, Lower cost compared to native mobile apps.',
'number' => '03',
],
[
'icon' => '🔁',
'title' => 'Single Page Applications (SPAs)',
'description' => 'We create dynamic and responsive SPAs using React, Angular, or Vue.js to deliver lightning-fast user interactions and seamless navigation without constant page reloads.',
'highlight' => 'Use Cases: Interactive dashboards, Real-time chat applications, Admin panels and portals.',
'number' => '04',
],
[
'icon' => '☁️',
'title' => 'SaaS Web Application Development',
'description' => 'We help startups and enterprises launch cloud-based, multi-tenant SaaS products with subscription management, role-based access, usage tracking, and integrations with third-party services.',
'highlight' => 'Capabilities: Scalable architecture for growth, Built-in analytics and reporting, Secure user management & billing modules.',
'number' => '05',
],
[
'icon' => '🌐',
'title' => 'Web Portal Development',
'description' => 'Develop secure and scalable web portals for customers, employees, vendors, or partners. These portals provide easy access to information, transactions, or support in a user-friendly environment.',
'highlight' => 'Types of Portals: Client/self-service portals, Vendor/supplier portals, Learning management portals.',
'number' => '06',
],
];
@endphp
@foreach ($services as $service)
{{ $service['icon'] }}
{{ $service['title'] }}
{{ $service['description'] }}
{{ Str::before($service['highlight'], ':') }}:
{{ Str::after($service['highlight'], ':') }}
{{ $service['number'] }}
@endforeach