2025-07-11 16:54:37 +05:30
import { motion } from "framer-motion" ;
import {
ArrowRight ,
BarChart3 ,
Brain ,
Briefcase ,
Building ,
CheckCircle ,
Clock ,
Code ,
Cpu ,
Database ,
DollarSign ,
Eye ,
Lightbulb ,
MessageSquare ,
Rocket ,
Route ,
Search ,
Settings ,
Shield ,
Target ,
TrendingUp ,
UserPlus ,
2026-03-27 11:17:56 +05:30
Users ,
2025-07-11 16:54:37 +05:30
} from "lucide-react" ;
import { ImageWithFallback } from "../components/figma/ImageWithFallback" ;
import { Footer } from "../components/Footer" ;
import { Navigation } from "../components/Navigation" ;
2026-03-27 11:17:56 +05:30
import {
Accordion ,
AccordionContent ,
AccordionItem ,
AccordionTrigger ,
} from "../components/ui/accordion" ;
2025-07-11 16:54:37 +05:30
import { Badge } from "../components/ui/badge" ;
import { Button } from "../components/ui/button" ;
import { Card , CardContent } from "../components/ui/card" ;
import { ShimmerButton } from "../components/ui/shimmer-button" ;
2025-09-23 20:13:31 +05:30
import { useNavigate } from "react-router-dom" ;
2025-07-23 18:53:54 +05:30
import { Helmet } from "react-helmet-async" ;
2025-07-11 16:54:37 +05:30
// AI Strategy & Consulting Hero Section
const AIStrategyHeroWithCTA = ( ) = > {
2025-09-23 20:13:31 +05:30
const navigate = useNavigate ( ) ;
2025-07-11 16:54:37 +05:30
return (
< section className = "relative py-20 overflow-hidden bg-black" >
2025-07-23 18:53:54 +05:30
< Helmet >
{ /* Page Title and Meta Description */ }
< title > AI Strategy Consulting | Enterprise AI Roadmap | WDI < / title >
< meta
name = "description"
content = "WDI’ s phased AI strategy consulting helps you adopt intelligent technologies with clarity, scalability, and long-term business transformation goals."
/ >
{ /* Canonical Link */ }
2026-03-27 11:17:56 +05:30
< link
rel = "canonical"
href = "https://www.wdipl.com/services/ai-strategy-consulting"
/ >
2025-07-23 18:53:54 +05:30
{ /* Open Graph Tags (for Facebook, LinkedIn) */ }
2026-03-27 11:17:56 +05:30
< meta
property = "og:title"
content = "AI Strategy Consulting | Enterprise AI Roadmap | WDI"
/ >
2025-07-23 18:53:54 +05:30
< meta
property = "og:description"
content = "WDI’ s phased AI strategy consulting helps you adopt intelligent technologies with clarity, scalability, and long-term business transformation goals."
/ >
< meta property = "og:url" content = "https://www.wdipl.com/services" / >
< meta property = "og:type" content = "website" / >
2026-03-27 11:17:56 +05:30
< meta
property = "og:image"
content = "https://www.wdipl.com/your-preview-image.jpg"
/ >
2025-07-23 18:53:54 +05:30
{ /* Twitter Card Tags */ }
< meta name = "twitter:card" content = "summary_large_image" / >
2026-03-27 11:17:56 +05:30
< meta
name = "twitter:title"
content = "AI Strategy Consulting | Enterprise AI Roadmap | WDI"
/ >
2025-07-23 18:53:54 +05:30
< meta
name = "twitter:description"
content = "WDI’ s phased AI strategy consulting helps you adopt intelligent technologies with clarity, scalability, and long-term business transformation goals."
/ >
2026-03-27 11:17:56 +05:30
< meta
name = "twitter:image"
content = "https://www.wdipl.com/your-preview-image.jpg"
/ >
2025-07-23 18:53:54 +05:30
{ /* Social Profiles (using JSON-LD Schema) */ }
< script type = "application/ld+json" >
{ `
{
"@context" : "https://schema.org" ,
"@type" : "Organization" ,
"name" : "WDI" ,
"url" : "https://www.wdipl.com" ,
"sameAs" : [
"https://www.facebook.com/wdideas" ,
"https://www.linkedin.com/in/website-developers-india/" ,
"https://www.instagram.com/wdipl/"
]
}
` }
< / script >
< / Helmet >
2025-07-11 16:54:37 +05:30
< div className = "container mx-auto px-6 lg:px-8" >
< div className = "grid lg:grid-cols-2 gap-16 items-center min-h-[90vh]" >
< motion.div
initial = { { opacity : 0 , x : - 50 } }
animate = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.8 } }
className = "space-y-8"
>
{ /* AI Strategy Label */ }
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 } }
>
< span className = "text-white/70 text-sm font-medium" > AI & ML < / span >
< / motion.div >
{ /* Main Heading */ }
< div className = "space-y-6" >
< h1 className = "text-4xl md:text-5xl lg:text-6xl font-semibold text-white leading-tight" >
AI Strategy & Consulting Services
< / h1 >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< p className = "text-lg text-gray-300 leading-relaxed max-w-lg" >
2026-03-27 11:17:56 +05:30
Guiding your business through the complexities of Artificial
Intelligence , from identifying opportunities to defining a
clear , actionable AI roadmap for AI ‑ powered mobile and web
development .
2025-07-11 16:54:37 +05:30
< / p >
< / div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* CTAs */ }
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.3 } }
className = "flex flex-col sm:flex-row gap-4"
>
2026-03-27 11:17:56 +05:30
< ShimmerButton
className = "text-lg px-8 py-4"
onClick = { ( ) = > navigate ( "/start-a-project" ) }
2025-07-22 16:14:11 +05:30
>
2025-07-11 16:54:37 +05:30
< div className = "inline-flex items-center gap-2" >
< Brain className = "w-5 h-5 flex-shrink-0" / >
< span > Develop Your AI Strategy < / span >
< / div >
< / ShimmerButton >
< Button
variant = "outline"
size = "lg"
className = "text-lg px-8 py-4 h-auto border-gray-600 text-gray-300 hover:bg-gray-800 hover:text-white"
>
< div className = "inline-flex items-center gap-2" >
< MessageSquare className = "w-5 h-5 flex-shrink-0" / >
< span > Request a Consultation < / span >
< / div >
< / Button >
< / motion.div >
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Right side with AI Strategy Roadmap Visualization */ }
< motion.div
initial = { { opacity : 0 , x : 50 } }
animate = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
className = "relative flex flex-col items-center"
>
{ /* AI Strategy Roadmap Scene */ }
< div className = "relative w-full max-w-2xl mx-auto" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
className = "relative"
>
{ /* Main Strategy Dashboard */ }
< motion.div
initial = { { opacity : 0 , scale : 0.8 } }
animate = { { opacity : 1 , scale : 1 } }
transition = { { duration : 0.8 , delay : 0.6 } }
className = "relative bg-gray-900 rounded-2xl p-6 mx-auto max-w-lg shadow-2xl border border-gray-700"
>
{ /* AI Strategy Interface */ }
< div className = "bg-black rounded-xl p-6 relative overflow-hidden" >
{ /* Header */ }
< motion.div
initial = { { opacity : 0 , y : 10 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 , delay : 1.0 } }
className = "text-center mb-6"
>
< div className = "flex items-center justify-center gap-3 mb-4" >
< div className = "w-8 h-8 bg-accent/20 rounded-lg flex items-center justify-center" >
< Brain className = "w-5 h-5 text-accent" / >
< / div >
2026-03-27 11:17:56 +05:30
< h3 className = "text-lg font-semibold text-white" >
AI Strategy Roadmap
< / h3 >
2025-07-11 16:54:37 +05:30
< / div >
< div className = "w-full h-1 bg-gradient-to-r from-accent via-blue-500 to-purple-500 rounded-full" > < / div >
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Strategy Steps */ }
< div className = "space-y-3" >
{ /* Discovery Phase */ }
< motion.div
initial = { { opacity : 0 , x : - 10 } }
animate = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.6 , delay : 1.2 } }
className = "relative"
>
< div className = "h-12 bg-gradient-to-r from-blue-500/20 to-cyan-500/20 rounded-lg border border-blue-500/30 p-3 flex items-center gap-3" >
< div className = "w-6 h-6 bg-blue-500 rounded flex items-center justify-center" >
< Search className = "w-3 h-3 text-white" / >
< / div >
< div className = "flex-1" >
2026-03-27 11:17:56 +05:30
< div className = "text-white text-xs font-medium" >
Discovery & Analysis
< / div >
2025-07-11 16:54:37 +05:30
< / div >
< div className = "text-xs text-blue-300" > Phase 1 < / div >
< / div >
{ /* Progress indicator */ }
< motion.div
animate = { { width : [ "0%" , "100%" ] } }
transition = { { duration : 2 , delay : 1.5 } }
className = "absolute bottom-0 left-0 h-0.5 bg-blue-500 rounded-full"
> < / motion.div >
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Assessment Phase */ }
< motion.div
initial = { { opacity : 0 , x : - 10 } }
animate = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.6 , delay : 1.4 } }
className = "relative"
>
< div className = "h-12 bg-gradient-to-r from-green-500/20 to-emerald-500/20 rounded-lg border border-green-500/30 p-3 flex items-center gap-3" >
< div className = "w-6 h-6 bg-green-500 rounded flex items-center justify-center" >
< Target className = "w-3 h-3 text-white" / >
< / div >
< div className = "flex-1" >
2026-03-27 11:17:56 +05:30
< div className = "text-white text-xs font-medium" >
Opportunity Assessment
< / div >
2025-07-11 16:54:37 +05:30
< / div >
< div className = "text-xs text-green-300" > Phase 2 < / div >
< / div >
{ /* Progress indicator */ }
< motion.div
animate = { { width : [ "0%" , "85%" ] } }
transition = { { duration : 2 , delay : 2.0 } }
className = "absolute bottom-0 left-0 h-0.5 bg-green-500 rounded-full"
> < / motion.div >
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Roadmap Phase */ }
< motion.div
initial = { { opacity : 0 , x : - 10 } }
animate = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.6 , delay : 1.6 } }
className = "relative"
>
< div className = "h-12 bg-gradient-to-r from-purple-500/20 to-pink-500/20 rounded-lg border border-purple-500/30 p-3 flex items-center gap-3" >
< div className = "w-6 h-6 bg-purple-500 rounded flex items-center justify-center" >
< Route className = "w-3 h-3 text-white" / >
< / div >
< div className = "flex-1" >
2026-03-27 11:17:56 +05:30
< div className = "text-white text-xs font-medium" >
Roadmap Development
< / div >
2025-07-11 16:54:37 +05:30
< / div >
< div className = "text-xs text-purple-300" > Phase 3 < / div >
< / div >
{ /* Progress indicator */ }
< motion.div
animate = { { width : [ "0%" , "60%" ] } }
transition = { { duration : 2 , delay : 2.5 } }
className = "absolute bottom-0 left-0 h-0.5 bg-purple-500 rounded-full"
> < / motion.div >
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Implementation Phase */ }
< motion.div
initial = { { opacity : 0 , x : - 10 } }
animate = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.6 , delay : 1.8 } }
className = "relative"
>
< div className = "h-12 bg-gradient-to-r from-orange-500/20 to-red-500/20 rounded-lg border border-orange-500/30 p-3 flex items-center gap-3" >
< div className = "w-6 h-6 bg-orange-500 rounded flex items-center justify-center" >
< Rocket className = "w-3 h-3 text-white" / >
< / div >
< div className = "flex-1" >
2026-03-27 11:17:56 +05:30
< div className = "text-white text-xs font-medium" >
Implementation Planning
< / div >
2025-07-11 16:54:37 +05:30
< / div >
< div className = "text-xs text-orange-300" > Phase 4 < / div >
< / div >
{ /* Progress indicator */ }
< motion.div
animate = { { width : [ "0%" , "30%" ] } }
transition = { { duration : 2 , delay : 3.0 } }
className = "absolute bottom-0 left-0 h-0.5 bg-orange-500 rounded-full"
> < / motion.div >
< / motion.div >
< / div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* ROI Projection */ }
< motion.div
initial = { { opacity : 0 , y : 10 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 , delay : 2.0 } }
className = "mt-6 p-4 bg-gradient-to-r from-accent/20 to-blue-500/20 rounded-lg border border-accent/30"
>
< div className = "flex items-center justify-between" >
< div >
2026-03-27 11:17:56 +05:30
< div className = "text-white text-sm font-medium" >
Projected ROI
< / div >
< div className = "text-accent text-xs" >
12 - month forecast
< / div >
2025-07-11 16:54:37 +05:30
< / div >
< div className = "text-right" >
2026-03-27 11:17:56 +05:30
< div className = "text-2xl font-bold text-accent" >
+ 245 %
< / div >
< div className = "text-xs text-white/70" >
Expected Return
< / div >
2025-07-11 16:54:37 +05:30
< / div >
< / div >
< / motion.div >
< / div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Executive/Consultant */ }
< motion.div
initial = { { opacity : 0 , scale : 0.8 } }
animate = { { opacity : 1 , scale : 1 } }
transition = { { duration : 0.8 , delay : 2.2 } }
className = "absolute -bottom-6 -left-6 transform -rotate-12"
>
< div className = "w-14 h-14 bg-gradient-to-br from-accent/20 to-blue-500/20 rounded-full flex items-center justify-center border border-accent/30" >
< Users className = "w-6 h-6 text-accent" / >
< / div >
< / motion.div >
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Data Points & Brain Visualization */ }
< motion.div
initial = { { opacity : 0 } }
animate = { { opacity : 1 } }
transition = { { duration : 0.8 , delay : 2.4 } }
className = "absolute -top-8 -right-8 space-y-2"
>
< div className = "flex items-center gap-2 text-accent text-sm" >
< Brain className = "w-4 h-4" / >
< span > AI Intelligence < / span >
< / div >
< div className = "space-y-1" >
< motion.div
animate = { { opacity : [ 0.3 , 1 , 0.3 ] } }
transition = { { duration : 2 , repeat : Infinity } }
className = "w-3 h-3 bg-accent rounded-full"
> < / motion.div >
< motion.div
animate = { { opacity : [ 0.3 , 1 , 0.3 ] } }
transition = { { duration : 2 , repeat : Infinity , delay : 0.5 } }
className = "w-2 h-2 bg-blue-400 rounded-full ml-1"
> < / motion.div >
< motion.div
animate = { { opacity : [ 0.3 , 1 , 0.3 ] } }
transition = { { duration : 2 , repeat : Infinity , delay : 1 } }
className = "w-4 h-4 bg-purple-400 rounded-full ml-2"
> < / motion.div >
< / div >
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Abstract Brain/Data Visualization */ }
< motion.div
initial = { { opacity : 0 , scale : 0 } }
animate = { { opacity : 1 , scale : 1 } }
transition = { { duration : 0.6 , delay : 2.6 } }
className = "absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2"
>
< div className = "w-20 h-20 bg-accent/10 backdrop-blur-sm rounded-full flex items-center justify-center shadow-xl" >
< div className = "relative" >
< Brain className = "w-10 h-10 text-accent" / >
< motion.div
animate = { { rotate : [ 0 , 360 ] } }
2026-03-27 11:17:56 +05:30
transition = { {
duration : 8 ,
repeat : Infinity ,
ease : "linear" ,
} }
2025-07-11 16:54:37 +05:30
className = "absolute inset-0 w-10 h-10"
>
< div className = "absolute top-0 left-1/2 w-1 h-1 bg-blue-400 rounded-full transform -translate-x-1/2" > < / div >
< div className = "absolute bottom-0 left-1/2 w-1 h-1 bg-green-400 rounded-full transform -translate-x-1/2" > < / div >
< div className = "absolute left-0 top-1/2 w-1 h-1 bg-purple-400 rounded-full transform -translate-y-1/2" > < / div >
< div className = "absolute right-0 top-1/2 w-1 h-1 bg-yellow-400 rounded-full transform -translate-y-1/2" > < / div >
< / motion.div >
< / div >
< / div >
< / motion.div >
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Strategy Features */ }
< motion.div
initial = { { opacity : 0 , y : 30 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 2.8 } }
className = "flex justify-center gap-4 flex-wrap mt-8"
>
2026-03-27 11:17:56 +05:30
< Badge
variant = "secondary"
className = "bg-blue-500/20 text-blue-300 border-blue-500/30"
>
2025-07-11 16:54:37 +05:30
< Target className = "w-3 h-3 mr-1" / >
Strategic
< / Badge >
2026-03-27 11:17:56 +05:30
< Badge
variant = "secondary"
className = "bg-green-500/20 text-green-300 border-green-500/30"
>
2025-07-11 16:54:37 +05:30
< BarChart3 className = "w-3 h-3 mr-1" / >
Data - Driven
< / Badge >
2026-03-27 11:17:56 +05:30
< Badge
variant = "secondary"
className = "bg-purple-500/20 text-purple-300 border-purple-500/30"
>
2025-07-11 16:54:37 +05:30
< Rocket className = "w-3 h-3 mr-1" / >
Actionable
< / Badge >
< / motion.div >
< / div >
< / motion.div >
< / div >
< / div >
< / section >
) ;
} ;
// Key Benefits of AI Strategy & Consulting
const AIStrategyBenefits = ( ) = > {
const benefits = [
{
icon : Route ,
title : "Clear Roadmap" ,
2026-03-27 11:17:56 +05:30
description :
"Translate AI potential into a practical, implementable plan." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : DollarSign ,
title : "Identified ROI" ,
2026-03-27 11:17:56 +05:30
description :
"Focus on AI initiatives that deliver measurable business value." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Shield ,
title : "Risk Mitigation" ,
2026-03-27 11:17:56 +05:30
description :
"Address ethical, data privacy, and implementation challenges upfront." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : TrendingUp ,
title : "Competitive Edge" ,
2026-03-27 11:17:56 +05:30
description : "Leverage AI to innovate and differentiate your offerings." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Brain ,
title : "Informed Decisions" ,
2026-03-27 11:17:56 +05:30
description :
"Gain insights into AI technologies relevant to your business." ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-6" >
2026-03-27 11:17:56 +05:30
Why Choose WDI for AI Strategy ?
2025-07-11 16:54:37 +05:30
< / h2 >
2026-03-27 11:17:56 +05:30
< p className = "mt-4 text-gray-400 max-w-2xl mx-auto" >
WDI combines AI expertise with business ‑ aligned strategy to design
scalable AI ‑ powered solutions tailored to your needs .
< / p >
2025-07-11 16:54:37 +05:30
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 lg:grid-cols-3 gap-8"
>
{ benefits . slice ( 0 , 3 ) . map ( ( benefit , index ) = > {
const IconComponent = benefit . icon ;
return (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8 text-center" >
< div className = "w-16 h-16 bg-accent/20 rounded-2xl flex items-center justify-center mx-auto mb-6" >
< IconComponent className = "w-8 h-8 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-foreground mb-4" >
{ benefit . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed" >
{ benefit . description }
< / p >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
{ /* Second row with remaining benefits */ }
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 gap-8 max-w-2xl mx-auto mt-8"
>
{ benefits . slice ( 3 ) . map ( ( benefit , index ) = > {
const IconComponent = benefit . icon ;
return (
< motion.div
key = { index + 3 }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.5 , delay : ( index + 3 ) * 0.1 } }
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8 text-center" >
< div className = "w-16 h-16 bg-accent/20 rounded-2xl flex items-center justify-center mx-auto mb-6" >
< IconComponent className = "w-8 h-8 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-foreground mb-4" >
{ benefit . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed" >
{ benefit . description }
< / p >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
< / div >
< / section >
) ;
} ;
// AI Strategy Process
const AIStrategyProcess = ( ) = > {
const steps = [
{
title : "Discovery & Business Needs Analysis" ,
2026-03-27 11:17:56 +05:30
description :
"Understanding your business objectives, current capabilities, and specific challenges to identify where AI can create the most value." ,
icon : Search ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "AI Opportunity Assessment" ,
2026-03-27 11:17:56 +05:30
description :
"Evaluating potential AI use cases, market opportunities, and alignment with your business strategy and goals." ,
icon : Target ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Data Readiness Evaluation" ,
2026-03-27 11:17:56 +05:30
description :
"Assessing your data quality, infrastructure, and governance to determine AI readiness and requirements." ,
icon : Database ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Technology & Feasibility Study" ,
2026-03-27 11:17:56 +05:30
description :
"Analyzing technical requirements, platform options, and implementation feasibility for identified AI initiatives." ,
icon : Cpu ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Roadmap Definition & ROI Projection" ,
2026-03-27 11:17:56 +05:30
description :
"Creating a prioritized implementation plan with timelines, resource requirements, and expected return on investment." ,
icon : Route ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Implementation Planning & Pilot Program" ,
2026-03-27 11:17:56 +05:30
description :
"Developing detailed implementation strategies and launching pilot programs to validate concepts and approaches." ,
icon : Rocket ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32 bg-black" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-white mb-6" >
Our Phased Approach to Your AI Transformation
< / h2 >
2026-03-27 11:17:56 +05:30
< p className = "mt-4 text-gray-400 max-w-2xl mx-auto" >
A structured AI strategy that moves your business from vision to
AI ‑ powered mobile and web solutions in clear , measurable steps .
< / p >
2025-07-11 16:54:37 +05:30
< / motion.div >
< div className = "relative" >
{ /* Timeline line */ }
< div className = "absolute left-1/2 transform -translate-x-1/2 h-full w-0.5 bg-gradient-to-b from-accent via-accent/50 to-transparent hidden lg:block" > < / div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< div className = "space-y-16" >
{ steps . map ( ( step , index ) = > {
const IconComponent = step . icon ;
const isEven = index % 2 === 0 ;
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
return (
< motion.div
key = { index }
initial = { { opacity : 0 , x : isEven ? - 50 : 50 } }
whileInView = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.8 , delay : index * 0.2 } }
viewport = { { once : true } }
2026-03-27 11:17:56 +05:30
className = { ` flex items-center ${ isEven ? "lg:flex-row" : "lg:flex-row-reverse" } flex-col lg:gap-16 gap-8 ` }
2025-07-11 16:54:37 +05:30
>
2026-03-27 11:17:56 +05:30
< div
className = { ` flex-1 ${ isEven ? "lg:text-right" : "lg:text-left" } text-center lg:text-left ` }
>
2025-07-11 16:54:37 +05:30
< div className = "bg-gray-900/50 backdrop-blur-md rounded-2xl border border-gray-800 p-8 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl" >
< div className = "flex items-center gap-4 mb-4 justify-center lg:justify-start" >
< div className = "w-12 h-12 bg-accent/20 rounded-xl flex items-center justify-center" >
< IconComponent className = "w-6 h-6 text-accent" / >
< / div >
2026-03-27 11:17:56 +05:30
< div className = "text-2xl font-bold text-accent" >
0 { index + 1 }
< / div >
2025-07-11 16:54:37 +05:30
< / div >
< h3 className = "text-2xl font-semibold text-white mb-4" >
{ step . title }
< / h3 >
< p className = "text-gray-300 leading-relaxed" >
{ step . description }
< / p >
< / div >
< / div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Timeline dot */ }
< div className = "w-4 h-4 bg-accent rounded-full border-4 border-black z-10 hidden lg:block" > < / div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< div className = "flex-1 hidden lg:block" > < / div >
< / motion.div >
) ;
} ) }
< / div >
< / div >
< / div >
< / section >
) ;
} ;
// AI Strategy Offerings
const AIStrategyOfferings = ( ) = > {
const offerings = [
{
title : "AI Opportunity Identification" ,
description : "Pinpointing areas where AI can create value." ,
icon : Lightbulb ,
2026-03-27 11:17:56 +05:30
features : [
"Use Case Analysis" ,
"Value Assessment" ,
"Opportunity Mapping" ,
"Business Impact" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "AI Readiness Assessment" ,
2026-03-27 11:17:56 +05:30
description :
"Evaluating your data, infrastructure, and team for AI adoption." ,
2025-07-11 16:54:37 +05:30
icon : CheckCircle ,
2026-03-27 11:17:56 +05:30
features : [
"Data Maturity" ,
"Infrastructure Audit" ,
"Team Capability" ,
"Organizational Readiness" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "AI Roadmap Development" ,
description : "Creating a phased plan for AI implementation." ,
icon : Route ,
2026-03-27 11:17:56 +05:30
features : [
"Strategic Planning" ,
"Phase Prioritization" ,
"Resource Planning" ,
"Timeline Development" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "AI Ethics & Governance" ,
description : "Advising on responsible and unbiased AI practices." ,
icon : Shield ,
2026-03-27 11:17:56 +05:30
features : [
"Ethical Framework" ,
"Bias Mitigation" ,
"Compliance Strategy" ,
"Risk Management" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Vendor & Technology Selection" ,
description : "Guiding choices for AI platforms and tools." ,
icon : Settings ,
2026-03-27 11:17:56 +05:30
features : [
"Platform Evaluation" ,
"Vendor Analysis" ,
"Technology Fit" ,
"Cost-Benefit Analysis" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Change Management for AI Adoption" ,
description : "Preparing your organization for AI integration." ,
icon : Users ,
2026-03-27 11:17:56 +05:30
features : [
"Change Strategy" ,
"Training Programs" ,
"Culture Transformation" ,
"Adoption Support" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "GenAI Strategy & Use Case Identification" ,
description : "Consulting on the strategic application of Generative AI." ,
icon : Brain ,
2026-03-27 11:17:56 +05:30
features : [
"GenAI Opportunities" ,
"Use Case Development" ,
"Implementation Strategy" ,
"ROI Assessment" ,
] ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-6" >
Our Specialized AI Consulting Capabilities
< / h2 >
2026-03-27 11:17:56 +05:30
< p className = "mt-4 text-gray-400 max-w-2xl mx-auto" >
Expert AI consulting to align your business goals with AI ‑ powered
mobile and web solutions that drive measurable impact .
< / p >
2025-07-11 16:54:37 +05:30
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 lg:grid-cols-3 gap-8"
>
{ offerings . slice ( 0 , 6 ) . map ( ( offering , index ) = > {
const IconComponent = offering . icon ;
return (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8" >
< div className = "w-12 h-12 bg-accent/20 rounded-lg flex items-center justify-center mb-6" >
< IconComponent className = "w-6 h-6 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-foreground mb-4" >
{ offering . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed mb-6" >
{ offering . description }
< / p >
< div className = "space-y-2" >
2026-03-27 11:17:56 +05:30
< h4 className = "text-sm font-medium text-foreground" >
Key Areas :
< / h4 >
2025-07-11 16:54:37 +05:30
< div className = "flex flex-wrap gap-2" >
{ offering . features . map ( ( feature ) = > (
2026-03-27 11:17:56 +05:30
< Badge
key = { feature }
variant = "secondary"
className = "text-xs bg-muted/50 text-muted-foreground border-muted"
>
2025-07-11 16:54:37 +05:30
{ feature }
< / Badge >
) ) }
< / div >
< / div >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
{ /* Last offering card */ }
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
className = "max-w-md mx-auto mt-8"
>
{ offerings . slice ( 6 ) . map ( ( offering , index ) = > {
const IconComponent = offering . icon ;
return (
< motion.div
key = { index + 6 }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.5 , delay : ( index + 6 ) * 0.1 } }
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8" >
< div className = "w-12 h-12 bg-accent/20 rounded-lg flex items-center justify-center mb-6" >
< IconComponent className = "w-6 h-6 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-foreground mb-4" >
{ offering . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed mb-6" >
{ offering . description }
< / p >
< div className = "space-y-2" >
2026-03-27 11:17:56 +05:30
< h4 className = "text-sm font-medium text-foreground" >
Key Areas :
< / h4 >
2025-07-11 16:54:37 +05:30
< div className = "flex flex-wrap gap-2" >
{ offering . features . map ( ( feature ) = > (
2026-03-27 11:17:56 +05:30
< Badge
key = { feature }
variant = "secondary"
className = "text-xs bg-muted/50 text-muted-foreground border-muted"
>
2025-07-11 16:54:37 +05:30
{ feature }
< / Badge >
) ) }
< / div >
< / div >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
< / div >
< / section >
) ;
} ;
// Target Audience
2025-09-23 20:13:31 +05:30
export const AIStrategyTargetAudience = ( ) = > {
2025-07-11 16:54:37 +05:30
const audiences = [
2026-03-27 11:17:56 +05:30
{
title : "CTOs" ,
icon : Code ,
description : "Technical leaders driving AI transformation initiatives" ,
} ,
{
title : "Product Leaders" ,
icon : Rocket ,
description : "Product managers integrating AI into product strategy" ,
} ,
{
title : "Business Owners" ,
icon : Briefcase ,
description : "Executives seeking competitive advantage through AI" ,
} ,
{
title : "Innovation Teams" ,
icon : Lightbulb ,
description : "Teams exploring AI opportunities and applications" ,
} ,
{
title : "Enterprise Leaders" ,
icon : Building ,
description : "Decision makers considering AI adoption" ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32 bg-black" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-white mb-6" >
Ideal For . . .
< / h2 >
2026-03-27 11:17:56 +05:30
< p className = "mt-4 text-gray-400 max-w-2xl mx-auto" >
Businesses ready to adopt AI ‑ powered mobile and web solutions for
smarter automation , data ‑ driven decisions , and scalable growth .
< / p >
2025-07-11 16:54:37 +05:30
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 lg:grid-cols-3 gap-8"
>
{ audiences . map ( ( audience , index ) = > {
const IconComponent = audience . icon ;
return (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 5 , scale : 1.02 } }
className = "group"
>
< Card className = "bg-gray-900/50 backdrop-blur-md border-gray-800 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8 text-center" >
< div className = "w-16 h-16 bg-accent/20 rounded-2xl flex items-center justify-center mx-auto mb-6" >
< IconComponent className = "w-8 h-8 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-white mb-4" >
{ audience . title }
< / h3 >
< p className = "text-gray-300 text-sm leading-relaxed" >
{ audience . description }
< / p >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
< / div >
< / section >
) ;
} ;
// AI Strategy Case Studies with AI-related images
const AIStrategyCaseStudies = ( ) = > {
const caseStudies = [
{
title : "Manufacturing AI Transformation" ,
client : "Industrial Manufacturing Corp" ,
2026-03-27 11:17:56 +05:30
description :
"Developed comprehensive AI strategy that identified 8 key use cases, resulting in 30% operational efficiency improvement and $2.5M annual savings through predictive maintenance and quality optimization." ,
image :
"https://images.unsplash.com/photo-1697577418970-95d99b5a55cf?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8QUl8ZW58MHx8MHx8fDA%3D" , // AI/ML circuit board
2025-07-11 16:54:37 +05:30
results : "$2.5M annual savings, 30% efficiency gain" ,
engagement : "6-month strategy engagement" ,
2026-03-27 11:17:56 +05:30
gradient : "from-blue-500/20 to-cyan-500/20" ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Financial Services AI Roadmap" ,
client : "Regional Banking Institution" ,
2026-03-27 11:17:56 +05:30
description :
"Created strategic AI roadmap focusing on customer experience and risk management, leading to 40% reduction in loan processing time and improved fraud detection capabilities." ,
image :
"https://images.unsplash.com/photo-1677442136019-21780ecad995?w=400&h=300&fit=crop&auto=format" , // AI visualization
2025-07-11 16:54:37 +05:30
results : "40% faster processing, enhanced fraud detection" ,
engagement : "4-month strategic assessment" ,
2026-03-27 11:17:56 +05:30
gradient : "from-green-500/20 to-emerald-500/20" ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-8" >
Guiding Businesses to AI Success
< / h2 >
2026-03-27 11:17:56 +05:30
< p className = "mt-4 text-gray-400 max-w-2xl mx-auto" >
Helping companies turn AI potential into real ‑ world AI ‑ powered
mobile and web solutions that drive growth and efficiency .
< / p >
2025-07-11 16:54:37 +05:30
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 gap-8 max-w-4xl mx-auto"
>
{ caseStudies . map ( ( study , index ) = > (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 8 , scale : 1.02 } }
className = "group cursor-pointer"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl overflow-hidden h-full" >
< CardContent className = "p-0 flex flex-col h-full" >
< div className = "p-8 pb-6" >
< div className = "flex items-start gap-4 mb-6" >
< div className = "w-12 h-12 bg-accent/20 rounded-xl flex items-center justify-center" >
< Brain className = "w-6 h-6 text-accent" / >
< / div >
< div className = "flex-1" >
< div className = "text-xs text-muted-foreground mb-2 uppercase tracking-wider" >
{ study . client }
< / div >
2026-03-27 11:17:56 +05:30
< Badge
variant = "secondary"
className = "text-xs bg-accent/20 text-accent border-accent/30"
>
2025-07-11 16:54:37 +05:30
{ study . results }
< / Badge >
< / div >
< / div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< h3 className = "text-xl font-semibold text-foreground mb-4 leading-tight" >
{ study . title }
< / h3 >
< / div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< div className = "px-8 pb-6 flex-1" >
2026-03-27 11:17:56 +05:30
< div
className = { ` relative rounded-xl overflow-hidden bg-gradient-to-br ${ study . gradient } p-4 border border-white/10 ` }
>
2025-07-11 16:54:37 +05:30
< ImageWithFallback
src = { study . image }
alt = { study . title }
className = "w-full h-48 object-cover rounded-lg shadow-lg"
/ >
< / div >
< / div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< div className = "px-8 pb-6" >
< p className = "text-muted-foreground text-sm leading-relaxed mb-4" >
{ study . description }
< / p >
< div className = "flex gap-4 text-xs text-muted-foreground" >
< div className = "flex items-center gap-1" >
< Clock className = "w-3 h-3" / >
{ study . engagement }
< / div >
< / div >
< / div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< div className = "p-8 pt-0 mt-auto" >
2026-03-27 11:17:56 +05:30
< Button
variant = "ghost"
2025-07-11 16:54:37 +05:30
size = "sm"
className = "w-full justify-between text-accent hover:text-accent hover:bg-accent/10 group-hover:translate-x-1 transition-all duration-300 h-auto py-3"
>
2026-03-27 11:17:56 +05:30
< span className = "text-sm font-medium" >
VIEW FULL CASE STUDY
< / span >
2025-07-11 16:54:37 +05:30
< ArrowRight className = "w-4 h-4" / >
< / Button >
< / div >
< / CardContent >
< / Card >
< / motion.div >
) ) }
< / motion.div >
< / div >
< / section >
) ;
} ;
// Mid-Page CTA
const AIStrategyInlineCTA = ( ) = > {
2025-09-23 20:13:31 +05:30
const navigate = useNavigate ( ) ;
2025-07-11 16:54:37 +05:30
return (
< section className = "py-20 bg-black" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 50 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center max-w-4xl mx-auto"
>
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "space-y-8"
>
< div className = "inline-block p-[2px] rounded-full bg-gradient-to-r from-accent via-blue-500 to-purple-500" >
< div className = "bg-black rounded-full px-6 py-3 flex items-center gap-2" >
< Brain className = "w-5 h-5 text-white" / >
2026-03-27 11:17:56 +05:30
< span className = "text-white text-base font-medium" >
AI Strategy
< / span >
2025-07-11 16:54:37 +05:30
< / div >
< / div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< h2 className = "text-4xl lg:text-5xl font-semibold text-white leading-tight" >
Unsure Where to Begin { " " }
< span className = "text-accent" > Your AI Journey ? < / span >
< / h2 >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< p className = "text-xl text-gray-300 leading-relaxed max-w-2xl mx-auto" >
2026-03-27 11:17:56 +05:30
Our AI consultants help you clarify your goals and define a
focused AI ‑ powered roadmap for your business .
2025-07-11 16:54:37 +05:30
< / p >
2026-03-27 11:17:56 +05:30
< ShimmerButton
className = "text-xl px-10 py-5 rounded-2xl shadow-lg hover:shadow-xl"
onClick = { ( ) = > navigate ( "/start-a-project" ) }
2025-07-22 16:14:11 +05:30
>
2025-07-11 16:54:37 +05:30
< div className = "inline-flex items-center gap-3" >
< MessageSquare className = "w-6 h-6 flex-shrink-0" / >
< span > Book a Free AI Strategy Call < / span >
< / div >
< / ShimmerButton >
< / motion.div >
< / motion.div >
< / div >
< / section >
) ;
} ;
// Hire AI/ML Consultants
const HireAIConsultants = ( ) = > {
const consultantTypes = [
{
title : "AI Strategy Consultants" ,
2026-03-27 11:17:56 +05:30
description :
"Senior strategists who design comprehensive AI transformation plans" ,
2025-07-11 16:54:37 +05:30
icon : Brain ,
2026-03-27 11:17:56 +05:30
skills : [
"AI Strategy" ,
"Business Analysis" ,
"Roadmap Development" ,
"ROI Planning" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "AI Solution Architects" ,
description : "Technical architects who design scalable AI infrastructure" ,
icon : Cpu ,
2026-03-27 11:17:56 +05:30
skills : [
"Solution Architecture" ,
"Platform Design" ,
"Technology Selection" ,
"Integration Planning" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Data Strategy Leaders" ,
description : "Experts in data governance and AI-ready data architecture" ,
icon : Database ,
2026-03-27 11:17:56 +05:30
skills : [
"Data Strategy" ,
"Governance Framework" ,
"Data Architecture" ,
"Quality Management" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "AI Ethics Consultants" ,
description : "Specialists in responsible AI and ethical implementation" ,
icon : Shield ,
2026-03-27 11:17:56 +05:30
skills : [
"AI Ethics" ,
"Bias Mitigation" ,
"Compliance Strategy" ,
"Risk Assessment" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "AI Product Strategists" ,
description : "Product leaders who integrate AI into product development" ,
icon : Rocket ,
2026-03-27 11:17:56 +05:30
skills : [
"Product Strategy" ,
"AI Integration" ,
"User Experience" ,
"Market Analysis" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Change Management Consultants" ,
description : "Experts in organizational transformation for AI adoption" ,
icon : Users ,
2026-03-27 11:17:56 +05:30
skills : [
"Change Management" ,
"Training Strategy" ,
"Culture Transformation" ,
"Adoption Planning" ,
] ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-6" >
Access Expert AI Strategy & Leadership Talent
< / h2 >
< p className = "text-xl text-muted-foreground max-w-3xl mx-auto leading-relaxed" >
2026-03-27 11:17:56 +05:30
Hire experienced AI strategists , solution architects , and data
leaders to drive your AI initiatives and AI ‑ powered mobile and web
development roadmap .
2025-07-11 16:54:37 +05:30
< / p >
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 lg:grid-cols-3 gap-8 mb-12"
>
{ consultantTypes . map ( ( type , index ) = > {
const IconComponent = type . icon ;
return (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8" >
< div className = "w-12 h-12 bg-accent/20 rounded-lg flex items-center justify-center mb-6" >
< IconComponent className = "w-6 h-6 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-foreground mb-4" >
{ type . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed mb-6" >
{ type . description }
< / p >
< div className = "space-y-2" >
2026-03-27 11:17:56 +05:30
< h4 className = "text-sm font-medium text-foreground" >
Core Skills :
< / h4 >
2025-07-11 16:54:37 +05:30
< div className = "flex flex-wrap gap-2" >
{ type . skills . map ( ( skill ) = > (
2026-03-27 11:17:56 +05:30
< Badge
key = { skill }
variant = "secondary"
className = "text-xs bg-muted/50 text-muted-foreground border-muted"
>
2025-07-11 16:54:37 +05:30
{ skill }
< / Badge >
) ) }
< / div >
< / div >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
className = "text-center space-y-6"
>
< div className = "flex flex-col sm:flex-row gap-4 justify-center" >
< ShimmerButton className = "text-lg px-8 py-4" >
< div className = "inline-flex items-center gap-2" >
< UserPlus className = "w-5 h-5 flex-shrink-0" / >
< span > Hire AI / ML Consultants < / span >
< / div >
< / ShimmerButton >
< Button
variant = "outline"
size = "lg"
className = "text-lg px-8 py-4 h-auto border-white/20 text-muted-foreground hover:bg-muted hover:text-foreground"
>
< div className = "inline-flex items-center gap-2" >
< Eye className = "w-5 h-5 flex-shrink-0" / >
< span > View Profiles < / span >
< / div >
< / Button >
< / div >
< / motion.div >
< / div >
< / section >
) ;
} ;
// AI Strategy FAQs
const AIStrategyFAQs = ( ) = > {
const faqs = [
{
2026-03-27 11:17:56 +05:30
question : 'What is an "AI Roadmap"?' ,
answer :
"An AI roadmap is a strategic plan that outlines how your organization will adopt and implement AI technologies over time. It includes identified use cases, prioritized initiatives, resource requirements, timeline milestones, and expected outcomes for AI‑ powered mobile and web solutions. The roadmap typically spans 12– 36 months and provides a clear path from current state to AI‑ enabled future state, including technical infrastructure, data preparation, team development, and change management considerations." ,
2025-07-11 16:54:37 +05:30
} ,
{
question : "How long does an AI strategy engagement typically last?" ,
2026-03-27 11:17:56 +05:30
answer :
"AI strategy engagements typically range from 8– 16 weeks, depending on organization size and complexity. A typical engagement includes 2– 3 weeks for discovery and assessment, 3– 4 weeks for opportunity identification and feasibility analysis, 2– 3 weeks for roadmap development and ROI modeling, and 1– 2 weeks for implementation planning and stakeholder alignment. Larger enterprises or complex multi‑ business unit organizations may require longer engagements and AI‑ powered design input." ,
2025-07-11 16:54:37 +05:30
} ,
{
question : "Do you help with AI ethics and responsible AI?" ,
2026-03-27 11:17:56 +05:30
answer :
"Yes, AI ethics and responsible AI practices are integral parts of our strategy consulting. We help establish ethical AI frameworks, identify and mitigate bias risks, ensure compliance with regulations like GDPR and emerging AI laws, develop transparent AI governance policies, and create accountability mechanisms. This includes bias testing methodologies, explainable AI requirements, data privacy protection, and ongoing monitoring systems to ensure ethical AI deployment and AI‑ powered features done right." ,
2025-07-11 16:54:37 +05:30
} ,
{
question : "What data do I need to prepare for an AI assessment?" ,
2026-03-27 11:17:56 +05:30
answer :
"For an AI assessment, we typically need access to business process documentation, existing data inventories and quality reports, current technology architecture diagrams, team skill assessments, and business performance metrics. We’ ll also review data governance policies, compliance requirements, and any existing analytics or automation initiatives. Most information gathering happens through interviews and workshops, so detailed preparation isn’ t required upfront we guide you through the discovery process for AI mobile app development and related use cases." ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32 bg-black" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-white mb-6" >
Frequently Asked Questions
< / h2 >
< / motion.div >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "max-w-4xl mx-auto"
>
< Accordion type = "single" collapsible className = "space-y-8" >
{ faqs . map ( ( faq , index ) = > (
2026-03-27 11:17:56 +05:30
< AccordionItem
key = { index }
value = { ` item- ${ index } ` }
2025-07-11 16:54:37 +05:30
className = "bg-gray-900/50 backdrop-blur-md rounded-2xl border border-gray-800 px-10 shadow-lg"
>
< AccordionTrigger className = "text-left hover:no-underline py-10 text-xl" >
2026-03-27 11:17:56 +05:30
< span className = "font-semibold text-white" >
{ faq . question }
< / span >
2025-07-11 16:54:37 +05:30
< / AccordionTrigger >
< AccordionContent className = "text-gray-300 pb-10 text-lg leading-relaxed" >
{ faq . answer }
< / AccordionContent >
< / AccordionItem >
) ) }
< / Accordion >
< / motion.div >
< / div >
< / section >
) ;
} ;
// Final CTA Section
const AIStrategyFinalCTA = ( ) = > {
2025-09-23 20:13:31 +05:30
const navigate = useNavigate ( ) ;
2025-07-11 16:54:37 +05:30
return (
< section className = "py-20 relative overflow-hidden" >
< div className = "container mx-auto px-6 lg:px-8 relative z-10" >
< motion.div
initial = { { opacity : 0 , y : 50 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center max-w-4xl mx-auto"
>
< motion.div
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 } }
viewport = { { once : true } }
className = "mb-8"
>
< div className = "inline-block p-[2px] rounded-full bg-gradient-to-r from-accent via-blue-500 to-purple-500" >
< div className = "bg-background rounded-full px-6 py-3 flex items-center gap-2" >
< Brain className = "w-5 h-5 text-foreground" / >
2026-03-27 11:17:56 +05:30
< span className = "text-foreground text-base font-medium" >
AI Strategy
< / span >
2025-07-11 16:54:37 +05:30
< / div >
< / div >
< / motion.div >
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-6 leading-tight" >
Chart Your Course to { " " }
< span className = "text-accent" > AI - Powered Future with WDI < / span >
< / h2 >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
< motion.p
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.3 } }
viewport = { { once : true } }
className = "text-xl text-muted-foreground mb-12 max-w-2xl mx-auto leading-relaxed"
>
2026-03-27 11:17:56 +05:30
Work with our expert AI consultants to turn complex ideas into an actionable AI ‑ powered roadmap and measurable business outcomes .
2025-07-11 16:54:37 +05:30
< / motion.p >
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
className = "space-y-8"
>
2026-03-27 11:17:56 +05:30
< ShimmerButton
className = "px-12 py-6 text-xl rounded-2xl shadow-2xl hover:shadow-accent/25"
onClick = { ( ) = > navigate ( "/start-a-project" ) }
2025-07-22 16:14:11 +05:30
>
2025-07-11 16:54:37 +05:30
< div className = "inline-flex items-center gap-3" >
< Rocket className = "w-6 h-6 flex-shrink-0" / >
< span > Start Your AI Strategy < / span >
< / div >
< / ShimmerButton >
< p className = "text-muted-foreground text-sm" >
Strategic Planning • Implementation Roadmap • ROI Optimization
< / p >
< / motion.div >
< / motion.div >
< / div >
{ /* Background Decorative Elements */ }
< div className = "absolute top-0 left-0 w-full h-full pointer-events-none overflow-hidden" >
< div className = "absolute top-20 left-20 w-60 h-60 bg-accent/5 rounded-full blur-3xl" > < / div >
< div className = "absolute bottom-20 right-20 w-60 h-60 bg-blue-500/5 rounded-full blur-3xl" > < / div >
< div className = "absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-80 h-80 bg-purple-500/3 rounded-full blur-3xl" > < / div >
< / div >
< / section >
) ;
} ;
// Main AI Strategy & Consulting Page
export const AIStrategyConsulting = ( ) = > {
return (
< div className = "dark min-h-screen" >
2025-09-23 20:13:31 +05:30
{ /* <Navigation /> */ }
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Hero Section */ }
< section className = "bg-black" >
< AIStrategyHeroWithCTA / >
< / section >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Benefits */ }
< section className = "bg-background" >
< AIStrategyBenefits / >
< / section >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* AI Strategy Process */ }
< section className = "bg-card" >
< AIStrategyProcess / >
< / section >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Offerings */ }
< section className = "bg-background" >
< AIStrategyOfferings / >
< / section >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Target Audience */ }
< section className = "bg-card" >
< AIStrategyTargetAudience / >
< / section >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Case Studies */ }
< section className = "bg-background" >
< AIStrategyCaseStudies / >
< / section >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Mid-Page CTA */ }
< section className = "bg-card" >
< AIStrategyInlineCTA / >
< / section >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Hire Consultants */ }
< section className = "bg-background" >
< HireAIConsultants / >
< / section >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* FAQs */ }
< section className = "bg-card" >
< AIStrategyFAQs / >
< / section >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Final CTA */ }
< section className = "bg-background" >
< AIStrategyFinalCTA / >
< / section >
2026-03-27 11:17:56 +05:30
2025-07-11 16:54:37 +05:30
{ /* Footer */ }
2026-03-27 11:17:56 +05:30
< section className = "bg-background" > { /* <Footer /> */ } < / section >
2025-07-11 16:54:37 +05:30
< / div >
) ;
2026-03-27 11:17:56 +05:30
} ;