dablack commited on
Commit
5da203d
·
verified ·
1 Parent(s): bda9993

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +408 -356
  2. prompts.txt +3 -1
index.html CHANGED
@@ -21,7 +21,24 @@
21
  700: '#06101C',
22
  800: '#020C15',
23
  900: '#00080F',
 
 
 
 
 
 
 
 
 
 
 
24
  }
 
 
 
 
 
 
25
  }
26
  }
27
  }
@@ -29,43 +46,72 @@
29
  </script>
30
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
31
  <style>
32
- .video-background {
33
- position: relative;
34
- width: 100%;
35
- height: 100vh;
36
- overflow: hidden;
37
  }
38
 
39
- .video-background video {
40
- position: absolute;
41
- top: 50%;
42
- left: 50%;
43
- transform: translate(-50%, -50%);
44
- min-width: 100%;
45
- min-height: 100%;
46
- width: auto;
47
- height: auto;
48
- z-index: 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  }
50
 
51
- .video-overlay {
52
  position: absolute;
53
  top: 0;
54
  left: 0;
55
  width: 100%;
56
  height: 100%;
57
- background-color: rgba(0, 0, 0, 0.6);
58
- z-index: 2;
59
  }
60
 
61
- .hero-content {
62
- position: relative;
63
- z-index: 3;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  }
65
 
66
- .service-card:hover {
67
- transform: translateY(-10px);
68
- box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
69
  }
70
 
71
  .tab-content {
@@ -74,32 +120,15 @@
74
 
75
  .tab-content.active {
76
  display: block;
77
- animation: fadeIn 0.5s ease-in-out;
78
- }
79
-
80
- @keyframes fadeIn {
81
- from { opacity: 0; }
82
- to { opacity: 1; }
83
  }
84
 
85
  .scroll-down-arrow {
86
- animation: bounce 2s infinite;
87
- }
88
-
89
- @keyframes bounce {
90
- 0%, 20%, 50%, 80%, 100% {
91
- transform: translateY(0);
92
- }
93
- 40% {
94
- transform: translateY(-20px);
95
- }
96
- 60% {
97
- transform: translateY(-10px);
98
- }
99
  }
100
 
101
  .section {
102
- scroll-margin-top: 80px;
103
  }
104
 
105
  .fade-in {
@@ -111,185 +140,242 @@
111
  opacity: 1;
112
  }
113
 
114
- .hero-bg {
115
- background-image: url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
116
- background-size: cover;
117
- background-position: center;
118
- background-repeat: no-repeat;
119
- height: 100vh;
120
  position: relative;
 
121
  }
122
 
123
- .hero-overlay {
 
124
  position: absolute;
125
- top: 0;
126
  left: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
  width: 100%;
128
  height: 100%;
129
- background-color: rgba(0, 0, 0, 0.6);
 
 
130
  }
131
-
132
- /* Dark mode overrides */
133
- .dark .dark\:bg-dark-900 {
134
- background-color: #0E1829;
135
  }
136
 
137
- .dark .dark\:bg-dark-800 {
138
- background-color: #121C30;
 
 
 
139
  }
140
 
141
- .dark .dark\:bg-dark-700 {
142
- background-color: #162036;
 
 
143
  }
144
 
145
- .dark .dark\:text-gray-200 {
 
 
 
 
 
 
 
146
  color: #E5E7EB;
 
 
147
  }
148
 
149
- .dark .dark\:text-gray-300 {
150
- color: #D1D5DB;
 
 
151
  }
152
 
153
- .dark .dark\:border-gray-700 {
154
- border-color: #374151;
 
155
  }
156
 
157
- .dark .dark\:shadow-dark-xl {
158
- box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.15);
 
 
 
 
 
 
 
 
 
 
159
  }
160
  </style>
161
  </head>
162
- <body class="bg-gray-50 font-sans dark:bg-dark-900 dark:text-gray-200">
163
  <!-- Dark Mode Toggle -->
164
  <div class="fixed bottom-6 right-6 z-50">
165
- <button id="darkModeToggle" class="bg-gray-800 dark:bg-gray-600 text-white p-3 rounded-full shadow-lg hover:bg-gray-700 dark:hover:bg-gray-500 transition">
166
  <i class="fas fa-moon dark:hidden"></i>
167
  <i class="fas fa-sun hidden dark:block"></i>
168
  </button>
169
  </div>
170
 
171
- <!-- Navigation -->
172
- <nav class="bg-gray-900 dark:bg-dark-700 text-white sticky top-0 z-50 shadow-lg">
173
- <div class="container mx-auto px-6 py-4">
174
- <div class="flex justify-between items-center">
175
- <div class="flex items-center space-x-4">
176
- <div class="w-10 h-10 bg-blue-600 rounded-full flex items-center justify-center">
177
- <i class="fas fa-cube text-white text-xl"></i>
178
- </div>
179
- <span class="text-xl font-bold">Nexus Digital</span>
180
- </div>
181
- <div class="hidden md:flex space-x-8">
182
- <a href="#home-section" class="nav-link font-medium text-blue-400 border-b-2 border-blue-400 pb-1">Home</a>
183
- <a href="#services" class="nav-link font-medium hover:text-blue-400 transition">Services</a>
184
- <a href="#why-us" class="nav-link font-medium hover:text-blue-400 transition">Why Us</a>
185
- <button onclick="changeTab('offers')" class="font-medium hover:text-blue-400 transition">Offers</button>
186
- <button onclick="changeTab('about')" class="font-medium hover:text-blue-400 transition">About</button>
187
- </div>
188
- <button class="md:hidden focus:outline-none" id="mobile-menu-button">
189
- <i class="fas fa-bars text-2xl"></i>
190
- </button>
191
- </div>
192
- <!-- Mobile menu -->
193
- <div class="md:hidden hidden pt-4" id="mobile-menu">
194
- <a href="#home-section" class="block w-full text-left py-2 font-medium text-blue-400">Home</a>
195
- <a href="#services" class="block w-full text-left py-2 font-medium hover:text-blue-400">Services</a>
196
- <a href="#why-us" class="block w-full text-left py-2 font-medium hover:text-blue-400">Why Us</a>
197
- <button onclick="changeTab('offers')" class="block w-full text-left py-2 font-medium hover:text-blue-400">Offers</button>
198
- <button onclick="changeTab('about')" class="block w-full text-left py-2 font-medium hover:text-blue-400">About</button>
199
- </div>
200
  </div>
201
  </nav>
202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  <!-- Home Tab Content -->
204
  <div id="home" class="tab-content active">
205
- <!-- Hero Section with Background Image -->
206
  <section id="home-section" class="hero-bg section">
207
  <div class="hero-overlay"></div>
208
  <div class="hero-content flex items-center justify-center text-center h-full">
209
- <div class="px-6">
210
- <h1 class="text-4xl md:text-6xl font-bold mb-6 text-white">Digital Excellence, Simplified</h1>
211
- <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto text-gray-200">Comprehensive digital solutions tailored to elevate your online presence and drive business growth.</p>
212
  <div class="flex flex-col sm:flex-row justify-center gap-4">
213
- <a href="#services" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105">
214
  Explore Our Services
215
  </a>
216
- <button onclick="changeTab('offers')" class="bg-transparent hover:bg-white hover:text-gray-900 text-white font-bold py-3 px-8 rounded-full border-2 border-white transition duration-300 transform hover:scale-105">
217
  View Packages
218
  </button>
219
  </div>
220
  </div>
221
  </div>
222
  <div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 scroll-down-arrow">
223
- <a href="#services">
224
- <i class="fas fa-chevron-down text-white text-2xl animate-bounce"></i>
225
  </a>
226
  </div>
227
  </section>
228
 
229
  <!-- Services Overview -->
230
- <section id="services" class="py-20 px-6 section fade-in dark:bg-dark-800">
231
  <div class="container mx-auto">
232
- <h2 class="text-3xl md:text-4xl font-bold text-center text-gray-800 dark:text-gray-200 mb-4">Our Comprehensive Solutions</h2>
233
- <p class="text-xl text-center text-gray-600 dark:text-gray-300 mb-16 max-w-3xl mx-auto">Everything you need to establish and grow your digital presence</p>
234
 
235
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
236
  <!-- Service 1 -->
237
- <div class="service-card bg-white dark:bg-dark-700 rounded-xl shadow-lg dark:shadow-dark-xl p-8 transition duration-300">
238
- <div class="w-16 h-16 bg-blue-100 dark:bg-blue-900 rounded-full flex items-center justify-center mb-6">
239
- <i class="fas fa-globe text-blue-600 dark:text-blue-400 text-2xl"></i>
240
  </div>
241
- <h3 class="text-xl font-bold text-gray-800 dark:text-gray-200 mb-3">Multi Page Website Development</h3>
242
- <p class="text-gray-600 dark:text-gray-300">Professional, responsive websites designed to showcase your brand and convert visitors into customers.</p>
243
  </div>
244
 
245
  <!-- Service 2 -->
246
- <div class="service-card bg-white dark:bg-dark-700 rounded-xl shadow-lg dark:shadow-dark-xl p-8 transition duration-300">
247
- <div class="w-16 h-16 bg-blue-100 dark:bg-blue-900 rounded-full flex items-center justify-center mb-6">
248
- <i class="fas fa-search text-blue-600 dark:text-blue-400 text-2xl"></i>
249
  </div>
250
- <h3 class="text-xl font-bold text-gray-800 dark:text-gray-200 mb-3">Enhanced Google Profile Management</h3>
251
- <p class="text-gray-600 dark:text-gray-300">Optimize your Google My Business listing to improve local search visibility and attract more customers.</p>
252
  </div>
253
 
254
  <!-- Service 3 -->
255
- <div class="service-card bg-white dark:bg-dark-700 rounded-xl shadow-lg dark:shadow-dark-xl p-8 transition duration-300">
256
- <div class="w-16 h-16 bg-blue-100 dark:bg-blue-900 rounded-full flex items-center justify-center mb-6">
257
- <i class="fas fa-share-alt text-blue-600 dark:text-blue-400 text-2xl"></i>
258
  </div>
259
- <h3 class="text-xl font-bold text-gray-800 dark:text-gray-200 mb-3">Social Media Starter Kit</h3>
260
- <p class="text-gray-600 dark:text-gray-300">Launch your social media presence with professionally designed profiles and a content strategy.</p>
261
  </div>
262
 
263
  <!-- Service 4 -->
264
- <div class="service-card bg-white dark:bg-dark-700 rounded-xl shadow-lg dark:shadow-dark-xl p-8 transition duration-300">
265
- <div class="w-16 h-16 bg-blue-100 dark:bg-blue-900 rounded-full flex items-center justify-center mb-6">
266
- <i class="fas fa-sync-alt text-blue-600 dark:text-blue-400 text-2xl"></i>
267
  </div>
268
- <h3 class="text-xl font-bold text-gray-800 dark:text-gray-200 mb-3">Unlimited Rapid Monthly Edits</h3>
269
- <p class="text-gray-600 dark:text-gray-300">Keep your content fresh with unlimited updates to your website and digital assets every month.</p>
270
  </div>
271
 
272
  <!-- Service 5 -->
273
- <div class="service-card bg-white dark:bg-dark-700 rounded-xl shadow-lg dark:shadow-dark-xl p-8 transition duration-300">
274
- <div class="w-16 h-16 bg-blue-100 dark:bg-blue-900 rounded-full flex items-center justify-center mb-6">
275
- <i class="fas fa-link text-blue-600 dark:text-blue-400 text-2xl"></i>
276
  </div>
277
- <h3 class="text-xl font-bold text-gray-800 dark:text-gray-200 mb-3">Free Domain Registration</h3>
278
- <p class="text-gray-600 dark:text-gray-300">Get a professional domain name included with your website package to establish your online identity.</p>
279
  </div>
280
 
281
  <!-- Service 6 -->
282
- <div class="service-card bg-white dark:bg-dark-700 rounded-xl shadow-lg dark:shadow-dark-xl p-8 transition duration-300">
283
- <div class="w-16 h-16 bg-blue-100 dark:bg-blue-900 rounded-full flex items-center justify-center mb-6">
284
- <i class="fas fa-palette text-blue-600 dark:text-blue-400 text-2xl"></i>
285
  </div>
286
- <h3 class="text-xl font-bold text-gray-800 dark:text-gray-200 mb-3">Custom Logo Design</h3>
287
- <p class="text-gray-600 dark:text-gray-300">Professional logo creation that captures your brand essence and makes a lasting impression.</p>
288
  </div>
289
  </div>
290
 
291
- <div class="text-center mt-16">
292
- <button onclick="changeTab('offers')" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105 inline-flex items-center">
293
  See Our Packages
294
  <i class="fas fa-arrow-right ml-2"></i>
295
  </button>
@@ -298,13 +384,13 @@
298
  </section>
299
 
300
  <!-- Ratings Section -->
301
- <section class="py-16 bg-gray-100 dark:bg-dark-700 px-6 section fade-in">
302
  <div class="container mx-auto">
303
- <h2 class="text-3xl md:text-4xl font-bold text-center text-gray-800 dark:text-gray-200 mb-12">Client Satisfaction</h2>
304
 
305
  <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
306
  <!-- Rating 1 -->
307
- <div class="bg-white dark:bg-dark-600 p-8 rounded-xl shadow-lg dark:shadow-dark-xl text-center">
308
  <div class="text-yellow-400 text-3xl mb-4">
309
  <i class="fas fa-star"></i>
310
  <i class="fas fa-star"></i>
@@ -312,11 +398,11 @@
312
  <i class="fas fa-star"></i>
313
  <i class="fas fa-star"></i>
314
  </div>
315
- <p class="text-gray-600 dark:text-gray-300 text-xl font-medium">98% Satisfaction Rate</p>
316
  </div>
317
 
318
  <!-- Rating 2 -->
319
- <div class="bg-white dark:bg-dark-600 p-8 rounded-xl shadow-lg dark:shadow-dark-xl text-center">
320
  <div class="text-yellow-400 text-3xl mb-4">
321
  <i class="fas fa-star"></i>
322
  <i class="fas fa-star"></i>
@@ -324,11 +410,11 @@
324
  <i class="fas fa-star"></i>
325
  <i class="fas fa-star"></i>
326
  </div>
327
- <p class="text-gray-600 dark:text-gray-300 text-xl font-medium">95% Repeat Business</p>
328
  </div>
329
 
330
  <!-- Rating 3 -->
331
- <div class="bg-white dark:bg-dark-600 p-8 rounded-xl shadow-lg dark:shadow-dark-xl text-center">
332
  <div class="text-yellow-400 text-3xl mb-4">
333
  <i class="fas fa-star"></i>
334
  <i class="fas fa-star"></i>
@@ -336,61 +422,61 @@
336
  <i class="fas fa-star"></i>
337
  <i class="fas fa-star"></i>
338
  </div>
339
- <p class="text-gray-600 dark:text-gray-300 text-xl font-medium">100% On-Time Delivery</p>
340
  </div>
341
  </div>
342
  </div>
343
  </section>
344
 
345
  <!-- Value Proposition -->
346
- <section id="why-us" class="py-20 bg-white dark:bg-dark-800 px-6 section fade-in">
347
  <div class="container mx-auto">
348
  <div class="flex flex-col lg:flex-row items-center">
349
- <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
350
- <h2 class="text-3xl md:text-4xl font-bold text-gray-800 dark:text-gray-200 mb-6">Why Choose Nexus Digital?</h2>
351
- <p class="text-gray-600 dark:text-gray-300 mb-8 text-lg">We combine technical expertise with strategic thinking to deliver digital solutions that drive real business results.</p>
352
 
353
  <div class="space-y-6">
354
  <div class="flex items-start">
355
- <div class="bg-blue-100 dark:bg-blue-900 p-2 rounded-full mr-4">
356
- <i class="fas fa-bolt text-blue-600 dark:text-blue-400"></i>
357
  </div>
358
  <div>
359
- <h4 class="font-bold text-gray-800 dark:text-gray-200 mb-1">Rapid Implementation</h4>
360
- <p class="text-gray-600 dark:text-gray-300">Get your digital assets up and running quickly without compromising quality.</p>
361
  </div>
362
  </div>
363
 
364
  <div class="flex items-start">
365
- <div class="bg-blue-100 dark:bg-blue-900 p-2 rounded-full mr-4">
366
- <i class="fas fa-headset text-blue-600 dark:text-blue-400"></i>
367
  </div>
368
  <div>
369
- <h4 class="font-bold text-gray-800 dark:text-gray-200 mb-1">Priority Support</h4>
370
- <p class="text-gray-600 dark:text-gray-300">Dedicated support team available to address your needs promptly.</p>
371
  </div>
372
  </div>
373
 
374
  <div class="flex items-start">
375
- <div class="bg-blue-100 dark:bg-blue-900 p-2 rounded-full mr-4">
376
- <i class="fas fa-chart-line text-blue-600 dark:text-blue-400"></i>
377
  </div>
378
  <div>
379
- <h4 class="font-bold text-gray-800 dark:text-gray-200 mb-1">Strategic Guidance</h4>
380
- <p class="text-gray-600 dark:text-gray-300">Quarterly strategy calls to align your digital presence with business objectives.</p>
381
  </div>
382
  </div>
383
  </div>
384
 
385
  <div class="mt-10">
386
- <button onclick="changeTab('about')" class="bg-gray-800 dark:bg-gray-700 hover:bg-gray-900 dark:hover:bg-gray-600 text-white font-medium py-3 px-6 rounded-lg transition duration-300 inline-flex items-center">
387
  Learn More About Us
388
  <i class="fas fa-arrow-right ml-2"></i>
389
  </button>
390
  </div>
391
  </div>
392
 
393
- <div class="lg:w-1/2 bg-white dark:bg-dark-700 rounded-xl shadow-lg dark:shadow-dark-xl overflow-hidden">
394
  <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Team working" class="w-full h-auto">
395
  </div>
396
  </div>
@@ -398,14 +484,14 @@
398
  </section>
399
 
400
  <!-- Newsletter CTA -->
401
- <section class="py-20 bg-gray-900 dark:bg-dark-700 text-white px-6 section fade-in">
402
  <div class="container mx-auto text-center">
403
- <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Business?</h2>
404
- <p class="text-xl mb-10 max-w-2xl mx-auto">Get started with a free consultation to discuss your digital needs</p>
405
 
406
- <div class="max-w-md mx-auto flex flex-col sm:flex-row gap-4">
407
- <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-lg text-gray-900 focus:outline-none focus:ring-2 focus:ring-blue-500">
408
- <button onclick="changeTab('consultation')" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg transition duration-300">
409
  Schedule a Call
410
  </button>
411
  </div>
@@ -415,70 +501,26 @@
415
 
416
  <!-- Offers Tab Content -->
417
  <div id="offers" class="tab-content">
418
- <section class="py-20 px-6 dark:bg-dark-900">
419
  <div class="container mx-auto">
420
- <h1 class="text-4xl font-bold text-center text-gray-800 dark:text-gray-200 mb-4">Our Service Packages</h1>
421
- <p class="text-xl text-center text-gray-600 dark:text-gray-300 mb-16 max-w-3xl mx-auto">Comprehensive digital solutions tailored to your business needs and budget.</p>
422
 
423
- <div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
424
  <!-- Basic Package -->
425
- <div class="bg-white dark:bg-dark-700 rounded-xl shadow-lg dark:shadow-dark-xl overflow-hidden border border-gray-200 dark:border-gray-700 hover:border-blue-500 transition duration-300">
426
- <div class="bg-gray-100 dark:bg-dark-600 p-6">
427
- <h3 class="text-2xl font-bold text-gray-800 dark:text-gray-200 mb-2">Starter Package</h3>
428
- <p class="text-gray-600 dark:text-gray-300 mb-4">Perfect for new businesses establishing their online presence</p>
429
- <div class="flex items-baseline mb-4">
430
- <span class="text-4xl font-bold text-gray-800 dark:text-gray-200">1,099 AED</span>
431
- <span class="ml-2 text-gray-600 dark:text-gray-300">/month</span>
432
  </div>
433
- <button onclick="changeTab('consultation')" class="w-full bg-gray-800 dark:bg-gray-700 hover:bg-gray-900 dark:hover:bg-gray-600 text-white font-medium py-2 px-4 rounded-lg transition duration-300">
434
- Get Started
435
- </button>
436
- </div>
437
- <div class="p-6">
438
- <ul class="space-y-3">
439
- <li class="flex items-center">
440
- <i class="fas fa-check text-green-500 mr-3"></i>
441
- <span class="text-gray-600 dark:text-gray-300">5-Page Website Development</span>
442
- </li>
443
- <li class="flex items-center">
444
- <i class="fas fa-check text-green-500 mr-3"></i>
445
- <span class="text-gray-600 dark:text-gray-300">Google Profile Optimization</span>
446
- </li>
447
- <li class="flex items-center">
448
- <i class="fas fa-check text-green-500 mr-3"></i>
449
- <span class="text-gray-600 dark:text-gray-300">Social Media Setup (2 Platforms)</span>
450
- </li>
451
- <li class="flex items-center">
452
- <i class="fas fa-check text-green-500 mr-3"></i>
453
- <span class="text-gray-600 dark:text-gray-300">5 Monthly Content Updates</span>
454
- </li>
455
- <li class="flex items-center text-gray-400">
456
- <i class="fas fa-times text-gray-400 mr-3"></i>
457
- <span class="text-gray-400">Free Domain (1 Year)</span>
458
- </li>
459
- <li class="flex items-center text-gray-400">
460
- <i class="fas fa-times text-gray-400 mr-3"></i>
461
- <span class="text-gray-400">Custom Logo Design</span>
462
- </li>
463
- </ul>
464
- </div>
465
- </div>
466
-
467
- <!-- Popular Package -->
468
- <div class="bg-white dark:bg-dark-700 rounded-xl shadow-xl dark:shadow-dark-xl overflow-hidden border-2 border-blue-500 transform scale-105 z-10">
469
- <div class="bg-blue-500 text-white p-6">
470
- <div class="flex justify-between items-start">
471
- <div>
472
- <h3 class="text-2xl font-bold mb-2">Growth Package</h3>
473
- <p class="mb-4">Our most popular package for growing businesses</p>
474
- </div>
475
- <span class="bg-white text-blue-500 text-xs font-bold px-3 py-1 rounded-full">POPULAR</span>
476
- </div>
477
- <div class="flex items-baseline mb-4">
478
- <span class="text-4xl font-bold">2,199 AED</span>
479
- <span class="ml-2 opacity-80">/month</span>
480
  </div>
481
- <button onclick="changeTab('consultation')" class="w-full bg-white hover:bg-gray-100 text-blue-500 font-medium py-2 px-4 rounded-lg transition duration-300">
482
  Get Started
483
  </button>
484
  </div>
@@ -486,46 +528,51 @@
486
  <ul class="space-y-3">
487
  <li class="flex items-center">
488
  <i class="fas fa-check text-green-500 mr-3"></i>
489
- <span class="text-gray-600 dark:text-gray-300">10-Page Website Development</span>
490
  </li>
491
  <li class="flex items-center">
492
  <i class="fas fa-check text-green-500 mr-3"></i>
493
- <span class="text-gray-600 dark:text-gray-300">Premium Google Profile Management</span>
494
  </li>
495
  <li class="flex items-center">
496
  <i class="fas fa-check text-green-500 mr-3"></i>
497
- <span class="text-gray-600 dark:text-gray-300">Social Media Starter Kit (4 Platforms)</span>
498
  </li>
499
  <li class="flex items-center">
500
  <i class="fas fa-check text-green-500 mr-3"></i>
501
- <span class="text-gray-600 dark:text-gray-300">Unlimited Monthly Edits</span>
502
  </li>
503
  <li class="flex items-center">
504
  <i class="fas fa-check text-green-500 mr-3"></i>
505
- <span class="text-gray-600 dark:text-gray-300">Free Domain (1 Year)</span>
506
  </li>
507
  <li class="flex items-center">
508
  <i class="fas fa-check text-green-500 mr-3"></i>
509
- <span class="text-gray-600 dark:text-gray-300">Custom Logo Design</span>
510
  </li>
511
  <li class="flex items-center">
512
  <i class="fas fa-check text-green-500 mr-3"></i>
513
- <span class="text-gray-600 dark:text-gray-300">Priority Email Support</span>
514
  </li>
515
  </ul>
516
  </div>
517
  </div>
518
 
519
  <!-- Premium Package -->
520
- <div class="bg-white dark:bg-dark-700 rounded-xl shadow-lg dark:shadow-dark-xl overflow-hidden border border-gray-200 dark:border-gray-700 hover:border-blue-500 transition duration-300">
521
- <div class="bg-gray-100 dark:bg-dark-600 p-6">
522
- <h3 class="text-2xl font-bold text-gray-800 dark:text-gray-200 mb-2">Enterprise Package</h3>
523
- <p class="text-gray-600 dark:text-gray-300 mb-4">For businesses needing comprehensive digital solutions</p>
524
- <div class="flex items-baseline mb-4">
525
- <span class="text-4xl font-bold text-gray-800 dark:text-gray-200">3,699 AED</span>
526
- <span class="ml-2 text-gray-600 dark:text-gray-300">/month</span>
 
527
  </div>
528
- <button onclick="changeTab('consultation')" class="w-full bg-gray-800 dark:bg-gray-700 hover:bg-gray-900 dark:hover:bg-gray-600 text-white font-medium py-2 px-4 rounded-lg transition duration-300">
 
 
 
 
529
  Get Started
530
  </button>
531
  </div>
@@ -533,49 +580,53 @@
533
  <ul class="space-y-3">
534
  <li class="flex items-center">
535
  <i class="fas fa-check text-green-500 mr-3"></i>
536
- <span class="text-gray-600 dark:text-gray-300">Unlimited Page Website Development</span>
537
  </li>
538
  <li class="flex items-center">
539
  <i class="fas fa-check text-green-500 mr-3"></i>
540
- <span class="text-gray-600 dark:text-gray-300">Enhanced Google Profile Management</span>
541
  </li>
542
  <li class="flex items-center">
543
  <i class="fas fa-check text-green-500 mr-3"></i>
544
- <span class="text-gray-600 dark:text-gray-300">Complete Social Media Setup (All Platforms)</span>
545
  </li>
546
  <li class="flex items-center">
547
  <i class="fas fa-check text-green-500 mr-3"></i>
548
- <span class="text-gray-600 dark:text-gray-300">Unlimited Rapid Monthly Edits</span>
549
  </li>
550
  <li class="flex items-center">
551
  <i class="fas fa-check text-green-500 mr-3"></i>
552
- <span class="text-gray-600 dark:text-gray-300">Free Domain (2 Years)</span>
553
  </li>
554
  <li class="flex items-center">
555
  <i class="fas fa-check text-green-500 mr-3"></i>
556
- <span class="text-gray-600 dark:text-gray-300">Premium Logo & Branding Package</span>
557
  </li>
558
  <li class="flex items-center">
559
  <i class="fas fa-check text-green-500 mr-3"></i>
560
- <span class="text-gray-600 dark:text-gray-300">24/7 Priority Support</span>
561
  </li>
562
  <li class="flex items-center">
563
  <i class="fas fa-check text-green-500 mr-3"></i>
564
- <span class="text-gray-600 dark:text-gray-300">Quarterly Strategy Calls</span>
565
  </li>
566
  <li class="flex items-center">
567
  <i class="fas fa-check text-green-500 mr-3"></i>
568
- <span class="text-gray-600 dark:text-gray-300">Monthly Performance Reports</span>
 
 
 
 
569
  </li>
570
  </ul>
571
  </div>
572
  </div>
573
  </div>
574
 
575
- <div class="mt-16 bg-gray-100 dark:bg-dark-700 rounded-xl p-8">
576
- <h3 class="text-2xl font-bold text-gray-800 dark:text-gray-200 mb-4">Not sure which package is right for you?</h3>
577
- <p class="text-gray-600 dark:text-gray-300 mb-6">Our digital consultants can help you determine the perfect solution for your business needs and budget.</p>
578
- <button onclick="changeTab('consultation')" class="bg-blue-600 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg transition duration-300">
579
  Schedule a Free Consultation
580
  </button>
581
  </div>
@@ -585,67 +636,67 @@
585
 
586
  <!-- Consultation Tab Content -->
587
  <div id="consultation" class="tab-content">
588
- <section class="py-20 px-6 dark:bg-dark-900">
589
  <div class="container mx-auto max-w-4xl">
590
- <div class="bg-white dark:bg-dark-700 rounded-xl shadow-lg dark:shadow-dark-xl overflow-hidden">
591
  <div class="md:flex">
592
- <div class="md:w-1/2 bg-blue-600 text-white p-10">
593
  <h2 class="text-3xl font-bold mb-6">Schedule Your Free Consultation</h2>
594
  <p class="mb-8">Let's discuss how we can help grow your business with our digital solutions.</p>
595
 
596
  <div class="space-y-6">
597
  <div class="flex items-start">
598
- <div class="bg-blue-500 p-2 rounded-full mr-4">
599
  <i class="fas fa-calendar-check text-white"></i>
600
  </div>
601
  <div>
602
  <h4 class="font-bold mb-1">30-Minute Call</h4>
603
- <p class="text-blue-100">Convenient online meeting at your preferred time</p>
604
  </div>
605
  </div>
606
 
607
  <div class="flex items-start">
608
- <div class="bg-blue-500 p-2 rounded-full mr-4">
609
  <i class="fas fa-lightbulb text-white"></i>
610
  </div>
611
  <div>
612
  <h4 class="font-bold mb-1">Custom Strategy</h4>
613
- <p class="text-blue-100">Personalized recommendations for your business</p>
614
  </div>
615
  </div>
616
 
617
  <div class="flex items-start">
618
- <div class="bg-blue-500 p-2 rounded-full mr-4">
619
  <i class="fas fa-question text-white"></i>
620
  </div>
621
  <div>
622
  <h4 class="font-bold mb-1">No Obligation</h4>
623
- <p class="text-blue-100">Just helpful advice with no pressure to buy</p>
624
  </div>
625
  </div>
626
  </div>
627
  </div>
628
 
629
  <div class="md:w-1/2 p-10">
630
- <h3 class="text-2xl font-bold text-gray-800 dark:text-gray-200 mb-6">Book Your Slot</h3>
631
  <form>
632
  <div class="mb-4">
633
- <label class="block text-gray-700 dark:text-gray-300 mb-2" for="name">Full Name</label>
634
- <input type="text" id="name" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 dark:bg-dark-600 dark:border-gray-700">
635
  </div>
636
  <div class="mb-4">
637
- <label class="block text-gray-700 dark:text-gray-300 mb-2" for="email">Email Address</label>
638
- <input type="email" id="email" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 dark:bg-dark-600 dark:border-gray-700">
639
  </div>
640
  <div class="mb-4">
641
- <label class="block text-gray-700 dark:text-gray-300 mb-2" for="phone">Phone Number</label>
642
- <input type="tel" id="phone" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 dark:bg-dark-600 dark:border-gray-700">
643
  </div>
644
  <div class="mb-6">
645
- <label class="block text-gray-700 dark:text-gray-300 mb-2" for="date">Preferred Date & Time</label>
646
- <input type="datetime-local" id="date" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 dark:bg-dark-600 dark:border-gray-700">
647
  </div>
648
- <button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300">
649
  Schedule Consultation
650
  </button>
651
  </form>
@@ -658,61 +709,61 @@
658
 
659
  <!-- About Us Tab Content -->
660
  <div id="about" class="tab-content">
661
- <section class="py-20 px-6 dark:bg-dark-900">
662
  <div class="container mx-auto">
663
  <div class="flex flex-col lg:flex-row items-center mb-20">
664
- <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
665
- <h1 class="text-4xl font-bold text-gray-800 dark:text-gray-200 mb-6">Our Story</h1>
666
- <p class="text-gray-600 dark:text-gray-300 mb-6 text-lg">
667
  Founded in 2018, Nexus Digital Solutions began with a simple mission: to help businesses of all sizes establish and grow their digital presence without the complexity and high costs typically associated with digital transformation.
668
  </p>
669
- <p class="text-gray-600 dark:text-gray-300 mb-6 text-lg">
670
  What started as a small team of digital enthusiasts has grown into a full-service digital solutions provider serving clients across multiple industries. Our approach combines technical expertise with strategic thinking to deliver results that matter.
671
  </p>
672
- <div class="bg-blue-100 dark:bg-blue-900 p-6 rounded-lg">
673
- <p class="text-blue-800 dark:text-blue-200 font-medium">
674
  "We believe in making digital excellence accessible to every business, regardless of size or technical expertise."
675
  </p>
676
  </div>
677
  </div>
678
- <div class="lg:w-1/2 bg-white dark:bg-dark-700 rounded-xl shadow-lg dark:shadow-dark-xl overflow-hidden">
679
  <img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Our team" class="w-full h-auto">
680
  </div>
681
  </div>
682
 
683
  <div class="py-16">
684
- <h2 class="text-3xl font-bold text-center text-gray-800 dark:text-gray-200 mb-12">Our Core Values</h2>
685
 
686
  <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
687
- <div class="bg-white dark:bg-dark-700 p-8 rounded-xl shadow-lg dark:shadow-dark-xl">
688
- <div class="w-14 h-14 bg-blue-100 dark:bg-blue-900 rounded-full flex items-center justify-center mb-6">
689
- <i class="fas fa-lightbulb text-blue-600 dark:text-blue-400 text-xl"></i>
690
  </div>
691
- <h3 class="text-xl font-bold text-gray-800 dark:text-gray-200 mb-3">Innovation</h3>
692
- <p class="text-gray-600 dark:text-gray-300">We constantly explore new technologies and strategies to keep our clients ahead of the curve.</p>
693
  </div>
694
 
695
- <div class="bg-white dark:bg-dark-700 p-8 rounded-xl shadow-lg dark:shadow-dark-xl">
696
- <div class="w-14 h-14 bg-blue-100 dark:bg-blue-900 rounded-full flex items-center justify-center mb-6">
697
- <i class="fas fa-handshake text-blue-600 dark:text-blue-400 text-xl"></i>
698
  </div>
699
- <h3 class="text-xl font-bold text-gray-800 dark:text-gray-200 mb-3">Integrity</h3>
700
- <p class="text-gray-600 dark:text-gray-300">We build trust through transparency, honesty, and delivering on our promises.</p>
701
  </div>
702
 
703
- <div class="bg-white dark:bg-dark-700 p-8 rounded-xl shadow-lg dark:shadow-dark-xl">
704
- <div class="w-14 h-14 bg-blue-100 dark:bg-blue-900 rounded-full flex items-center justify-center mb-6">
705
- <i class="fas fa-heart text-blue-600 dark:text-blue-400 text-xl"></i>
706
  </div>
707
- <h3 class="text-xl font-bold text-gray-800 dark:text-gray-200 mb-3">Client-Centric</h3>
708
- <p class="text-gray-600 dark:text-gray-300">Your success is our success. We tailor solutions to your unique needs and goals.</p>
709
  </div>
710
  </div>
711
  </div>
712
 
713
- <div class="mt-16 text-center">
714
- <h2 class="text-3xl font-bold text-gray-800 dark:text-gray-200 mb-6">Ready to Transform Your Digital Presence?</h2>
715
- <button onclick="changeTab('offers')" class="bg-blue-600 hover:bg-blue-700 text-white font-medium py-3 px-8 rounded-lg transition duration-300 inline-flex items-center">
716
  Explore Our Services
717
  <i class="fas fa-arrow-right ml-2"></i>
718
  </button>
@@ -722,82 +773,82 @@
722
  </div>
723
 
724
  <!-- Footer -->
725
- <footer class="bg-gray-900 dark:bg-dark-700 text-white py-12 px-6">
726
  <div class="container mx-auto">
727
  <div class="grid grid-cols-1 md:grid-cols-4 gap-10">
728
  <div>
729
  <div class="flex items-center space-x-3 mb-6">
730
- <div class="w-10 h-10 bg-blue-600 rounded-full flex items-center justify-center">
731
  <i class="fas fa-cube text-white text-xl"></i>
732
  </div>
733
- <span class="text-xl font-bold">Nexus Digital</span>
734
  </div>
735
- <p class="text-gray-400 mb-6">
736
  Comprehensive digital solutions to elevate your online presence and drive business growth.
737
  </p>
738
  <div class="flex space-x-4">
739
- <a href="#" class="text-gray-400 hover:text-white transition">
740
  <i class="fab fa-facebook-f"></i>
741
  </a>
742
- <a href="#" class="text-gray-400 hover:text-white transition">
743
  <i class="fab fa-twitter"></i>
744
  </a>
745
- <a href="#" class="text-gray-400 hover:text-white transition">
746
  <i class="fab fa-linkedin-in"></i>
747
  </a>
748
- <a href="#" class="text-gray-400 hover:text-white transition">
749
  <i class="fab fa-instagram"></i>
750
  </a>
751
  </div>
752
  </div>
753
 
754
  <div>
755
- <h3 class="text-lg font-bold mb-6">Services</h3>
756
  <ul class="space-y-3">
757
- <li><a href="#" class="text-gray-400 hover:text-white transition">Website Development</a></li>
758
- <li><a href="#" class="text-gray-400 hover:text-white transition">Google Profile Management</a></li>
759
- <li><a href="#" class="text-gray-400 hover:text-white transition">Social Media Solutions</a></li>
760
- <li><a href="#" class="text-gray-400 hover:text-white transition">Content Updates</a></li>
761
- <li><a href="#" class="text-gray-400 hover:text-white transition">Branding & Logo Design</a></li>
762
  </ul>
763
  </div>
764
 
765
  <div>
766
- <h3 class="text-lg font-bold mb-6">Company</h3>
767
  <ul class="space-y-3">
768
- <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
769
- <li><a href="#" class="text-gray-400 hover:text-white transition">Our Team</a></li>
770
- <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
771
- <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
772
- <li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>
773
  </ul>
774
  </div>
775
 
776
  <div>
777
- <h3 class="text-lg font-bold mb-6">Contact</h3>
778
  <ul class="space-y-3">
779
  <li class="flex items-start">
780
- <i class="fas fa-map-marker-alt text-gray-400 mt-1 mr-3"></i>
781
- <span class="text-gray-400">123 Digital Lane, Suite 100<br>San Francisco, CA 94103</span>
782
  </li>
783
  <li class="flex items-center">
784
- <i class="fas fa-phone-alt text-gray-400 mr-3"></i>
785
- <span class="text-gray-400">(555) 123-4567</span>
786
  </li>
787
  <li class="flex items-center">
788
- <i class="fas fa-envelope text-gray-400 mr-3"></i>
789
- <span class="text-gray-400">info@nexusdigital.com</span>
790
  </li>
791
  </ul>
792
  </div>
793
  </div>
794
 
795
- <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
796
- <p class="text-gray-400 mb-4 md:mb-0">© 2023 Nexus Digital Solutions. All rights reserved.</p>
797
  <div class="flex space-x-6">
798
- <a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
799
- <a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
800
- <a href="#" class="text-gray-400 hover:text-white transition">Cookie Policy</a>
801
  </div>
802
  </div>
803
  </div>
@@ -814,25 +865,25 @@
814
  // Show selected tab content
815
  document.getElementById(tabId).classList.add('active');
816
 
817
- // Update tab links
818
- document.querySelectorAll('.nav-link').forEach(link => {
819
- link.classList.remove('text-blue-400', 'border-b-2', 'border-blue-400', 'pb-1');
820
- });
821
-
822
  // Scroll to top
823
  window.scrollTo(0, 0);
824
  }
825
 
826
- // Mobile menu toggle
827
- document.getElementById('mobile-menu-button').addEventListener('click', function() {
828
- const menu = document.getElementById('mobile-menu');
829
- if (menu.classList.contains('hidden')) {
830
- menu.classList.remove('hidden');
831
- } else {
832
- menu.classList.add('hidden');
833
- }
834
  });
835
 
 
 
 
 
 
836
  // Smooth scrolling for anchor links
837
  document.querySelectorAll('a[href^="#"]').forEach(anchor => {
838
  anchor.addEventListener('click', function(e) {
@@ -882,6 +933,7 @@
882
 
883
  // Update active nav link on scroll
884
  const sections = document.querySelectorAll('.section');
 
885
 
886
  window.addEventListener('scroll', () => {
887
  let current = '';
@@ -895,10 +947,10 @@
895
  }
896
  });
897
 
898
- document.querySelectorAll('.nav-link').forEach(link => {
899
- link.classList.remove('text-blue-400', 'border-b-2', 'border-blue-400', 'pb-1');
900
  if (link.getAttribute('href') === `#${current}`) {
901
- link.classList.add('text-blue-400', 'border-b-2', 'border-blue-400', 'pb-1');
902
  }
903
  });
904
  });
 
21
  700: '#06101C',
22
  800: '#020C15',
23
  900: '#00080F',
24
+ },
25
+ futuristic: {
26
+ 100: '#E5E7EB',
27
+ 200: '#D1D5DB',
28
+ 300: '#9CA3AF',
29
+ 400: '#6B7280',
30
+ 500: '#4B5563',
31
+ 600: '#374151',
32
+ 700: '#1F2937',
33
+ 800: '#111827',
34
+ 900: '#030712',
35
  }
36
+ },
37
+ animation: {
38
+ 'slide-in': 'slideIn 0.5s ease-out forwards',
39
+ 'slide-up': 'slideUp 0.5s ease-out forwards',
40
+ 'glow': 'glow 2s ease-in-out infinite alternate',
41
+ 'float': 'float 6s ease-in-out infinite',
42
  }
43
  }
44
  }
 
46
  </script>
47
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
48
  <style>
49
+ @keyframes slideIn {
50
+ from { transform: translateX(-100%); opacity: 0; }
51
+ to { transform: translateX(0); opacity: 1; }
 
 
52
  }
53
 
54
+ @keyframes slideUp {
55
+ from { transform: translateY(50px); opacity: 0; }
56
+ to { transform: translateY(0); opacity: 1; }
57
+ }
58
+
59
+ @keyframes glow {
60
+ from { box-shadow: 0 0 5px rgba(156, 163, 175, 0.5); }
61
+ to { box-shadow: 0 0 20px rgba(156, 163, 175, 0.8); }
62
+ }
63
+
64
+ @keyframes float {
65
+ 0% { transform: translateY(0px); }
66
+ 50% { transform: translateY(-10px); }
67
+ 100% { transform: translateY(0px); }
68
+ }
69
+
70
+ .hero-bg {
71
+ background-image: url('https://images.unsplash.com/photo-1639762681057-408e52192e55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80');
72
+ background-size: cover;
73
+ background-position: center;
74
+ background-repeat: no-repeat;
75
+ height: 100vh;
76
+ position: relative;
77
  }
78
 
79
+ .hero-overlay {
80
  position: absolute;
81
  top: 0;
82
  left: 0;
83
  width: 100%;
84
  height: 100%;
85
+ background: linear-gradient(to bottom, rgba(3, 7, 18, 0.9), rgba(3, 7, 18, 0.7));
 
86
  }
87
 
88
+ .floating-nav {
89
+ backdrop-filter: blur(10px);
90
+ background-color: rgba(75, 85, 99, 0.2);
91
+ border: 1px solid rgba(156, 165, 175, 0.1);
92
+ box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
93
+ border-radius: 0;
94
+ padding: 0.5rem 2rem;
95
+ width: 80%;
96
+ max-width: 1000px;
97
+ }
98
+
99
+ .tech-card {
100
+ border: 1px solid rgba(156, 163, 175, 0.2);
101
+ background: linear-gradient(145deg, rgba(31, 41, 55, 0.7), rgba(17, 24, 39, 0.9));
102
+ backdrop-filter: blur(5px);
103
+ transition: all 0.3s ease;
104
+ }
105
+
106
+ .tech-card:hover {
107
+ transform: translateY(-5px);
108
+ border-color: rgba(156, 163, 175, 0.5);
109
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
110
  }
111
 
112
+ .tech-divider {
113
+ height: 1px;
114
+ background: linear-gradient(to right, transparent, rgba(156, 163, 175, 0.5), transparent);
115
  }
116
 
117
  .tab-content {
 
120
 
121
  .tab-content.active {
122
  display: block;
123
+ animation: slideUp 0.5s ease-out;
 
 
 
 
 
124
  }
125
 
126
  .scroll-down-arrow {
127
+ animation: float 2s ease-in-out infinite;
 
 
 
 
 
 
 
 
 
 
 
 
128
  }
129
 
130
  .section {
131
+ scroll-margin-top: 100px;
132
  }
133
 
134
  .fade-in {
 
140
  opacity: 1;
141
  }
142
 
143
+ .glow-text {
144
+ text-shadow: 0 0 8px rgba(229, 231, 235, 0.3);
145
+ }
146
+
147
+ .floating-menu-item {
 
148
  position: relative;
149
+ overflow: hidden;
150
  }
151
 
152
+ .floating-menu-item::after {
153
+ content: '';
154
  position: absolute;
155
+ bottom: 0;
156
  left: 0;
157
+ width: 0;
158
+ height: 1px;
159
+ background: linear-gradient(to right, transparent, #9CA3AF, transparent);
160
+ transition: width 0.3s ease;
161
+ }
162
+
163
+ .floating-menu-item:hover::after {
164
+ width: 100%;
165
+ }
166
+
167
+ .active-menu-item::after {
168
+ width: 100%;
169
+ }
170
+
171
+ .tech-button {
172
+ position: relative;
173
+ overflow: hidden;
174
+ z-index: 1;
175
+ border-radius: 0;
176
+ }
177
+
178
+ .tech-button::before {
179
+ content: '';
180
+ position: absolute;
181
+ top: 0;
182
+ left: -100%;
183
  width: 100%;
184
  height: 100%;
185
+ background: linear-gradient(90deg, transparent, rgba(156, 163, 175, 0.2), transparent);
186
+ transition: all 0.5s ease;
187
+ z-index: -1;
188
  }
189
+
190
+ .tech-button:hover::before {
191
+ left: 100%;
 
192
  }
193
 
194
+ .tech-package {
195
+ background: linear-gradient(145deg, rgba(31, 41, 55, 0.7), rgba(17, 24, 39, 0.9));
196
+ border: 1px solid rgba(156, 163, 175, 0.2);
197
+ transition: all 0.3s ease;
198
+ border-radius: 0;
199
  }
200
 
201
+ .tech-package:hover {
202
+ transform: translateY(-5px);
203
+ border-color: rgba(156, 163, 175, 0.5);
204
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
205
  }
206
 
207
+ .tech-package-popular {
208
+ border: 1px solid rgba(156, 163, 175, 0.5);
209
+ box-shadow: 0 0 20px rgba(156, 163, 175, 0.3);
210
+ }
211
+
212
+ .tech-form-input {
213
+ background-color: rgba(31, 41, 55, 0.5);
214
+ border: 1px solid rgba(156, 163, 175, 0.2);
215
  color: #E5E7EB;
216
+ transition: all 0.3s ease;
217
+ border-radius: 0;
218
  }
219
 
220
+ .tech-form-input:focus {
221
+ outline: none;
222
+ border-color: rgba(156, 163, 175, 0.5);
223
+ box-shadow: 0 0 10px rgba(156, 163, 175, 0.3);
224
  }
225
 
226
+ .tech-footer {
227
+ background: linear-gradient(to bottom, rgba(17, 24, 39, 0.95), rgba(3, 7, 18, 0.95));
228
+ border-top: 1px solid rgba(156, 163, 175, 0.2);
229
  }
230
 
231
+ .premium-highlight {
232
+ position: absolute;
233
+ top: -10px;
234
+ right: -10px;
235
+ background-color: #f59e0b;
236
+ color: #111827;
237
+ font-weight: bold;
238
+ padding: 0.25rem 0.75rem;
239
+ font-size: 0.75rem;
240
+ border-radius: 0;
241
+ transform: rotate(15deg);
242
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
243
  }
244
  </style>
245
  </head>
246
+ <body class="bg-futuristic-900 text-futuristic-100 font-sans">
247
  <!-- Dark Mode Toggle -->
248
  <div class="fixed bottom-6 right-6 z-50">
249
+ <button id="darkModeToggle" class="bg-futuristic-800 dark:bg-futuristic-600 text-white p-3 rounded-full shadow-lg hover:bg-futuristic-700 dark:hover:bg-futuristic-500 transition tech-button">
250
  <i class="fas fa-moon dark:hidden"></i>
251
  <i class="fas fa-sun hidden dark:block"></i>
252
  </button>
253
  </div>
254
 
255
+ <!-- Floating Island Navigation -->
256
+ <nav class="floating-nav mx-auto fixed top-6 left-1/2 transform -translate-x-1/2 z-50 transition-all duration-300">
257
+ <div class="flex items-center justify-center space-x-12">
258
+ <a href="#home-section" class="floating-menu-item active-menu-item text-sm font-medium text-futuristic-200 hover:text-white transition">Home</a>
259
+ <a href="#services" class="floating-menu-item text-sm font-medium text-futuristic-300 hover:text-white transition">Services</a>
260
+ <a href="#why-us" class="floating-menu-item text-sm font-medium text-futuristic-300 hover:text-white transition">Why Us</a>
261
+ <button onclick="changeTab('offers')" class="floating-menu-item text-sm font-medium text-futuristic-300 hover:text-white transition">Offers</button>
262
+ <button onclick="changeTab('about')" class="floating-menu-item text-sm font-medium text-futuristic-300 hover:text-white transition">About</button>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  </div>
264
  </nav>
265
 
266
+ <!-- Mobile Menu Button (hidden on desktop) -->
267
+ <div class="md:hidden fixed top-6 right-6 z-50">
268
+ <button id="mobileMenuButton" class="bg-futuristic-800 text-white p-3 rounded-full shadow-lg tech-button">
269
+ <i class="fas fa-bars"></i>
270
+ </button>
271
+ </div>
272
+
273
+ <!-- Mobile Menu (hidden by default) -->
274
+ <div id="mobileMenu" class="fixed inset-0 bg-futuristic-900 bg-opacity-95 z-40 flex items-center justify-center hidden">
275
+ <div class="text-center">
276
+ <button id="closeMobileMenu" class="absolute top-6 right-6 text-white text-2xl">
277
+ <i class="fas fa-times"></i>
278
+ </button>
279
+ <div class="space-y-8">
280
+ <a href="#home-section" class="block text-2xl font-medium text-futuristic-200 hover:text-white transition" onclick="closeMobileMenu()">Home</a>
281
+ <a href="#services" class="block text-2xl font-medium text-futuristic-300 hover:text-white transition" onclick="closeMobileMenu()">Services</a>
282
+ <a href="#why-us" class="block text-2xl font-medium text-futuristic-300 hover:text-white transition" onclick="closeMobileMenu()">Why Us</a>
283
+ <button onclick="changeTab('offers'); closeMobileMenu();" class="block text-2xl font-medium text-futuristic-300 hover:text-white transition w-full">Offers</button>
284
+ <button onclick="changeTab('about'); closeMobileMenu();" class="block text-2xl font-medium text-futuristic-300 hover:text-white transition w-full">About</button>
285
+ </div>
286
+ </div>
287
+ </div>
288
+
289
  <!-- Home Tab Content -->
290
  <div id="home" class="tab-content active">
291
+ <!-- Hero Section -->
292
  <section id="home-section" class="hero-bg section">
293
  <div class="hero-overlay"></div>
294
  <div class="hero-content flex items-center justify-center text-center h-full">
295
+ <div class="px-6 animate-slide-in">
296
+ <h1 class="text-4xl md:text-6xl font-bold mb-6 text-white glow-text">Digital Excellence, <span class="text-futuristic-300">Simplified</span></h1>
297
+ <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto text-futuristic-300">Comprehensive digital solutions tailored to elevate your online presence and drive business growth.</p>
298
  <div class="flex flex-col sm:flex-row justify-center gap-4">
299
+ <a href="#services" class="bg-futuristic-600 hover:bg-futuristic-500 text-white font-bold py-3 px-8 transition duration-300 tech-button">
300
  Explore Our Services
301
  </a>
302
+ <button onclick="changeTab('offers')" class="bg-transparent hover:bg-futuristic-100 hover:text-futuristic-900 text-white font-bold py-3 px-8 border-2 border-futuristic-300 transition duration-300 tech-button">
303
  View Packages
304
  </button>
305
  </div>
306
  </div>
307
  </div>
308
  <div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 scroll-down-arrow">
309
+ <a href="#services" class="text-futuristic-300 hover:text-white transition">
310
+ <i class="fas fa-chevron-down text-2xl"></i>
311
  </a>
312
  </div>
313
  </section>
314
 
315
  <!-- Services Overview -->
316
+ <section id="services" class="py-20 px-6 section fade-in">
317
  <div class="container mx-auto">
318
+ <h2 class="text-3xl md:text-4xl font-bold text-center text-futuristic-100 mb-4 animate-slide-up">Our Comprehensive Solutions</h2>
319
+ <p class="text-xl text-center text-futuristic-300 mb-16 max-w-3xl mx-auto animate-slide-up">Everything you need to establish and grow your digital presence</p>
320
 
321
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
322
  <!-- Service 1 -->
323
+ <div class="tech-card p-8 animate-slide-up" style="animation-delay: 0.1s">
324
+ <div class="w-16 h-16 bg-futuristic-800 flex items-center justify-center mb-6">
325
+ <i class="fas fa-globe text-futuristic-300 text-2xl"></i>
326
  </div>
327
+ <h3 class="text-xl font-bold text-futuristic-100 mb-3">Multi Page Website Development</h3>
328
+ <p class="text-futuristic-300">Professional, responsive websites designed to showcase your brand and convert visitors into customers.</p>
329
  </div>
330
 
331
  <!-- Service 2 -->
332
+ <div class="tech-card p-8 animate-slide-up" style="animation-delay: 0.2s">
333
+ <div class="w-16 h-16 bg-futuristic-800 flex items-center justify-center mb-6">
334
+ <i class="fas fa-search text-futuristic-300 text-2xl"></i>
335
  </div>
336
+ <h3 class="text-xl font-bold text-futuristic-100 mb-3">Enhanced Google Profile Management</h3>
337
+ <p class="text-futuristic-300">Optimize your Google My Business listing to improve local search visibility and attract more customers.</p>
338
  </div>
339
 
340
  <!-- Service 3 -->
341
+ <div class="tech-card p-8 animate-slide-up" style="animation-delay: 0.3s">
342
+ <div class="w-16 h-16 bg-futuristic-800 flex items-center justify-center mb-6">
343
+ <i class="fas fa-share-alt text-futuristic-300 text-2xl"></i>
344
  </div>
345
+ <h3 class="text-xl font-bold text-futuristic-100 mb-3">Social Media Starter Kit</h3>
346
+ <p class="text-futuristic-300">Launch your social media presence with professionally designed profiles and a content strategy.</p>
347
  </div>
348
 
349
  <!-- Service 4 -->
350
+ <div class="tech-card p-8 animate-slide-up" style="animation-delay: 0.4s">
351
+ <div class="w-16 h-16 bg-futuristic-800 flex items-center justify-center mb-6">
352
+ <i class="fas fa-sync-alt text-futuristic-300 text-2xl"></i>
353
  </div>
354
+ <h3 class="text-xl font-bold text-futuristic-100 mb-3">Unlimited Rapid Monthly Edits</h3>
355
+ <p class="text-futuristic-300">Keep your content fresh with unlimited updates to your website and digital assets every month.</p>
356
  </div>
357
 
358
  <!-- Service 5 -->
359
+ <div class="tech-card p-8 animate-slide-up" style="animation-delay: 0.5s">
360
+ <div class="w-16 h-16 bg-futuristic-800 flex items-center justify-center mb-6">
361
+ <i class="fas fa-link text-futuristic-300 text-2xl"></i>
362
  </div>
363
+ <h3 class="text-xl font-bold text-futuristic-100 mb-3">Free Domain Registration</h3>
364
+ <p class="text-futuristic-300">Get a professional domain name included with your website package to establish your online identity.</p>
365
  </div>
366
 
367
  <!-- Service 6 -->
368
+ <div class="tech-card p-8 animate-slide-up" style="animation-delay: 0.6s">
369
+ <div class="w-16 h-16 bg-futuristic-800 flex items-center justify-center mb-6">
370
+ <i class="fas fa-palette text-futuristic-300 text-2xl"></i>
371
  </div>
372
+ <h3 class="text-xl font-bold text-futuristic-100 mb-3">Custom Logo Design</h3>
373
+ <p class="text-futuristic-300">Professional logo creation that captures your brand essence and makes a lasting impression.</p>
374
  </div>
375
  </div>
376
 
377
+ <div class="text-center mt-16 animate-slide-up" style="animation-delay: 0.7s">
378
+ <button onclick="changeTab('offers')" class="bg-futuristic-600 hover:bg-futuristic-500 text-white font-bold py-3 px-8 transition duration-300 tech-button inline-flex items-center">
379
  See Our Packages
380
  <i class="fas fa-arrow-right ml-2"></i>
381
  </button>
 
384
  </section>
385
 
386
  <!-- Ratings Section -->
387
+ <section class="py-16 px-6 section fade-in bg-futuristic-800">
388
  <div class="container mx-auto">
389
+ <h2 class="text-3xl md:text-4xl font-bold text-center text-futuristic-100 mb-12 animate-slide-up">Client Satisfaction</h2>
390
 
391
  <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
392
  <!-- Rating 1 -->
393
+ <div class="tech-card p-8 text-center animate-slide-up" style="animation-delay: 0.1s">
394
  <div class="text-yellow-400 text-3xl mb-4">
395
  <i class="fas fa-star"></i>
396
  <i class="fas fa-star"></i>
 
398
  <i class="fas fa-star"></i>
399
  <i class="fas fa-star"></i>
400
  </div>
401
+ <p class="text-futuristic-300 text-xl font-medium">98% Satisfaction Rate</p>
402
  </div>
403
 
404
  <!-- Rating 2 -->
405
+ <div class="tech-card p-8 text-center animate-slide-up" style="animation-delay: 0.2s">
406
  <div class="text-yellow-400 text-3xl mb-4">
407
  <i class="fas fa-star"></i>
408
  <i class="fas fa-star"></i>
 
410
  <i class="fas fa-star"></i>
411
  <i class="fas fa-star"></i>
412
  </div>
413
+ <p class="text-futuristic-300 text-xl font-medium">95% Repeat Business</p>
414
  </div>
415
 
416
  <!-- Rating 3 -->
417
+ <div class="tech-card p-8 text-center animate-slide-up" style="animation-delay: 0.3s">
418
  <div class="text-yellow-400 text-3xl mb-4">
419
  <i class="fas fa-star"></i>
420
  <i class="fas fa-star"></i>
 
422
  <i class="fas fa-star"></i>
423
  <i class="fas fa-star"></i>
424
  </div>
425
+ <p class="text-futuristic-300 text-xl font-medium">100% On-Time Delivery</p>
426
  </div>
427
  </div>
428
  </div>
429
  </section>
430
 
431
  <!-- Value Proposition -->
432
+ <section id="why-us" class="py-20 px-6 section fade-in bg-futuristic-900">
433
  <div class="container mx-auto">
434
  <div class="flex flex-col lg:flex-row items-center">
435
+ <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12 animate-slide-up">
436
+ <h2 class="text-3xl md:text-4xl font-bold text-futuristic-100 mb-6">Why Choose Nexus Digital?</h2>
437
+ <p class="text-futuristic-300 mb-8 text-lg">We combine technical expertise with strategic thinking to deliver digital solutions that drive real business results.</p>
438
 
439
  <div class="space-y-6">
440
  <div class="flex items-start">
441
+ <div class="bg-futuristic-800 p-2 mr-4">
442
+ <i class="fas fa-bolt text-futuristic-300"></i>
443
  </div>
444
  <div>
445
+ <h4 class="font-bold text-futuristic-100 mb-1">Rapid Implementation</h4>
446
+ <p class="text-futuristic-300">Get your digital assets up and running quickly without compromising quality.</p>
447
  </div>
448
  </div>
449
 
450
  <div class="flex items-start">
451
+ <div class="bg-futuristic-800 p-2 mr-4">
452
+ <i class="fas fa-headset text-futuristic-300"></i>
453
  </div>
454
  <div>
455
+ <h4 class="font-bold text-futuristic-100 mb-1">Priority Support</h4>
456
+ <p class="text-futuristic-300">Dedicated support team available to address your needs promptly.</p>
457
  </div>
458
  </div>
459
 
460
  <div class="flex items-start">
461
+ <div class="bg-futuristic-800 p-2 mr-4">
462
+ <i class="fas fa-chart-line text-futuristic-300"></i>
463
  </div>
464
  <div>
465
+ <h4 class="font-bold text-futuristic-100 mb-1">Strategic Guidance</h4>
466
+ <p class="text-futuristic-300">Quarterly strategy calls to align your digital presence with business objectives.</p>
467
  </div>
468
  </div>
469
  </div>
470
 
471
  <div class="mt-10">
472
+ <button onclick="changeTab('about')" class="bg-futuristic-800 hover:bg-futuristic-700 text-white font-medium py-3 px-6 transition duration-300 tech-button inline-flex items-center">
473
  Learn More About Us
474
  <i class="fas fa-arrow-right ml-2"></i>
475
  </button>
476
  </div>
477
  </div>
478
 
479
+ <div class="lg:w-1/2 tech-card overflow-hidden animate-slide-up" style="animation-delay: 0.2s">
480
  <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Team working" class="w-full h-auto">
481
  </div>
482
  </div>
 
484
  </section>
485
 
486
  <!-- Newsletter CTA -->
487
+ <section class="py-20 px-6 section fade-in bg-futuristic-800">
488
  <div class="container mx-auto text-center">
489
+ <h2 class="text-3xl md:text-4xl font-bold mb-6 text-futuristic-100 animate-slide-up">Ready to Transform Your Business?</h2>
490
+ <p class="text-xl mb-10 max-w-2xl mx-auto text-futuristic-300 animate-slide-up">Get started with a free consultation to discuss your digital needs</p>
491
 
492
+ <div class="max-w-md mx-auto flex flex-col sm:flex-row gap-4 animate-slide-up">
493
+ <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 tech-form-input focus:outline-none">
494
+ <button onclick="changeTab('consultation')" class="bg-futuristic-600 hover:bg-futuristic-500 text-white font-bold py-3 px-6 transition duration-300 tech-button">
495
  Schedule a Call
496
  </button>
497
  </div>
 
501
 
502
  <!-- Offers Tab Content -->
503
  <div id="offers" class="tab-content">
504
+ <section class="py-20 px-6">
505
  <div class="container mx-auto">
506
+ <h1 class="text-4xl font-bold text-center text-futuristic-100 mb-4 animate-slide-up">Our Service Packages</h1>
507
+ <p class="text-xl text-center text-futuristic-300 mb-16 max-w-3xl mx-auto animate-slide-up">Comprehensive digital solutions tailored to your business needs and budget.</p>
508
 
509
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-8 max-w-4xl mx-auto">
510
  <!-- Basic Package -->
511
+ <div class="tech-package overflow-hidden border border-futuristic-700 animate-slide-up" style="animation-delay: 0.1s">
512
+ <div class="bg-futuristic-800 p-6">
513
+ <h3 class="text-2xl font-bold text-futuristic-100 mb-2">Essential Digital Package</h3>
514
+ <p class="text-futuristic-300 mb-4">Perfect for new businesses establishing their online presence</p>
515
+ <div class="mb-4">
516
+ <div class="text-sm text-futuristic-400 mb-1">One-time setup fee</div>
517
+ <div class="text-3xl font-bold text-futuristic-100">659 AED</div>
518
  </div>
519
+ <div class="mb-4">
520
+ <div class="text-sm text-futuristic-400 mb-1">Monthly maintenance</div>
521
+ <div class="text-3xl font-bold text-futuristic-100">349 AED</div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
522
  </div>
523
+ <button onclick="changeTab('consultation')" class="w-full bg-futuristic-700 hover:bg-futuristic-600 text-white font-medium py-2 px-4 transition duration-300 tech-button">
524
  Get Started
525
  </button>
526
  </div>
 
528
  <ul class="space-y-3">
529
  <li class="flex items-center">
530
  <i class="fas fa-check text-green-500 mr-3"></i>
531
+ <span class="text-futuristic-300">Google Business Profile Setup & Optimization</span>
532
  </li>
533
  <li class="flex items-center">
534
  <i class="fas fa-check text-green-500 mr-3"></i>
535
+ <span class="text-futuristic-300">Mobile-Friendly Single Page Website</span>
536
  </li>
537
  <li class="flex items-center">
538
  <i class="fas fa-check text-green-500 mr-3"></i>
539
+ <span class="text-futuristic-300">Custom Domain & Secure Hosting</span>
540
  </li>
541
  <li class="flex items-center">
542
  <i class="fas fa-check text-green-500 mr-3"></i>
543
+ <span class="text-futuristic-300">Weekly Content Updates (additional charges may apply)</span>
544
  </li>
545
  <li class="flex items-center">
546
  <i class="fas fa-check text-green-500 mr-3"></i>
547
+ <span class="text-futuristic-300">Google Review Management System</span>
548
  </li>
549
  <li class="flex items-center">
550
  <i class="fas fa-check text-green-500 mr-3"></i>
551
+ <span class="text-futuristic-300">Monthly Traffic Analytics Report</span>
552
  </li>
553
  <li class="flex items-center">
554
  <i class="fas fa-check text-green-500 mr-3"></i>
555
+ <span class="text-futuristic-300">Domain Privacy & Protection</span>
556
  </li>
557
  </ul>
558
  </div>
559
  </div>
560
 
561
  <!-- Premium Package -->
562
+ <div class="tech-package tech-package-popular overflow-hidden border-2 border-futuristic-400 transform scale-105 z-10 animate-slide-up relative" style="animation-delay: 0.2s">
563
+ <div class="premium-highlight">MOST POPULAR</div>
564
+ <div class="bg-futuristic-600 text-white p-6">
565
+ <h3 class="text-2xl font-bold mb-2">Premium Digital Suite</h3>
566
+ <p class="mb-4">Everything you need for complete digital domination</p>
567
+ <div class="mb-4">
568
+ <div class="text-sm text-futuristic-200 mb-1">One-time setup fee</div>
569
+ <div class="text-3xl font-bold">699 AED</div>
570
  </div>
571
+ <div class="mb-4">
572
+ <div class="text-sm text-futuristic-200 mb-1">Monthly maintenance</div>
573
+ <div class="text-3xl font-bold">449 AED</div>
574
+ </div>
575
+ <button onclick="changeTab('consultation')" class="w-full bg-futuristic-100 hover:bg-white text-futuristic-800 font-medium py-2 px-4 transition duration-300 tech-button">
576
  Get Started
577
  </button>
578
  </div>
 
580
  <ul class="space-y-3">
581
  <li class="flex items-center">
582
  <i class="fas fa-check text-green-500 mr-3"></i>
583
+ <span class="text-futuristic-300 font-medium">Everything in Essential Package PLUS:</span>
584
  </li>
585
  <li class="flex items-center">
586
  <i class="fas fa-check text-green-500 mr-3"></i>
587
+ <span class="text-futuristic-300">Multi-Page Professional Website (5+ pages)</span>
588
  </li>
589
  <li class="flex items-center">
590
  <i class="fas fa-check text-green-500 mr-3"></i>
591
+ <span class="text-futuristic-300">Enhanced Google Profile Management</span>
592
  </li>
593
  <li class="flex items-center">
594
  <i class="fas fa-check text-green-500 mr-3"></i>
595
+ <span class="text-futuristic-300">Complete Social Media Starter Kit (3 platforms)</span>
596
  </li>
597
  <li class="flex items-center">
598
  <i class="fas fa-check text-green-500 mr-3"></i>
599
+ <span class="text-futuristic-300">Unlimited Rapid Monthly Content Updates</span>
600
  </li>
601
  <li class="flex items-center">
602
  <i class="fas fa-check text-green-500 mr-3"></i>
603
+ <span class="text-futuristic-300">Free Domain Registration (1 year)</span>
604
  </li>
605
  <li class="flex items-center">
606
  <i class="fas fa-check text-green-500 mr-3"></i>
607
+ <span class="text-futuristic-300">Custom Logo Design</span>
608
  </li>
609
  <li class="flex items-center">
610
  <i class="fas fa-check text-green-500 mr-3"></i>
611
+ <span class="text-futuristic-300">24/7 Priority Support</span>
612
  </li>
613
  <li class="flex items-center">
614
  <i class="fas fa-check text-green-500 mr-3"></i>
615
+ <span class="text-futuristic-300">Quarterly Strategy Sessions</span>
616
+ </li>
617
+ <li class="flex items-center">
618
+ <i class="fas fa-check text-green-500 mr-3"></i>
619
+ <span class="text-futuristic-300">Monthly Newsletter Creation & Distribution</span>
620
  </li>
621
  </ul>
622
  </div>
623
  </div>
624
  </div>
625
 
626
+ <div class="mt-16 tech-card p-8 animate-slide-up" style="animation-delay: 0.4s">
627
+ <h3 class="text-2xl font-bold text-futuristic-100 mb-4">Not sure which package is right for you?</h3>
628
+ <p class="text-futuristic-300 mb-6">Our digital consultants can help you determine the perfect solution for your business needs and budget.</p>
629
+ <button onclick="changeTab('consultation')" class="bg-futuristic-600 hover:bg-futuristic-500 text-white font-medium py-3 px-6 transition duration-300 tech-button">
630
  Schedule a Free Consultation
631
  </button>
632
  </div>
 
636
 
637
  <!-- Consultation Tab Content -->
638
  <div id="consultation" class="tab-content">
639
+ <section class="py-20 px-6">
640
  <div class="container mx-auto max-w-4xl">
641
+ <div class="tech-card overflow-hidden animate-slide-up">
642
  <div class="md:flex">
643
+ <div class="md:w-1/2 bg-futuristic-600 text-white p-10">
644
  <h2 class="text-3xl font-bold mb-6">Schedule Your Free Consultation</h2>
645
  <p class="mb-8">Let's discuss how we can help grow your business with our digital solutions.</p>
646
 
647
  <div class="space-y-6">
648
  <div class="flex items-start">
649
+ <div class="bg-futuristic-500 p-2 mr-4">
650
  <i class="fas fa-calendar-check text-white"></i>
651
  </div>
652
  <div>
653
  <h4 class="font-bold mb-1">30-Minute Call</h4>
654
+ <p class="text-futuristic-200">Convenient online meeting at your preferred time</p>
655
  </div>
656
  </div>
657
 
658
  <div class="flex items-start">
659
+ <div class="bg-futuristic-500 p-2 mr-4">
660
  <i class="fas fa-lightbulb text-white"></i>
661
  </div>
662
  <div>
663
  <h4 class="font-bold mb-1">Custom Strategy</h4>
664
+ <p class="text-futuristic-200">Personalized recommendations for your business</p>
665
  </div>
666
  </div>
667
 
668
  <div class="flex items-start">
669
+ <div class="bg-futuristic-500 p-2 mr-4">
670
  <i class="fas fa-question text-white"></i>
671
  </div>
672
  <div>
673
  <h4 class="font-bold mb-1">No Obligation</h4>
674
+ <p class="text-futuristic-200">Just helpful advice with no pressure to buy</p>
675
  </div>
676
  </div>
677
  </div>
678
  </div>
679
 
680
  <div class="md:w-1/2 p-10">
681
+ <h3 class="text-2xl font-bold text-futuristic-100 mb-6">Book Your Slot</h3>
682
  <form>
683
  <div class="mb-4">
684
+ <label class="block text-futuristic-300 mb-2" for="name">Full Name</label>
685
+ <input type="text" id="name" class="w-full px-4 py-2 tech-form-input focus:outline-none">
686
  </div>
687
  <div class="mb-4">
688
+ <label class="block text-futuristic-300 mb-2" for="email">Email Address</label>
689
+ <input type="email" id="email" class="w-full px-4 py-2 tech-form-input focus:outline-none">
690
  </div>
691
  <div class="mb-4">
692
+ <label class="block text-futuristic-300 mb-2" for="phone">Phone Number</label>
693
+ <input type="tel" id="phone" class="w-full px-4 py-2 tech-form-input focus:outline-none">
694
  </div>
695
  <div class="mb-6">
696
+ <label class="block text-futuristic-300 mb-2" for="date">Preferred Date & Time</label>
697
+ <input type="datetime-local" id="date" class="w-full px-4 py-2 tech-form-input focus:outline-none">
698
  </div>
699
+ <button type="submit" class="w-full bg-futuristic-600 hover:bg-futuristic-500 text-white font-bold py-3 px-4 transition duration-300 tech-button">
700
  Schedule Consultation
701
  </button>
702
  </form>
 
709
 
710
  <!-- About Us Tab Content -->
711
  <div id="about" class="tab-content">
712
+ <section class="py-20 px-6">
713
  <div class="container mx-auto">
714
  <div class="flex flex-col lg:flex-row items-center mb-20">
715
+ <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12 animate-slide-up">
716
+ <h1 class="text-4xl font-bold text-futuristic-100 mb-6">Our Story</h1>
717
+ <p class="text-futuristic-300 mb-6 text-lg">
718
  Founded in 2018, Nexus Digital Solutions began with a simple mission: to help businesses of all sizes establish and grow their digital presence without the complexity and high costs typically associated with digital transformation.
719
  </p>
720
+ <p class="text-futuristic-300 mb-6 text-lg">
721
  What started as a small team of digital enthusiasts has grown into a full-service digital solutions provider serving clients across multiple industries. Our approach combines technical expertise with strategic thinking to deliver results that matter.
722
  </p>
723
+ <div class="bg-futuristic-800 p-6">
724
+ <p class="text-futuristic-300 font-medium">
725
  "We believe in making digital excellence accessible to every business, regardless of size or technical expertise."
726
  </p>
727
  </div>
728
  </div>
729
+ <div class="lg:w-1/2 tech-card overflow-hidden animate-slide-up" style="animation-delay: 0.2s">
730
  <img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Our team" class="w-full h-auto">
731
  </div>
732
  </div>
733
 
734
  <div class="py-16">
735
+ <h2 class="text-3xl font-bold text-center text-futuristic-100 mb-12 animate-slide-up">Our Core Values</h2>
736
 
737
  <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
738
+ <div class="tech-card p-8 animate-slide-up" style="animation-delay: 0.1s">
739
+ <div class="w-14 h-14 bg-futuristic-800 flex items-center justify-center mb-6">
740
+ <i class="fas fa-lightbulb text-futuristic-300 text-xl"></i>
741
  </div>
742
+ <h3 class="text-xl font-bold text-futuristic-100 mb-3">Innovation</h3>
743
+ <p class="text-futuristic-300">We constantly explore new technologies and strategies to keep our clients ahead of the curve.</p>
744
  </div>
745
 
746
+ <div class="tech-card p-8 animate-slide-up" style="animation-delay: 0.2s">
747
+ <div class="w-14 h-14 bg-futuristic-800 flex items-center justify-center mb-6">
748
+ <i class="fas fa-handshake text-futuristic-300 text-xl"></i>
749
  </div>
750
+ <h3 class="text-xl font-bold text-futuristic-100 mb-3">Integrity</h3>
751
+ <p class="text-futuristic-300">We build trust through transparency, honesty, and delivering on our promises.</p>
752
  </div>
753
 
754
+ <div class="tech-card p-8 animate-slide-up" style="animation-delay: 0.3s">
755
+ <div class="w-14 h-14 bg-futuristic-800 flex items-center justify-center mb-6">
756
+ <i class="fas fa-heart text-futuristic-300 text-xl"></i>
757
  </div>
758
+ <h3 class="text-xl font-bold text-futuristic-100 mb-3">Client-Centric</h3>
759
+ <p class="text-futuristic-300">Your success is our success. We tailor solutions to your unique needs and goals.</p>
760
  </div>
761
  </div>
762
  </div>
763
 
764
+ <div class="mt-16 text-center animate-slide-up" style="animation-delay: 0.4s">
765
+ <h2 class="text-3xl font-bold text-futuristic-100 mb-6">Ready to Transform Your Digital Presence?</h2>
766
+ <button onclick="changeTab('offers')" class="bg-futuristic-600 hover:bg-futuristic-500 text-white font-medium py-3 px-8 transition duration-300 tech-button inline-flex items-center">
767
  Explore Our Services
768
  <i class="fas fa-arrow-right ml-2"></i>
769
  </button>
 
773
  </div>
774
 
775
  <!-- Footer -->
776
+ <footer class="tech-footer py-12 px-6">
777
  <div class="container mx-auto">
778
  <div class="grid grid-cols-1 md:grid-cols-4 gap-10">
779
  <div>
780
  <div class="flex items-center space-x-3 mb-6">
781
+ <div class="w-10 h-10 bg-futuristic-600 flex items-center justify-center">
782
  <i class="fas fa-cube text-white text-xl"></i>
783
  </div>
784
+ <span class="text-xl font-bold text-futuristic-100">Nexus Digital</span>
785
  </div>
786
+ <p class="text-futuristic-400 mb-6">
787
  Comprehensive digital solutions to elevate your online presence and drive business growth.
788
  </p>
789
  <div class="flex space-x-4">
790
+ <a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">
791
  <i class="fab fa-facebook-f"></i>
792
  </a>
793
+ <a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">
794
  <i class="fab fa-twitter"></i>
795
  </a>
796
+ <a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">
797
  <i class="fab fa-linkedin-in"></i>
798
  </a>
799
+ <a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">
800
  <i class="fab fa-instagram"></i>
801
  </a>
802
  </div>
803
  </div>
804
 
805
  <div>
806
+ <h3 class="text-lg font-bold text-futuristic-100 mb-6">Services</h3>
807
  <ul class="space-y-3">
808
+ <li><a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">Website Development</a></li>
809
+ <li><a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">Google Profile Management</a></li>
810
+ <li><a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">Social Media Solutions</a></li>
811
+ <li><a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">Content Updates</a></li>
812
+ <li><a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">Branding & Logo Design</a></li>
813
  </ul>
814
  </div>
815
 
816
  <div>
817
+ <h3 class="text-lg font-bold text-futuristic-100 mb-6">Company</h3>
818
  <ul class="space-y-3">
819
+ <li><a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">About Us</a></li>
820
+ <li><a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">Our Team</a></li>
821
+ <li><a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">Careers</a></li>
822
+ <li><a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">Blog</a></li>
823
+ <li><a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">Contact Us</a></li>
824
  </ul>
825
  </div>
826
 
827
  <div>
828
+ <h3 class="text-lg font-bold text-futuristic-100 mb-6">Contact</h3>
829
  <ul class="space-y-3">
830
  <li class="flex items-start">
831
+ <i class="fas fa-map-marker-alt text-futuristic-400 mt-1 mr-3"></i>
832
+ <span class="text-futuristic-400">123 Digital Lane, Suite 100<br>San Francisco, CA 94103</span>
833
  </li>
834
  <li class="flex items-center">
835
+ <i class="fas fa-phone-alt text-futuristic-400 mr-3"></i>
836
+ <span class="text-futuristic-400">(555) 123-4567</span>
837
  </li>
838
  <li class="flex items-center">
839
+ <i class="fas fa-envelope text-futuristic-400 mr-3"></i>
840
+ <span class="text-futuristic-400">info@nexusdigital.com</span>
841
  </li>
842
  </ul>
843
  </div>
844
  </div>
845
 
846
+ <div class="border-t border-futuristic-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
847
+ <p class="text-futuristic-400 mb-4 md:mb-0">© 2023 Nexus Digital Solutions. All rights reserved.</p>
848
  <div class="flex space-x-6">
849
+ <a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">Privacy Policy</a>
850
+ <a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">Terms of Service</a>
851
+ <a href="#" class="text-futuristic-400 hover:text-futuristic-200 transition">Cookie Policy</a>
852
  </div>
853
  </div>
854
  </div>
 
865
  // Show selected tab content
866
  document.getElementById(tabId).classList.add('active');
867
 
 
 
 
 
 
868
  // Scroll to top
869
  window.scrollTo(0, 0);
870
  }
871
 
872
+ // Mobile menu functionality
873
+ document.getElementById('mobileMenuButton').addEventListener('click', function() {
874
+ document.getElementById('mobileMenu').classList.remove('hidden');
875
+ document.body.style.overflow = 'hidden';
876
+ });
877
+
878
+ document.getElementById('closeMobileMenu').addEventListener('click', function() {
879
+ closeMobileMenu();
880
  });
881
 
882
+ function closeMobileMenu() {
883
+ document.getElementById('mobileMenu').classList.add('hidden');
884
+ document.body.style.overflow = '';
885
+ }
886
+
887
  // Smooth scrolling for anchor links
888
  document.querySelectorAll('a[href^="#"]').forEach(anchor => {
889
  anchor.addEventListener('click', function(e) {
 
933
 
934
  // Update active nav link on scroll
935
  const sections = document.querySelectorAll('.section');
936
+ const navLinks = document.querySelectorAll('.floating-menu-item');
937
 
938
  window.addEventListener('scroll', () => {
939
  let current = '';
 
947
  }
948
  });
949
 
950
+ navLinks.forEach(link => {
951
+ link.classList.remove('active-menu-item');
952
  if (link.getAttribute('href') === `#${current}`) {
953
+ link.classList.add('active-menu-item');
954
  }
955
  });
956
  });
prompts.txt CHANGED
@@ -1,4 +1,6 @@
1
  make the home page a scroll to explore type of thing with a video in full screen as the first thing seen on the website
2
  remove the section that says meet our leadership team. add a background image to the front page/home page. remove the what our clients say section and instead put some ratings without pictures and words of the people like just something simple. put the offers in dirhams and make the buttons to get started take you to a tab for scheduling a free consultation.
3
  fix the home, services and why us buttons so it takes takes you to the correct spot
4
- turn everything into dark mode
 
 
 
1
  make the home page a scroll to explore type of thing with a video in full screen as the first thing seen on the website
2
  remove the section that says meet our leadership team. add a background image to the front page/home page. remove the what our clients say section and instead put some ratings without pictures and words of the people like just something simple. put the offers in dirhams and make the buttons to get started take you to a tab for scheduling a free consultation.
3
  fix the home, services and why us buttons so it takes takes you to the correct spot
4
+ turn everything into dark mode
5
+ change the design of the website keeping all the same details and everything put just changing the animations of the slides and making the design more dull and grey but look more advanced and futuristic. also make the heading menu bar a floating island type of menu.
6
+ the menu bar should be longer and not thicker with frosted glass effect with a very slight grey tint. Remove the enterprise package and just keep 2 packages, one for basic which should have 659 as the setup cost and 349 as the monthy cost for maintenance and all the stuff has Google Business profile and Optimisation Mobile Friendly Website Custom Domain and Hosting Weekly Edits Separately paid Domain. Review Booster for Google Monthly Traffic analytics report Privacy and protection of the domain but reword these as you see suitable also the premium package should be 699 aed as setup cost and 449 per month as maintenance have all the basic stuff with Multi Page website Enhanced google profile management Social Media Starter Kit Unlimited Rapid Monthly edits Free Domain Logo making Priority Support Quarterly Strategy Call Monthly Newsletter made by us also add sharp corners for all buttons except the menu bar try to exagerrate how could the premium package is. keep the overall design same.