export interface Service2 {
  id: number;
  icon: string;
  alt: string;
  title: string;
  description: string;
  ctaLabel: string;
  ctaHref: string;
}

export interface Services2Data {
  subtitle: string;
  title: string;
  highlightText: string;
  services: Service2[];
}

export const services2Data: Services2Data = {
  subtitle: "Latest Services",
  title: "Innovative Solutions for ",
  highlightText: "Ambitious Startups",
  services: [
    {
      id: 1,
      icon: "/assets/images/icon/ser2-1.svg",
      alt: "Custom AI software development service icon",
      title: "Custom AI Software Development",
      description:
        "Develop tailored AI-driven software solutions for businesses, including predictive analytics tools.",
      ctaLabel: "Read More",
      ctaHref: "#",
    },
    {
      id: 2,
      icon: "/assets/images/icon/ser2-2.svg",
      alt: "Machine learning and data science service icon",
      title: "Machine Learning & Data Science",
      description:
        "Implement machine learning models, data analysis, and predictive insights to help businesses make smarter.",
      ctaLabel: "Read More",
      ctaHref: "#",
    },
    {
      id: 3,
      icon: "/assets/images/icon/ser2-3.svg",
      alt: "Robotic process automation service icon",
      title: "Robotic Process Automation (RPA)",
      description:
        "Automate repetitive business processes to reduce operational costs and increase efficiency.",
      ctaLabel: "Read More",
      ctaHref: "#",
    },
    {
      id: 4,
      icon: "/assets/images/icon/ser2-4.svg",
      alt: "Natural language processing solutions service icon",
      title: "Natural Language Processing (NLP) Solutions",
      description:
        "Develop chatbots, virtual assistants, and text analysis systems using advanced NLP technologies.",
      ctaLabel: "Read More",
      ctaHref: "#",
    },
    {
      id: 5,
      icon: "/assets/images/icon/ser2-5.svg",
      alt: "AI driven cybersecurity service icon",
      title: "AI-Driven Cybersecurity",
      description:
        "Protect businesses with intelligent threat detection, anomaly detection, and predictive security systems.",
      ctaLabel: "Read More",
      ctaHref: "#",
    },
    {
      id: 6,
      icon: "/assets/images/icon/ser2-6.svg",
      alt: "Big data analytics and IT consulting service icon",
      title: "Big Data Analytics & IT Consulting",
      description:
        "Provide data aggregation, processing, and insights to support strategic business decisions.",
      ctaLabel: "Read More",
      ctaHref: "#",
    },
  ],
};
