File size: 20,127 Bytes
08c30ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>BusinessHub | Helping Businesses Thrive Online</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/lucide@latest"></script>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
    <style>
        body { font-family: 'Inter', sans-serif; }
        .hero-gradient { background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%); }
        .card-hover { transition: all 0.3s ease; }
        .card-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
        .float-animation { animation: float 6s ease-in-out infinite; }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
    </style>
</head>
<body class="bg-gray-50 text-gray-800">

    <!-- Navigation -->
    <nav class="bg-white shadow-md fixed w-full z-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between h-16">
                <div class="flex items-center">
                    <a href="index.html" class="flex items-center gap-2">
                        <div class="w-8 h-8 bg-blue-600 rounded-lg flex items-center justify-center">
                            <i data-lucide="building-2" class="w-5 h-5 text-white"></i>
                        </div>
                        <span class="font-bold text-xl text-gray-900">BusinessHub</span>
                    </a>
                </div>
                
                <!-- Desktop Menu -->
                <div class="hidden md:flex items-center space-x-8">
                    <a href="index.html" class="text-blue-600 font-medium">Home</a>
                    <a href="about.html" class="text-gray-600 hover:text-blue-600 font-medium transition">About</a>
                    <a href="services.html" class="text-gray-600 hover:text-blue-600 font-medium transition">Services</a>
                    <a href="portfolio.html" class="text-gray-600 hover:text-blue-600 font-medium transition">Results</a>
                    <a href="contact.html" class="bg-blue-600 text-white px-5 py-2 rounded-lg font-medium hover:bg-blue-700 transition">Contact Us</a>
                </div>

                <!-- Mobile menu button -->
                <div class="md:hidden flex items-center">
                    <button onclick="toggleMenu()" class="text-gray-600 hover:text-gray-900 focus:outline-none">
                        <i data-lucide="menu" class="w-6 h-6"></i>
                    </button>
                </div>
            </div>
        </div>

        <!-- Mobile Menu -->
        <div id="mobile-menu" class="hidden md:hidden bg-white border-t">
            <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
                <a href="index.html" class="block px-3 py-2 text-blue-600 font-medium bg-blue-50 rounded-md">Home</a>
                <a href="about.html" class="block px-3 py-2 text-gray-600 font-medium hover:bg-gray-50 rounded-md">About</a>
                <a href="services.html" class="block px-3 py-2 text-gray-600 font-medium hover:bg-gray-50 rounded-md">Services</a>
                <a href="portfolio.html" class="block px-3 py-2 text-gray-600 font-medium hover:bg-gray-50 rounded-md">Results</a>
                <a href="contact.html" class="block px-3 py-2 text-gray-600 font-medium hover:bg-gray-50 rounded-md">Contact</a>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="hero-gradient pt-32 pb-20 px-4 sm:px-6 lg:px-8 relative overflow-hidden">
        <div class="absolute inset-0 opacity-10">
            <div class="absolute inset-0 bg-[url('data:image/svg+xml,%3Csvg width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cg fill=\"none\" fill-rule=\"evenodd\"%3E%3Cg fill=\"%23ffffff\" fill-opacity=\"0.4\"%3E%3Cpath d=\"M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z\"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E')]"></div>
        </div>
        <div class="max-w-7xl mx-auto text-center relative z-10">
            <div class="inline-block px-4 py-2 bg-white/20 rounded-full text-white text-sm font-medium mb-6 backdrop-blur-sm">
                🚀 Trusted by 500+ Businesses Worldwide
            </div>
            <h1 class="text-4xl md:text-6xl font-bold text-white mb-6 leading-tight">
                Take Your Business<br>Online with Confidence
            </h1>
            <p class="text-xl text-blue-100 mb-10 max-w-3xl mx-auto">
                Complete digital transformation solutions for modern businesses. From e-commerce setup to AI integration, we provide the tools, knowledge, and expertise you need to thrive in the digital economy.
            </p>
            <div class="flex flex-col sm:flex-row gap-4 justify-center">
                <a href="services.html" class="bg-white text-blue-600 px-8 py-4 rounded-lg font-semibold text-lg hover:bg-gray-100 transition shadow-lg inline-flex items-center gap-2">
                    Explore Services
                    <i data-lucide="arrow-right" class="w-5 h-5"></i>
                </a>
                <a href="contact.html" class="border-2 border-white text-white px-8 py-4 rounded-lg font-semibold text-lg hover:bg-white hover:text-blue-600 transition inline-flex items-center gap-2">
                    Free Consultation
                    <i data-lucide="calendar" class="w-5 h-5"></i>
                </a>
            </div>
            
            <div class="mt-16 flex flex-wrap justify-center gap-8 text-blue-100 text-sm">
                <div class="flex items-center gap-2">
                    <i data-lucide="check-circle" class="w-5 h-5"></i>
                    <span>E-commerce Solutions</span>
                </div>
                <div class="flex items-center gap-2">
                    <i data-lucide="check-circle" class="w-5 h-5"></i>
                    <span>AI Integration</span>
                </div>
                <div class="flex items-center gap-2">
                    <i data-lucide="check-circle" class="w-5 h-5"></i>
                    <span>Digital Marketing</span>
                </div>
                <div class="flex items-center gap-2">
                    <i data-lucide="check-circle" class="w-5 h-5"></i>
                    <span>24/7 Support</span>
                </div>
            </div>
        </div>
    </section>

    <!-- What We Offer Section -->
    <section class="py-20 px-4 sm:px-6 lg:px-8 bg-white">
        <div class="max-w-7xl mx-auto">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Everything You Need to Go Digital</h2>
                <p class="text-lg text-gray-600 max-w-2xl mx-auto">Comprehensive solutions to transform your traditional business into a digital powerhouse.</p>
            </div>
            
            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                <div class="card-hover bg-gray-50 p-8 rounded-2xl border border-gray-100">
                    <div class="w-14 h-14 bg-blue-100 rounded-xl flex items-center justify-center mb-6">
                        <i data-lucide="shopping-cart" class="w-7 h-7 text-blue-600"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">E-commerce Setup</h3>
                    <p class="text-gray-600">Launch your online store with seamless payment integration, inventory management, and optimized checkout experiences.</p>
                </div>

                <div class="card-hover bg-gray-50 p-8 rounded-2xl border border-gray-100">
                    <div class="w-14 h-14 bg-cyan-100 rounded-xl flex items-center justify-center mb-6">
                        <i data-lucide="brain" class="w-7 h-7 text-cyan-600"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">AI Integration</h3>
                    <p class="text-gray-600">Leverage artificial intelligence for customer service, data analysis, automation, and competitive advantage.</p>
                </div>

                <div class="card-hover bg-gray-50 p-8 rounded-2xl border border-gray-100">
                    <div class="w-14 h-14 bg-purple-100 rounded-xl flex items-center justify-center mb-6">
                        <i data-lucide="megaphone" class="w-7 h-7 text-purple-600"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">Digital Marketing</h3>
                    <p class="text-gray-600">SEO, social media, email campaigns, and PPC strategies that drive traffic and convert visitors into customers.</p>
                </div>

                <div class="card-hover bg-gray-50 p-8 rounded-2xl border border-gray-100">
                    <div class="w-14 h-14 bg-green-100 rounded-xl flex items-center justify-center mb-6">
                        <i data-lucide="compass" class="w-7 h-7 text-green-600"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">Business Consulting</h3>
                    <p class="text-gray-600">Strategic guidance on digital transformation, workflow optimization, and technology adoption tailored to your industry.</p>
                </div>

                <div class="card-hover bg-gray-50 p-8 rounded-2xl border border-gray-100">
                    <div class="w-14 h-14 bg-orange-100 rounded-xl flex items-center justify-center mb-6">
                        <i data-lucide="wrench" class="w-7 h-7 text-orange-600"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">Tools & Software</h3>
                    <p class="text-gray-600">Access to premium business tools, CRM systems, analytics platforms, and custom software solutions.</p>
                </div>

                <div class="card-hover bg-gray-50 p-8 rounded-2xl border border-gray-100">
                    <div class="w-14 h-14 bg-pink-100 rounded-xl flex items-center justify-center mb-6">
                        <i data-lucide="graduation-cap" class="w-7 h-7 text-pink-600"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">Training & Support</h3>
                    <p class="text-gray-600">Hands-on training for your team, documentation, video tutorials, and ongoing technical support.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- How It Works -->
    <section class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-50">
        <div class="max-w-7xl mx-auto">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Your Digital Journey in 4 Steps</h2>
                <p class="text-lg text-gray-600 max-w-2xl mx-auto">We make the transition to online business smooth and stress-free.</p>
            </div>
            
            <div class="grid md:grid-cols-4 gap-8">
                <div class="text-center relative">
                    <div class="w-20 h-20 bg-blue-600 rounded-full flex items-center justify-center mx-auto mb-4 text-white shadow-lg relative z-10">
                        <i data-lucide="search" class="w-8 h-8"></i>
                    </div>
                    <div class="hidden md:block absolute top-10 left-1/2 w-full h-0.5 bg-blue-200 -z-0"></div>
                    <h3 class="text-xl font-bold text-gray-900 mb-2">1. Discovery</h3>
                    <p class="text-gray-600 text-sm">We analyze your current business model and identify digital opportunities.</p>
                </div>
                
                <div class="text-center relative">
                    <div class="w-20 h-20 bg-blue-600 rounded-full flex items-center justify-center mx-auto mb-4 text-white shadow-lg relative z-10">
                        <i data-lucide="map" class="w-8 h-8"></i>
                    </div>
                    <div class="hidden md:block absolute top-10 left-1/2 w-full h-0.5 bg-blue-200 -z-0"></div>
                    <h3 class="text-xl font-bold text-gray-900 mb-2">2. Strategy</h3>
                    <p class="text-gray-600 text-sm">Custom roadmap for your online presence, tools, and marketing approach.</p>
                </div>
                
                <div class="text-center relative">
                    <div class="w-20 h-20 bg-blue-600 rounded-full flex items-center justify-center mx-auto mb-4 text-white shadow-lg relative z-10">
                        <i data-lucide="rocket" class="w-8 h-8"></i>
                    </div>
                    <div class="hidden md:block absolute top-10 left-1/2 w-full h-0.5 bg-blue-200 -z-0"></div>
                    <h3 class="text-xl font-bold text-gray-900 mb-2">3. Implementation</h3>
                    <p class="text-gray-600 text-sm">We build, configure, and migrate your business to digital platforms.</p>
                </div>
                
                <div class="text-center">
                    <div class="w-20 h-20 bg-green-500 rounded-full flex items-center justify-center mx-auto mb-4 text-white shadow-lg relative z-10">
                        <i data-lucide="trending-up" class="w-8 h-8"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-2">4. Growth</h3>
                    <p class="text-gray-600 text-sm">Ongoing optimization, marketing, and support to scale your success.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Stats Section -->
    <section class="py-16 bg-gray-900 text-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
                <div>
                    <div class="text-4xl font-bold text-blue-400 mb-2">500+</div>
                    <div class="text-gray-400">Businesses Transformed</div>
                </div>
                <div>
                    <div class="text-4xl font-bold text-blue-400 mb-2">$50M+</div>
                    <div class="text-gray-400">Revenue Generated</div>
                </div>
                <div>
                    <div class="text-4xl font-bold text-blue-400 mb-2">98%</div>
                    <div class="text-gray-400">Client Satisfaction</div>
                </div>
                <div>
                    <div class="text-4xl font-bold text-blue-400 mb-2">24/7</div>
                    <div class="text-gray-400">Expert Support</div>
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="py-20 px-4 sm:px-6 lg:px-8 bg-blue-50">
        <div class="max-w-4xl mx-auto text-center">
            <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-6">Ready to Transform Your Business?</h2>
            <p class="text-lg text-gray-600 mb-8">Join hundreds of successful businesses that have made the leap to digital. Get a free consultation and roadmap.</p>
            <div class="flex flex-col sm:flex-row gap-4 justify-center">
                <a href="contact.html" class="inline-flex items-center gap-2 bg-blue-600 text-white px-8 py-4 rounded-lg font-semibold text-lg hover:bg-blue-700 transition shadow-lg">
                    Schedule Free Call
                    <i data-lucide="phone" class="w-5 h-5"></i>
                </a>
                <a href="services.html" class="inline-flex items-center gap-2 border-2 border-gray-300 text-gray-700 px-8 py-4 rounded-lg font-semibold text-lg hover:border-blue-600 hover:text-blue-600 transition">
                    View All Services
                </a>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-900 text-gray-300 py-12">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="grid md:grid-cols-4 gap-8 mb-8">
                <div class="col-span-2">
                    <div class="flex items-center gap-2 mb-4">
                        <div class="w-8 h-8 bg-blue-600 rounded-lg flex items-center justify-center">
                            <i data-lucide="building-2" class="w-5 h-5 text-white"></i>
                        </div>
                        <span class="font-bold text-xl text-white">BusinessHub</span>
                    </div>
                    <p class="text-gray-400 mb-4 max-w-sm">Empowering businesses with digital transformation, e-commerce solutions, AI integration, and expert consulting services.</p>
                    <div class="flex gap-4">
                        <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition">
                            <i data-lucide="facebook" class="w-5 h-5"></i>
                        </a>
                        <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition">
                            <i data-lucide="twitter" class="w-5 h-5"></i>
                        </a>
                        <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition">
                            <i data-lucide="linkedin" class="w-5 h-5"></i>
                        </a>
                        <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition">
                            <i data-lucide="instagram" class="w-5 h-5"></i>
                        </a>
                    </div>
                </div>
                
                <div>
                    <h4 class="text-white font-semibold mb-4">Quick Links</h4>
                    <ul class="space-y-2">
                        <li><a href="index.html" class="hover:text-white transition">Home</a></li>
                        <li><a href="about.html" class="hover:text-white transition">About Us</a></li>
                        <li><a href="services.html" class="hover:text-white transition">Services</a></li>
                        <li><a href="portfolio.html" class="hover:text-white transition">Results</a></li>
                        <li><a href="contact.html" class="hover:text-white transition">Contact</a></li>
                    </ul>
                </div>
                
                <div>
                    <h4 class="text-white font-semibold mb-4">Legal</h4>
                    <ul class="space-y-2">
                        <li><a href="privacy-policy.html" class="hover:text-white transition">Privacy Policy</a></li>
                        <li><a href="terms-of-service.html" class="hover:text-white transition">Terms of Service</a></li>
                    </ul>
                    <h4 class="text-white font-semibold mb-4 mt-6">Contact</h4>
                    <ul class="space-y-2">
                        <li class="flex items-center gap-2">
                            <i data-lucide="mail" class="w-4 h-4"></i>
                            <span>hello@businesshub.app</span>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div class="border-t border-gray-800 pt-8 text-center">
                <p class="text-gray-500">&copy; 2024 BusinessHub. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script>
        lucide.createIcons();
        
        function toggleMenu() {
            const menu = document.getElementById('mobile-menu');
            menu.classList.toggle('hidden');
        }
    </script>
<script src="https://deepsite.hf.co/deepsite-badge.js"></script>
</body>
</html>