<html><head><base href="https://websim.dev/?websim-name=IntuiTekĀ¹&site-type=business&color-theme=dark&layout=multi-page&interactivity=high&responsive-design=fluid&visual-style=futuristic&typography=mixed&imagery=mixed&navigation-style=hamburger&database=none&user-auth=none&performance-optimization=caching&error-logging=none&seo-features=robots&deviation=0&depth=8">
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>IntuiTek: Strategic Innovation Meets Cutting-Edge Technology</title>
    <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

        :root {
            --primary-color: #00ffff;
            --secondary-color: #ff00ff;
            --background-color: #0a0a0a;
            --text-color: #ffffff;
            --card-bg-color: rgba(255, 255, 255, 0.05);
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: linear-gradient(to bottom, var(--background-color), #1a1a1a);
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
        }

        .neon-text {
            text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
            animation: neon-pulse 2s infinite;
        }

        .neon-border {
            box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
        }

        .service-card, .about-card {
            background-color: var(--card-bg-color);
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .service-card:hover, .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px var(--primary-color), 0 0 60px var(--secondary-color);
        }

        .hamburger {
            cursor: pointer;
            width: 30px;
            height: 25px;
            position: relative;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--primary-color);
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }

        .hamburger span:nth-child(1) { top: 0px; }
        .hamburger span:nth-child(2) { top: 10px; }
        .hamburger span:nth-child(3) { top: 20px; }

        .hamburger.open span:nth-child(1) {
            top: 10px;
            transform: rotate(135deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .hamburger.open span:nth-child(3) {
            top: 10px;
            transform: rotate(-135deg);
        }

        #nav-menu {
            transition: transform 0.3s ease-in-out;
            transform: translateX(-100%);
        }

        #nav-menu.open {
            transform: translateX(0);
        }

        @keyframes neon-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        #globe-container {
            width: 100%;
            height: 300px;
            position: relative;
            overflow: hidden;
        }

        #globe {
            width: 100%;
            height: 100%;
        }

        .parallax {
            transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
        }
    </style>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/three/examples/js/controls/OrbitControls.js"></script>
</head>
<body class="min-h-screen flex flex-col">
    <header class="bg-gray-900 p-4 sticky top-0 z-50 flex justify-between items-center">
        <h1 class="text-2xl font-bold neon-text">IntuiTek</h1>
        <div class="hamburger" id="hamburger-menu">
            <span></span>
            <span></span>
            <span></span>
        </div>
    </header>

    <nav id="nav-menu" class="bg-gray-800 fixed top-0 left-0 h-full w-64 p-4 transform -translate-x-full">
        <ul class="space-y-4">
            <li><a href="#hero" class="text-white hover:text-primary-color">Home</a></li>
            <li><a href="#services" class="text-white hover:text-primary-color">Services</a></li>
            <li><a href="#about" class="text-white hover:text-primary-color">About Us</a></li>
            <li><a href="#contact" class="text-white hover:text-primary-color">Contact</a></li>
        </ul>
    </nav>

    <main class="flex-grow">
        <section id="hero" class="bg-gray-900 py-20 relative overflow-hidden">
            <div class="absolute inset-0 z-0">
                <video autoplay loop muted playsinline class="object-cover w-full h-full">
                    <source src="https://example.com/path-to-your-video.mp4" type="video/mp4">
                    <img src="https://example.com/path-to-fallback-image.jpg" alt="Futuristic technology background" class="object-cover w-full h-full">
                </video>
                <div class="absolute inset-0 bg-black opacity-50"></div>
            </div>
            <div class="container mx-auto px-4 relative z-10">
                <div class="max-w-3xl mx-auto text-center">
                    <h2 class="text-5xl font-bold mb-4 neon-text">Innovate. Automate. Succeed.</h2>
                    <p class="text-xl mb-8">IntuiTek drives business success through creative thinking and cutting-edge technology.</p>
                    <a href="#contact" class="bg-primary-color text-black font-bold py-3 px-6 rounded-md hover:bg-secondary-color transition duration-300 inline-block">Get Started</a>
                </div>
            </div>
        </section>

        <section id="services" class="py-16 bg-gray-800">
            <div class="container mx-auto px-4">
                <h2 class="text-4xl font-bold mb-12 text-center neon-text">Our Core Services</h2>
                <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
                    <div class="service-card neon-border p-6 rounded-lg flex flex-col items-center text-center">
                        <svg class="w-12 h-12 mb-4" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M11.49 3.17c-.38-1.56-2.6-1.56-2.98 0a1.532 1.532 0 01-2.286.948c-1.372-.836-2.942.734-2.106 2.106.54.886.061 2.042-.947 2.287-1.561.379-1.561 2.6 0 2.978a1.532 1.532 0 01.947 2.287c-.836 1.372.734 2.942 2.106 2.106a1.532 1.532 0 012.287.947c.379 1.561 2.6 1.561 2.978 0a1.533 1.533 0 012.287-.947c1.372.836 2.942-.734 2.106-2.106a1.533 1.533 0 01.947-2.287c1.561-.379 1.561-2.6 0-2.978a1.532 1.532 0 01-.947-2.287c.836-1.372-.734-2.942-2.106-2.106a1.532 1.532 0 01-2.287-.947zM10 13a3 3 0 100-6 3 3 0 000 6z" clip-rule="evenodd"></path></svg>
                        <h3 class="text-xl font-bold mb-2">Strategic Innovation Consulting</h3>
                        <p>Unlock new possibilities with fresh perspectives and innovative strategies.</p>
                    </div>
                    <div class="service-card neon-border p-6 rounded-lg flex flex-col items-center text-center">
                        <svg class="w-12 h-12 mb-4" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M11.49 3.17c-.38-1.56-2.6-1.56-2.98 0a1.532 1.532 0 01-2.286.948c-1.372-.836-2.942.734-2.106 2.106.54.886.061 2.042-.947 2.287-1.561.379-1.561 2.6 0 2.978a1.532 1.532 0 01.947 2.287c-.836 1.372.734 2.942 2.106 2.106a1.532 1.532 0 012.287.947c.379 1.561 2.6 1.561 2.978 0a1.533 1.533 0 012.287-.947c1.372.836 2.942-.734 2.106-2.106a1.533 1.533 0 01.947-2.287c1.561-.379 1.561-2.6 0-2.978a1.532 1.532 0 01-.947-2.287c.836-1.372-.734-2.942-2.106-2.106a1.532 1.532 0 01-2.287-.947zM10 13a3 3 0 100-6 3 3 0 000 6z" clip-rule="evenodd"></path></svg>
                        <h3 class="text-xl font-bold mb-2">AI and Automation Integration</h3>
                        <p>Streamline and optimize with tailored AI and automation solutions.</p>
                    </div>
                    <div class="service-card neon-border p-6 rounded-lg flex flex-col items-center text-center">
                        <svg class="w-12 h-12 mb-4" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M11.49 3.17c-.38-1.56-2.6-1.56-2.98 0a1.532 1.532 0 01-2.286.948c-1.372-.836-2.942.734-2.106 2.106.54.886.061 2.042-.947 2.287-1.561.379-1.561 2.6 0 2.978a1.532 1.532 0 01.947 2.287c-.836 1.372.734 2.942 2.106 2.106a1.532 1.532 0 012.287.947c.379 1.561 2.6 1.561 2.978 0a1.533 1.533 0 012.287-.947c1.372.836 2.942-.734 2.106-2.106a1.533 1.533 0 01.947-2.287c1.561-.379 1.561-2.6 0-2.978a1.532 1.532 0 01-.947-2.287c.836-1.372-.734-2.942-2.106-2.106a1.532 1.532 0 01-2.287-.947zM10 13a3 3 0 100-6 3 3 0 000 6z" clip-rule="evenodd"></path></svg>
                        <h3 class="text-xl font-bold mb-2">Perceptual Control and Awareness Coaching</h3>
                        <p>Elevate your mindset through awareness and control coaching.</p>
                    </div>
                    <div class="service-card neon-border p-6 rounded-lg flex flex-col items-center text-center">
                        <svg class="w-12 h-12 mb-4" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M11.49 3.17c-.38-1.56-2.6-1.56-2.98 0a1.532 1.532 0 01-2.286.948c-1.372-.836-2.942.734-2.106 2.106.54.886.061 2.042-.947 2.287-1.561.379-1.561 2.6 0 2.978a1.532 1.532 0 01.947 2.287c-.836 1.372.734 2.942 2.106 2.106a1.532 1.532 0 012.287.947c.379 1.561 2.6 1.561 2.978 0a1.533 1.533 0 012.287-.947c1.372.836 2.942-.734 2.106-2.106a1.533 1.533 0 01.947-2.287c1.561-.379 1.561-2.6 0-2.978a1.532 1.532 0 01-.947-2.287c.836-1.372-.734-2.942-2.106-2.106a1.532 1.532 0 01-2.287-.947zM10 13a3 3 0 100-6 3 3 0 000 6z" clip-rule="evenodd"></path></svg>
                        <h3 class="text-xl font-bold mb-2">Customized Workflow Automation</h3>
                        <p>Design and implement solutions to optimize your operations.</p>
                    </div>
                </div>
            </div>
        </section>

        <section id="about" class="bg-gray-900 py-16">
            <div class="container mx-auto px-4">
                <div class="flex flex-wrap items-center">
                    <div class="w-full lg:w-1/2 mb-8 lg:mb-0">
                        <h2 class="text-4xl font-bold mb-8 neon-text">Why Choose IntuiTek?</h2>
                        <p class="text-lg mb-6">We create trends, not just follow them. Our creative problem-solving and forward-thinking strategies set you apart from the competition.</p>
                        <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
                            <div class="about-card neon-border p-4 rounded-lg">
                                <h3 class="text-xl font-bold mb-2">Tailored Solutions</h3>
                                <p>Customized strategies aligned with your specific goals and challenges.</p>
                            </div>
                            <div class="about-card neon-border p-4 rounded-lg">
                                <h3 class="text-xl font-bold mb-2">Proven Expertise</h3>
                                <p>Years of experience in AI, automation, and strategic consulting.</p>
                            </div>
                        </div>
                    </div>
                    <div class="w-full lg:w-1/2">
                        <img src="https://replicate.delivery/yhqm/4Oq9EguPIx6GBJeAHqSPImicE5mEgX1Nl7fPbgnN2JycnMbTA/out-0.webp" alt="Technology illustration" class="rounded-lg shadow-lg">
                    </div>
                </div>
            </div>
        </section>

        <section id="contact" class="py-16 bg-gray-800">
    <div class="container mx-auto px-4">
        <h2 class="text-4xl font-bold mb-12 text-center neon-text">Let's Work Together</h2>
        <div class="max-w-3xl mx-auto bg-gray-900 p-8 rounded-lg shadow-lg">
            <p class="text-lg mb-8 text-center">Ready to take your business to the next level? Contact us today to learn how IntuiTek can help you innovate, automate, and succeed.</p>
            <form action="https://formspree.io/f/xyzygvaa" method="POST" class="grid grid-cols-1 md:grid-cols-2 gap-6">
                <div class="col-span-1 md:col-span-2">
                    <label for="email" class="block mb-1">Your Email</label>
                    <input type="email" id="email" name="email" required class="w-full p-2 bg-gray-800 border border-gray-700 rounded-md">
                </div>
                <div class="col-span-1 md:col-span-2">
                    <label for="message" class="block mb-1">Your Message</label>
                    <textarea id="message" name="message" rows="4" required class="w-full p-2 bg-gray-800 border border-gray-700 rounded-md"></textarea>
                </div>
                <button type="submit" class="bg-primary-color text-black font-bold py-2 px-4 rounded-md hover:bg-secondary-color transition duration-300 col-span-1 md:col-span-2">Send Message</button>
            </form>
        </div>
    </div>
</section>


    </main>

    <footer class="bg-gray-900 p-4 text-center">
        <p>&copy; 2023 IntuiTek. All rights reserved.</p>
    </footer>

    <script>
        document.addEventListener('DOMContentLoaded', () => {
            const hamburger = document.getElementById('hamburger-menu');
            const navMenu = document.getElementById('nav-menu');

            hamburger.addEventListener('click', () => {
                hamburger.classList.toggle('open');
                navMenu.classList.toggle('open');
            });

            document.addEventListener('click', (event) => {
                if (!hamburger.contains(event.target) && !navMenu.contains(event.target)) {
                    hamburger.classList.remove('open');
                    navMenu.classList.remove('open');
                }
            });

            document.querySelectorAll('a[href^="#"]').forEach(anchor => {
                anchor.addEventListener('click', function (e) {
                    e.preventDefault();
                    document.querySelector(this.getAttribute('href')).scrollIntoView({
                        behavior: 'smooth'
                    });
                    hamburger.classList.remove('open');
                    navMenu.classList.remove('open');
                });
            });
        });

        const animateElements = () => {
            const elements = document.querySelectorAll('.neon-border, .neon-text');
            elements.forEach(el => {
                el.style.animation = `neon-pulse 2s infinite ${Math.random() * 2}s`;
            });
        };

        animateElements();

        const cache = {};
        const fetchData = async (url) => {
            if (cache[url]) {
                return cache[url];
            }

            const response = await fetch(url);
            const data = await response.json();
            cache[url] = data;
            return data;
        };

        let scene, camera, renderer, globe;
        function initGlobe() {
            const globeContainer = document.getElementById('globe-container');
            if (!globeContainer) {
                console.error('Globe container not found');
                return;
            }

            scene = new THREE.Scene();
            camera = new THREE.PerspectiveCamera(75, globeContainer.clientWidth / globeContainer.clientHeight, 0.1, 1000);
            renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true });
            renderer.setSize(globeContainer.clientWidth, globeContainer.clientHeight);
            globeContainer.appendChild(renderer.domElement);

            const geometry = new THREE.SphereGeometry(5, 32, 32);
            const texture = new THREE.TextureLoader().load('https://threejsfundamentals.org/threejs/resources/images/world.jpg');
            const material = new THREE.MeshBasicMaterial({ map: texture });
            globe = new THREE.Mesh(geometry, material);
            scene.add(globe);

            camera.position.z = 10;

            const controls = new THREE.OrbitControls(camera, renderer.domElement);
            controls.enableDamping = true;
            controls.dampingFactor = 0.25;
            controls.enableZoom = false;

            window.addEventListener('resize', onWindowResize, false);
            animate();
        }

        function onWindowResize() {
            const globeContainer = document.getElementById('globe-container');
            if (!globeContainer) return;

            camera.aspect = globeContainer.clientWidth / globeContainer.clientHeight;
            camera.updateProjectionMatrix();
            renderer.setSize(globeContainer.clientWidth, globeContainer.clientHeight);
        }

        function animate() {
            requestAnimationFrame(animate);
            globe.rotation.y += 0.005;
            renderer.render(scene, camera);
        }

        document.addEventListener('DOMContentLoaded', initGlobe);

        function addParallaxEffect() {
            const parallaxElements = document.querySelectorAll('.parallax');
            window.addEventListener('scroll', () => {
                const scrollY = window.pageYOffset;
                parallaxElements.forEach(el => {
                    const speed = el.dataset.speed || 0.5;
                    el.style.transform = `translateY(${scrollY * speed}px)`;
                });
            });
        }

        function enhanceScrolling() {
            const sections = document.querySelectorAll('section');
            const navLinks = document.querySelectorAll('nav a');

            window.addEventListener('scroll', () => {
                let current = '';
                sections.forEach(section => {
                    const sectionTop = section.offsetTop;
                    const sectionHeight = section.clientHeight;
                    if (pageYOffset >= sectionTop - sectionHeight / 3) {
                        current = section.getAttribute('id');
                    }
                });

                navLinks.forEach(link => {
                    link.classList.remove('text-primary-color');
                    if (link.getAttribute('href').slice(1) === current) {
                        link.classList.add('text-primary-color');
                    }
                });
            });
        }

        document.addEventListener('DOMContentLoaded', () => {
            initGlobe();
            addParallaxEffect();
            enhanceScrolling();
        });
    </script>
</body>
</html>
</html>