import { motion } from "framer-motion";
import {
ArrowRight,
BarChart3,
Bot,
Brain,
Camera,
CheckCircle,
Clock,
CloudCog,
Code,
Cog,
Cpu,
Database,
DollarSign,
Eye,
FileText,
Globe,
GraduationCap,
MessageSquare,
PenTool,
Play,
PlugIcon,
Scale,
Search,
Server,
Target,
TrendingUp,
Truck,
UserPlus,
Users,
Workflow,
Zap,
} from "lucide-react";
import { ImageWithFallback } from "../components/figma/ImageWithFallback";
import { Footer } from "../components/Footer";
import { Navigation } from "../components/Navigation";
import {
Accordion,
AccordionContent,
AccordionItem,
AccordionTrigger,
} from "../components/ui/accordion";
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";
import { navigateTo } from "@/App";
// AI Automation & Workflows Hero Section
const AutomationHeroWithCTA = () => {
return (
{/* AI Automation Label */}
AI & ML
{/* Main Heading */}
AI-Powered Automation & Workflow Solutions
Revolutionize your operations by embedding Artificial
Intelligence into workflows, automating repetitive tasks, and
enhancing efficiency across your organization.
{/* CTAs */}
navigateTo("/start-a-project")}
>
Automate Your Business
{/* Right side with AI Automation Flowchart Visualization */}
{/* AI Automation Flowchart Scene */}
{/* Main Automation Dashboard */}
{/* AI Automation Interface */}
{/* Header */}
Automation Workflow
{/* Workflow Steps */}
{/* Input Step */}
Data Input
{/* AI Processing Step */}
AI Processing
{/* Automation Step */}
Automation
{/* Output Step */}
Output
{/* Efficiency Metrics */}
Efficiency Gain
vs Manual Process
85%
Time Saved
{/* Robot/Automation Icon */}
{/* Floating Workflow Elements */}
Smart Workflow
{/* People Working More Efficiently */}
{/* Automation Features */}
Intelligent
Automated
Scalable
);
};
// Key Benefits of AI Automation
const AutomationBenefits = () => {
const benefits = [
{
icon: DollarSign,
title: "Significant Cost Savings",
description: "Reduce manual labor and operational overhead.",
},
{
icon: Target,
title: "Increased Accuracy",
description: "Minimize human error in repetitive tasks.",
},
{
icon: Zap,
title: "Accelerated Processes",
description: "Speed up workflows and improve turnaround times.",
},
{
icon: TrendingUp,
title: "Enhanced Productivity",
description: "Free up human capital for strategic work.",
},
{
icon: Scale,
title: "Scalability",
description: "Automate processes to handle growing demands effortlessly.",
},
];
return (
Drive Efficiency and Innovation with AI Automation
);
})}
{/* Second row with remaining benefits */}
{benefits.slice(3).map((benefit, index) => {
const IconComponent = benefit.icon;
return (
{benefit.title}
{benefit.description}
);
})}
);
};
// AI Automation Process
const AutomationProcess = () => {
const steps = [
{
title: "Process Audit & Identification of Opportunities",
description:
"Analyzing existing workflows to identify repetitive tasks and automation opportunities for maximum impact.",
icon: Search,
},
{
title: "AI Solution Design",
description:
"Designing intelligent automation solutions tailored to your specific business processes and requirements.",
icon: PenTool,
},
{
title: "Custom Model Development (if needed)",
description:
"Developing custom AI models when off-the-shelf solutions don't meet your unique automation needs.",
icon: Brain,
},
{
title: "Integration & Deployment",
description:
"Seamlessly integrating automation solutions into your existing systems and deploying them across your organization.",
icon: PlugIcon,
},
{
title: "Performance Monitoring & Optimization",
description:
"Continuously monitoring automation performance and optimizing workflows for maximum efficiency and accuracy.",
icon: BarChart3,
},
{
title: "Training & Change Management",
description:
"Providing comprehensive training and change management support to ensure successful adoption across your team.",
icon: GraduationCap,
},
];
return (
);
};
// AI Automation FAQs
const AutomationFAQs = () => {
const faqs = [
{
question: "What types of processes are best suited for AI automation?",
answer:
"AI automation works best for repetitive, rule-based processes with high volume and predictable patterns. Ideal candidates include data entry, document processing, customer service routing, quality control inspection, invoice processing, and compliance reporting. Processes with clear inputs/outputs, minimal exceptions, and measurable outcomes typically yield the highest ROI. We conduct process assessments to identify automation opportunities that deliver maximum value.",
},
{
question: "How do you measure the ROI of AI automation?",
answer:
"We measure ROI through multiple metrics including time savings (hours reduced), cost savings (labor and operational costs), accuracy improvements (error reduction), productivity gains (throughput increase), and compliance benefits. Our ROI calculation considers implementation costs, ongoing maintenance, and quantifiable benefits over 12-36 months. Most clients see 200-400% ROI within the first year, with payback periods typically ranging from 6-18 months depending on process complexity and volume.",
},
{
question: "What's the difference between RPA and IPA?",
answer:
"RPA (Robotic Process Automation) handles rule-based, structured tasks by mimicking human actions on screens and systems. IPA (Intelligent Process Automation) combines RPA with AI technologies like machine learning, natural language processing, and computer vision to handle unstructured data and make decisions. While RPA follows predefined rules, IPA can learn, adapt, and handle exceptions. IPA is ideal for complex workflows requiring cognitive capabilities, document understanding, or decision-making based on variable inputs.",
},
{
question:
"Do you provide training for staff after automation implementation?",
answer:
"Yes, comprehensive training and change management are integral parts of our automation implementation. We provide role-specific training for system administrators, process owners, and end-users. This includes hands-on workshops, documentation, troubleshooting guides, and ongoing support. Our change management approach ensures smooth adoption, addresses concerns, and helps teams adapt to new workflows. We also offer train-the-trainer programs to build internal capabilities for scaling automation across your organization.",
},
];
return (