import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollTrigger } from "@/plugins"; import Link from "next/link"; import Service11 from "../../../public/assets/imgs/service/1.jpg"; import Service12 from "../../../public/assets/imgs/service/2.jpg"; import Service13 from "../../../public/assets/imgs/service/3.jpg"; import Service14 from "../../../public/assets/imgs/service/4.jpg"; import Service15 from "../../../public/assets/imgs/service/5.jpg"; import Service16 from "../../../public/assets/imgs/service/6.jpg"; import Image from "next/image"; gsap.registerPlugin(ScrollTrigger); const Service1 = () => { useEffect(() => { if (typeof window !== "undefined") { let device_width = window.innerWidth; let tHero = gsap.context(() => { if (device_width > 1200) { gsap.to(".service__list-6", { scrollTrigger: { trigger: ".service__area-6", pin: ".service__list-6", pinSpacing: true, start: "top top", end: "bottom bottom", }, }); gsap.to(".service__image-wrap", { scrollTrigger: { trigger: ".service__area-6", pin: ".mid-content", pinSpacing: true, start: "top top", end: "bottom bottom", markers: false, }, }); let service_images = gsap.utils.toArray(".service__image"); let service_imagess = gsap.utils.toArray(".service__image img"); let service_items = gsap.utils.toArray(".service__item-6"); if (service_items) { service_items.forEach((image, i) => { let tl = gsap.timeline({ scrollTrigger: { trigger: image, scrub: 1, start: "top top-=600", markers: false, }, }); tl.to(service_images[i], { zIndex: "1", }); tl.fromTo( service_imagess[i], { opacity: 1, scale: 1 }, { opacity: 0, duration: 1, scale: 1.2, ease: "power4.out", scrollTrigger: { trigger: image, scrub: 1, start: "top 15%", // Adjust to start earlier in the viewport markers: false, }, }, "-=1" ); }); } let navItems = gsap.utils.toArray(".service__list-6 li a"); if (navItems) { navItems.forEach((nav) => { nav.addEventListener("click", (e) => { e.preventDefault(); const ids = nav.getAttribute("href"); gsap.to(window, { duration: 0.5, scrollTo: ids, ease: "power4.out", }); }); }); } } }); return () => tHero.revert(); } }, []); return ( <>
Service Image
Service Image
Service Image
Service Image
Service Image
Service Image
Service Image

Transform Your Brand into a Powerful Asset

Unlock the full potential of your brand with our comprehensive branding services, designed to position your business for success in a competitive market. Our expert team will work closely with you to create a unique and compelling brand identity that resonates with your target audience, differentiates you from competitors, and drives lasting customer loyalty.

  • + Brand Strategy
  • + Visual Identity
  • + Brand Messaging Voice
  • + Brand Collateral
  • + Brand Guidelines
  • + Brand Audit
Book Your
{" "}Demo Now
Service Image

Create a Powerful Online Presence

In today's digital age, your website is often the first interaction potential customers have with your brand. Our comprehensive web development services are designed to create a stunning, functional, and user-friendly website that reflects your brand identity and drives business growth. Let us help you turn your vision into reality and elevate your online presence.

  • + Website Design (UI/UX)
  • + Front-End Development
  • + Back-End Development
  • + E-Commerce Solutions
  • + Maintenance and Support
  • + Performance Optimization
Book Your
Demo Now
Service Image

Transform Your Ideas into Mobile Excellence

In a world where mobile devices dominate, having a robust and engaging mobile app is crucial for reaching your audience and enhancing your business. Our comprehensive mobile development services are designed to turn your innovative ideas into high-performing mobile applications that deliver an exceptional user experience and drive business success.

  • + Mobile App Design (UI/UX)
  • + Cross-Platform App
  • + Back-End Development
  • + API Development
  • + App Testing
  • + Maintenance and Support
Book Your
Demo Now
Service Image

Optimize Your Workflows with Custom Solutions

In today's fast-paced business environment, efficient internal systems are essential for maintaining productivity and competitiveness. Our internal systems development services are designed to create tailored solutions that automate processes, enhance collaboration, and improve overall operational efficiency. Let us help you build robust systems that empower your team and drive business success.

  • + Custom Software
  • + Workflow Automation
  • + Database Management
  • + Integration Services
  • + Performance Monitoring
  • + Security and Compliance
Book Your
Demo Now
Service Image

Optimize Operations with a Seamless Odoo Implementation

Enhance your business operations with Odoo, the all-in-one ERP solution that integrates all your essential processes into a single, cohesive system. Our Odoo implementation services are designed to customize and deploy Odoo to fit your unique business needs, ensuring a smooth transition and maximizing your operational efficiency.

  • + Needs Assessment
  • + Odoo Configuration
  • + Systems Integration
  • + Training and Support
  • + Performance Optimization
  • + Maintenance and Support
Book Your
Demo Now
Service Image

Maximize Your Reach with Expert Marketing Strategies

In an increasingly digital world, reaching the right audience requires a comprehensive marketing strategy that combines creativity, data, and technology. Our marketing services are designed to elevate your brand's visibility, drive customer engagement, and deliver measurable results. From social media management to SEO and paid advertising, let us help you craft a marketing plan that drives growth and maximizes your return on investment.

  • + Social Media Marketing
  • + SEO Optimization
  • + PPC Advertising
  • + Content Strategy
  • + Email Campaigns
  • + Data & Analytics
Book Your
Demo Now
); }; export default Service1;