AI4U2 commited on
Commit
1bad86a
·
verified ·
1 Parent(s): de672b8

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +387 -393
  2. prompts.txt +2 -1
index.html CHANGED
@@ -12,9 +12,9 @@
12
  <style>
13
  body {
14
  font-family: 'Montserrat', sans-serif;
15
- background-color: #0a0a0a;
16
- color: white;
17
  overflow-x: hidden;
 
 
18
  }
19
 
20
  .hero-video {
@@ -25,20 +25,16 @@
25
  height: 100%;
26
  object-fit: cover;
27
  z-index: -1;
28
- opacity: 0.3;
29
  }
30
 
31
  .gradient-text {
32
- background: linear-gradient(90deg, #00dbde, #fc00ff);
33
  -webkit-background-clip: text;
34
  background-clip: text;
35
  color: transparent;
36
  }
37
 
38
- .glow {
39
- text-shadow: 0 0 10px rgba(0, 219, 222, 0.7);
40
- }
41
-
42
  .card-hover {
43
  transition: all 0.3s ease;
44
  transform: translateY(0);
@@ -46,14 +42,7 @@
46
 
47
  .card-hover:hover {
48
  transform: translateY(-10px);
49
- box-shadow: 0 20px 25px -5px rgba(0, 219, 222, 0.1), 0 10px 10px -5px rgba(0, 219, 222, 0.04);
50
- }
51
-
52
- .parallax {
53
- background-attachment: fixed;
54
- background-position: center;
55
- background-repeat: no-repeat;
56
- background-size: cover;
57
  }
58
 
59
  @keyframes float {
@@ -66,304 +55,291 @@
66
  animation: float 6s ease-in-out infinite;
67
  }
68
 
69
- .typewriter {
70
- overflow: hidden;
71
- border-right: .15em solid #00dbde;
72
- white-space: nowrap;
73
- margin: 0 auto;
74
- letter-spacing: .15em;
75
- animation:
76
- typing 3.5s steps(40, end),
77
- blink-caret .75s step-end infinite;
78
- }
79
-
80
- @keyframes typing {
81
- from { width: 0 }
82
- to { width: 100% }
83
- }
84
-
85
- @keyframes blink-caret {
86
- from, to { border-color: transparent }
87
- 50% { border-color: #00dbde; }
88
- }
89
-
90
- .scroll-indicator {
91
- position: absolute;
92
- bottom: 30px;
93
- left: 50%;
94
- transform: translateX(-50%);
95
- width: 30px;
96
- height: 50px;
97
- border: 2px solid #00dbde;
98
- border-radius: 15px;
99
- }
100
-
101
- .scroll-indicator::before {
102
- content: '';
103
- position: absolute;
104
- top: 10px;
105
- left: 50%;
106
- width: 6px;
107
- height: 6px;
108
- margin-left: -3px;
109
- background-color: #00dbde;
110
- border-radius: 50%;
111
- animation: scrollDown 2s infinite;
112
  }
113
 
114
- @keyframes scrollDown {
115
- 0% {
116
- transform: translateY(0);
117
- opacity: 1;
118
- }
119
- 100% {
120
- transform: translateY(20px);
121
- opacity: 0;
122
- }
123
  }
124
  </style>
125
  </head>
126
- <body class="antialiased">
127
  <!-- Navigation -->
128
- <nav class="fixed w-full z-50 bg-black bg-opacity-80 backdrop-blur-md">
129
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
130
  <div class="flex justify-between h-20 items-center">
131
  <div class="flex-shrink-0 flex items-center">
132
- <span class="text-2xl font-bold gradient-text">Alex Marshi</span>
133
  </div>
134
  <div class="hidden md:block">
135
  <div class="ml-10 flex items-baseline space-x-8">
136
- <a href="#home" class="text-white hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-all duration-300">Home</a>
137
- <a href="#about" class="text-white hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-all duration-300">About</a>
138
- <a href="#services" class="text-white hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-all duration-300">Services</a>
139
- <a href="#testimonials" class="text-white hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-all duration-300">Testimonials</a>
140
- <a href="#contact" class="text-white hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-all duration-300">Contact</a>
141
  </div>
142
  </div>
143
  <div class="md:hidden">
144
- <button class="text-white focus:outline-none">
145
  <i class="fas fa-bars text-2xl"></i>
146
  </button>
147
  </div>
148
  </div>
149
  </div>
 
 
 
 
 
 
 
 
 
 
150
  </nav>
151
 
152
  <!-- Hero Section -->
153
  <section id="home" class="relative h-screen flex items-center justify-center overflow-hidden">
154
  <video autoplay muted loop class="hero-video">
155
- <source src="https://assets.mixkit.co/videos/preview/mixkit-abstract-digital-background-1144-large.mp4" type="video/mp4">
156
  </video>
157
- <div class="absolute inset-0 bg-gradient-to-b from-black via-transparent to-black opacity-70"></div>
158
  <div class="relative z-10 text-center px-4">
159
- <h1 class="text-5xl md:text-7xl font-bold mb-6 glow">
160
  <span class="gradient-text">Transform</span> Your Life
161
  </h1>
162
- <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">With Alex Marshi's revolutionary coaching methodology that blends neuroscience, psychology, and ancient wisdom</p>
163
- <div class="typewriter text-xl mb-8">Breakthroughs start here...</div>
164
- <div class="flex justify-center space-x-4">
165
- <a href="#contact" class="px-8 py-3 bg-gradient-to-r from-cyan-500 to-purple-600 rounded-full font-semibold hover:opacity-90 transition-all duration-300 transform hover:scale-105 shadow-lg shadow-cyan-500/30">Book Session</a>
166
- <a href="#about" class="px-8 py-3 border border-cyan-500 rounded-full font-semibold hover:bg-cyan-500 hover:bg-opacity-10 transition-all duration-300 transform hover:scale-105">Learn More</a>
 
 
 
 
 
167
  </div>
168
  </div>
169
- <div class="scroll-indicator"></div>
 
 
 
 
170
  </section>
171
 
172
  <!-- About Section -->
173
- <section id="about" class="py-20 px-4 bg-black">
174
- <div class="max-w-7xl mx-auto">
175
- <div class="text-center mb-16">
176
- <h2 class="text-4xl font-bold mb-4">Meet <span class="gradient-text">Alex Marshi</span></h2>
177
- <div class="w-24 h-1 bg-gradient-to-r from-cyan-500 to-purple-600 mx-auto mb-6"></div>
178
- <p class="text-xl text-gray-300 max-w-3xl mx-auto">Visionary coach helping high achievers unlock their ultimate potential</p>
179
- </div>
180
-
181
- <div class="flex flex-col md:flex-row items-center gap-12">
182
- <div class="md:w-1/2 relative">
183
- <div class="relative rounded-xl overflow-hidden">
184
- <img src="https://images.unsplash.com/photo-1580489944761-15a05d5f49e1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Alex Marshi" class="w-full h-auto rounded-xl transform transition-all duration-500 hover:scale-105">
185
- <div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent opacity-80"></div>
186
- </div>
187
- <div class="absolute -bottom-6 -right-6 bg-gradient-to-r from-cyan-500 to-purple-600 p-4 rounded-xl shadow-2xl z-10 floating">
188
- <div class="text-center">
189
- <p class="text-5xl font-bold">10+</p>
190
- <p class="text-sm">Years Experience</p>
191
  </div>
192
  </div>
193
  </div>
194
-
195
  <div class="md:w-1/2">
196
- <h3 class="text-3xl font-bold mb-6">The <span class="gradient-text">Marshi Method</span></h3>
197
- <p class="text-gray-300 mb-6">After overcoming his own personal struggles with anxiety and self-doubt, Alex developed a unique coaching methodology that combines cutting-edge neuroscience with timeless spiritual principles.</p>
198
-
199
- <div class="space-y-4">
200
- <div class="flex items-start">
201
- <div class="flex-shrink-0 mt-1">
202
- <div class="flex items-center justify-center h-8 w-8 rounded-full bg-gradient-to-r from-cyan-500 to-purple-600">
203
- <i class="fas fa-brain text-white"></i>
204
- </div>
205
- </div>
206
- <div class="ml-4">
207
- <h4 class="text-lg font-semibold">Neuroscience-Based</h4>
208
- <p class="text-gray-400">Utilizing proven techniques to rewire your brain for success</p>
209
  </div>
 
 
210
  </div>
211
-
212
- <div class="flex items-start">
213
- <div class="flex-shrink-0 mt-1">
214
- <div class="flex items-center justify-center h-8 w-8 rounded-full bg-gradient-to-r from-cyan-500 to-purple-600">
215
- <i class="fas fa-heart text-white"></i>
216
- </div>
217
- </div>
218
- <div class="ml-4">
219
- <h4 class="text-lg font-semibold">Holistic Approach</h4>
220
- <p class="text-gray-400">Addressing mind, body, and spirit for complete transformation</p>
221
- </div>
222
- </div>
223
-
224
- <div class="flex items-start">
225
- <div class="flex-shrink-0 mt-1">
226
- <div class="flex items-center justify-center h-8 w-8 rounded-full bg-gradient-to-r from-cyan-500 to-purple-600">
227
- <i class="fas fa-bolt text-white"></i>
228
- </div>
229
- </div>
230
- <div class="ml-4">
231
- <h4 class="text-lg font-semibold">Rapid Results</h4>
232
- <p class="text-gray-400">Clients often experience breakthroughs in just weeks</p>
233
  </div>
 
 
234
  </div>
235
  </div>
236
-
237
- <div class="mt-8">
238
- <a href="#services" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-full shadow-sm text-white bg-gradient-to-r from-cyan-500 to-purple-600 hover:opacity-90 transition-all duration-300">
239
- Explore Services
240
- <i class="fas fa-arrow-right ml-2"></i>
241
- </a>
242
- </div>
243
  </div>
244
  </div>
245
  </div>
246
  </section>
247
 
248
  <!-- Services Section -->
249
- <section id="services" class="py-20 px-4 bg-gradient-to-b from-black to-gray-900">
250
- <div class="max-w-7xl mx-auto">
251
  <div class="text-center mb-16">
252
- <h2 class="text-4xl font-bold mb-4">Transformational <span class="gradient-text">Programs</span></h2>
253
- <div class="w-24 h-1 bg-gradient-to-r from-cyan-500 to-purple-600 mx-auto mb-6"></div>
254
- <p class="text-xl text-gray-300 max-w-3xl mx-auto">Customized coaching solutions designed for your unique needs</p>
 
255
  </div>
256
 
257
- <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
258
- <!-- Service Card 1 -->
259
- <div class="bg-gray-900 rounded-xl p-8 card-hover border border-gray-800 hover:border-cyan-500 transition-all duration-500">
260
- <div class="flex items-center justify-center h-16 w-16 rounded-full bg-gradient-to-r from-cyan-500 to-blue-500 mb-6">
261
- <i class="fas fa-rocket text-white text-2xl"></i>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
262
  </div>
263
- <h3 class="text-2xl font-bold mb-4">Breakthrough Intensive</h3>
264
- <p class="text-gray-400 mb-6">3-month deep dive program for those ready to make massive life changes</p>
265
- <ul class="space-y-3 mb-8">
266
- <li class="flex items-center">
267
- <i class="fas fa-check-circle text-cyan-500 mr-2"></i>
268
- <span>Weekly 1:1 coaching sessions</span>
269
- </li>
270
- <li class="flex items-center">
271
- <i class="fas fa-check-circle text-cyan-500 mr-2"></i>
272
- <span>Customized action plan</span>
273
- </li>
274
- <li class="flex items-center">
275
- <i class="fas fa-check-circle text-cyan-500 mr-2"></i>
276
- <span>24/7 Voxer support</span>
277
- </li>
278
- </ul>
279
- <div class="text-3xl font-bold mb-4">$3,997</div>
280
- <a href="#contact" class="inline-flex items-center justify-center w-full px-6 py-3 border border-transparent text-base font-medium rounded-full shadow-sm text-white bg-gradient-to-r from-cyan-500 to-blue-600 hover:opacity-90 transition-all duration-300">
281
- Get Started
282
- </a>
283
  </div>
284
 
285
- <!-- Service Card 2 (Featured) -->
286
- <div class="bg-gray-800 rounded-xl p-8 card-hover border border-purple-500 transform scale-105 shadow-xl shadow-purple-500/20 relative">
287
- <div class="absolute -top-3 -right-3 bg-purple-600 text-white text-xs font-bold px-3 py-1 rounded-full">MOST POPULAR</div>
288
- <div class="flex items-center justify-center h-16 w-16 rounded-full bg-gradient-to-r from-purple-500 to-pink-500 mb-6">
289
- <i class="fas fa-crown text-white text-2xl"></i>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  </div>
291
- <h3 class="text-2xl font-bold mb-4">Elite Mastermind</h3>
292
- <p class="text-gray-300 mb-6">6-month high-level transformation for entrepreneurs and executives</p>
293
- <ul class="space-y-3 mb-8">
294
- <li class="flex items-center">
295
- <i class="fas fa-check-circle text-purple-400 mr-2"></i>
296
- <span>Bi-weekly 1:1 coaching</span>
297
- </li>
298
- <li class="flex items-center">
299
- <i class="fas fa-check-circle text-purple-400 mr-2"></i>
300
- <span>Monthly group masterminds</span>
301
- </li>
302
- <li class="flex items-center">
303
- <i class="fas fa-check-circle text-purple-400 mr-2"></i>
304
- <span>Exclusive retreat</span>
305
- </li>
306
- <li class="flex items-center">
307
- <i class="fas fa-check-circle text-purple-400 mr-2"></i>
308
- <span>Lifetime community access</span>
309
- </li>
310
- </ul>
311
- <div class="text-3xl font-bold mb-4">$9,997</div>
312
- <a href="#contact" class="inline-flex items-center justify-center w-full px-6 py-3 border border-transparent text-base font-medium rounded-full shadow-sm text-white bg-gradient-to-r from-purple-500 to-pink-600 hover:opacity-90 transition-all duration-300">
313
- Join Mastermind
314
- </a>
315
  </div>
316
 
317
- <!-- Service Card 3 -->
318
- <div class="bg-gray-900 rounded-xl p-8 card-hover border border-gray-800 hover:border-cyan-500 transition-all duration-500">
319
- <div class="flex items-center justify-center h-16 w-16 rounded-full bg-gradient-to-r from-blue-500 to-indigo-500 mb-6">
320
- <i class="fas fa-lightbulb text-white text-2xl"></i>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
  </div>
322
- <h3 class="text-2xl font-bold mb-4">Clarity Session</h3>
323
- <p class="text-gray-400 mb-6">90-minute power session to gain crystal clear direction</p>
324
- <ul class="space-y-3 mb-8">
325
- <li class="flex items-center">
326
- <i class="fas fa-check-circle text-blue-400 mr-2"></i>
327
- <span>Deep dive into your vision</span>
328
- </li>
329
- <li class="flex items-center">
330
- <i class="fas fa-check-circle text-blue-400 mr-2"></i>
331
- <span>Identify limiting beliefs</span>
332
- </li>
333
- <li class="flex items-center">
334
- <i class="fas fa-check-circle text-blue-400 mr-2"></i>
335
- <span>Customized roadmap</span>
336
- </li>
337
- </ul>
338
- <div class="text-3xl font-bold mb-4">$997</div>
339
- <a href="#contact" class="inline-flex items-center justify-center w-full px-6 py-3 border border-transparent text-base font-medium rounded-full shadow-sm text-white bg-gradient-to-r from-blue-500 to-indigo-600 hover:opacity-90 transition-all duration-300">
340
- Book Now
341
- </a>
342
  </div>
343
  </div>
 
 
 
 
 
 
344
  </div>
345
  </section>
346
 
347
  <!-- Testimonials Section -->
348
- <section id="testimonials" class="py-20 px-4 bg-black parallax" style="background-image: url('https://images.unsplash.com/photo-1519681393764-ad5297fda0c9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80')">
349
- <div class="max-w-7xl mx-auto">
350
  <div class="text-center mb-16">
351
- <h2 class="text-4xl font-bold mb-4">Client <span class="gradient-text">Success Stories</span></h2>
352
- <div class="w-24 h-1 bg-gradient-to-r from-cyan-500 to-purple-600 mx-auto mb-6"></div>
353
- <p class="text-xl text-gray-300 max-w-3xl mx-auto">Hear from those who've transformed their lives with Alex's guidance</p>
 
354
  </div>
355
 
356
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
357
  <!-- Testimonial 1 -->
358
- <div class="bg-gray-900 bg-opacity-80 backdrop-blur-sm rounded-xl p-8 card-hover border border-gray-800 hover:border-cyan-500 transition-all duration-500">
359
  <div class="flex items-center mb-6">
360
- <img class="w-12 h-12 rounded-full" src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J.">
361
- <div class="ml-4">
362
- <h4 class="text-lg font-semibold">Sarah J.</h4>
363
- <p class="text-cyan-400">Entrepreneur</p>
364
  </div>
365
  </div>
366
- <p class="text-gray-300 italic mb-6">"Working with Alex completely changed my mindset about what's possible. In just 3 months, I went from struggling to pay rent to landing my first 6-figure client."</p>
 
 
367
  <div class="flex text-yellow-400">
368
  <i class="fas fa-star"></i>
369
  <i class="fas fa-star"></i>
@@ -374,15 +350,17 @@
374
  </div>
375
 
376
  <!-- Testimonial 2 -->
377
- <div class="bg-gray-900 bg-opacity-80 backdrop-blur-sm rounded-xl p-8 card-hover border border-gray-800 hover:border-purple-500 transition-all duration-500">
378
  <div class="flex items-center mb-6">
379
- <img class="w-12 h-12 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T.">
380
- <div class="ml-4">
381
- <h4 class="text-lg font-semibold">Michael T.</h4>
382
- <p class="text-purple-400">Tech Executive</p>
383
  </div>
384
  </div>
385
- <p class="text-gray-300 italic mb-6">"The Marshi Method helped me overcome imposter syndrome that was holding me back for years. I finally got the promotion I deserved and doubled my income."</p>
 
 
386
  <div class="flex text-yellow-400">
387
  <i class="fas fa-star"></i>
388
  <i class="fas fa-star"></i>
@@ -393,15 +371,17 @@
393
  </div>
394
 
395
  <!-- Testimonial 3 -->
396
- <div class="bg-gray-900 bg-opacity-80 backdrop-blur-sm rounded-xl p-8 card-hover border border-gray-800 hover:border-blue-500 transition-all duration-500">
397
  <div class="flex items-center mb-6">
398
- <img class="w-12 h-12 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Lisa R.">
399
- <div class="ml-4">
400
- <h4 class="text-lg font-semibold">Lisa R.</h4>
401
- <p class="text-blue-400">Life Coach</p>
402
  </div>
403
  </div>
404
- <p class="text-gray-300 italic mb-6">"Alex's neuroscience-based approach gave me tools I'd never encountered before. My coaching business tripled in revenue and my clients are getting better results than ever."</p>
 
 
405
  <div class="flex text-yellow-400">
406
  <i class="fas fa-star"></i>
407
  <i class="fas fa-star"></i>
@@ -412,120 +392,110 @@
412
  </div>
413
  </div>
414
 
415
- <div class="mt-16 text-center">
416
- <a href="#contact" class="inline-flex items-center px-8 py-4 border border-transparent text-lg font-medium rounded-full shadow-sm text-white bg-gradient-to-r from-cyan-500 to-purple-600 hover:opacity-90 transition-all duration-300 transform hover:scale-105">
417
- Ready for Your Transformation?
418
- <i class="fas fa-arrow-right ml-3"></i>
419
  </a>
420
  </div>
421
  </div>
422
  </section>
423
 
424
  <!-- Contact Section -->
425
- <section id="contact" class="py-20 px-4 bg-gradient-to-b from-gray-900 to-black">
426
- <div class="max-w-7xl mx-auto">
427
  <div class="text-center mb-16">
428
- <h2 class="text-4xl font-bold mb-4">Begin Your <span class="gradient-text">Journey</span></h2>
429
- <div class="w-24 h-1 bg-gradient-to-r from-cyan-500 to-purple-600 mx-auto mb-6"></div>
430
- <p class="text-xl text-gray-300 max-w-3xl mx-auto">Schedule a complimentary discovery call to explore how we can work together</p>
 
431
  </div>
432
 
433
- <div class="flex flex-col md:flex-row gap-12">
434
- <div class="md:w-1/2">
435
- <form class="space-y-6">
 
436
  <div>
437
- <label for="name" class="block text-sm font-medium text-gray-300">Full Name</label>
438
- <input type="text" id="name" class="mt-1 block w-full bg-gray-800 border-gray-700 rounded-md py-3 px-4 text-white focus:ring-2 focus:ring-cyan-500 focus:border-transparent" placeholder="Your name">
439
  </div>
440
-
441
  <div>
442
- <label for="email" class="block text-sm font-medium text-gray-300">Email Address</label>
443
- <input type="email" id="email" class="mt-1 block w-full bg-gray-800 border-gray-700 rounded-md py-3 px-4 text-white focus:ring-2 focus:ring-cyan-500 focus:border-transparent" placeholder="[email protected]">
444
  </div>
445
-
446
  <div>
447
- <label for="service" class="block text-sm font-medium text-gray-300">Service Interest</label>
448
- <select id="service" class="mt-1 block w-full bg-gray-800 border-gray-700 rounded-md py-3 px-4 text-white focus:ring-2 focus:ring-cyan-500 focus:border-transparent">
449
- <option>Select a program</option>
450
- <option>Breakthrough Intensive</option>
451
- <option>Elite Mastermind</option>
452
- <option>Clarity Session</option>
453
- <option>Not sure - need guidance</option>
454
- </select>
455
  </div>
456
-
457
  <div>
458
- <label for="message" class="block text-sm font-medium text-gray-300">Your Goals</label>
459
- <textarea id="message" rows="4" class="mt-1 block w-full bg-gray-800 border-gray-700 rounded-md py-3 px-4 text-white focus:ring-2 focus:ring-cyan-500 focus:border-transparent" placeholder="What would you like to achieve?"></textarea>
 
 
 
 
 
 
460
  </div>
461
-
462
  <div>
463
- <button type="submit" class="w-full flex justify-center py-4 px-6 border border-transparent rounded-full shadow-sm text-lg font-medium text-white bg-gradient-to-r from-cyan-500 to-purple-600 hover:opacity-90 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-cyan-500 transition-all duration-300 transform hover:scale-105">
464
- Apply Now
465
- <i class="fas fa-paper-plane ml-2"></i>
466
- </button>
467
  </div>
 
 
 
468
  </form>
469
  </div>
470
 
471
- <div class="md:w-1/2">
472
- <div class="bg-gray-900 rounded-xl p-8 h-full border border-gray-800">
473
- <h3 class="text-2xl font-bold mb-6">Contact Information</h3>
474
-
475
- <div class="space-y-6">
476
  <div class="flex items-start">
477
- <div class="flex-shrink-0">
478
- <div class="flex items-center justify-center h-10 w-10 rounded-full bg-gradient-to-r from-cyan-500 to-blue-500">
479
- <i class="fas fa-envelope text-white"></i>
480
- </div>
481
  </div>
482
- <div class="ml-4">
483
- <h4 class="text-lg font-medium">Email</h4>
484
- <p class="text-cyan-400">[email protected]</p>
485
  </div>
486
  </div>
487
-
488
  <div class="flex items-start">
489
- <div class="flex-shrink-0">
490
- <div class="flex items-center justify-center h-10 w-10 rounded-full bg-gradient-to-r from-purple-500 to-pink-500">
491
- <i class="fas fa-phone-alt text-white"></i>
492
- </div>
493
  </div>
494
- <div class="ml-4">
495
- <h4 class="text-lg font-medium">Phone</h4>
496
- <p class="text-purple-400">+1 (555) 123-4567</p>
497
  </div>
498
  </div>
499
-
500
  <div class="flex items-start">
501
- <div class="flex-shrink-0">
502
- <div class="flex items-center justify-center h-10 w-10 rounded-full bg-gradient-to-r from-blue-500 to-indigo-500">
503
- <i class="fas fa-map-marker-alt text-white"></i>
504
- </div>
505
  </div>
506
- <div class="ml-4">
507
- <h4 class="text-lg font-medium">Location</h4>
508
- <p class="text-blue-400">Global (Online Coaching Available Worldwide)</p>
509
  </div>
510
  </div>
511
  </div>
512
-
513
- <div class="mt-12">
514
- <h4 class="text-lg font-medium mb-4">Follow Alex</h4>
515
- <div class="flex space-x-4">
516
- <a href="#" class="h-10 w-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-cyan-600 transition-all duration-300">
517
- <i class="fab fa-instagram text-white"></i>
518
- </a>
519
- <a href="#" class="h-10 w-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-600 transition-all duration-300">
520
- <i class="fab fa-linkedin-in text-white"></i>
521
- </a>
522
- <a href="#" class="h-10 w-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-purple-600 transition-all duration-300">
523
- <i class="fab fa-youtube text-white"></i>
524
- </a>
525
- <a href="#" class="h-10 w-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-pink-500 transition-all duration-300">
526
- <i class="fab fa-tiktok text-white"></i>
527
- </a>
528
- </div>
529
  </div>
530
  </div>
531
  </div>
@@ -534,33 +504,66 @@
534
  </section>
535
 
536
  <!-- Footer -->
537
- <footer class="bg-black py-12 px-4">
538
- <div class="max-w-7xl mx-auto">
539
- <div class="flex flex-col md:flex-row justify-between items-center">
540
- <div class="mb-6 md:mb-0">
541
- <span class="text-2xl font-bold gradient-text">Alex Marshi</span>
542
- <p class="text-gray-500 mt-2">Transformational Life Coaching</p>
 
 
543
  </div>
544
-
545
- <div class="flex flex-wrap justify-center gap-6">
546
- <a href="#home" class="text-gray-400 hover:text-cyan-400">Home</a>
547
- <a href="#about" class="text-gray-400 hover:text-cyan-400">About</a>
548
- <a href="#services" class="text-gray-400 hover:text-cyan-400">Services</a>
549
- <a href="#testimonials" class="text-gray-400 hover:text-cyan-400">Testimonials</a>
550
- <a href="#contact" class="text-gray-400 hover:text-cyan-400">Contact</a>
551
- <a href="#" class="text-gray-400 hover:text-cyan-400">Privacy Policy</a>
552
- <a href="#" class="text-gray-400 hover:text-cyan-400">Terms</a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553
  </div>
554
  </div>
555
-
556
- <div class="mt-12 pt-8 border-t border-gray-800 text-center text-gray-500">
557
- <p>&copy; 2023 Alex Marshi Coaching. All rights reserved.</p>
558
- <p class="mt-2 text-sm">Designed with <i class="fas fa-heart text-cyan-500"></i> for high achievers ready to transform</p>
 
 
 
 
 
559
  </div>
560
  </div>
561
  </footer>
562
 
563
  <script>
 
 
 
 
 
564
  // Smooth scrolling for anchor links
565
  document.querySelectorAll('a[href^="#"]').forEach(anchor => {
566
  anchor.addEventListener('click', function (e) {
@@ -569,52 +572,43 @@
569
  document.querySelector(this.getAttribute('href')).scrollIntoView({
570
  behavior: 'smooth'
571
  });
572
- });
573
- });
574
-
575
- // Typewriter effect
576
- function typeWriter() {
577
- const elements = document.querySelectorAll('.typewriter');
578
- elements.forEach(el => {
579
- const text = el.textContent;
580
- el.textContent = '';
581
- let i = 0;
582
- const speed = 50;
583
 
584
- function type() {
585
- if (i < text.length) {
586
- el.textContent += text.charAt(i);
587
- i++;
588
- setTimeout(type, speed);
589
- }
590
- }
591
-
592
- setTimeout(type, 1000);
593
  });
594
- }
595
-
596
- // Initialize typewriter effect after page load
597
- window.addEventListener('load', typeWriter);
598
-
599
- // Parallax effect
600
- window.addEventListener('scroll', function() {
601
- const parallax = document.querySelector('.parallax');
602
- if (parallax) {
603
- let scrollPosition = window.pageYOffset;
604
- parallax.style.backgroundPositionY = scrollPosition * 0.7 + 'px';
605
- }
606
  });
607
-
608
- // Card hover effects
609
- const cards = document.querySelectorAll('.card-hover');
610
- cards.forEach(card => {
611
- card.addEventListener('mouseenter', function() {
612
- this.style.transform = 'translateY(-10px)';
613
- });
614
 
615
- card.addEventListener('mouseleave', function() {
616
- this.style.transform = 'translateY(0)';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
617
  });
 
 
 
 
618
  });
619
  </script>
620
  <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=AI4U2/coaching-space" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
 
12
  <style>
13
  body {
14
  font-family: 'Montserrat', sans-serif;
 
 
15
  overflow-x: hidden;
16
+ background-color: #0a0a0a;
17
+ color: #f5f5f5;
18
  }
19
 
20
  .hero-video {
 
25
  height: 100%;
26
  object-fit: cover;
27
  z-index: -1;
28
+ opacity: 0.7;
29
  }
30
 
31
  .gradient-text {
32
+ background: linear-gradient(90deg, #ff4d4d, #f9cb28);
33
  -webkit-background-clip: text;
34
  background-clip: text;
35
  color: transparent;
36
  }
37
 
 
 
 
 
38
  .card-hover {
39
  transition: all 0.3s ease;
40
  transform: translateY(0);
 
42
 
43
  .card-hover:hover {
44
  transform: translateY(-10px);
45
+ box-shadow: 0 20px 25px -5px rgba(255, 77, 77, 0.1), 0 10px 10px -5px rgba(255, 77, 77, 0.04);
 
 
 
 
 
 
 
46
  }
47
 
48
  @keyframes float {
 
55
  animation: float 6s ease-in-out infinite;
56
  }
57
 
58
+ .glow {
59
+ box-shadow: 0 0 15px rgba(255, 77, 77, 0.5);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  }
61
 
62
+ .parallax {
63
+ background-attachment: fixed;
64
+ background-position: center;
65
+ background-repeat: no-repeat;
66
+ background-size: cover;
 
 
 
 
67
  }
68
  </style>
69
  </head>
70
+ <body>
71
  <!-- Navigation -->
72
+ <nav class="fixed w-full z-50 bg-black bg-opacity-80 backdrop-blur-sm">
73
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
74
  <div class="flex justify-between h-20 items-center">
75
  <div class="flex-shrink-0 flex items-center">
76
+ <span class="text-2xl font-bold gradient-text">ALEX MARSHI</span>
77
  </div>
78
  <div class="hidden md:block">
79
  <div class="ml-10 flex items-baseline space-x-8">
80
+ <a href="#home" class="text-white hover:text-red-400 px-3 py-2 rounded-md text-sm font-medium transition duration-300">Home</a>
81
+ <a href="#about" class="text-white hover:text-red-400 px-3 py-2 rounded-md text-sm font-medium transition duration-300">About</a>
82
+ <a href="#services" class="text-white hover:text-red-400 px-3 py-2 rounded-md text-sm font-medium transition duration-300">Services</a>
83
+ <a href="#testimonials" class="text-white hover:text-red-400 px-3 py-2 rounded-md text-sm font-medium transition duration-300">Testimonials</a>
84
+ <a href="#contact" class="text-white hover:text-red-400 px-3 py-2 rounded-md text-sm font-medium transition duration-300">Contact</a>
85
  </div>
86
  </div>
87
  <div class="md:hidden">
88
+ <button id="menu-toggle" class="text-white focus:outline-none">
89
  <i class="fas fa-bars text-2xl"></i>
90
  </button>
91
  </div>
92
  </div>
93
  </div>
94
+ <!-- Mobile menu -->
95
+ <div id="mobile-menu" class="hidden md:hidden bg-black bg-opacity-90">
96
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
97
+ <a href="#home" class="text-white block px-3 py-2 rounded-md text-base font-medium">Home</a>
98
+ <a href="#about" class="text-white block px-3 py-2 rounded-md text-base font-medium">About</a>
99
+ <a href="#services" class="text-white block px-3 py-2 rounded-md text-base font-medium">Services</a>
100
+ <a href="#testimonials" class="text-white block px-3 py-2 rounded-md text-base font-medium">Testimonials</a>
101
+ <a href="#contact" class="text-white block px-3 py-2 rounded-md text-base font-medium">Contact</a>
102
+ </div>
103
+ </div>
104
  </nav>
105
 
106
  <!-- Hero Section -->
107
  <section id="home" class="relative h-screen flex items-center justify-center overflow-hidden">
108
  <video autoplay muted loop class="hero-video">
109
+ <source src="https://assets.mixkit.co/videos/preview/mixkit-woman-meditating-in-nature-15845-large.mp4" type="video/mp4">
110
  </video>
111
+ <div class="absolute inset-0 bg-black opacity-50"></div>
112
  <div class="relative z-10 text-center px-4">
113
+ <h1 class="text-5xl md:text-7xl font-bold mb-6 text-white">
114
  <span class="gradient-text">Transform</span> Your Life
115
  </h1>
116
+ <p class="text-xl md:text-2xl mb-8 text-gray-300 max-w-3xl mx-auto">
117
+ Break through limitations and unlock your highest potential with Alex Marshi's revolutionary coaching methodology
118
+ </p>
119
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
120
+ <a href="#contact" class="px-8 py-4 bg-gradient-to-r from-red-500 to-yellow-500 text-white font-bold rounded-full hover:opacity-90 transition duration-300 transform hover:scale-105">
121
+ Book a Session
122
+ </a>
123
+ <a href="#services" class="px-8 py-4 border-2 border-white text-white font-bold rounded-full hover:bg-white hover:bg-opacity-10 transition duration-300 transform hover:scale-105">
124
+ Explore Programs
125
+ </a>
126
  </div>
127
  </div>
128
+ <div class="absolute bottom-10 left-0 right-0 flex justify-center">
129
+ <a href="#about" class="text-white animate-bounce">
130
+ <i class="fas fa-chevron-down text-3xl"></i>
131
+ </a>
132
+ </div>
133
  </section>
134
 
135
  <!-- About Section -->
136
+ <section id="about" class="py-20 bg-black">
137
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
138
+ <div class="flex flex-col md:flex-row items-center">
139
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10 relative">
140
+ <div class="relative">
141
+ <img src="https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1287&q=80"
142
+ alt="Alex Marshi"
143
+ class="rounded-lg w-full h-auto max-w-md mx-auto floating glow">
144
+ <div class="absolute -bottom-5 -right-5 bg-gradient-to-r from-red-500 to-yellow-500 p-4 rounded-lg shadow-lg hidden md:block">
145
+ <p class="text-white font-bold text-lg">15+ Years Experience</p>
 
 
 
 
 
 
 
 
146
  </div>
147
  </div>
148
  </div>
 
149
  <div class="md:w-1/2">
150
+ <h2 class="text-4xl font-bold mb-6 gradient-text">Meet Alex Marshi</h2>
151
+ <p class="text-gray-300 mb-6 text-lg">
152
+ A visionary life coach who has helped thousands break free from limiting beliefs and achieve extraordinary success in all areas of life.
153
+ </p>
154
+ <p class="text-gray-300 mb-6 text-lg">
155
+ After overcoming her own personal struggles, Alex developed a unique methodology that combines neuroscience, psychology, and ancient wisdom to create rapid, lasting transformation.
156
+ </p>
157
+ <div class="grid grid-cols-2 gap-4 mb-8">
158
+ <div class="bg-gray-900 p-4 rounded-lg">
159
+ <div class="text-red-400 text-3xl mb-2">
160
+ <i class="fas fa-graduation-cap"></i>
 
 
161
  </div>
162
+ <h3 class="text-white font-bold mb-1">Certified</h3>
163
+ <p class="text-gray-400 text-sm">ICF Accredited Coach</p>
164
  </div>
165
+ <div class="bg-gray-900 p-4 rounded-lg">
166
+ <div class="text-yellow-400 text-3xl mb-2">
167
+ <i class="fas fa-users"></i>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  </div>
169
+ <h3 class="text-white font-bold mb-1">1000+</h3>
170
+ <p class="text-gray-400 text-sm">Clients Transformed</p>
171
  </div>
172
  </div>
173
+ <a href="#services" class="inline-block px-6 py-3 bg-gradient-to-r from-red-500 to-yellow-500 text-white font-bold rounded-full hover:opacity-90 transition duration-300">
174
+ Discover My Method
175
+ </a>
 
 
 
 
176
  </div>
177
  </div>
178
  </div>
179
  </section>
180
 
181
  <!-- Services Section -->
182
+ <section id="services" class="py-20 bg-gradient-to-b from-black to-gray-900">
183
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
184
  <div class="text-center mb-16">
185
+ <h2 class="text-4xl font-bold gradient-text mb-4">Transformational Programs</h2>
186
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
187
+ Customized coaching solutions designed to create breakthrough results in every area of your life
188
+ </p>
189
  </div>
190
 
191
+ <div class="grid md:grid-cols-3 gap-8">
192
+ <!-- Program 1 -->
193
+ <div class="bg-gray-900 rounded-xl overflow-hidden card-hover">
194
+ <div class="relative h-48 overflow-hidden">
195
+ <img src="https://images.unsplash.com/photo-1545205597-3d9d398c2152?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
196
+ alt="Breakthrough Coaching"
197
+ class="w-full h-full object-cover">
198
+ <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div>
199
+ <div class="absolute bottom-0 left-0 p-6">
200
+ <h3 class="text-2xl font-bold text-white">Breakthrough Intensive</h3>
201
+ </div>
202
+ </div>
203
+ <div class="p-6">
204
+ <p class="text-gray-300 mb-6">
205
+ 90-day immersive program designed to shatter limiting beliefs and create massive momentum in your life.
206
+ </p>
207
+ <ul class="space-y-3 mb-6">
208
+ <li class="flex items-center text-gray-300">
209
+ <i class="fas fa-check-circle text-red-400 mr-2"></i>
210
+ Weekly 1:1 coaching sessions
211
+ </li>
212
+ <li class="flex items-center text-gray-300">
213
+ <i class="fas fa-check-circle text-red-400 mr-2"></i>
214
+ Customized action plan
215
+ </li>
216
+ <li class="flex items-center text-gray-300">
217
+ <i class="fas fa-check-circle text-red-400 mr-2"></i>
218
+ Accountability framework
219
+ </li>
220
+ </ul>
221
+ <div class="flex justify-between items-center">
222
+ <span class="text-2xl font-bold text-white">$2,997</span>
223
+ <a href="#contact" class="px-4 py-2 bg-gradient-to-r from-red-500 to-yellow-500 text-white font-bold rounded-full text-sm hover:opacity-90 transition duration-300">
224
+ Enroll Now
225
+ </a>
226
+ </div>
227
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  </div>
229
 
230
+ <!-- Program 2 -->
231
+ <div class="bg-gray-900 rounded-xl overflow-hidden card-hover transform scale-105">
232
+ <div class="relative">
233
+ <div class="absolute -top-3 -right-3 bg-red-500 text-white text-xs font-bold px-3 py-1 rounded-full z-10">
234
+ MOST POPULAR
235
+ </div>
236
+ </div>
237
+ <div class="relative h-48 overflow-hidden">
238
+ <img src="https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
239
+ alt="Elite Mastermind"
240
+ class="w-full h-full object-cover">
241
+ <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div>
242
+ <div class="absolute bottom-0 left-0 p-6">
243
+ <h3 class="text-2xl font-bold text-white">Elite Mastermind</h3>
244
+ </div>
245
+ </div>
246
+ <div class="p-6">
247
+ <p class="text-gray-300 mb-6">
248
+ 12-month high-level mastermind for entrepreneurs and executives ready to 10X their results.
249
+ </p>
250
+ <ul class="space-y-3 mb-6">
251
+ <li class="flex items-center text-gray-300">
252
+ <i class="fas fa-check-circle text-yellow-400 mr-2"></i>
253
+ Bi-weekly group coaching
254
+ </li>
255
+ <li class="flex items-center text-gray-300">
256
+ <i class="fas fa-check-circle text-yellow-400 mr-2"></i>
257
+ Quarterly retreats
258
+ </li>
259
+ <li class="flex items-center text-gray-300">
260
+ <i class="fas fa-check-circle text-yellow-400 mr-2"></i>
261
+ VIP networking
262
+ </li>
263
+ </ul>
264
+ <div class="flex justify-between items-center">
265
+ <span class="text-2xl font-bold text-white">$25,000</span>
266
+ <a href="#contact" class="px-4 py-2 bg-gradient-to-r from-red-500 to-yellow-500 text-white font-bold rounded-full text-sm hover:opacity-90 transition duration-300">
267
+ Apply Now
268
+ </a>
269
+ </div>
270
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  </div>
272
 
273
+ <!-- Program 3 -->
274
+ <div class="bg-gray-900 rounded-xl overflow-hidden card-hover">
275
+ <div class="relative h-48 overflow-hidden">
276
+ <img src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80"
277
+ alt="Corporate Transformation"
278
+ class="w-full h-full object-cover">
279
+ <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div>
280
+ <div class="absolute bottom-0 left-0 p-6">
281
+ <h3 class="text-2xl font-bold text-white">Corporate Transformation</h3>
282
+ </div>
283
+ </div>
284
+ <div class="p-6">
285
+ <p class="text-gray-300 mb-6">
286
+ Customized programs for organizations looking to elevate team performance and culture.
287
+ </p>
288
+ <ul class="space-y-3 mb-6">
289
+ <li class="flex items-center text-gray-300">
290
+ <i class="fas fa-check-circle text-red-400 mr-2"></i>
291
+ Leadership development
292
+ </li>
293
+ <li class="flex items-center text-gray-300">
294
+ <i class="fas fa-check-circle text-red-400 mr-2"></i>
295
+ Team alignment
296
+ </li>
297
+ <li class="flex items-center text-gray-300">
298
+ <i class="fas fa-check-circle text-red-400 mr-2"></i>
299
+ Culture transformation
300
+ </li>
301
+ </ul>
302
+ <div class="flex justify-between items-center">
303
+ <span class="text-2xl font-bold text-white">Custom</span>
304
+ <a href="#contact" class="px-4 py-2 bg-gradient-to-r from-red-500 to-yellow-500 text-white font-bold rounded-full text-sm hover:opacity-90 transition duration-300">
305
+ Get Proposal
306
+ </a>
307
+ </div>
308
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309
  </div>
310
  </div>
311
+
312
+ <div class="mt-16 text-center">
313
+ <a href="#contact" class="inline-block px-8 py-4 bg-gradient-to-r from-red-500 to-yellow-500 text-white font-bold rounded-full hover:opacity-90 transition duration-300 transform hover:scale-105">
314
+ Schedule a Discovery Call
315
+ </a>
316
+ </div>
317
  </div>
318
  </section>
319
 
320
  <!-- Testimonials Section -->
321
+ <section id="testimonials" class="py-20 bg-black parallax" style="background-image: url('https://images.unsplash.com/photo-1518655048521-f130df041f66?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');">
322
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
323
  <div class="text-center mb-16">
324
+ <h2 class="text-4xl font-bold gradient-text mb-4">Client Transformations</h2>
325
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
326
+ Hear from those who have experienced the power of Alex's coaching
327
+ </p>
328
  </div>
329
 
330
+ <div class="grid md:grid-cols-3 gap-8">
331
  <!-- Testimonial 1 -->
332
+ <div class="bg-black bg-opacity-70 backdrop-blur-sm rounded-xl p-8 border border-gray-800 card-hover">
333
  <div class="flex items-center mb-6">
334
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
335
+ <div>
336
+ <h4 class="text-white font-bold">Sarah J.</h4>
337
+ <p class="text-gray-400 text-sm">Entrepreneur</p>
338
  </div>
339
  </div>
340
+ <p class="text-gray-300 italic mb-6">
341
+ "Working with Alex completely transformed my business and personal life. In just 6 months, I 5X'd my revenue and finally found work-life balance."
342
+ </p>
343
  <div class="flex text-yellow-400">
344
  <i class="fas fa-star"></i>
345
  <i class="fas fa-star"></i>
 
350
  </div>
351
 
352
  <!-- Testimonial 2 -->
353
+ <div class="bg-black bg-opacity-70 backdrop-blur-sm rounded-xl p-8 border border-gray-800 card-hover">
354
  <div class="flex items-center mb-6">
355
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
356
+ <div>
357
+ <h4 class="text-white font-bold">Michael T.</h4>
358
+ <p class="text-gray-400 text-sm">CEO</p>
359
  </div>
360
  </div>
361
+ <p class="text-gray-300 italic mb-6">
362
+ "Alex's mastermind was the best investment I've ever made. The insights and connections have been invaluable to scaling my company."
363
+ </p>
364
  <div class="flex text-yellow-400">
365
  <i class="fas fa-star"></i>
366
  <i class="fas fa-star"></i>
 
371
  </div>
372
 
373
  <!-- Testimonial 3 -->
374
+ <div class="bg-black bg-opacity-70 backdrop-blur-sm rounded-xl p-8 border border-gray-800 card-hover">
375
  <div class="flex items-center mb-6">
376
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Jessica L." class="w-12 h-12 rounded-full mr-4">
377
+ <div>
378
+ <h4 class="text-white font-bold">Jessica L.</h4>
379
+ <p class="text-gray-400 text-sm">Executive</p>
380
  </div>
381
  </div>
382
+ <p class="text-gray-300 italic mb-6">
383
+ "After just 3 months of coaching, I got promoted to a leadership position I'd been chasing for years. Alex helped me unlock confidence I didn't know I had."
384
+ </p>
385
  <div class="flex text-yellow-400">
386
  <i class="fas fa-star"></i>
387
  <i class="fas fa-star"></i>
 
392
  </div>
393
  </div>
394
 
395
+ <div class="mt-12 text-center">
396
+ <a href="#" class="inline-flex items-center text-white hover:text-red-400 transition duration-300">
397
+ <span class="mr-2">View More Success Stories</span>
398
+ <i class="fas fa-arrow-right"></i>
399
  </a>
400
  </div>
401
  </div>
402
  </section>
403
 
404
  <!-- Contact Section -->
405
+ <section id="contact" class="py-20 bg-gradient-to-b from-gray-900 to-black">
406
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
407
  <div class="text-center mb-16">
408
+ <h2 class="text-4xl font-bold gradient-text mb-4">Ready for Transformation?</h2>
409
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
410
+ Schedule your discovery call to begin your journey
411
+ </p>
412
  </div>
413
 
414
+ <div class="grid md:grid-cols-2 gap-12">
415
+ <div class="bg-gray-900 rounded-xl p-8 card-hover">
416
+ <h3 class="text-2xl font-bold text-white mb-6">Get In Touch</h3>
417
+ <form id="contact-form" class="space-y-6">
418
  <div>
419
+ <label for="name" class="block text-gray-300 mb-2">Full Name</label>
420
+ <input type="text" id="name" name="name" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500 text-white" required>
421
  </div>
 
422
  <div>
423
+ <label for="email" class="block text-gray-300 mb-2">Email Address</label>
424
+ <input type="email" id="email" name="email" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500 text-white" required>
425
  </div>
 
426
  <div>
427
+ <label for="phone" class="block text-gray-300 mb-2">Phone Number</label>
428
+ <input type="tel" id="phone" name="phone" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500 text-white">
 
 
 
 
 
 
429
  </div>
 
430
  <div>
431
+ <label for="program" class="block text-gray-300 mb-2">Program Interest</label>
432
+ <select id="program" name="program" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500 text-white">
433
+ <option value="">Select a program</option>
434
+ <option value="Breakthrough Intensive">Breakthrough Intensive</option>
435
+ <option value="Elite Mastermind">Elite Mastermind</option>
436
+ <option value="Corporate Transformation">Corporate Transformation</option>
437
+ <option value="Not Sure">Not Sure - Need Guidance</option>
438
+ </select>
439
  </div>
 
440
  <div>
441
+ <label for="message" class="block text-gray-300 mb-2">Your Message</label>
442
+ <textarea id="message" name="message" rows="4" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500 text-white"></textarea>
 
 
443
  </div>
444
+ <button type="submit" class="w-full px-6 py-4 bg-gradient-to-r from-red-500 to-yellow-500 text-white font-bold rounded-lg hover:opacity-90 transition duration-300">
445
+ Submit Application
446
+ </button>
447
  </form>
448
  </div>
449
 
450
+ <div class="space-y-8">
451
+ <div class="bg-gray-900 rounded-xl p-8 card-hover">
452
+ <h3 class="text-2xl font-bold text-white mb-6">Contact Info</h3>
453
+ <div class="space-y-4">
 
454
  <div class="flex items-start">
455
+ <div class="text-red-400 text-xl mr-4 mt-1">
456
+ <i class="fas fa-map-marker-alt"></i>
 
 
457
  </div>
458
+ <div>
459
+ <h4 class="text-white font-bold">Location</h4>
460
+ <p class="text-gray-400">Los Angeles, CA</p>
461
  </div>
462
  </div>
 
463
  <div class="flex items-start">
464
+ <div class="text-yellow-400 text-xl mr-4 mt-1">
465
+ <i class="fas fa-envelope"></i>
 
 
466
  </div>
467
+ <div>
468
+ <h4 class="text-white font-bold">Email</h4>
469
+ <p class="text-gray-400">[email protected]</p>
470
  </div>
471
  </div>
 
472
  <div class="flex items-start">
473
+ <div class="text-red-400 text-xl mr-4 mt-1">
474
+ <i class="fas fa-phone-alt"></i>
 
 
475
  </div>
476
+ <div>
477
+ <h4 class="text-white font-bold">Phone</h4>
478
+ <p class="text-gray-400">+1 (310) 555-1212</p>
479
  </div>
480
  </div>
481
  </div>
482
+ </div>
483
+
484
+ <div class="bg-gray-900 rounded-xl p-8 card-hover">
485
+ <h3 class="text-2xl font-bold text-white mb-6">Follow Alex</h3>
486
+ <div class="flex space-x-4">
487
+ <a href="#" class="w-12 h-12 flex items-center justify-center bg-gray-800 rounded-full text-white hover:bg-red-500 transition duration-300">
488
+ <i class="fab fa-instagram text-xl"></i>
489
+ </a>
490
+ <a href="#" class="w-12 h-12 flex items-center justify-center bg-gray-800 rounded-full text-white hover:bg-blue-500 transition duration-300">
491
+ <i class="fab fa-linkedin-in text-xl"></i>
492
+ </a>
493
+ <a href="#" class="w-12 h-12 flex items-center justify-center bg-gray-800 rounded-full text-white hover:bg-red-500 transition duration-300">
494
+ <i class="fab fa-youtube text-xl"></i>
495
+ </a>
496
+ <a href="#" class="w-12 h-12 flex items-center justify-center bg-gray-800 rounded-full text-white hover:bg-blue-400 transition duration-300">
497
+ <i class="fab fa-twitter text-xl"></i>
498
+ </a>
499
  </div>
500
  </div>
501
  </div>
 
504
  </section>
505
 
506
  <!-- Footer -->
507
+ <footer class="bg-black py-12 border-t border-gray-800">
508
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
509
+ <div class="grid md:grid-cols-4 gap-8">
510
+ <div>
511
+ <h3 class="text-xl font-bold gradient-text mb-4">ALEX MARSHI</h3>
512
+ <p class="text-gray-400">
513
+ Transformational life coaching to help you break through limitations and achieve extraordinary success.
514
+ </p>
515
  </div>
516
+ <div>
517
+ <h4 class="text-white font-bold mb-4">Quick Links</h4>
518
+ <ul class="space-y-2">
519
+ <li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">Home</a></li>
520
+ <li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About</a></li>
521
+ <li><a href="#services" class="text-gray-400 hover:text-white transition duration-300">Programs</a></li>
522
+ <li><a href="#testimonials" class="text-gray-400 hover:text-white transition duration-300">Testimonials</a></li>
523
+ <li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li>
524
+ </ul>
525
+ </div>
526
+ <div>
527
+ <h4 class="text-white font-bold mb-4">Programs</h4>
528
+ <ul class="space-y-2">
529
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Breakthrough Intensive</a></li>
530
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Elite Mastermind</a></li>
531
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Corporate Programs</a></li>
532
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Private Coaching</a></li>
533
+ </ul>
534
+ </div>
535
+ <div>
536
+ <h4 class="text-white font-bold mb-4">Newsletter</h4>
537
+ <p class="text-gray-400 mb-4">
538
+ Subscribe for exclusive content and coaching insights.
539
+ </p>
540
+ <form class="flex">
541
+ <input type="email" placeholder="Your email" class="px-4 py-2 bg-gray-800 text-white rounded-l-lg focus:outline-none w-full">
542
+ <button type="submit" class="px-4 py-2 bg-gradient-to-r from-red-500 to-yellow-500 text-white rounded-r-lg hover:opacity-90 transition duration-300">
543
+ <i class="fas fa-paper-plane"></i>
544
+ </button>
545
+ </form>
546
  </div>
547
  </div>
548
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
549
+ <p class="text-gray-400 text-sm mb-4 md:mb-0">
550
+ &copy; 2023 Alex Marshi Coaching. All rights reserved.
551
+ </p>
552
+ <div class="flex space-x-6">
553
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Privacy Policy</a>
554
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Terms of Service</a>
555
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Disclaimer</a>
556
+ </div>
557
  </div>
558
  </div>
559
  </footer>
560
 
561
  <script>
562
+ // Mobile menu toggle
563
+ document.getElementById('menu-toggle').addEventListener('click', function() {
564
+ document.getElementById('mobile-menu').classList.toggle('hidden');
565
+ });
566
+
567
  // Smooth scrolling for anchor links
568
  document.querySelectorAll('a[href^="#"]').forEach(anchor => {
569
  anchor.addEventListener('click', function (e) {
 
572
  document.querySelector(this.getAttribute('href')).scrollIntoView({
573
  behavior: 'smooth'
574
  });
 
 
 
 
 
 
 
 
 
 
 
575
 
576
+ // Close mobile menu if open
577
+ document.getElementById('mobile-menu').classList.add('hidden');
 
 
 
 
 
 
 
578
  });
 
 
 
 
 
 
 
 
 
 
 
 
579
  });
580
+
581
+ // Form submission
582
+ document.getElementById('contact-form').addEventListener('submit', function(e) {
583
+ e.preventDefault();
 
 
 
584
 
585
+ // Get form values
586
+ const name = document.getElementById('name').value;
587
+ const email = document.getElementById('email').value;
588
+
589
+ // Here you would typically send the form data to a server
590
+ // For this example, we'll just show an alert
591
+ alert(`Thank you, ${name}! Your application has been submitted. We'll contact you at ${email} shortly.`);
592
+
593
+ // Reset form
594
+ this.reset();
595
+ });
596
+
597
+ // Add animation on scroll
598
+ const observerOptions = {
599
+ threshold: 0.1
600
+ };
601
+
602
+ const observer = new IntersectionObserver((entries) => {
603
+ entries.forEach(entry => {
604
+ if (entry.isIntersecting) {
605
+ entry.target.classList.add('animate-fadeIn');
606
+ }
607
  });
608
+ }, observerOptions);
609
+
610
+ document.querySelectorAll('.card-hover').forEach(card => {
611
+ observer.observe(card);
612
  });
613
  </script>
614
  <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=AI4U2/coaching-space" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
prompts.txt CHANGED
@@ -1 +1,2 @@
1
- High-tech website for transformational life coaching business. Lots of movies and movement and fanciness. Coach is Alex Marshi
 
 
1
+ High-tech website for transformational life coaching business. Lots of movies and movement and fanciness. Coach is Alex Marshi
2
+ Modest Goddess Modeling Agency