a2y-b6t commited on
Commit
9af7213
·
verified ·
1 Parent(s): 102af49

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +463 -18
index.html CHANGED
@@ -1,19 +1,464 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Digital Consulting Services | Expertise in Digital Products</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <style>
14
+ .gradient-bg {
15
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
16
+ }
17
+ .service-card:hover {
18
+ transform: translateY(-5px);
19
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
20
+ }
21
+ </style>
22
+ </head>
23
+ <body class="bg-gray-50">
24
+ <!-- Navigation -->
25
+ <nav class="bg-white shadow-lg">
26
+ <div class="max-w-6xl mx-auto px-4">
27
+ <div class="flex justify-between items-center py-4">
28
+ <a href="index.html" class="flex items-center space-x-2">
29
+ <i data-feather="globe" class="text-indigo-600"></i>
30
+ <span class="text-xl font-bold text-gray-800">DigitalExpert</span>
31
+ </a>
32
+ <div class="hidden md:flex space-x-8">
33
+ <a href="index.html" class="text-gray-600 hover:text-indigo-600">Home</a>
34
+ <a href="services.html" class="text-indigo-600 font-medium">Services</a>
35
+ </div>
36
+ <button class="md:hidden focus:outline-none">
37
+ <i data-feather="menu"></i>
38
+ </button>
39
+ </div>
40
+ </div>
41
+ </nav>
42
+
43
+ <!-- Hero Section -->
44
+ <section class="gradient-bg text-white py-20">
45
+ <div class="max-w-6xl mx-auto px-4">
46
+ <div class="flex flex-col md:flex-row items-center">
47
+ <div class="md:w-1/2 mb-10 md:mb-0" data-aos="fade-right">
48
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Digital Product Consulting Services</h1>
49
+ <p class="text-xl mb-8">20+ years of experience crafting exceptional digital experiences that drive growth and engagement.</p>
50
+ <a href="#contact" class="bg-white text-indigo-600 px-8 py-3 rounded-lg font-semibold hover:bg-gray-100 transition duration-300 inline-block">Get Started</a>
51
+ </div>
52
+ <div class="md:w-1/2" data-aos="fade-left">
53
+ <img src="http://static.photos/technology/640x360/42" alt="Digital Consulting" class="rounded-lg shadow-xl">
54
+ </div>
55
+ </div>
56
+ </div>
57
+ </section>
58
+
59
+ <!-- Experience Section -->
60
+ <section class="py-20 bg-white">
61
+ <div class="max-w-6xl mx-auto px-4">
62
+ <div class="text-center mb-16">
63
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">My Professional Journey</h2>
64
+ <div class="w-24 h-1 bg-indigo-600 mx-auto"></div>
65
+ </div>
66
+ <div class="grid md:grid-cols-3 gap-8">
67
+ <div class="bg-gray-50 p-8 rounded-lg shadow-sm" data-aos="fade-up">
68
+ <div class="text-indigo-600 mb-4">
69
+ <i data-feather="monitor" class="w-10 h-10"></i>
70
+ </div>
71
+ <h3 class="text-xl font-semibold mb-3">Product Management</h3>
72
+ <p class="text-gray-600">10+ years leading digital product development from concept to launch, specializing in consumer-facing applications.</p>
73
+ </div>
74
+ <div class="bg-gray-50 p-8 rounded-lg shadow-sm" data-aos="fade-up" data-aos-delay="100">
75
+ <div class="text-indigo-600 mb-4">
76
+ <i data-feather="trending-up" class="w-10 h-10"></i>
77
+ </div>
78
+ <h3 class="text-xl font-semibold mb-3">Digital Marketing</h3>
79
+ <p class="text-gray-600">5 years experience in growth marketing, analytics, and demand generation strategies that deliver measurable results.</p>
80
+ </div>
81
+ <div class="bg-gray-50 p-8 rounded-lg shadow-sm" data-aos="fade-up" data-aos-delay="200">
82
+ <div class="text-indigo-600 mb-4">
83
+ <i data-feather="code" class="w-10 h-10"></i>
84
+ </div>
85
+ <h3 class="text-xl font-semibold mb-3">Web Development</h3>
86
+ <p class="text-gray-600">Full-stack expertise including WordPress development, UX/UI design, and technical implementation.</p>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ </section>
91
+
92
+ <!-- Services Section -->
93
+ <section class="py-20 bg-gray-50">
94
+ <div class="max-w-6xl mx-auto px-4">
95
+ <div class="text-center mb-16">
96
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Areas of Expertise</h2>
97
+ <p class="text-gray-600 max-w-2xl mx-auto">Comprehensive digital consulting services tailored to your business needs</p>
98
+ <div class="w-24 h-1 bg-indigo-600 mx-auto"></div>
99
+ </div>
100
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
101
+ <div class="bg-white p-6 rounded-lg shadow-sm service-card transition duration-300" data-aos="zoom-in">
102
+ <div class="text-indigo-600 mb-4">
103
+ <i data-feather="box" class="w-8 h-8"></i>
104
+ </div>
105
+ <h3 class="text-lg font-semibold mb-2">Product Strategy & Development</h3>
106
+ <ul class="text-gray-600 space-y-2">
107
+ <li class="flex items-start">
108
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
109
+ <span>Product roadmaps & prioritization</span>
110
+ </li>
111
+ <li class="flex items-start">
112
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
113
+ <span>MVP development</span>
114
+ </li>
115
+ <li class="flex items-start">
116
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
117
+ <span>Go-to-market strategies</span>
118
+ </li>
119
+ </ul>
120
+ </div>
121
+ <div class="bg-white p-6 rounded-lg shadow-sm service-card transition duration-300" data-aos="zoom-in" data-aos-delay="100">
122
+ <div class="text-indigo-600 mb-4">
123
+ <i data-feather="layers" class="w-8 h-8"></i>
124
+ </div>
125
+ <h3 class="text-lg font-semibold mb-2">Web & Mobile Development</h3>
126
+ <ul class="text-gray-600 space-y-2">
127
+ <li class="flex items-start">
128
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
129
+ <span>WordPress development</span>
130
+ </li>
131
+ <li class="flex items-start">
132
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
133
+ <span>UX/UI design</span>
134
+ </li>
135
+ <li class="flex items-start">
136
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
137
+ <span>Mobile app strategy</span>
138
+ </li>
139
+ </ul>
140
+ </div>
141
+ <div class="bg-white p-6 rounded-lg shadow-sm service-card transition duration-300" data-aos="zoom-in" data-aos-delay="200">
142
+ <div class="text-indigo-600 mb-4">
143
+ <i data-feather="bar-chart-2" class="w-8 h-8"></i>
144
+ </div>
145
+ <h3 class="text-lg font-semibold mb-2">Digital Marketing</h3>
146
+ <ul class="text-gray-600 space-y-2">
147
+ <li class="flex items-start">
148
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
149
+ <span>SEO & content strategy</span>
150
+ </li>
151
+ <li class="flex items-start">
152
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
153
+ <span>Conversion optimization</span>
154
+ </li>
155
+ <li class="flex items-start">
156
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
157
+ <span>HubSpot & email marketing</span>
158
+ </li>
159
+ </ul>
160
+ </div>
161
+ <div class="bg-white p-6 rounded-lg shadow-sm service-card transition duration-300" data-aos="zoom-in">
162
+ <div class="text-indigo-600 mb-4">
163
+ <i data-feather="zap" class="w-8 h-8"></i>
164
+ </div>
165
+ <h3 class="text-lg font-semibold mb-2">Process Automation</h3>
166
+ <ul class="text-gray-600 space-y-2">
167
+ <li class="flex items-start">
168
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
169
+ <span>AI-powered automations</span>
170
+ </li>
171
+ <li class="flex items-start">
172
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
173
+ <span>Workflow optimization</span>
174
+ </li>
175
+ <li class="flex items-start">
176
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
177
+ <span>Digital transformation</span>
178
+ </li>
179
+ </ul>
180
+ </div>
181
+ <div class="bg-white p-6 rounded-lg shadow-sm service-card transition duration-300" data-aos="zoom-in" data-aos-delay="100">
182
+ <div class="text-indigo-600 mb-4">
183
+ <i data-feather="dollar-sign" class="w-8 h-8"></i>
184
+ </div>
185
+ <h3 class="text-lg font-semibold mb-2">Business Growth</h3>
186
+ <ul class="text-gray-600 space-y-2">
187
+ <li class="flex items-start">
188
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
189
+ <span>Startup consulting</span>
190
+ </li>
191
+ <li class="flex items-start">
192
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
193
+ <span>Fundraising strategy</span>
194
+ </li>
195
+ <li class="flex items-start">
196
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
197
+ <span>Business development</span>
198
+ </li>
199
+ </ul>
200
+ </div>
201
+ <div class="bg-white p-6 rounded-lg shadow-sm service-card transition duration-300" data-aos="zoom-in" data-aos-delay="200">
202
+ <div class="text-indigo-600 mb-4">
203
+ <i data-feather="users" class="w-8 h-8"></i>
204
+ </div>
205
+ <h3 class="text-lg font-semibold mb-2">Training & Mentorship</h3>
206
+ <ul class="text-gray-600 space-y-2">
207
+ <li class="flex items-start">
208
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
209
+ <span>AI education</span>
210
+ </li>
211
+ <li class="flex items-start">
212
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
213
+ <span>Team training</span>
214
+ </li>
215
+ <li class="flex items-start">
216
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2 mt-0.5"></i>
217
+ <span>Leadership coaching</span>
218
+ </li>
219
+ </ul>
220
+ </div>
221
+ </div>
222
+ </div>
223
+ </section>
224
+
225
+ <!-- Pricing Section -->
226
+ <section class="py-20 bg-white">
227
+ <div class="max-w-6xl mx-auto px-4">
228
+ <div class="text-center mb-16">
229
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Pricing & Engagement Models</h2>
230
+ <p class="text-gray-600 max-w-2xl mx-auto">Flexible options to meet your project requirements and budget</p>
231
+ <div class="w-24 h-1 bg-indigo-600 mx-auto"></div>
232
+ </div>
233
+ <div class="grid md:grid-cols-3 gap-8">
234
+ <div class="border border-gray-200 rounded-lg p-8" data-aos="fade-up">
235
+ <div class="text-center mb-6">
236
+ <h3 class="text-xl font-semibold mb-2">Hourly Consulting</h3>
237
+ <div class="text-4xl font-bold text-indigo-600 mb-2">$100<span class="text-lg font-normal">/hour</span></div>
238
+ <p class="text-gray-600">For one-off consultations or ongoing advisory</p>
239
+ </div>
240
+ <ul class="space-y-3 mb-8">
241
+ <li class="flex items-center">
242
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
243
+ <span>Flexible scheduling</span>
244
+ </li>
245
+ <li class="flex items-center">
246
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
247
+ <span>Pay-as-you-go</span>
248
+ </li>
249
+ <li class="flex items-center">
250
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
251
+ <span>Minimum 1 hour increments</span>
252
+ </li>
253
+ </ul>
254
+ <a href="#contact" class="w-full block text-center bg-indigo-600 text-white py-3 rounded-lg hover:bg-indigo-700 transition duration-300">Get Started</a>
255
+ </div>
256
+ <div class="border-2 border-indigo-600 rounded-lg p-8 shadow-lg relative" data-aos="fade-up" data-aos-delay="100">
257
+ <div class="absolute top-0 right-0 bg-indigo-600 text-white px-4 py-1 rounded-bl-lg rounded-tr-lg text-sm font-medium">Most Popular</div>
258
+ <div class="text-center mb-6">
259
+ <h3 class="text-xl font-semibold mb-2">Project-Based</h3>
260
+ <div class="text-4xl font-bold text-indigo-600 mb-2">Custom</div>
261
+ <p class="text-gray-600">Fixed-price engagements for defined projects</p>
262
+ </div>
263
+ <ul class="space-y-3 mb-8">
264
+ <li class="flex items-center">
265
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
266
+ <span>Clear deliverables</span>
267
+ </li>
268
+ <li class="flex items-center">
269
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
270
+ <span>Fixed timeline</span>
271
+ </li>
272
+ <li class="flex items-center">
273
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
274
+ <span>No surprise costs</span>
275
+ </li>
276
+ </ul>
277
+ <a href="#contact" class="w-full block text-center bg-indigo-600 text-white py-3 rounded-lg hover:bg-indigo-700 transition duration-300">Get Started</a>
278
+ </div>
279
+ <div class="border border-gray-200 rounded-lg p-8" data-aos="fade-up" data-aos-delay="200">
280
+ <div class="text-center mb-6">
281
+ <h3 class="text-xl font-semibold mb-2">Retainer</h3>
282
+ <div class="text-4xl font-bold text-indigo-600 mb-2">Discounts</div>
283
+ <p class="text-gray-600">For ongoing, long-term collaboration</p>
284
+ </div>
285
+ <ul class="space-y-3 mb-8">
286
+ <li class="flex items-center">
287
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
288
+ <span>20+ hours/week</span>
289
+ </li>
290
+ <li class="flex items-center">
291
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
292
+ <span>8+ week commitments</span>
293
+ </li>
294
+ <li class="flex items-center">
295
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
296
+ <span>Priority support</span>
297
+ </li>
298
+ </ul>
299
+ <a href="#contact" class="w-full block text-center bg-indigo-600 text-white py-3 rounded-lg hover:bg-indigo-700 transition duration-300">Get Started</a>
300
+ </div>
301
+ </div>
302
+ </div>
303
+ </section>
304
+
305
+ <!-- Testimonials -->
306
+ <section class="py-20 bg-gray-50">
307
+ <div class="max-w-6xl mx-auto px-4">
308
+ <div class="text-center mb-16">
309
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Client Testimonials</h2>
310
+ <div class="w-24 h-1 bg-indigo-600 mx-auto"></div>
311
+ </div>
312
+ <div class="grid md:grid-cols-2 gap-8">
313
+ <div class="bg-white p-8 rounded-lg shadow-sm" data-aos="fade-right">
314
+ <div class="flex items-center mb-4">
315
+ <div class="w-12 h-12 rounded-full overflow-hidden mr-4">
316
+ <img src="http://static.photos/people/200x200/1" alt="Client" class="w-full h-full object-cover">
317
+ </div>
318
+ <div>
319
+ <h4 class="font-semibold">Sarah Johnson</h4>
320
+ <p class="text-gray-600 text-sm">CEO, TechStart Inc.</p>
321
+ </div>
322
+ </div>
323
+ <p class="text-gray-700 mb-4">"The product strategy framework we developed together completely transformed our approach to feature development and prioritization. Our conversion rates improved by 45% within three months of implementation."</p>
324
+ <div class="flex text-yellow-400">
325
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
326
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
327
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
328
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
329
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
330
+ </div>
331
+ </div>
332
+ <div class="bg-white p-8 rounded-lg shadow-sm" data-aos="fade-left">
333
+ <div class="flex items-center mb-4">
334
+ <div class="w-12 h-12 rounded-full overflow-hidden mr-4">
335
+ <img src="http://static.photos/people/200x200/2" alt="Client" class="w-full h-full object-cover">
336
+ </div>
337
+ <div>
338
+ <h4 class="font-semibold">Michael Chen</h4>
339
+ <p class="text-gray-600 text-sm">Director of Marketing</p>
340
+ </div>
341
+ </div>
342
+ <p class="text-gray-700 mb-4">"Our website redesign not only looks fantastic but has significantly improved our lead generation. The SEO optimizations alone increased our organic traffic by 78% in the first quarter."</p>
343
+ <div class="flex text-yellow-400">
344
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
345
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
346
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
347
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
348
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
349
+ </div>
350
+ </div>
351
+ </div>
352
+ </div>
353
+ </section>
354
+
355
+ <!-- Contact Section -->
356
+ <section id="contact" class="py-20 bg-indigo-600 text-white">
357
+ <div class="max-w-6xl mx-auto px-4">
358
+ <div class="text-center mb-16">
359
+ <h2 class="text-3xl font-bold mb-4">Ready to Transform Your Digital Presence?</h2>
360
+ <p class="text-indigo-100 max-w-2xl mx-auto">Let's discuss how I can help you achieve your business goals through strategic digital solutions.</p>
361
+ <div class="w-24 h-1 bg-white mx-auto"></div>
362
+ </div>
363
+ <div class="max-w-2xl mx-auto bg-white rounded-lg shadow-xl overflow-hidden">
364
+ <div class="md:flex">
365
+ <div class="md:w-1/2 bg-indigo-700 p-8">
366
+ <h3 class="text-xl font-semibold mb-4">Contact Information</h3>
367
+ <div class="space-y-4">
368
+ <div class="flex items-start">
369
+ <i data-feather="mail" class="w-5 h-5 mr-3 mt-0.5"></i>
370
+ <span>[email protected]</span>
371
+ </div>
372
+ <div class="flex items-start">
373
+ <i data-feather="phone" class="w-5 h-5 mr-3 mt-0.5"></i>
374
+ <span>(555) 123-4567</span>
375
+ </div>
376
+ <div class="flex items-start">
377
+ <i data-feather="clock" class="w-5 h-5 mr-3 mt-0.5"></i>
378
+ <span>Mon-Fri: 9am-5pm EST</span>
379
+ </div>
380
+ </div>
381
+ </div>
382
+ <div class="md:w-1/2 p-8">
383
+ <form class="space-y-4">
384
+ <div>
385
+ <label for="name" class="block text-gray-700 text-sm font-medium mb-1">Name</label>
386
+ <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500">
387
+ </div>
388
+ <div>
389
+ <label for="email" class="block text-gray-700 text-sm font-medium mb-1">Email</label>
390
+ <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500">
391
+ </div>
392
+ <div>
393
+ <label for="service" class="block text-gray-700 text-sm font-medium mb-1">Service Interest</label>
394
+ <select id="service" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500">
395
+ <option>Select a service</option>
396
+ <option>Product Strategy</option>
397
+ <option>Web Development</option>
398
+ <option>Digital Marketing</option>
399
+ <option>Process Automation</option>
400
+ <option>Business Growth</option>
401
+ <option>Training & Mentorship</option>
402
+ </select>
403
+ </div>
404
+ <div>
405
+ <label for="message" class="block text-gray-700 text-sm font-medium mb-1">Message</label>
406
+ <textarea id="message" rows="3" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500"></textarea>
407
+ </div>
408
+ <button type="submit" class="w-full bg-indigo-600 text-white py-3 rounded-md hover:bg-indigo-700 transition duration-300">Send Message</button>
409
+ </form>
410
+ </div>
411
+ </div>
412
+ </div>
413
+ </div>
414
+ </section>
415
+
416
+ <!-- Footer -->
417
+ <footer class="bg-gray-900 text-white py-12">
418
+ <div class="max-w-6xl mx-auto px-4">
419
+ <div class="grid md:grid-cols-4 gap-8">
420
+ <div>
421
+ <h3 class="text-xl font-bold mb-4">DigitalExpert</h3>
422
+ <p class="text-gray-400">Helping businesses thrive in the digital landscape through strategic consulting and implementation.</p>
423
+ </div>
424
+ <div>
425
+ <h4 class="font-semibold mb-4">Services</h4>
426
+ <ul class="space-y-2">
427
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Product Management</a></li>
428
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Web Development</a></li>
429
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Digital Marketing</a></li>
430
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Business Strategy</a></li>
431
+ </ul>
432
+ </div>
433
+ <div>
434
+ <h4 class="font-semibold mb-4">Quick Links</h4>
435
+ <ul class="space-y-2">
436
+ <li><a href="index.html" class="text-gray-400 hover:text-white transition">Home</a></li>
437
+ <li><a href="services.html" class="text-gray-400 hover:text-white transition">Services</a></li>
438
+ <li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li>
439
+ </ul>
440
+ </div>
441
+ <div>
442
+ <h4 class="font-semibold mb-4">Connect</h4>
443
+ <div class="flex space-x-4">
444
+ <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="twitter"></i></a>
445
+ <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="linkedin"></i></a>
446
+ <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="github"></i></a>
447
+ </div>
448
+ </div>
449
+ </div>
450
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
451
+ <p>&copy; 2023 DigitalExpert. All rights reserved.</p>
452
+ </div>
453
+ </div>
454
+ </footer>
455
+
456
+ <script>
457
+ AOS.init({
458
+ duration: 800,
459
+ easing: 'ease-in-out'
460
+ });
461
+ </script>
462
+ <script>feather.replace();</script>
463
+ </body>
464
  </html>