"use client"; import { useState } from "react"; import ContactPopup from '@/components/common/ContactPopup/ContactPopup'; const floatingItems = [ { className: "item-1", icon: "/assets/img/home/section1/custom.webp", title: "Custom Solutions", desc: "Built for your goals", }, { className: "item-2", icon: "/assets/img/home/section1/seo.webp", title: "SEO Optimized", desc: "Better visibility", }, { className: "item-3", icon: "/assets/img/home/section1/end.webp", title: "End-to-End Support", desc: "Design to launch", }, { className: "item-4", icon: "/assets/img/home/section1/responsive.webp", title: "Responsive Design", desc: "All devices perfect", }, ]; const BannerBottom = () => { const [isContactOpen, setIsContactOpen] = useState(false); return (
{/* Left Column */}
We Guarantee

Complete Website Development Solutions

We design and develop high-performing websites tailored to your business goals. From strategy and UI/UX design to development and launch, every project is built for speed, scalability, and lead generation. Our focus is not just design — it’s measurable growth.

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

{item.desc}

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

High-Performance, Secure & Future-Ready Websites

Our websites are designed for performance, speed, and scalability. With strong technical architecture and modern frameworks, we deliver fast-loading, secure, and user-friendly digital experiences that convert visitors into customers.

{/* 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 Experts Today
setIsContactOpen(false)} />
); }; export default BannerBottom;