Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Alex Marshi | Transformational Life Coaching</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<link rel="preconnect" href="https://fonts.googleapis.com"> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&display=swap" rel="stylesheet"> | |
<style> | |
body { | |
font-family: 'Montserrat', sans-serif; | |
overflow-x: hidden; | |
background-color: #0a0a0a; | |
color: #f5f5f5; | |
} | |
.hero-video { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
object-fit: cover; | |
z-index: -1; | |
opacity: 0.7; | |
} | |
.gradient-text { | |
background: linear-gradient(90deg, #ff4d4d, #f9cb28); | |
-webkit-background-clip: text; | |
background-clip: text; | |
color: transparent; | |
} | |
.card-hover { | |
transition: all 0.3s ease; | |
transform: translateY(0); | |
} | |
.card-hover:hover { | |
transform: translateY(-10px); | |
box-shadow: 0 20px 25px -5px rgba(255, 77, 77, 0.1), 0 10px 10px -5px rgba(255, 77, 77, 0.04); | |
} | |
@keyframes float { | |
0% { transform: translateY(0px); } | |
50% { transform: translateY(-20px); } | |
100% { transform: translateY(0px); } | |
} | |
.floating { | |
animation: float 6s ease-in-out infinite; | |
} | |
.glow { | |
box-shadow: 0 0 15px rgba(255, 77, 77, 0.5); | |
} | |
.parallax { | |
background-attachment: fixed; | |
background-position: center; | |
background-repeat: no-repeat; | |
background-size: cover; | |
} | |
</style> | |
</head> | |
<body> | |
<!-- Navigation --> | |
<nav class="fixed w-full z-50 bg-black bg-opacity-80 backdrop-blur-sm"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex justify-between h-20 items-center"> | |
<div class="flex-shrink-0 flex items-center"> | |
<span class="text-2xl font-bold gradient-text">ALEX MARSHI</span> | |
</div> | |
<div class="hidden md:block"> | |
<div class="ml-10 flex items-baseline space-x-8"> | |
<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> | |
<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> | |
<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> | |
<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> | |
<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> | |
</div> | |
</div> | |
<div class="md:hidden"> | |
<button id="menu-toggle" class="text-white focus:outline-none"> | |
<i class="fas fa-bars text-2xl"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Mobile menu --> | |
<div id="mobile-menu" class="hidden md:hidden bg-black bg-opacity-90"> | |
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> | |
<a href="#home" class="text-white block px-3 py-2 rounded-md text-base font-medium">Home</a> | |
<a href="#about" class="text-white block px-3 py-2 rounded-md text-base font-medium">About</a> | |
<a href="#services" class="text-white block px-3 py-2 rounded-md text-base font-medium">Services</a> | |
<a href="#testimonials" class="text-white block px-3 py-2 rounded-md text-base font-medium">Testimonials</a> | |
<a href="#contact" class="text-white block px-3 py-2 rounded-md text-base font-medium">Contact</a> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section id="home" class="relative h-screen flex items-center justify-center overflow-hidden"> | |
<video autoplay muted loop class="hero-video"> | |
<source src="https://assets.mixkit.co/videos/preview/mixkit-woman-meditating-in-nature-15845-large.mp4" type="video/mp4"> | |
</video> | |
<div class="absolute inset-0 bg-black opacity-50"></div> | |
<div class="relative z-10 text-center px-4"> | |
<h1 class="text-5xl md:text-7xl font-bold mb-6 text-white"> | |
<span class="gradient-text">Transform</span> Your Life | |
</h1> | |
<p class="text-xl md:text-2xl mb-8 text-gray-300 max-w-3xl mx-auto"> | |
Break through limitations and unlock your highest potential with Alex Marshi's revolutionary coaching methodology | |
</p> | |
<div class="flex flex-col sm:flex-row justify-center gap-4"> | |
<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"> | |
Book a Session | |
</a> | |
<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"> | |
Explore Programs | |
</a> | |
</div> | |
</div> | |
<div class="absolute bottom-10 left-0 right-0 flex justify-center"> | |
<a href="#about" class="text-white animate-bounce"> | |
<i class="fas fa-chevron-down text-3xl"></i> | |
</a> | |
</div> | |
</section> | |
<!-- About Section --> | |
<section id="about" class="py-20 bg-black"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10 relative"> | |
<div class="relative"> | |
<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" | |
alt="Alex Marshi" | |
class="rounded-lg w-full h-auto max-w-md mx-auto floating glow"> | |
<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"> | |
<p class="text-white font-bold text-lg">15+ Years Experience</p> | |
</div> | |
</div> | |
</div> | |
<div class="md:w-1/2"> | |
<h2 class="text-4xl font-bold mb-6 gradient-text">Meet Alex Marshi</h2> | |
<p class="text-gray-300 mb-6 text-lg"> | |
A visionary life coach who has helped thousands break free from limiting beliefs and achieve extraordinary success in all areas of life. | |
</p> | |
<p class="text-gray-300 mb-6 text-lg"> | |
After overcoming her own personal struggles, Alex developed a unique methodology that combines neuroscience, psychology, and ancient wisdom to create rapid, lasting transformation. | |
</p> | |
<div class="grid grid-cols-2 gap-4 mb-8"> | |
<div class="bg-gray-900 p-4 rounded-lg"> | |
<div class="text-red-400 text-3xl mb-2"> | |
<i class="fas fa-graduation-cap"></i> | |
</div> | |
<h3 class="text-white font-bold mb-1">Certified</h3> | |
<p class="text-gray-400 text-sm">ICF Accredited Coach</p> | |
</div> | |
<div class="bg-gray-900 p-4 rounded-lg"> | |
<div class="text-yellow-400 text-3xl mb-2"> | |
<i class="fas fa-users"></i> | |
</div> | |
<h3 class="text-white font-bold mb-1">1000+</h3> | |
<p class="text-gray-400 text-sm">Clients Transformed</p> | |
</div> | |
</div> | |
<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"> | |
Discover My Method | |
</a> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Services Section --> | |
<section id="services" class="py-20 bg-gradient-to-b from-black to-gray-900"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-4xl font-bold gradient-text mb-4">Transformational Programs</h2> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> | |
Customized coaching solutions designed to create breakthrough results in every area of your life | |
</p> | |
</div> | |
<div class="grid md:grid-cols-3 gap-8"> | |
<!-- Program 1 --> | |
<div class="bg-gray-900 rounded-xl overflow-hidden card-hover"> | |
<div class="relative h-48 overflow-hidden"> | |
<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" | |
alt="Breakthrough Coaching" | |
class="w-full h-full object-cover"> | |
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div> | |
<div class="absolute bottom-0 left-0 p-6"> | |
<h3 class="text-2xl font-bold text-white">Breakthrough Intensive</h3> | |
</div> | |
</div> | |
<div class="p-6"> | |
<p class="text-gray-300 mb-6"> | |
90-day immersive program designed to shatter limiting beliefs and create massive momentum in your life. | |
</p> | |
<ul class="space-y-3 mb-6"> | |
<li class="flex items-center text-gray-300"> | |
<i class="fas fa-check-circle text-red-400 mr-2"></i> | |
Weekly 1:1 coaching sessions | |
</li> | |
<li class="flex items-center text-gray-300"> | |
<i class="fas fa-check-circle text-red-400 mr-2"></i> | |
Customized action plan | |
</li> | |
<li class="flex items-center text-gray-300"> | |
<i class="fas fa-check-circle text-red-400 mr-2"></i> | |
Accountability framework | |
</li> | |
</ul> | |
<div class="flex justify-between items-center"> | |
<span class="text-2xl font-bold text-white">$2,997</span> | |
<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"> | |
Enroll Now | |
</a> | |
</div> | |
</div> | |
</div> | |
<!-- Program 2 --> | |
<div class="bg-gray-900 rounded-xl overflow-hidden card-hover transform scale-105"> | |
<div class="relative"> | |
<div class="absolute -top-3 -right-3 bg-red-500 text-white text-xs font-bold px-3 py-1 rounded-full z-10"> | |
MOST POPULAR | |
</div> | |
</div> | |
<div class="relative h-48 overflow-hidden"> | |
<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" | |
alt="Elite Mastermind" | |
class="w-full h-full object-cover"> | |
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div> | |
<div class="absolute bottom-0 left-0 p-6"> | |
<h3 class="text-2xl font-bold text-white">Elite Mastermind</h3> | |
</div> | |
</div> | |
<div class="p-6"> | |
<p class="text-gray-300 mb-6"> | |
12-month high-level mastermind for entrepreneurs and executives ready to 10X their results. | |
</p> | |
<ul class="space-y-3 mb-6"> | |
<li class="flex items-center text-gray-300"> | |
<i class="fas fa-check-circle text-yellow-400 mr-2"></i> | |
Bi-weekly group coaching | |
</li> | |
<li class="flex items-center text-gray-300"> | |
<i class="fas fa-check-circle text-yellow-400 mr-2"></i> | |
Quarterly retreats | |
</li> | |
<li class="flex items-center text-gray-300"> | |
<i class="fas fa-check-circle text-yellow-400 mr-2"></i> | |
VIP networking | |
</li> | |
</ul> | |
<div class="flex justify-between items-center"> | |
<span class="text-2xl font-bold text-white">$25,000</span> | |
<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"> | |
Apply Now | |
</a> | |
</div> | |
</div> | |
</div> | |
<!-- Program 3 --> | |
<div class="bg-gray-900 rounded-xl overflow-hidden card-hover"> | |
<div class="relative h-48 overflow-hidden"> | |
<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" | |
alt="Corporate Transformation" | |
class="w-full h-full object-cover"> | |
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div> | |
<div class="absolute bottom-0 left-0 p-6"> | |
<h3 class="text-2xl font-bold text-white">Corporate Transformation</h3> | |
</div> | |
</div> | |
<div class="p-6"> | |
<p class="text-gray-300 mb-6"> | |
Customized programs for organizations looking to elevate team performance and culture. | |
</p> | |
<ul class="space-y-3 mb-6"> | |
<li class="flex items-center text-gray-300"> | |
<i class="fas fa-check-circle text-red-400 mr-2"></i> | |
Leadership development | |
</li> | |
<li class="flex items-center text-gray-300"> | |
<i class="fas fa-check-circle text-red-400 mr-2"></i> | |
Team alignment | |
</li> | |
<li class="flex items-center text-gray-300"> | |
<i class="fas fa-check-circle text-red-400 mr-2"></i> | |
Culture transformation | |
</li> | |
</ul> | |
<div class="flex justify-between items-center"> | |
<span class="text-2xl font-bold text-white">Custom</span> | |
<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"> | |
Get Proposal | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="mt-16 text-center"> | |
<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"> | |
Schedule a Discovery Call | |
</a> | |
</div> | |
</div> | |
</section> | |
<!-- Testimonials Section --> | |
<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');"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-4xl font-bold gradient-text mb-4">Client Transformations</h2> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> | |
Hear from those who have experienced the power of Alex's coaching | |
</p> | |
</div> | |
<div class="grid md:grid-cols-3 gap-8"> | |
<!-- Testimonial 1 --> | |
<div class="bg-black bg-opacity-70 backdrop-blur-sm rounded-xl p-8 border border-gray-800 card-hover"> | |
<div class="flex items-center mb-6"> | |
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="text-white font-bold">Sarah J.</h4> | |
<p class="text-gray-400 text-sm">Entrepreneur</p> | |
</div> | |
</div> | |
<p class="text-gray-300 italic mb-6"> | |
"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." | |
</p> | |
<div class="flex text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<!-- Testimonial 2 --> | |
<div class="bg-black bg-opacity-70 backdrop-blur-sm rounded-xl p-8 border border-gray-800 card-hover"> | |
<div class="flex items-center mb-6"> | |
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="text-white font-bold">Michael T.</h4> | |
<p class="text-gray-400 text-sm">CEO</p> | |
</div> | |
</div> | |
<p class="text-gray-300 italic mb-6"> | |
"Alex's mastermind was the best investment I've ever made. The insights and connections have been invaluable to scaling my company." | |
</p> | |
<div class="flex text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<!-- Testimonial 3 --> | |
<div class="bg-black bg-opacity-70 backdrop-blur-sm rounded-xl p-8 border border-gray-800 card-hover"> | |
<div class="flex items-center mb-6"> | |
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Jessica L." class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="text-white font-bold">Jessica L.</h4> | |
<p class="text-gray-400 text-sm">Executive</p> | |
</div> | |
</div> | |
<p class="text-gray-300 italic mb-6"> | |
"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." | |
</p> | |
<div class="flex text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
</div> | |
<div class="mt-12 text-center"> | |
<a href="#" class="inline-flex items-center text-white hover:text-red-400 transition duration-300"> | |
<span class="mr-2">View More Success Stories</span> | |
<i class="fas fa-arrow-right"></i> | |
</a> | |
</div> | |
</div> | |
</section> | |
<!-- Contact Section --> | |
<section id="contact" class="py-20 bg-gradient-to-b from-gray-900 to-black"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-4xl font-bold gradient-text mb-4">Ready for Transformation?</h2> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> | |
Schedule your discovery call to begin your journey | |
</p> | |
</div> | |
<div class="grid md:grid-cols-2 gap-12"> | |
<div class="bg-gray-900 rounded-xl p-8 card-hover"> | |
<h3 class="text-2xl font-bold text-white mb-6">Get In Touch</h3> | |
<form id="contact-form" class="space-y-6"> | |
<div> | |
<label for="name" class="block text-gray-300 mb-2">Full Name</label> | |
<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> | |
</div> | |
<div> | |
<label for="email" class="block text-gray-300 mb-2">Email Address</label> | |
<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> | |
</div> | |
<div> | |
<label for="phone" class="block text-gray-300 mb-2">Phone Number</label> | |
<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"> | |
</div> | |
<div> | |
<label for="program" class="block text-gray-300 mb-2">Program Interest</label> | |
<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"> | |
<option value="">Select a program</option> | |
<option value="Breakthrough Intensive">Breakthrough Intensive</option> | |
<option value="Elite Mastermind">Elite Mastermind</option> | |
<option value="Corporate Transformation">Corporate Transformation</option> | |
<option value="Not Sure">Not Sure - Need Guidance</option> | |
</select> | |
</div> | |
<div> | |
<label for="message" class="block text-gray-300 mb-2">Your Message</label> | |
<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> | |
</div> | |
<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"> | |
Submit Application | |
</button> | |
</form> | |
</div> | |
<div class="space-y-8"> | |
<div class="bg-gray-900 rounded-xl p-8 card-hover"> | |
<h3 class="text-2xl font-bold text-white mb-6">Contact Info</h3> | |
<div class="space-y-4"> | |
<div class="flex items-start"> | |
<div class="text-red-400 text-xl mr-4 mt-1"> | |
<i class="fas fa-map-marker-alt"></i> | |
</div> | |
<div> | |
<h4 class="text-white font-bold">Location</h4> | |
<p class="text-gray-400">Los Angeles, CA</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="text-yellow-400 text-xl mr-4 mt-1"> | |
<i class="fas fa-envelope"></i> | |
</div> | |
<div> | |
<h4 class="text-white font-bold">Email</h4> | |
<p class="text-gray-400">connect@alexmarshi.com</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="text-red-400 text-xl mr-4 mt-1"> | |
<i class="fas fa-phone-alt"></i> | |
</div> | |
<div> | |
<h4 class="text-white font-bold">Phone</h4> | |
<p class="text-gray-400">+1 (310) 555-1212</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="bg-gray-900 rounded-xl p-8 card-hover"> | |
<h3 class="text-2xl font-bold text-white mb-6">Follow Alex</h3> | |
<div class="flex space-x-4"> | |
<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"> | |
<i class="fab fa-instagram text-xl"></i> | |
</a> | |
<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"> | |
<i class="fab fa-linkedin-in text-xl"></i> | |
</a> | |
<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"> | |
<i class="fab fa-youtube text-xl"></i> | |
</a> | |
<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"> | |
<i class="fab fa-twitter text-xl"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-black py-12 border-t border-gray-800"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid md:grid-cols-4 gap-8"> | |
<div> | |
<h3 class="text-xl font-bold gradient-text mb-4">ALEX MARSHI</h3> | |
<p class="text-gray-400"> | |
Transformational life coaching to help you break through limitations and achieve extraordinary success. | |
</p> | |
</div> | |
<div> | |
<h4 class="text-white font-bold mb-4">Quick Links</h4> | |
<ul class="space-y-2"> | |
<li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">Home</a></li> | |
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About</a></li> | |
<li><a href="#services" class="text-gray-400 hover:text-white transition duration-300">Programs</a></li> | |
<li><a href="#testimonials" class="text-gray-400 hover:text-white transition duration-300">Testimonials</a></li> | |
<li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-white font-bold mb-4">Programs</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Breakthrough Intensive</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Elite Mastermind</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Corporate Programs</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Private Coaching</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-white font-bold mb-4">Newsletter</h4> | |
<p class="text-gray-400 mb-4"> | |
Subscribe for exclusive content and coaching insights. | |
</p> | |
<form class="flex"> | |
<input type="email" placeholder="Your email" class="px-4 py-2 bg-gray-800 text-white rounded-l-lg focus:outline-none w-full"> | |
<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"> | |
<i class="fas fa-paper-plane"></i> | |
</button> | |
</form> | |
</div> | |
</div> | |
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
<p class="text-gray-400 text-sm mb-4 md:mb-0"> | |
© 2023 Alex Marshi Coaching. All rights reserved. | |
</p> | |
<div class="flex space-x-6"> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Privacy Policy</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Terms of Service</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Disclaimer</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Mobile menu toggle | |
document.getElementById('menu-toggle').addEventListener('click', function() { | |
document.getElementById('mobile-menu').classList.toggle('hidden'); | |
}); | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
// Close mobile menu if open | |
document.getElementById('mobile-menu').classList.add('hidden'); | |
}); | |
}); | |
// Form submission | |
document.getElementById('contact-form').addEventListener('submit', function(e) { | |
e.preventDefault(); | |
// Get form values | |
const name = document.getElementById('name').value; | |
const email = document.getElementById('email').value; | |
// Here you would typically send the form data to a server | |
// For this example, we'll just show an alert | |
alert(`Thank you, ${name}! Your application has been submitted. We'll contact you at ${email} shortly.`); | |
// Reset form | |
this.reset(); | |
}); | |
// Add animation on scroll | |
const observerOptions = { | |
threshold: 0.1 | |
}; | |
const observer = new IntersectionObserver((entries) => { | |
entries.forEach(entry => { | |
if (entry.isIntersecting) { | |
entry.target.classList.add('animate-fadeIn'); | |
} | |
}); | |
}, observerOptions); | |
document.querySelectorAll('.card-hover').forEach(card => { | |
observer.observe(card); | |
}); | |
</script> | |
<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> | |
</html> |