export interface ProcessStep {
  id: number;
  step: string;
  title: string;
  description: string;
  aosDelay: number;
}

export interface ProcessData {
  subtitle: string;
  titleStart: string;
  titleHighlight: string;
  description: string;
  steps: ProcessStep[];
}

export const processData: ProcessData = {
  subtitle: "Working Process",
  titleStart: "Turning Ideas into",
  titleHighlight: "Scalable Solutions",
  description:
    "We follow a clear and strategic working process designed to deliver efficient and result-driven IT solutions.",
  steps: [
    {
      id: 1,
      step: "Step 01",
      title: "Discover & Plan",
      description:
        "We start by understanding your business goals, challenges, and technical needs.",
      aosDelay: 300,
    },
    {
      id: 2,
      step: "Step 02",
      title: "Design & Develop",
      description:
        "Our experts craft user-focused designs and develop robust, scalable systems",
      aosDelay: 500,
    },
    {
      id: 3,
      step: "Step 03",
      title: "Deliver & Support",
      description:
        "We ensure smooth deployment, monitor performance, and provide ongoing.",
      aosDelay: 700,
    },
  ],
};
