export function ServicesSection() { const services = [ { title: "Mobile App Development", description: "Native & cross-platform apps with pixel-perfect UIs and seamless user experiences.", icon: ( ), gradient: "from-[#E5195E]/20 to-purple-500/20" }, { title: "Web Platforms", description: "Scalable, secure, and SEO-optimized web applications built for performance.", icon: ( ), gradient: "from-[#E5195E]/20 to-blue-500/20" }, { title: "AI & ML Solutions", description: "Intelligent features powered by cutting-edge algorithms and machine learning.", icon: ( ), gradient: "from-[#E5195E]/20 to-cyan-500/20" }, { title: "DevOps & Cloud", description: "CI/CD pipelines and managed cloud infrastructure for seamless deployment.", icon: ( ), gradient: "from-[#E5195E]/20 to-orange-500/20" }, { title: "Product Design", description: "Human-centered UX with delightful micro-interactions and intuitive interfaces.", icon: ( ), gradient: "from-[#E5195E]/20 to-pink-500/20" }, { title: "Security & Compliance", description: "Pen-testing, auditing, and regulatory alignment for enterprise-grade security.", icon: ( ), gradient: "from-[#E5195E]/20 to-green-500/20" } ]; return (

What We Do

End-to-end solutions for every stage of your product lifecycle.

{/* Services Grid - Wider container and larger cards */}
{services.map((service, index) => (
{/* Glassmorphism Icon */}
{service.icon}

{service.title.split(' ')[0]} {service.title.split(' ').slice(1).join(' ') && ` ${service.title.split(' ').slice(1).join(' ')}`}

{service.description}

))}
); }