export interface ServiceHeroData {
  subTitle: string;
  title: string;
  description: string;
  heroImage: {
    src: string;
    alt: string;
  };
}

export const serviceHeroData: ServiceHeroData = {
  subTitle: "Service and Solutions",
  title: "Transforming Ideas into Results",
  description: "We combine creativity, strategy, and technology to get you there. our solutions are designed to be flexible, future-ready, and fully aligned with your goals—empowering you to stay ahead",
  heroImage: {
    src: "/assets/images/hero/page2-1.png",
    alt: "Service page hero illustration"
  }
};
