export interface ServiceItem {
  icon: string;
  title: string;
  description: string;
  aosDelay: number;
}

export interface ServiceSectionData {
  subTitle: string;
  title: string;
  description: string;
  services: ServiceItem[];
}

export const serviceSectionData: ServiceSectionData = {
  subTitle: "Intelligence Solutions",
  title: "Next-Generation Solutions for Modern Finance",
  description:
    "Our fintech software solutions are built to simplify complex financial operations while ensuring security, scalability, and accuracy.",
  services: [
    {
      icon: "/assets/images/icon/ser1-1.svg",
      title: "Digital Payment Solutions",
      description:
        "Our digital payment solutions enable secure, fast and seamless transactions across multiple channels.",
      aosDelay: 300,
    },
    {
      icon: "/assets/images/icon/ser1-2.svg",
      title: "Financial Data Analytics",
      description:
        "Our financial data analytics solutions transform complex financial data into clear, actionable insights.",
      aosDelay: 400,
    },
    {
      icon: "/assets/images/icon/ser1-3.svg",
      title: "API & System Integrations",
      description:
        "Our API and system integration services ensure seamless connectivity between your financial platforms,",
      aosDelay: 500,
    },
    {
      icon: "/assets/images/icon/ser1-4.svg",
      title: "Risk & Fraud Management",
      description:
        "Our risk and fraud management solutions are designed to protect your business from financial threats.",
      aosDelay: 300,
    },
    {
      icon: "/assets/images/icon/ser1-5.svg",
      title: "Cloud-Based Platforms",
      description:
        "Our cloud-based financial platforms deliver secure, scalable, and high-performance infrastructure.",
      aosDelay: 400,
    },
    {
      icon: "/assets/images/icon/ser1-6.svg",
      title: "Blockchain & Distributed",
      description:
        "Our blockchain and distributed ledger solutions provide secure, transparent, and tamper-proof transaction",
      aosDelay: 500,
    },
  ],
};
