File size: 30,681 Bytes
875870e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216812b
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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Nexus Digital | Growth-Driven Marketing Solutions</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
    <style>
        .hero-bg {
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
    </style>
</head>
<body class="font-sans antialiased text-gray-800">
    <!-- Navigation -->
    <nav class="bg-white shadow-lg 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-20 items-center">
                <div class="flex items-center">
                    <div class="flex-shrink-0 flex items-center">
                        <i data-feather="activity" class="text-indigo-600 h-8 w-8"></i>
                        <span class="ml-2 text-xl font-bold text-gray-900">Nexus Digital</span>
                    </div>
                </div>
                <div class="hidden md:block">
                    <div class="ml-10 flex items-center space-x-8">
                        <a href="#" class="text-indigo-600 font-medium">Home</a>
                        <a href="#services" class="text-gray-600 hover:text-indigo-600 transition">Services</a>
                        <a href="#about" class="text-gray-600 hover:text-indigo-600 transition">About</a>
                        <a href="#work" class="text-gray-600 hover:text-indigo-600 transition">Work</a>
                        <a href="#contact" class="text-gray-600 hover:text-indigo-600 transition">Contact</a>
                    </div>
                </div>
                <div class="md:hidden">
                    <button class="mobile-menu-button p-2 rounded-md text-gray-700 hover:text-indigo-600 focus:outline-none">
                        <i data-feather="menu"></i>
                    </button>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <div id="vanta-bg" class="hero-bg min-h-screen flex items-center pt-20">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-24">
            <div class="text-center">
                <h1 class="text-4xl md:text-6xl font-bold text-white mb-6" data-aos="fade-up">
                    Grow Your Business With <span class="text-indigo-200">Digital Excellence</span>
                </h1>
                <p class="text-xl text-white opacity-90 max-w-3xl mx-auto mb-10" data-aos="fade-up" data-aos-delay="100">
                    We craft data-driven marketing strategies that deliver measurable results and accelerate your business growth.
                </p>
                <div class="flex justify-center space-x-4" data-aos="fade-up" data-aos-delay="200">
                    <a href="#contact" class="bg-white text-indigo-600 px-8 py-3 rounded-full font-medium hover:bg-gray-100 transition duration-300 shadow-lg">
                        Get Started
                    </a>
                    <a href="#services" class="bg-transparent border-2 border-white text-white px-8 py-3 rounded-full font-medium hover:bg-white hover:text-indigo-600 transition duration-300">
                        Our Services
                    </a>
                </div>
            </div>
        </div>
    </div>

    <!-- Clients Section -->
    <div class="bg-gray-50 py-16">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <p class="text-center text-gray-500 mb-12">Trusted by innovative companies worldwide</p>
            <div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center">
                <img src="http://static.photos/technology/320x240/1" alt="Client Logo" class="h-12 mx-auto opacity-70 hover:opacity-100 transition">
                <img src="http://static.photos/technology/320x240/2" alt="Client Logo" class="h-12 mx-auto opacity-70 hover:opacity-100 transition">
                <img src="http://static.photos/technology/320x240/3" alt="Client Logo" class="h-12 mx-auto opacity-70 hover:opacity-100 transition">
                <img src="http://static.photos/technology/320x240/4" alt="Client Logo" class="h-12 mx-auto opacity-70 hover:opacity-100 transition">
                <img src="http://static.photos/technology/320x240/5" alt="Client Logo" class="h-12 mx-auto opacity-70 hover:opacity-100 transition">
                <img src="http://static.photos/technology/320x240/6" alt="Client Logo" class="h-12 mx-auto opacity-70 hover:opacity-100 transition">
            </div>
        </div>
    </div>

    <!-- Services Section -->
    <section id="services" class="py-20 bg-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16">
                <span class="text-indigo-600 font-medium">OUR SERVICES</span>
                <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2">Comprehensive Digital Marketing Solutions</h2>
                <p class="text-gray-600 max-w-2xl mx-auto mt-4">We offer end-to-end digital marketing services tailored to your business needs.</p>
            </div>
            
            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Service 1 -->
                <div class="service-card bg-white rounded-xl p-8 shadow-md hover:shadow-xl transition duration-300" data-aos="fade-up">
                    <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
                        <i data-feather="search" class="text-indigo-600 w-8 h-8"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">SEO Optimization</h3>
                    <p class="text-gray-600">Improve your search rankings and organic traffic with our proven SEO strategies.</p>
                </div>
                
                <!-- Service 2 -->
                <div class="service-card bg-white rounded-xl p-8 shadow-md hover:shadow-xl transition duration-300" data-aos="fade-up" data-aos-delay="100">
                    <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
                        <i data-feather="dollar-sign" class="text-indigo-600 w-8 h-8"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">PPC Advertising</h3>
                    <p class="text-gray-600">Maximize ROI with targeted pay-per-click campaigns across Google, Facebook, and more.</p>
                </div>
                
                <!-- Service 3 -->
                <div class="service-card bg-white rounded-xl p-8 shadow-md hover:shadow-xl transition duration-300" data-aos="fade-up" data-aos-delay="200">
                    <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
                        <i data-feather="mail" class="text-indigo-600 w-8 h-8"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">Email Marketing</h3>
                    <p class="text-gray-600">Engage your audience with personalized email campaigns that convert.</p>
                </div>
                
                <!-- Service 4 -->
                <div class="service-card bg-white rounded-xl p-8 shadow-md hover:shadow-xl transition duration-300" data-aos="fade-up">
                    <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
                        <i data-feather="smartphone" class="text-indigo-600 w-8 h-8"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">Social Media</h3>
                    <p class="text-gray-600">Build brand awareness and engagement across all major social platforms.</p>
                </div>
                
                <!-- Service 5 -->
                <div class="service-card bg-white rounded-xl p-8 shadow-md hover:shadow-xl transition duration-300" data-aos="fade-up" data-aos-delay="100">
                    <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
                        <i data-feather="edit" class="text-indigo-600 w-8 h-8"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">Content Marketing</h3>
                    <p class="text-gray-600">Attract and retain customers with valuable, relevant content.</p>
                </div>
                
                <!-- Service 6 -->
                <div class="service-card bg-white rounded-xl p-8 shadow-md hover:shadow-xl transition duration-300" data-aos="fade-up" data-aos-delay="200">
                    <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
                        <i data-feather="bar-chart-2" class="text-indigo-600 w-8 h-8"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">Analytics & Reporting</h3>
                    <p class="text-gray-600">Data-driven insights to measure performance and optimize campaigns.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- About Section -->
    <section id="about" class="py-20 bg-gray-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="grid md:grid-cols-2 gap-12 items-center">
                <div data-aos="fade-right">
                    <img src="http://static.photos/office/640x360/1" alt="Our Team" class="rounded-xl shadow-lg">
                </div>
                <div data-aos="fade-left">
                    <span class="text-indigo-600 font-medium">ABOUT US</span>
                    <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-6">We're More Than Just Marketers</h2>
                    <p class="text-gray-600 mb-6">Founded in 2015, Nexus Digital has grown from a small startup to a leading digital marketing agency serving clients across multiple industries.</p>
                    <p class="text-gray-600 mb-8">Our team of strategists, creatives, and analysts work together to deliver exceptional results that drive business growth and customer engagement.</p>
                    <div class="flex items-center">
                        <div class="bg-indigo-100 rounded-full p-3 mr-4">
                            <i data-feather="award" class="text-indigo-600 w-6 h-6"></i>
                        </div>
                        <div>
                            <h4 class="font-bold text-gray-900">Award-Winning Agency</h4>
                            <p class="text-gray-600">Recognized as top performers in digital marketing innovation.</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Stats Section -->
    <div class="bg-indigo-600 text-white py-16">
        <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 data-aos="fade-up">
                    <div class="text-4xl font-bold mb-2">150+</div>
                    <div class="text-indigo-200">Happy Clients</div>
                </div>
                <div data-aos="fade-up" data-aos-delay="100">
                    <div class="text-4xl font-bold mb-2">300%</div>
                    <div class="text-indigo-200">Avg. ROI Increase</div>
                </div>
                <div data-aos="fade-up" data-aos-delay="200">
                    <div class="text-4xl font-bold mb-2">25M+</div>
                    <div class="text-indigo-200">Monthly Impressions</div>
                </div>
                <div data-aos="fade-up" data-aos-delay="300">
                    <div class="text-4xl font-bold mb-2">50+</div>
                    <div class="text-indigo-200">Team Members</div>
                </div>
            </div>
        </div>
    </div>

    <!-- Work Section -->
    <section id="work" class="py-20 bg-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16">
                <span class="text-indigo-600 font-medium">OUR WORK</span>
                <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2">Success Stories That Speak Volumes</h2>
                <p class="text-gray-600 max-w-2xl mx-auto mt-4">See how we've helped businesses like yours achieve remarkable results.</p>
            </div>
            
            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Case Study 1 -->
                <div class="rounded-xl overflow-hidden shadow-lg" data-aos="fade-up">
                    <img src="http://static.photos/technology/640x360/7" alt="Case Study" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <span class="text-indigo-600 text-sm font-medium">E-commerce</span>
                        <h3 class="text-xl font-bold text-gray-900 mt-2 mb-3">Boosted Sales by 240%</h3>
                        <p class="text-gray-600 mb-4">Implemented a comprehensive digital strategy that transformed their online presence.</p>
                        <a href="#" class="text-indigo-600 font-medium flex items-center">
                            View Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
                        </a>
                    </div>
                </div>
                
                <!-- Case Study 2 -->
                <div class="rounded-xl overflow-hidden shadow-lg" data-aos="fade-up" data-aos-delay="100">
                    <img src="http://static.photos/technology/640x360/8" alt="Case Study" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <span class="text-indigo-600 text-sm font-medium">SaaS</span>
                        <h3 class="text-xl font-bold text-gray-900 mt-2 mb-3">3X Lead Generation</h3>
                        <p class="text-gray-600 mb-4">Developed targeted campaigns that significantly increased qualified leads.</p>
                        <a href="#" class="text-indigo-600 font-medium flex items-center">
                            View Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
                        </a>
                    </div>
                </div>
                
                <!-- Case Study 3 -->
                <div class="rounded-xl overflow-hidden shadow-lg" data-aos="fade-up" data-aos-delay="200">
                    <img src="http://static.photos/technology/640x360/9" alt="Case Study" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <span class="text-indigo-600 text-sm font-medium">Healthcare</span>
                        <h3 class="text-xl font-bold text-gray-900 mt-2 mb-3">Brand Awareness Growth</h3>
                        <p class="text-gray-600 mb-4">Elevated their market position through strategic content and social media.</p>
                        <a href="#" class="text-indigo-600 font-medium flex items-center">
                            View Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
                        </a>
                    </div>
                </div>
            </div>
            
            <div class="text-center mt-12">
                <a href="#" class="inline-flex items-center px-6 py-3 border border-indigo-600 text-indigo-600 rounded-full font-medium hover:bg-indigo-600 hover:text-white transition duration-300">
                    View All Case Studies
                </a>
            </div>
        </div>
    </section>

    <!-- Testimonials -->
    <div class="bg-gray-900 text-white py-20">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16">
                <span class="text-indigo-400 font-medium">TESTIMONIALS</span>
                <h2 class="text-3xl md:text-4xl font-bold text-white mt-2">What Our Clients Say</h2>
            </div>
            
            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Testimonial 1 -->
                <div class="testimonial-card p-8 rounded-xl" data-aos="fade-up">
                    <div class="flex items-center mb-6">
                        <img src="http://static.photos/people/200x200/1" alt="Client" class="w-12 h-12 rounded-full mr-4">
                        <div>
                            <h4 class="font-bold">Sarah Johnson</h4>
                            <p class="text-indigo-300 text-sm">CEO, TechSolutions</p>
                        </div>
                    </div>
                    <p class="text-gray-300 mb-6">"Nexus Digital transformed our digital presence. Our website traffic increased by 300% within just three months of working with them."</p>
                    <div class="flex text-yellow-400">
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                    </div>
                </div>
                
                <!-- Testimonial 2 -->
                <div class="testimonial-card p-8 rounded-xl" data-aos="fade-up" data-aos-delay="100">
                    <div class="flex items-center mb-6">
                        <img src="http://static.photos/people/200x200/2" alt="Client" class="w-12 h-12 rounded-full mr-4">
                        <div>
                            <h4 class="font-bold">Michael Chen</h4>
                            <p class="text-indigo-300 text-sm">Marketing Director, StyleHub</p>
                        </div>
                    </div>
                    <p class="text-gray-300 mb-6">"Their PPC strategy delivered a 5x return on ad spend. We've never seen such efficient customer acquisition before."</p>
                    <div class="flex text-yellow-400">
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                    </div>
                </div>
                
                <!-- Testimonial 3 -->
                <div class="testimonial-card p-8 rounded-xl" data-aos="fade-up" data-aos-delay="200">
                    <div class="flex items-center mb-6">
                        <img src="http://static.photos/people/200x200/3" alt="Client" class="w-12 h-12 rounded-full mr-4">
                        <div>
                            <h4 class="font-bold">David Rodriguez</h4>
                            <p class="text-indigo-300 text-sm">Founder, HealthPlus</p>
                        </div>
                    </div>
                    <p class="text-gray-300 mb-6">"The content marketing strategy they developed helped us establish thought leadership in our industry and attract high-value clients."</p>
                    <div class="flex text-yellow-400">
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- CTA Section -->
    <section id="contact" class="py-20 bg-indigo-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="bg-white rounded-2xl shadow-xl overflow-hidden">
                <div class="grid md:grid-cols-2">
                    <div class="p-12">
                        <h2 class="text-3xl font-bold text-gray-900 mb-6">Ready to Grow Your Business?</h2>
                        <p class="text-gray-600 mb-8">Schedule a free consultation with our digital marketing experts to discuss your goals and how we can help you achieve them.</p>
                        
                        <form class="space-y-6">
                            <div>
                                <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Your Name</label>
                                <input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
                            </div>
                            <div>
                                <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label>
                                <input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
                            </div>
                            <div>
                                <label for="company" class="block text-sm font-medium text-gray-700 mb-1">Company</label>
                                <input type="text" id="company" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
                            </div>
                            <div>
                                <label for="message" class="block text-sm font-medium text-gray-700 mb-1">How Can We Help?</label>
                                <textarea id="message" rows="4" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500"></textarea>
                            </div>
                            <button type="submit" class="w-full bg-indigo-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-indigo-700 transition duration-300">
                                Request Consultation
                            </button>
                        </form>
                    </div>
                    <div class="bg-indigo-600 p-12 flex flex-col justify-center">
                        <h3 class="text-2xl font-bold text-white mb-6">Contact Information</h3>
                        <div class="space-y-6">
                            <div class="flex items-start">
                                <div class="bg-indigo-500 rounded-full p-3 mr-4">
                                    <i data-feather="map-pin" class="text-white w-5 h-5"></i>
                                </div>
                                <div>
                                    <h4 class="text-white font-medium mb-1">Our Office</h4>
                                    <p class="text-indigo-200">123 Marketing Ave, Suite 400<br>San Francisco, CA 94107</p>
                                </div>
                            </div>
                            <div class="flex items-start">
                                <div class="bg-indigo-500 rounded-full p-3 mr-4">
                                    <i data-feather="mail" class="text-white w-5 h-5"></i>
                                </div>
                                <div>
                                    <h4 class="text-white font-medium mb-1">Email Us</h4>
                                    <p class="text-indigo-200">hello@nexusdigital.com</p>
                                </div>
                            </div>
                            <div class="flex items-start">
                                <div class="bg-indigo-500 rounded-full p-3 mr-4">
                                    <i data-feather="phone" class="text-white w-5 h-5"></i>
                                </div>
                                <div>
                                    <h4 class="text-white font-medium mb-1">Call Us</h4>
                                    <p class="text-indigo-200">(555) 123-4567</p>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-900 text-white 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">
                <div>
                    <div class="flex items-center mb-6">
                        <i data-feather="activity" class="text-indigo-400 h-8 w-8"></i>
                        <span class="ml-2 text-xl font-bold">Nexus Digital</span>
                    </div>
                    <p class="text-gray-400 mb-6">Data-driven digital marketing solutions that deliver real business results.</p>
                    <div class="flex space-x-4">
                        <a href="#" class="text-gray-400 hover:text-white transition">
                            <i data-feather="facebook" class="w-5 h-5"></i>
                        </a>
                        <a href="#" class="text-gray-400 hover:text-white transition">
                            <i data-feather="twitter" class="w-5 h-5"></i>
                        </a>
                        <a href="#" class="text-gray-400 hover:text-white transition">
                            <i data-feather="linkedin" class="w-5 h-5"></i>
                        </a>
                        <a href="#" class="text-gray-400 hover:text-white transition">
                            <i data-feather="instagram" class="w-5 h-5"></i>
                        </a>
                    </div>
                </div>
                <div>
                    <h4 class="text-lg font-semibold mb-6">Services</h4>
                    <ul class="space-y-3">
                        <li><a href="#" class="text-gray-400 hover:text-white transition">SEO Services</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">PPC Advertising</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Social Media</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Content Marketing</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Email Marketing</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="text-lg font-semibold mb-6">Company</h4>
                    <ul class="space-y-3">
                        <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Case Studies</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="text-lg font-semibold mb-6">Resources</h4>
                    <ul class="space-y-3">
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Marketing Guides</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">SEO Tools</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Webinars</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
                    </ul>
                </div>
            </div>
            <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
                <p class="text-gray-400 mb-4 md:mb-0">© 2023 Nexus Digital. All rights reserved.</p>
                <div class="flex space-x-6">
                    <a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
                    <a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
                    <a href="#" class="text-gray-400 hover:text-white transition">Sitemap</a>
                </div>
            </div>
        </div>
    </footer>

    <script>
        // Initialize AOS
        AOS.init({
            duration: 800,
            easing: 'ease-in-out',
            once: true
        });
        
        // Initialize Vanta.js
        VANTA.GLOBE({
            el: "#vanta-bg",
            mouseControls: true,
            touchControls: true,
            gyroControls: false,
            minHeight: 200.00,
            minWidth: 200.00,
            scale: 1.00,
            scaleMobile: 1.00,
            color: 0x7c3aed,
            backgroundColor: 0x3b82f6,
            size: 0.8
        });
        
        // Initialize Feather Icons
        feather.replace();
        
        // Mobile menu toggle
        document.querySelector('.mobile-menu-button').addEventListener('click', function() {
            // You would implement mobile menu functionality here
            alert('Mobile menu would open here in a full implementation');
        });
    </script>
</body>
</html>