export interface ServiceItem {
  id: number;
  number: string;
  title: string;
  tags: string[];
  img1: string;
  img2: string;
  description: string;
  url: string;
  isOpen: boolean;
}

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

export const serviceData: ServiceData = {
  subTitle: "Explore Services",
  title: "Transforming ideas into impactful digital experiences",
  services: [
    {
      id: 1,
      number: "(01)",
      title: "Branding Design",
      tags: ["(Branding)", "(Visual)", "(Guidelines)"],
      img1: "/assets/images/event/faq1-1.png",
      img2: "/assets/images/event/faq1-2.png",
      description: "Your brand is more than just a logo — it’s the visual language of your business. We craft cohesive, memorable brand identities that reflect your values and resonate with your audience.",
      url: "#",
      isOpen: true,
    },
    {
      id: 2,
      number: "(02)",
      title: "UI/UX Design",
      tags: ["(Branding)", "(Visual)", "(Guidelines)"],
      img1: "/assets/images/event/faq1-3.webp",
      img2: "/assets/images/event/faq1-4.webp",
      description: "Your brand is more than just a logo — it’s the visual language of your business. We craft cohesive, memorable brand identities that reflect your values and resonate with your audience.",
      url: "#",
      isOpen: false,
    },
    {
      id: 3,
      number: "(03)",
      title: "Digital Marketing",
      tags: ["(Branding)", "(Visual)", "(Guidelines)"],
      img1: "/assets/images/event/faq1-5.webp",
      img2: "/assets/images/event/faq1-6.webp",
      description: "Your brand is more than just a logo — it’s the visual language of your business. We craft cohesive, memorable brand identities that reflect your values and resonate with your audience.",
      url: "#",
      isOpen: false,
    },
    {
      id: 4,
      number: "(04)",
      title: "Web Development",
      tags: ["(Branding)", "(Visual)", "(Guidelines)"],
      img1: "/assets/images/event/faq1-7.webp",
      img2: "/assets/images/event/faq1-8.webp",
      description: "Your brand is more than just a logo — it’s the visual language of your business. We craft cohesive, memorable brand identities that reflect your values and resonate with your audience.",
      url: "#",
      isOpen: false,
    },
    {
      id: 5,
      number: "(05)",
      title: "Maintenance",
      tags: ["(Branding)", "(Visual)", "(Guidelines)"],
      img1: "/assets/images/event/faq1-9.webp",
      img2: "/assets/images/event/faq1-10.webp",
      description: "Your brand is more than just a logo — it’s the visual language of your business. We craft cohesive, memorable brand identities that reflect your values and resonate with your audience.",
      url: "#",
      isOpen: false,
    },
  ],
};
