Chat with us, powered by LiveChat
Get 500 USD Bonus by 👋 Signing Up

Testimonies


   

What Our Clients Say About InsightBlock LLC


   
       
           
           
                Priya's Avatar
               

Priya Kapoor

                Financial Analyst, India
               

"InsightBlock LLC has been essential in navigating blockchain technology. Their approach to security and transparency has been refreshing."

           

           
           
                Rahul's Avatar
               

Rahul Singh

                CEO, TechInnovations India
               

"Our experience with InsightBlock LLC was exceptional. They provided the flexibility and scalability we needed."

           

           
           
                Arjun's Avatar
               

Arjun Patel

                Founder, BlockchainX India
               

"InsightBlock’s blockchain integration transformed our operations and improved our data security."

           

           
           
                Wang's Avatar
               

Wang Li

                COO, AsiaTech Solutions
               

"InsightBlock LLC revolutionized our operations with their innovative and reliable blockchain solutions."

           

           
           
                Mai's Avatar
               

Mai Chen

                Financial Consultant, Singapore
               

"Working with InsightBlock LLC has been a great decision. Their platform was intuitive, and the security features were top-notch."

           

           
           
                Olivia's Avatar
               

Olivia Müller

                Head of Operations, Germany
               

"InsightBlock’s solutions have transformed how we manage our internal processes and improved transparency."

           

           
           
                Emily's Avatar
               

Emily Scott

                CEO, London FinTech
               

"From the moment we engaged with InsightBlock LLC, we knew we were in good hands. Their system has improved efficiency and security."

           

           
           
                David's Avatar
               

David Hansen

                Business Owner, Denmark
               

"Choosing InsightBlock LLC was a no-brainer. Their technology is top-notch, and the support was remarkable."

           
       
   

   

    // JavaScript for automatic slider
    const slider = document.querySelector('.testimonials-slider');
    const slides = document.querySelectorAll('.testimonial-card');
    const slideCount = slides.length;
    const slidesPerView = window.innerWidth >= 768 ? 4 : 1; // 4 slides per view on desktop, 1 on mobile
    const slideWidth = 100 / slidesPerView;
    let index = 0;

    function updateSlider() {
        slider.style.transform = `translateX(${-index * slideWidth}%)`;
    }

    function slide() {
        index++;
        if (index >= Math.ceil(slideCount / slidesPerView)) {
            index = 0;
        }
        updateSlider();
    }

    setInterval(slide, 2000); // Change slide every 2 seconds

    // Adjust on window resize
    window.addEventListener('resize', () => {
        const newSlidesPerView = window.innerWidth >= 768 ? 4 : 1;
        if (slidesPerView !== newSlidesPerView) {
            slidesPerView = newSlidesPerView;
            updateSlider();
        }
    });