export type SingleServiceInsightBlock = {
  id: number;
  iconSrc: string;
  iconAlt: string;
  title: string;
  description: string;
  headingTag: "h2" | "h3";
  isLast?: boolean;
};

export type SingleServiceFeatureCard = {
  id: number;
  iconSrc: string;
  iconAlt: string;
  title: string;
  description: string;
  delay: number;
};

export type SingleServiceFaqItem = {
  id: number;
  title: string;
  content: string;
};

export type SingleServiceAnalyticCard = {
  id: number;
  iconSrc: string;
  iconAlt: string;
  title: string;
  description: string;
  animation: "fade-right" | "fade-left";
  isLast?: boolean;
};

export const singleServiceHero = {
  breadcrumb: "Our Services",
  title: "Smarter, Faster, Stronger SaaS for Modern Teams",
  description:
    "Our services are built with scalability, security, and user experience at the core, empowering businesses to streamline",
  imageSrc: "/assets/images/hero/page3-1.png",
  imageAlt: "Illustration of SaaS business solutions",
  insightTitle: "Empowering your business with data insights",
};

export const singleServiceInsights: SingleServiceInsightBlock[] = [
  {
    id: 1,
    iconSrc: "/assets/images/icon/data1-1.svg",
    iconAlt: "Scalable and flexible solutions icon",
    title: "Scalable & Flexible Solutions",
    description:
      "Our services grow with your business — from startups to enterprises — with customizable features",
    headingTag: "h2",
  },
  {
    id: 2,
    iconSrc: "/assets/images/icon/data1-2.svg",
    iconAlt: "User-centered design icon",
    title: "User-Centered Design",
    description:
      "We prioritize clean, intuitive interfaces that make complex systems easy to use, increasing adoption",
    headingTag: "h2",
  },
  {
    id: 3,
    iconSrc: "/assets/images/icon/data1-3.svg",
    iconAlt: "Support and optimization icon",
    title: "Reliable Support & Optimization",
    description:
      "Our expert team is always here to help, with support, regular updates, and performance improvements",
    headingTag: "h3",
    isLast: true,
  },
];

export const singleServiceFeatureCards: SingleServiceFeatureCard[] = [
  {
    id: 1,
    iconSrc: "/assets/images/icon/fea5-1.svg",
    iconAlt: "Cloud icon representing cloud solutions",
    title: "Cloud Solutions",
    description: "Our cloud solutions provide flexibility for your business",
    delay: 300,
  },
  {
    id: 2,
    iconSrc: "/assets/images/icon/fea5-2.svg",
    iconAlt: "Performance icon representing scalable performance",
    title: "Scalable Performance",
    description: "Platform built to scale effortlessly with your team",
    delay: 400,
  },
  {
    id: 3,
    iconSrc: "/assets/images/icon/fea5-3.svg",
    iconAlt: "Security icon representing enhanced security",
    title: "Enhanced Security",
    description: "Includes encryption and secure cloud storage",
    delay: 500,
  },
  {
    id: 4,
    iconSrc: "/assets/images/icon/fea5-4.svg",
    iconAlt: "Data icon representing data-driven insights",
    title: "Data-driven Insights",
    description: "Unlock insights with intelligent, data-driven analytics",
    delay: 600,
  },
];

export const singleServiceResult = {
  subtitle: "Real Business Impact",
  title: "Delivering Real Results, Instantly",
  description:
    "Discover how our SaaS solution simplifies your workflow and maximizes productivity from day one. With powerful automation, real-time collaboration, and intuitive design.",
  highlights: [
    "Transforming Complexity Into Clarity",
    "Unlock Efficiency, Scale Faster, and Work Smarter",
    "Real Results, Real Growth — Backed by Powerful Automation",
  ],
  ctaLabel: "Discover more",
  imageSrc: "/assets/images/event/result1-1.png",
  imageAlt: "Dashboard showing project completion statistics",
  statValue: "10k+",
  statLabel: "Successfully Projects Completed (SaaS)",
};

export const singleServiceFaqSection = {
  subtitle: "How to Benefits",
  title: "Experience the Impact of Smarter Solutions",
};

export const singleServiceFaqItems: SingleServiceFaqItem[] = [
  {
    id: 1,
    title: "Seamless Integration",
    content:
      "Effortlessly connect our platform with the tools you already use — from CRMs and communication apps to cloud storage and analytics software. Our SaaS solution is designed to fit into your existing workflow without disruption.",
  },
  {
    id: 2,
    title: "Cloud-Based Accessibility",
    content:
      "Effortlessly connect our platform with the tools you already use — from CRMs and communication apps to cloud storage and analytics software. Our SaaS solution is designed to fit into your existing workflow without disruption.",
  },
  {
    id: 3,
    title: "Automated Workflows",
    content:
      "Effortlessly connect our platform with the tools you already use — from CRMs and communication apps to cloud storage and analytics software. Our SaaS solution is designed to fit into your existing workflow without disruption.",
  },
  {
    id: 4,
    title: "Real-Time Data & Insights",
    content:
      "Effortlessly connect our platform with the tools you already use — from CRMs and communication apps to cloud storage and analytics software. Our SaaS solution is designed to fit into your existing workflow without disruption.",
  },
  {
    id: 5,
    title: "Flexible Scalability",
    content:
      "Effortlessly connect our platform with the tools you already use — from CRMs and communication apps to cloud storage and analytics software. Our SaaS solution is designed to fit into your existing workflow without disruption.",
  },
];

export const singleServiceAnalytics = {
  subtitle: "Sales analytics",
  title: "Real-Time Visibility Into Your Sales Funnel",
  description:
    "Gain deep visibility into your sales performance with real-time analytics designed to help you sell smarter. Track key metrics like conversion rates, pipeline health, and customer behavior.",
  imageSrc: "/assets/images/event/analytic1-1.png",
  imageAlt: "Analytics dashboard illustration",
  statValue: "99%",
  statLabel: "We take pride in product 99% satisfaction rate",
};

export const singleServiceAnalyticCards: SingleServiceAnalyticCard[] = [
  {
    id: 1,
    iconSrc: "/assets/images/icon/analytic1-1.svg",
    iconAlt: "Sales Forecasting Icon",
    title: "Sales Forecasting",
    description: "Predict future revenue trends based on historical data.",
    animation: "fade-right",
  },
  {
    id: 2,
    iconSrc: "/assets/images/icon/analytic1-2.svg",
    iconAlt: "CRM Marketing Tools Icon",
    title: "CRM Marketing Tools",
    description: "Sync seamlessly with existing CRM and tools to unify data.",
    animation: "fade-left",
    isLast: true,
  },
];
