<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>China Tech Tours | Exclusive Business Access</title>
    <link rel="stylesheet" href="/libs/tailwindcss/output.css">
    <link rel="stylesheet" href="/styles.css">
    <script src="/company-logos.js"></script>
    <script type="module" src="/src/index.tsx"></script>
    <script src="https://cdn.tailwindcss.com"></script>
    
</head>

<body class="bg-gradient-to-br from-blue-400 via-blue-500 to-blue-600 text-white overflow-x-hidden">

    <!-- Navigation -->
    <nav class="fixed top-0 left-0 right-0 z-50 backdrop-blur-lg border-b border-blue-400/30" style="background-color: #1e3a5f;">
        <div class="max-w-7xl mx-auto px-6 py-4 flex items-center justify-between">
            <div class="flex items-center space-x-2">
                <img src="/logo.png" alt="China Tech Tours" class="h-10 w-auto">
            </div>
            <div class="hidden md:flex items-center space-x-8">
                <a href="/"
                    class="text-white hover:text-blue-100 transition-colors duration-200 font-medium">Home</a>
                <a href="#value"
                    class="text-white hover:text-blue-100 transition-colors duration-200 font-medium">Why Us</a>
                <a href="/service"
                    class="text-white hover:text-blue-100 transition-colors duration-200 font-medium">Services</a>
                <a href="/cases"
                    class="text-white hover:text-blue-100 transition-colors duration-200 font-medium">Cases</a>
                <a href="#map"
                    class="text-white hover:text-blue-100 transition-colors duration-200 font-medium">Network</a>
                <a href="#cta"
                    class="bg-white text-blue-600 px-6 py-2.5 rounded-lg font-semibold hover:shadow-lg hover:shadow-white/25 transition-all duration-300 hover:scale-105">Get
                    Started</a>
            </div>
            <button class="md:hidden text-white" id="mobile-menu-btn">
                <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16">
                    </path>
                </svg>
            </button>
        </div>
    </nav>

    <!-- Hero Section -->
    <section id="hero" class="relative min-h-screen flex items-center justify-center pt-20 overflow-hidden">
        <!-- Animated Background -->
        <div class="absolute inset-0">
            <div class="absolute inset-0 bg-gradient-to-br from-blue-400 via-blue-500 to-blue-600"></div>
            <div class="absolute inset-0 opacity-20"
                style="background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);">
            </div>

            <!-- Animated Grid Lines -->
            <div class="absolute inset-0 opacity-10">
                <svg class="w-full h-full" xmlns="http://www.w3.org/2000/svg">
                    <defs>
                        <pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse">
                            <path d="M 60 0 L 0 0 0 60" fill="none" stroke="white" stroke-width="0.5" />
                        </pattern>
                    </defs>
                    <rect width="100%" height="100%" fill="url(#grid)" class="animate-grid-move" />
                </svg>
            </div>

            <!-- Floating Elements -->
            <div class="absolute top-20 left-10 w-72 h-72 bg-white/10 rounded-full blur-3xl animate-float-slow">
            </div>
            <div
                class="absolute bottom-20 right-10 w-96 h-96 bg-white/10 rounded-full blur-3xl animate-float-slow-delayed">
            </div>
        </div>

        <div class="relative z-10 max-w-7xl mx-auto px-6 w-full">
            <div class="text-center">
                <div
                    class="inline-block mb-6 px-4 py-2 bg-white/20 border border-white/40 rounded-full text-white text-sm font-semibold">
                    🚀 Exclusive Access to China's Innovation Hub
                </div>

                <h1 class="text-5xl md:text-7xl lg:text-8xl font-black text-white mb-6 leading-tight tracking-tight">
                    Unlock China's<br>
                    <span class="text-transparent bg-clip-text bg-gradient-to-r from-white via-cyan-200 to-blue-300">Tech Giants</span>
                </h1>

                <p class="text-xl md:text-2xl text-white/90 max-w-3xl mx-auto mb-12 leading-relaxed">
                    Private, mentor-led tours to the world's most innovative companies. Transform your business with
                    exclusive insights.
                </p>

                <!-- Tech Giants Carousel -->
                <div class="relative overflow-hidden" id="loop">
                    <div class="flex overflow-x-scroll gap-4 pb-4 scrollbar-hide" id="tech-giants"
                        style="scroll-behavior: auto !important; -ms-overflow-style: none; scrollbar-width: none;">
                        <!-- Company cards will be dynamically generated via JavaScript -->
                    </div>
                </div>
                
                <script>
                    // Dynamically generate company cards using the public logo library
                    document.addEventListener('DOMContentLoaded', function() {
                        const techGiantsContainer = document.getElementById('tech-giants');
                        
                        // Define company data
                        const companies = [
                            { company: 'tencent', name: 'Tencent', description: 'Social & Gaming Empire', color: 'cyan', gradient: 'from-blue-500 to-blue-700' },
                            { company: 'bytedance', name: 'ByteDance', description: 'AI & Content Pioneer', color: 'purple', gradient: 'from-purple-500 to-purple-700' },
                            { company: 'deepseek', name: 'DeepSeek', description: 'AI Research Leader', color: 'green', gradient: 'from-green-500 to-green-700' },
                            { company: 'huawei', name: 'Huawei', description: '5G & Tech Giant', color: 'orange', gradient: 'from-orange-500 to-orange-700' },
                            { company: 'xiaomi', name: 'Xiaomi', description: 'IoT & Consumer Tech', color: 'red', gradient: 'from-red-500 to-red-700' },
                            { company: 'alibaba', name: 'Alibaba', description: 'E-commerce Giant', color: 'cyan', gradient: 'from-cyan-500 to-cyan-700' }
                        ];
                        
                        // Generate cards using CompanyLogos.createCard()
                        companies.forEach(companyData => {
                            techGiantsContainer.innerHTML += window.CompanyLogos.createCard(companyData);
                        });
                    });
                </script>

                <!-- Scroll Indicator -->
                <div class="flex justify-center mt-6">
                    <div class="w-16 h-1 bg-white/30 rounded-full overflow-hidden">
                        <div class="h-full bg-white animate-scroll-indicator"></div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Stats Section -->
    <section class="py-16 px-6 bg-blue-500/50 border-y border-blue-400/30">
        <div class="max-w-7xl mx-auto">
            <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
                <div class="text-center">
                    <div
                        class="text-4xl md:text-5xl font-black text-white mb-2">
                        50+</div>
                    <div class="text-white/80">Companies Accessed</div>
                </div>
                <div class="text-center">
                    <div
                        class="text-4xl md:text-5xl font-black text-white mb-2">
                        30+</div>
                    <div class="text-white/80">Years Experience</div>
                </div>
                <div class="text-center">
                    <div
                        class="text-4xl md:text-5xl font-black text-white mb-2">
                        500+</div>
                    <div class="text-white/80">Executives Hosted</div>
                </div>
                <div class="text-center">
                    <div
                        class="text-4xl md:text-5xl font-black text-white mb-2">
                        98%</div>
                    <div class="text-white/80">Satisfaction Rate</div>
                </div>
            </div>
        </div>
    </section>

    <!-- Value Propositions -->
    <section id="value" class="py-24 px-6 relative">
        <div class="max-w-7xl mx-auto">
            <div class="text-center mb-16">
                <div
                    class="inline-block mb-4 px-4 py-1 bg-white/20 border border-white/40 rounded-full text-white text-sm font-semibold">
                    WHY CHOOSE US
                </div>
                <h2 class="text-4xl md:text-5xl font-black text-white mb-4">Experience Like No Other</h2>
                <p class="text-xl text-white/90 max-w-2xl mx-auto">Three pillars that set our tours apart</p>
            </div>

            <div class="grid md:grid-cols-3 gap-8">
                <!-- Pass -->
                <div class="relative group">
                    <div class="absolute -inset-0.5 bg-gradient-to-br from-cyan-500 to-blue-600 rounded-3xl opacity-0 group-hover:opacity-100 transition-opacity duration-500 blur-xl"></div>
                    <div class="relative bg-white/90 rounded-3xl p-8 border border-[rgba(0,0,0,0.05)] h-full">
                        <div class="absolute top-0 right-0 w-20 h-20 bg-gradient-to-br from-cyan-500/20 to-blue-500/20 rounded-bl-3xl"></div>
                        <div class="w-16 h-16 bg-gradient-to-br from-cyan-500 to-blue-600 rounded-2xl mb-6 flex items-center justify-center group-hover:scale-110 transition-transform duration-300 shadow-lg shadow-cyan-500/25">
                            <svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 7a2 2 0 012 2m4 0a6 6 0 01-7.743 5.743L11 17H9v2H7v2H4a1 1 0 01-1-1v-2.586a1 1 0 01.293-.707l5.964-5.964A6 6 0 1121 9z"></path>
                            </svg>
                        </div>
                        <h3 class="text-2xl font-bold text-slate-800 mb-3">Exclusive Access</h3>
                        <p class="text-slate-600 leading-relaxed mb-4">Not just a visit, but a meeting. We get you into the offices of DeepSeek, Tencent, and the "dark factories" of China's manufacturing giants.</p>
                        <div class="flex items-center text-cyan-400 font-semibold group-hover:translate-x-2 transition-transform duration-300">
                            Learn more 
                            <svg class="w-5 h-5 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
                            </svg>
                        </div>
                    </div>
                </div>

                <!-- Perspective -->
                <div class="relative group">
                    <div class="absolute -inset-0.5 bg-gradient-to-br from-purple-500 to-pink-600 rounded-3xl opacity-0 group-hover:opacity-100 transition-opacity duration-500 blur-xl"></div>
                    <div class="relative bg-white/90 rounded-3xl p-8 border border-[rgba(0,0,0,0.05)] h-full">
                        <div class="absolute top-0 right-0 w-20 h-20 bg-gradient-to-br from-purple-500/20 to-pink-500/20 rounded-bl-3xl"></div>
                        <div class="w-16 h-16 bg-gradient-to-br from-purple-500 to-pink-600 rounded-2xl mb-6 flex items-center justify-center group-hover:scale-110 transition-transform duration-300 shadow-lg shadow-purple-500/25">
                            <svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"></path>
                            </svg>
                        </div>
                        <h3 class="text-2xl font-bold text-slate-800 mb-3">Expert Perspective</h3>
                        <p class="text-slate-600 leading-relaxed mb-4">Your guide is a 30-year veteran mentor. We don't just show you the tech; we explain the business logic behind it.</p>
                        <div class="flex items-center text-purple-400 font-semibold group-hover:translate-x-2 transition-transform duration-300">
                            Learn more 
                            <svg class="w-5 h-5 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
                            </svg>
                        </div>
                    </div>
                </div>

                <!-- Problem Solving -->
                <div class="relative group">
                    <div class="absolute -inset-0.5 bg-gradient-to-br from-green-500 to-emerald-600 rounded-3xl opacity-0 group-hover:opacity-100 transition-opacity duration-500 blur-xl"></div>
                    <div class="relative bg-white/90 rounded-3xl p-8 border border-[rgba(0,0,0,0.05)] h-full">
                        <div class="absolute top-0 right-0 w-20 h-20 bg-gradient-to-br from-green-500/20 to-emerald-500/20 rounded-bl-3xl"></div>
                        <div class="w-16 h-16 bg-gradient-to-br from-green-500 to-emerald-600 rounded-2xl mb-6 flex items-center justify-center group-hover:scale-110 transition-transform duration-300 shadow-lg shadow-green-500/25">
                            <svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
                            </svg>
                        </div>
                        <h3 class="text-2xl font-bold text-slate-800 mb-3">Actionable Solutions</h3>
                        <p class="text-slate-600 leading-relaxed mb-4">We tailor the visit to your business pain points, turning what you see into actionable solutions for your own company.</p>
                        <div class="flex items-center text-green-400 font-semibold group-hover:translate-x-2 transition-transform duration-300">
                            Learn more 
                            <svg class="w-5 h-5 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
                            </svg>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Services Section -->
    <section id="services" class="py-24 px-6 relative overflow-hidden">
        <div class="absolute inset-0 bg-gradient-to-b from-blue-400/30 to-transparent"></div>

        <div class="max-w-7xl mx-auto relative z-10">
            <div class="text-center mb-16">
                <div
                    class="inline-block mb-4 px-4 py-1 bg-white/20 border border-white/40 rounded-full text-white text-sm font-semibold">
                    OUR SERVICES
                </div>
                <h2 class="text-4xl md:text-5xl font-black text-white mb-4">Comprehensive Solutions</h2>
                <p class="text-xl text-white/90 max-w-2xl mx-auto">Tailored programs for your business journey</p>
            </div>

            <div class="space-y-8">
                <!-- Corporate Visit -->
                <div class="bg-white rounded-3xl p-8 md:p-12 border border-[rgba(0,0,0,0.1)] hover:border-cyan-500/50 transition-all duration-500 group shadow-lg">
                    <div class="grid md:grid-cols-2 gap-8 items-center">
                        <div>
                            <div class="inline-block mb-4 px-3 py-1 bg-cyan-500/10 border border-cyan-500/30 rounded-full text-cyan-400 text-xs font-bold uppercase tracking-wider">
                                Service 01
                            </div>
                            <h3 class="text-3xl md:text-4xl font-black text-slate-800 mb-4">Corporate Visit</h3>
                            <p class="text-slate-600 leading-relaxed mb-6">Exclusive access to China's leading tech companies and manufacturing facilities with guided tours and executive meetings.</p>
                            <ul class="space-y-3 mb-6">
                                <li class="flex items-center text-slate-700">
                                    <div class="w-6 h-6 bg-cyan-500/20 rounded-full flex items-center justify-center mr-3">
                                        <svg class="w-4 h-4 text-cyan-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
                                        </svg>
                                    </div>
                                    Private facility tours
                                </li>
                                <li class="flex items-center text-slate-700">
                                    <div class="w-6 h-6 bg-cyan-500/20 rounded-full flex items-center justify-center mr-3">
                                        <svg class="w-4 h-4 text-cyan-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
                                        </svg>
                                    </div>
                                    Executive roundtables
                                </li>
                                <li class="flex items-center text-slate-700">
                                    <div class="w-6 h-6 bg-cyan-500/20 rounded-full flex items-center justify-center mr-3">
                                        <svg class="w-4 h-4 text-cyan-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
                                        </svg>
                                    </div>
                                    Technology demonstrations
                                </li>
                            </ul>
                            <button class="bg-gradient-to-r from-cyan-500 to-blue-600 text-white px-8 py-3 rounded-lg font-semibold hover:shadow-lg hover:shadow-cyan-500/25 transition-all duration-300 hover:scale-105">
                                Explore This Service
                            </button>
                        </div>
                        <div class="relative hidden md:block">
                            <div class="absolute inset-0 bg-gradient-to-br from-cyan-500/20 to-blue-500/10 rounded-3xl"></div>
                            <div class="relative h-full bg-transparent-custom rounded-3xl flex items-center justify-center">
                                <div class="text-center">
                                    <div class="text-8xl font-black text-cyan-400 mb-2">01</div>
                                    <div class="text-slate-400">Corporate Visit</div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>

                <!-- Business Programs -->
                <div class="bg-white rounded-3xl p-8 md:p-12 border border-[rgba(0,0,0,0.1)] hover:border-purple-500/50 transition-all duration-500 group shadow-lg">
                    <div class="grid md:grid-cols-2 gap-8 items-center">
                        <div class="relative hidden md:block">
                            <div class="absolute inset-0 bg-gradient-to-br from-purple-500/20 to-pink-500/10 rounded-3xl"></div>
                            <div class="relative h-full bg-transparent-custom rounded-3xl flex items-center justify-center">
                                <div class="text-center">
                                    <div class="text-8xl font-black text-purple-400 mb-2">02</div>
                                    <div class="text-slate-400">Business Programs</div>
                                </div>
                            </div>
                        </div>
                        <div>
                            <div class="inline-block mb-4 px-3 py-1 bg-purple-500/10 border border-purple-500/30 rounded-full text-purple-400 text-xs font-bold uppercase tracking-wider">
                                Service 02
                            </div>
                            <h3 class="text-3xl md:text-4xl font-black text-slate-800 mb-4">Business Programs</h3>
                            <p class="text-slate-600 leading-relaxed mb-6">Tailored educational programs combining visits with workshops, networking events, and strategic insights.</p>
                            <ul class="space-y-3 mb-6">
                                <li class="flex items-center text-slate-700">
                                    <div class="w-6 h-6 bg-purple-500/20 rounded-full flex items-center justify-center mr-3">
                                        <svg class="w-4 h-4 text-purple-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
                                        </svg>
                                    </div>
                                    Industry workshops
                                </li>
                                <li class="flex items-center text-slate-700">
                                    <div class="w-6 h-6 bg-purple-500/20 rounded-full flex items-center justify-center mr-3">
                                        <svg class="w-4 h-4 text-purple-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
                                        </svg>
                                    </div>
                                    Networking sessions
                                </li>
                                <li class="flex items-center text-slate-700">
                                    <div class="w-6 h-6 bg-purple-500/20 rounded-full flex items-center justify-center mr-3">
                                        <svg class="w-4 h-4 text-purple-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
                                        </svg>
                                    </div>
                                    Market intelligence reports
                                </li>
                            </ul>
                            <button class="bg-gradient-to-r from-purple-500 to-pink-600 text-white px-8 py-3 rounded-lg font-semibold hover:shadow-lg hover:shadow-purple-500/25 transition-all duration-300 hover:scale-105">
                                Explore This Service
                            </button>
                        </div>
                    </div>
                </div>

                <!-- Custom Solutions -->
                <div class="bg-white rounded-3xl p-8 md:p-12 border border-[rgba(0,0,0,0.1)] hover:border-green-500/50 transition-all duration-500 group shadow-lg">
                    <div class="grid md:grid-cols-2 gap-8 items-center">
                        <div>
                            <div class="inline-block mb-4 px-3 py-1 bg-green-500/10 border border-green-500/30 rounded-full text-green-400 text-xs font-bold uppercase tracking-wider">
                                Service 03
                            </div>
                            <h3 class="text-3xl md:text-4xl font-black text-slate-800 mb-4">Custom Solutions</h3>
                            <p class="text-slate-600 leading-relaxed mb-6">Bespoke itineraries designed around your specific business objectives, timeline, and industry focus.</p>
                            <ul class="space-y-3 mb-6">
                                <li class="flex items-center text-slate-700">
                                    <div class="w-6 h-6 bg-green-500/20 rounded-full flex items-center justify-center mr-3">
                                        <svg class="w-4 h-4 text-green-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
                                        </svg>
                                    </div>
                                    Personalized itineraries
                                </li>
                                <li class="flex items-center text-slate-700">
                                    <div class="w-6 h-6 bg-green-500/20 rounded-full flex items-center justify-center mr-3">
                                        <svg class="w-4 h-4 text-green-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
                                        </svg>
                                    </div>
                                    Dedicated account manager
                                </li>
                                <li class="flex items-center text-slate-700">
                                    <div class="w-6 h-6 bg-green-500/20 rounded-full flex items-center justify-center mr-3">
                                        <svg class="w-4 h-4 text-green-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
                                        </svg>
                                    </div>
                                    Post-visit support
                                </li>
                            </ul>
                            <button class="bg-gradient-to-r from-green-500 to-emerald-600 text-white px-8 py-3 rounded-lg font-semibold hover:shadow-lg hover:shadow-green-500/25 transition-all duration-300 hover:scale-105">
                                Explore This Service
                            </button>
                        </div>
                        <div class="relative hidden md:block">
                            <div class="absolute inset-0 bg-gradient-to-br from-green-500/20 to-emerald-500/10 rounded-3xl"></div>
                            <div class="relative h-full bg-transparent-custom rounded-3xl flex items-center justify-center">
                                <div class="text-center">
                                    <div class="text-8xl font-black text-green-400 mb-2">03</div>
                                    <div class="text-slate-400">Custom Solutions</div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Map Section -->
    <section id="map" class="py-24 px-6 relative">
        <div class="max-w-7xl mx-auto">
            <div class="text-center mb-16">
                <div
                    class="inline-block mb-4 px-4 py-1 bg-white/20 border border-white/40 rounded-full text-white text-sm font-semibold">
                    OUR NETWORK
                </div>
                <h2 class="text-4xl md:text-5xl font-black text-white mb-4">Global Reach</h2>
                <p class="text-xl text-white/90 max-w-2xl mx-auto">Access to China's leading companies across all major
                    industries</p>
            </div>
           
            <!-- 3D Interactive Map -->
            <div id="root"
                class="bg-white/90 backdrop-blur-sm rounded-3xl border border-white/50 mb-12 relative overflow-hidden shadow-xl"
                style="height: 600px; width: 100%;">
                <script type="module" src="/src/index.tsx"></script>
                <!-- <iframe 
                    src="/pages/map.html" 
                    style="width: 100%; height: 100%; border: none; border-radius: 1.5rem;"
                    title="3D China Map Visualization"
                    loading="lazy">
                </iframe> -->
            </div>

            <!-- Original Static Map (Hidden) -->
            <div style="display: none;"
                class="bg-slate-900/80 backdrop-blur-sm rounded-3xl p-8 border border-slate-800 mb-12 relative overflow-hidden">
                <div class="absolute inset-0 opacity-20">
                    <svg viewBox="0 0 800 400" class="w-full h-full">
                        <defs>
                            <linearGradient id="mapGradient" x1="0%" y1="0%" x2="100%" y2="100%">
                                <stop offset="0%" style="stop-color:#06b6d4;stop-opacity:0.3" />
                                <stop offset="100%" style="stop-color:#3b82f6;stop-opacity:0.3" />
                            </linearGradient>
                        </defs>
                        <path d="M100,200 Q200,100 400,150 T700,200" stroke="url(#mapGradient)" stroke-width="2"
                            fill="none" stroke-dasharray="5,5" />
                        <circle cx="400" cy="200" r="150" stroke="#06b6d4" stroke-width="1" fill="none" opacity="0.3" />
                        <circle cx="400" cy="200" r="100" stroke="#3b82f6" stroke-width="1" fill="none" opacity="0.3" />
                    </svg>
                </div>

                <div class="relative h-96">
                    <!-- Beijing -->
                    <div
                        class="absolute top-1/4 left-1/4 transform -translate-x-1/2 -translate-y-1/2 group cursor-pointer">
                        <div class="w-4 h-4 bg-cyan-500 rounded-full animate-pulse absolute"></div>
                        <div class="w-4 h-4 bg-cyan-500 rounded-full relative z-10"></div>
                        <div
                            class="absolute -top-10 left-1/2 -translate-x-1/2 bg-slate-800 text-white text-xs px-3 py-1.5 rounded-lg whitespace-nowrap opacity-0 group-hover:opacity-100 transition-opacity border border-cyan-500/30">
                            Beijing
                        </div>
                    </div>

                    <!-- Shanghai -->
                    <div
                        class="absolute top-1/3 left-1/2 transform -translate-x-1/2 -translate-y-1/2 group cursor-pointer">
                        <div class="w-4 h-4 bg-purple-500 rounded-full animate-pulse absolute"></div>
                        <div class="w-4 h-4 bg-purple-500 rounded-full relative z-10"></div>
                        <div
                            class="absolute -top-10 left-1/2 -translate-x-1/2 bg-slate-800 text-white text-xs px-3 py-1.5 rounded-lg whitespace-nowrap opacity-0 group-hover:opacity-100 transition-opacity border border-purple-500/30">
                            Shanghai
                        </div>
                    </div>

                    <!-- Shenzhen -->
                    <div
                        class="absolute top-1/2 left-2/3 transform -translate-x-1/2 -translate-y-1/2 group cursor-pointer">
                        <div class="w-4 h-4 bg-green-500 rounded-full animate-pulse absolute"></div>
                        <div class="w-4 h-4 bg-green-500 rounded-full relative z-10"></div>
                        <div
                            class="absolute -top-10 left-1/2 -translate-x-1/2 bg-slate-800 text-white text-xs px-3 py-1.5 rounded-lg whitespace-nowrap opacity-0 group-hover:opacity-100 transition-opacity border border-green-500/30">
                            Shenzhen
                        </div>
                    </div>

                    <!-- Hangzhou -->
                    <div
                        class="absolute bottom-1/4 left-1/3 transform -translate-x-1/2 -translate-y-1/2 group cursor-pointer">
                        <div class="w-4 h-4 bg-orange-500 rounded-full animate-pulse absolute"></div>
                        <div class="w-4 h-4 bg-orange-500 rounded-full relative z-10"></div>
                        <div
                            class="absolute -top-10 left-1/2 -translate-x-1/2 bg-slate-800 text-white text-xs px-3 py-1.5 rounded-lg whitespace-nowrap opacity-0 group-hover:opacity-100 transition-opacity border border-orange-500/30">
                            Hangzhou
                        </div>
                    </div>
                </div>
            </div>

            <!-- Industry Cards -->
            <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
                <!-- Technology -->
                <div class="bg-white/90 backdrop-blur-sm rounded-2xl p-6 border border-[rgba(0,0,0,0.05)] hover:border-cyan-500/50 transition-all duration-300 group cursor-pointer">
                    <div class="flex items-center justify-between mb-4">
                        <div class="w-12 h-12 bg-cyan-500/10 rounded-xl flex items-center justify-center">
                            <svg class="w-6 h-6 text-cyan-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.75 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"></path>
                            </svg>
                        </div>
                        <svg class="w-5 h-5 text-slate-600 group-hover:text-cyan-400 transition-colors" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
                        </svg>
                    </div>
                    <h4 class="text-lg font-bold text-slate-800 mb-2">Technology</h4>
                    <p class="text-slate-600 text-sm mb-3">AI, Software, Internet</p>
                    <div class="flex flex-wrap gap-2">
                        <span class="px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs rounded-full">Tencent</span>
                        <span class="px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs rounded-full">ByteDance</span>
                        <span class="px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs rounded-full">DeepSeek</span>
                    </div>
                </div>

                <!-- Manufacturing -->
                <div class="bg-white/90 backdrop-blur-sm rounded-2xl p-6 border border-[rgba(0,0,0,0.05)] hover:border-purple-500/50 transition-all duration-300 group cursor-pointer">
                    <div class="flex items-center justify-between mb-4">
                        <div class="w-12 h-12 bg-purple-500/10 rounded-xl flex items-center justify-center">
                            <svg class="w-6 h-6 text-purple-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.428 15.428a2 2 0 00-1.022-.547l-2.387-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 4.415l-5 5a2 2 0 01-2.828 0l-5-5c-1.782-1.782-.674-3.154-1.415-4.415L12 10.172V5l-1-1z"></path>
                            </svg>
                        </div>
                        <svg class="w-5 h-5 text-slate-600 group-hover:text-purple-400 transition-colors" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
                        </svg>
                    </div>
                    <h4 class="text-lg font-bold text-slate-800 mb-2">Manufacturing</h4>
                    <p class="text-slate-600 text-sm mb-3">Electronics, Automotive</p>
                    <div class="flex flex-wrap gap-2">
                        <span class="px-3 py-1 bg-purple-500/10 text-purple-400 text-xs rounded-full">Huawei</span>
                        <span class="px-3 py-1 bg-purple-500/10 text-purple-400 text-xs rounded-full">Xiaomi</span>
                        <span class="px-3 py-1 bg-purple-500/10 text-purple-400 text-xs rounded-full">BYD</span>
                    </div>
                </div>

                <!-- E-commerce -->
                <div class="bg-white/90 backdrop-blur-sm rounded-2xl p-6 border border-[rgba(0,0,0,0.05)] hover:border-green-500/50 transition-all duration-300 group cursor-pointer">
                    <div class="flex items-center justify-between mb-4">
                        <div class="w-12 h-12 bg-green-500/10 rounded-xl flex items-center justify-center">
                            <svg class="w-6 h-6 text-green-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"></path>
                            </svg>
                        </div>
                        <svg class="w-5 h-5 text-slate-600 group-hover:text-green-400 transition-colors" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
                        </svg>
                    </div>
                    <h4 class="text-lg font-bold text-slate-800 mb-2">E-commerce</h4>
                    <p class="text-slate-600 text-sm mb-3">Retail, Logistics, Payments</p>
                    <div class="flex flex-wrap gap-2">
                        <span class="px-3 py-1 bg-green-500/10 text-green-400 text-xs rounded-full">Alibaba</span>
                        <span class="px-3 py-1 bg-green-500/10 text-green-400 text-xs rounded-full">JD.com</span>
                        <span class="px-3 py-1 bg-green-500/10 text-green-400 text-xs rounded-full">Pinduoduo</span>
                    </div>
                </div>

                <!-- Finance -->
                <div class="bg-white/90 backdrop-blur-sm rounded-2xl p-6 border border-[rgba(0,0,0,0.05)] hover:border-orange-500/50 transition-all duration-300 group cursor-pointer">
                    <div class="flex items-center justify-between mb-4">
                        <div class="w-12 h-12 bg-orange-500/10 rounded-xl flex items-center justify-center">
                            <svg class="w-6 h-6 text-orange-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
                            </svg>
                        </div>
                        <svg class="w-5 h-5 text-slate-600 group-hover:text-orange-400 transition-colors" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
                        </svg>
                    </div>
                    <h4 class="text-lg font-bold text-slate-800 mb-2">Finance</h4>
                    <p class="text-slate-600 text-sm mb-3">Fintech, Payments, Banking</p>
                    <div class="flex flex-wrap gap-2">
                        <span class="px-3 py-1 bg-orange-500/10 text-orange-400 text-xs rounded-full">Ant Group</span>
                        <span class="px-3 py-1 bg-orange-500/10 text-orange-400 text-xs rounded-full">Tencent Finance</span>
                        <span class="px-3 py-1 bg-orange-500/10 text-orange-400 text-xs rounded-full">JD Finance</span>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section id="cta" class="py-24 px-6 relative overflow-hidden">
        <div class="absolute inset-0">
            <div class="absolute inset-0 bg-gradient-to-br from-blue-400/20 via-blue-500/20 to-blue-600/20"></div>
            <div class="absolute top-0 left-1/4 w-96 h-96 bg-white/10 rounded-full blur-3xl"></div>
            <div class="absolute bottom-0 right-1/4 w-80 h-80 bg-white/10 rounded-full blur-3xl"></div>
        </div>

        <div class="max-w-4xl mx-auto relative z-10">
            <div class="bg-white/95 backdrop-blur-xl rounded-3xl p-12 md:p-16 border border-white/50 text-center shadow-2xl">
                <div
                    class="inline-block mb-6 px-4 py-2 bg-blue-100 border border-blue-300 rounded-full text-blue-600 text-sm font-semibold">
                    START YOUR JOURNEY
                </div>
                <h2 class="text-4xl md:text-5xl font-black text-gray-900 mb-6">Ready to Transform Your Business?</h2>
                <p class="text-xl text-gray-700 mb-8 max-w-2xl mx-auto">Join executives and innovators from around the
                    world who have gained unprecedented access to China's tech ecosystem.</p>

                <div class="flex flex-col sm:flex-row gap-4 justify-center items-center mb-8">
                    <button
                        class="bg-gradient-to-r from-blue-500 to-blue-600 text-white px-10 py-4 rounded-xl text-lg font-bold hover:shadow-2xl hover:shadow-blue-500/30 transition-all duration-300 hover:scale-105 flex items-center justify-center">
                        <svg class="w-5 h-5 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
                                d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v14a2 2 0 002 2z">
                            </path>
                        </svg>
                        Book Your Tour
                    </button>
                    <button
                        onclick="openContactModal()"
                        class="border-2 border-gray-300 text-gray-700 px-10 py-4 rounded-xl text-lg font-bold hover:border-blue-500 hover:text-blue-600 hover:bg-blue-50 transition-all duration-300">
                        Contact Us
                    </button>
                </div>

                <div class="flex items-center justify-center space-x-8 text-gray-600">
                    <div class="flex items-center">
                        <svg class="w-5 h-5 mr-2 text-green-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7">
                            </path>
                        </svg>
                        <span>No commitment required</span>
                    </div>
                    <div class="flex items-center">
                        <svg class="w-5 h-5 mr-2 text-green-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7">
                            </path>
                        </svg>
                        <span>Free consultation</span>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Contact Modal -->
    <div id="contact-modal" class="fixed inset-0 z-[100] hidden items-center justify-center p-4">
        <div class="absolute inset-0 bg-slate-900/60 backdrop-blur-sm" onclick="closeContactModal()"></div>
        <div class="relative bg-white rounded-3xl p-8 md:p-12 max-w-md w-full shadow-2xl transform transition-all duration-300 scale-95 opacity-0" id="modal-content">
            <button onclick="closeContactModal()" class="absolute top-4 right-4 w-10 h-10 rounded-full bg-slate-100 hover:bg-slate-200 flex items-center justify-center transition-colors">
                <svg class="w-5 h-5 text-slate-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
                </svg>
            </button>
            
            <div class="text-center mb-8">
                <div class="w-16 h-16 bg-gradient-to-br from-cyan-500 to-blue-600 rounded-2xl flex items-center justify-center mx-auto mb-4 shadow-lg shadow-cyan-500/25">
                    <svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path>
                    </svg>
                </div>
                <h3 class="text-2xl font-bold text-slate-800 mb-2">Get in Touch</h3>
                <p class="text-slate-600">We'd love to hear from you</p>
            </div>
            
            <div class="bg-gradient-to-r from-cyan-50 to-blue-50 rounded-2xl p-6 mb-6 border border-cyan-100">
                <div class="flex items-center justify-between">
                    <div class="flex items-center space-x-3">
                        <div class="w-10 h-10 bg-white rounded-xl flex items-center justify-center shadow-sm">
                            <svg class="w-5 h-5 text-cyan-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path>
                            </svg>
                        </div>
                        <span class="text-slate-700 font-medium" id="modal-email">bizvisitchina@gmail.com</span>
                    </div>
                </div>
            </div>
            
            <div class="flex gap-3">
                <button onclick="copyEmail('modal-email')" class="flex-1 bg-slate-100 hover:bg-slate-200 text-slate-700 px-4 py-3 rounded-xl font-semibold transition-all duration-300 flex items-center justify-center space-x-2">
                    <svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"></path>
                    </svg>
                    <span>Copy</span>
                </button>
                <a href="mailto:bizvisitchina@gmail.com" class="flex-1 bg-gradient-to-r from-cyan-500 to-blue-600 text-white px-4 py-3 rounded-xl font-semibold transition-all duration-300 hover:shadow-lg hover:shadow-cyan-500/25 flex items-center justify-center space-x-2">
                    <svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 19l9 2-9-18-9 18 9-2zm0 0v-8"></path>
                    </svg>
                    <span>Send Email</span>
                </a>
            </div>
        </div>
    </div>

    <!-- Footer -->
    <footer class="px-6 border-t border-blue-400/30 bg-blue-600">
        <div class="max-w-7xl mx-auto py-8">
            <div class="flex flex-col md:flex-row justify-between items-center gap-6">
                <div class="flex items-center space-x-2">
                    <img src="/logo.png" alt="China Tech Tours" class="h-10 w-auto">
                </div>
                
                <div class="flex flex-col sm:flex-row items-center gap-4 sm:gap-6">
                    <div class="flex items-center space-x-2 bg-white/10 backdrop-blur-sm rounded-full px-4 py-2 border border-white/20">
                        <svg class="w-5 h-5 text-cyan-300" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path>
                        </svg>
                        <span class="text-white font-medium text-sm" id="footer-email">bizvisitchina@gmail.com</span>
                        <button onclick="copyEmail('footer-email')" class="ml-2 p-1 hover:bg-white/10 rounded transition-colors group" title="Copy email">
                            <svg class="w-4 h-4 text-white/70 group-hover:text-white transition-colors" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"></path>
                            </svg>
                        </button>
                    </div>
                    
                    <div class="flex items-center space-x-6 text-white/90">
                        <a href="#" class="hover:text-white transition-colors duration-200">Privacy</a>
                        <a href="#" class="hover:text-white transition-colors duration-200">Terms</a>
                    </div>
                </div>
            </div>
            
            <div class="text-center text-white/60 text-sm mt-6 pt-6 border-t border-white/10">
                © 2024 China Tech Tours. All rights reserved.
            </div>
        </div>
    </footer>

    <script src="/script.js"></script>
    <script>
        function openContactModal() {
            const modal = document.getElementById('contact-modal');
            const content = document.getElementById('modal-content');
            modal.classList.remove('hidden');
            modal.classList.add('flex');
            setTimeout(() => {
                content.classList.remove('scale-95', 'opacity-0');
                content.classList.add('scale-100', 'opacity-100');
            }, 10);
        }

        function closeContactModal() {
            const modal = document.getElementById('contact-modal');
            const content = document.getElementById('modal-content');
            content.classList.remove('scale-100', 'opacity-100');
            content.classList.add('scale-95', 'opacity-0');
            setTimeout(() => {
                modal.classList.remove('flex');
                modal.classList.add('hidden');
            }, 300);
        }

        function copyEmail(elementId) {
            const emailElement = document.getElementById(elementId);
            const email = emailElement.textContent;
            navigator.clipboard.writeText(email).then(() => {
                const originalText = emailElement.textContent;
                emailElement.textContent = 'Copied!';
                emailElement.classList.add('text-cyan-400');
                setTimeout(() => {
                    emailElement.textContent = originalText;
                    emailElement.classList.remove('text-cyan-400');
                }, 1500);
            }).catch(err => {
                console.error('Failed to copy: ', err);
            });
        }

        document.addEventListener('keydown', function(e) {
            if (e.key === 'Escape') {
                closeContactModal();
            }
        });

        window.addEventListener('load', function () {
            const techGiantsElement = document.getElementById('tech-giants');
            if (techGiantsElement && techGiantsElement.children.length > 0) {
                const style = document.createElement('style');
                style.textContent = `
                    #tech-giants::-webkit-scrollbar {
                        display: none;
                    }
                    #tech-giants {
                        -ms-overflow-style: none;
                        scrollbar-width: none;
                    }
                `;
                document.head.appendChild(style);

                const originalCards = Array.from(techGiantsElement.children);

                for (let i = 0; i < 2; i++) {
                    originalCards.forEach(card => {
                        const clone = card.cloneNode(true);
                        techGiantsElement.appendChild(clone);
                    });
                }

                setTimeout(() => {
                    let isPaused = false;
                    const firstCard = techGiantsElement.children[0];
                    const cardWidth = firstCard.offsetWidth + 16;
                    const oneSetWidth = cardWidth * originalCards.length;

                    setInterval(() => {
                        if (!isPaused) {
                            techGiantsElement.scrollLeft += 0.3;

                            if (techGiantsElement.scrollLeft >= oneSetWidth) {
                                techGiantsElement.scrollLeft = 0;
                            }
                        }
                    }, 50);

                    techGiantsElement.addEventListener('mouseenter', () => {
                        isPaused = true;
                    });

                    techGiantsElement.addEventListener('mouseleave', () => {
                        isPaused = false;
                    });
                }, 100);
            }
        });
    </script>
</body>

</html>
