import React from "react"; import { motion } from "framer-motion"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { ProcessSection } from "../components/ProcessSection"; import { FAQSection } from "../components/FAQSection"; import { AnimatedGradientText } from "../components/AnimatedGradientText"; import { Button } from "../components/ui/button"; import { ShimmerButton } from "../components/ui/shimmer-button"; import { Badge } from "../components/ui/badge"; import { Card, CardContent } from "../components/ui/card"; import { Input } from "../components/ui/input"; import { Textarea } from "../components/ui/textarea"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "../components/ui/select"; import { Checkbox } from "../components/ui/checkbox"; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "../components/ui/accordion"; import { GridPattern } from "../components/GridPattern"; import { navigateTo } from "../App"; import { Mail, FileCheck, Phone, UserPlus, Headphones, MapPin, MessageSquare, Calendar, ArrowRight, Globe, Clock, Users, Target, Send, Coffee, Monitor, Shield, Award, Rocket } from "lucide-react"; // Enhanced Hero Section const HeroWithCTA = () => { return (
{/* Contact Label */} Contact WDI {/* Main Heading - Left aligned, reduced font size */}

Connect with WDI : Your Digital Partner Awaits

Let's discuss your project, answer your questions, or explore collaboration opportunities.

{/* CTAs */} navigateTo('#contact-form')}>
Send a Message
{/* Right side with stats */}
24/7
Support Available
<24h
Response Time
5+
Global Offices
100%
Client Satisfaction
); }; // Enhanced Horizontal Tag Scroller with Contact Options const HorizontalTagScroller = () => { const contactOptions = [ { name: "General Inquiry", icon: Mail, color: "text-blue-400" }, { name: "Request Proposal", icon: FileCheck, color: "text-green-400" }, { name: "Schedule Call", icon: Phone, color: "text-purple-400" }, { name: "Career Opportunities", icon: UserPlus, color: "text-orange-400" }, { name: "Client Support", icon: Headphones, color: "text-cyan-400" }, { name: "Office Locations", icon: MapPin, color: "text-yellow-400" } ]; return (

Choose Your Best Way to Connect

We're here to provide the answers and support you need.

{/* First set */} {contactOptions.map((option, index) => { const IconComponent = option.icon; return (
{option.name}
); })} {/* Second and third sets for seamless loop */} {[...contactOptions, ...contactOptions].map((option, index) => { const IconComponent = option.icon; return (
{option.name}
); })}
); }; // Why Choose WDI for Contact Section const SideBySideContentWithIcons = () => { const advantages = [ { id: "response", title: "Fast Response Time", icon: Clock }, { id: "expert", title: "Expert Consultation", icon: Target }, { id: "global", title: "Global Support", icon: Globe }, { id: "dedicated", title: "Dedicated Account Management", icon: Users }, { id: "transparent", title: "Transparent Communication", icon: Shield } ]; return (

Responsive & Professional Support

Connect with confidence knowing our team is ready to help.

{advantages.map((advantage, index) => { const IconComponent = advantage.icon; return (

{advantage.title}

); })}
); }; // Contact Form Section const ContactFormSection = () => { return (

Send Us a Message

We aim to respond to all inquiries within 24-48 business hours.