"use client"; import { useState } from "react"; import ContactPopup from '@/components/mobile-app-development-service/support/common/ContactPopup/ContactPopup'; const floatingItems = [ { className: "item-1", icon: "/assets/img-app/home/section1/user.webp", title: "User-Centered UI/UX Design", desc: "Intuitive User Experience", }, { className: "item-2", icon: "/assets/img-app/home/section1/custom.webp", title: "Custom App Development", desc: "Tailored App Solutions", }, { className: "item-3", icon: "/assets/img-app/home/section1/end.webp", title: "End-to-End Project Management", desc: "Complete Project Execution", }, { className: "item-4", icon: "/assets/img-app/home/section1/platform.webp", title: "Cross-Platform & Native Apps", desc: "Multi-Platform Development", }, ]; const BannerBottom = () => { const [isContactOpen, setIsContactOpen] = useState(false); return (
{/* Left Column */}
We Build Powerful Mobile Apps

End-to-End App Development Services

We create high-performance mobile applications tailored to your business goals and user needs. From in-depth research and wireframing to intuitive UI/UX design, development, API integration, testing, and launch — we manage the complete lifecycle.

Our apps are built for speed, security, scalability, and seamless performance across devices. Whether it’s Android, iOS, or cross-platform, we ensure your product is future-ready and built to grow with your business.

{/* Center Column - Illustration with Floating Icons */}
{floatingItems.map((item, idx) => (
{item.title}
{item.title}

{item.desc}

))}
{/* Central hero image */} Digital Solutions Illustration
{/* Right Column */}

Secure, High-Performance & Future-Ready Apps

Our mobile apps are optimized for speed, security, and scalability. We use modern development frameworks and strong backend architecture to ensure smooth functionality, data protection, and long-term growth.

We build apps that are reliable, fast-loading, and ready for future upgrades.

{/* Centered Call Box at the Bottom of Logo/Illustration */}
setIsContactOpen(true)} style={{ cursor: 'pointer', background: 'linear-gradient(90deg, #3779b9 0%, #1a1f2b 50%, #3779b9 100%) !important', padding: '10px 25px', borderRadius: '10px', border: '1px solid rgba(55, 121, 185, 0.2)', transition: 'all 0.3s' }} onMouseEnter={(e) => { e.currentTarget.style.background = 'linear-gradient(90deg, #3779b9 0%, #1a1f2b 50%, #3779b9 100%) !important'; e.currentTarget.style.transform = 'translateY(-2px)'; }} onMouseLeave={(e) => { e.currentTarget.style.background = 'linear-gradient(90deg, #3779b9 0%, #1a1f2b 50%, #3779b9 100%) !important'; e.currentTarget.style.transform = 'translateY(0)'; }} >
Phone Icon
Speak With Our App Experts Today
setIsContactOpen(false)} />
); }; export default BannerBottom;