| | <!DOCTYPE html> |
| | <html lang="en"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>Winners Circle 4L - Become Your Best Version</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"> |
| | <style> |
| | |
| | .hero-bg { |
| | background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80'); |
| | background-size: cover; |
| | background-position: center; |
| | } |
| | |
| | .section-bg { |
| | background-color: #f8fafc; |
| | } |
| | |
| | .card-hover:hover { |
| | transform: translateY(-5px); |
| | box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| | } |
| | |
| | .nav-link:hover { |
| | color: #3b82f6; |
| | } |
| | |
| | .testimonial-card { |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .testimonial-card:hover { |
| | transform: scale(1.03); |
| | } |
| | |
| | |
| | @keyframes pulse { |
| | 0% { |
| | transform: scale(1); |
| | } |
| | 50% { |
| | transform: scale(1.05); |
| | } |
| | 100% { |
| | transform: scale(1); |
| | } |
| | } |
| | |
| | .cta-pulse { |
| | animation: pulse 2s infinite; |
| | } |
| | </style> |
| | </head> |
| | <body class="font-sans antialiased text-gray-800"> |
| | |
| | <nav class="bg-white shadow-lg sticky top-0 z-50"> |
| | <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| | <div class="flex justify-between h-16"> |
| | <div class="flex items-center"> |
| | <div class="flex-shrink-0 flex items-center"> |
| | <i class="fas fa-trophy text-blue-500 text-2xl mr-2"></i> |
| | <span class="text-xl font-bold text-gray-900">Winners Circle 4L</span> |
| | </div> |
| | </div> |
| | <div class="hidden md:flex items-center space-x-8"> |
| | <a href="#home" class="nav-link text-gray-700 hover:text-blue-500 px-3 py-2 rounded-md text-sm font-medium transition duration-300">Home</a> |
| | <a href="#about" class="nav-link text-gray-700 hover:text-blue-500 px-3 py-2 rounded-md text-sm font-medium transition duration-300">About</a> |
| | <a href="#programs" class="nav-link text-gray-700 hover:text-blue-500 px-3 py-2 rounded-md text-sm font-medium transition duration-300">Programs</a> |
| | <a href="#testimonials" class="nav-link text-gray-700 hover:text-blue-500 px-3 py-2 rounded-md text-sm font-medium transition duration-300">Success Stories</a> |
| | <a href="#contact" class="nav-link text-gray-700 hover:text-blue-500 px-3 py-2 rounded-md text-sm font-medium transition duration-300">Contact</a> |
| | </div> |
| | <div class="flex items-center md:hidden"> |
| | <button id="mobile-menu-button" class="text-gray-500 hover:text-gray-900 focus:outline-none"> |
| | <i class="fas fa-bars text-xl"></i> |
| | </button> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | |
| | <div id="mobile-menu" class="hidden md:hidden bg-white border-t"> |
| | <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> |
| | <a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-500 hover:bg-gray-50">Home</a> |
| | <a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-500 hover:bg-gray-50">About</a> |
| | <a href="#programs" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-500 hover:bg-gray-50">Programs</a> |
| | <a href="#testimonials" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-500 hover:bg-gray-50">Success Stories</a> |
| | <a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-500 hover:bg-gray-50">Contact</a> |
| | </div> |
| | </div> |
| | </nav> |
| |
|
| | |
| | <section id="home" class="hero-bg text-white py-20 md:py-32"> |
| | <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> |
| | <h1 class="text-4xl md:text-6xl font-bold mb-6 animate-fade-in">Unlock Your <span class="text-blue-400">Greatest Potential</span></h1> |
| | <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">At Winners Circle 4L, we transform ordinary individuals into extraordinary versions of themselves through holistic personal development.</p> |
| | <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| | <a href="#programs" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105 cta-pulse"> |
| | Explore Programs |
| | </a> |
| | <a href="#contact" class="bg-transparent hover:bg-white hover:text-gray-900 text-white font-bold py-3 px-8 border-2 border-white rounded-full transition duration-300"> |
| | Join Now |
| | </a> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section id="about" class="py-16 section-bg"> |
| | <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| | <div class="text-center mb-12"> |
| | <h2 class="text-3xl font-bold text-gray-900 mb-4">About Winners Circle 4L</h2> |
| | <div class="w-24 h-1 bg-blue-500 mx-auto"></div> |
| | </div> |
| | |
| | <div class="flex flex-col md:flex-row items-center gap-12"> |
| | <div class="md:w-1/2"> |
| | <img src="https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="About Winners Circle" class="rounded-lg shadow-xl w-full h-auto"> |
| | </div> |
| | <div class="md:w-1/2"> |
| | <h3 class="text-2xl font-semibold mb-4 text-gray-800">Your Journey to Excellence Starts Here</h3> |
| | <p class="text-gray-600 mb-4">Winners Circle 4L is not just an online university—it's a transformative community dedicated to helping individuals become the best versions of themselves in all aspects of life.</p> |
| | <p class="text-gray-600 mb-6">We believe in the 4L philosophy: Learn, Lift, Lead, and Legacy. Our comprehensive programs address mind, body, and financial well-being to create holistic success.</p> |
| | |
| | <div class="grid grid-cols-2 gap-4"> |
| | <div class="flex items-start"> |
| | <div class="bg-blue-100 p-3 rounded-full mr-3"> |
| | <i class="fas fa-brain text-blue-600"></i> |
| | </div> |
| | <div> |
| | <h4 class="font-semibold text-gray-800">Mindset Mastery</h4> |
| | <p class="text-sm text-gray-600">Develop a champion's mindset</p> |
| | </div> |
| | </div> |
| | <div class="flex items-start"> |
| | <div class="bg-blue-100 p-3 rounded-full mr-3"> |
| | <i class="fas fa-dumbbell text-blue-600"></i> |
| | </div> |
| | <div> |
| | <h4 class="font-semibold text-gray-800">Physical Excellence</h4> |
| | <p class="text-sm text-gray-600">Build your ideal physique</p> |
| | </div> |
| | </div> |
| | <div class="flex items-start"> |
| | <div class="bg-blue-100 p-3 rounded-full mr-3"> |
| | <i class="fas fa-chart-line text-blue-600"></i> |
| | </div> |
| | <div> |
| | <h4 class="font-semibold text-gray-800">Financial Freedom</h4> |
| | <p class="text-sm text-gray-600">Master wealth creation</p> |
| | </div> |
| | </div> |
| | <div class="flex items-start"> |
| | <div class="bg-blue-100 p-3 rounded-full mr-3"> |
| | <i class="fas fa-users text-blue-600"></i> |
| | </div> |
| | <div> |
| | <h4 class="font-semibold text-gray-800">Community Support</h4> |
| | <p class="text-sm text-gray-600">Thriving network of winners</p> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section id="programs" class="py-16 bg-white"> |
| | <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| | <div class="text-center mb-12"> |
| | <h2 class="text-3xl font-bold text-gray-900 mb-4">Our Transformative Programs</h2> |
| | <p class="text-xl text-gray-600 max-w-3xl mx-auto">Comprehensive training to elevate every aspect of your life</p> |
| | <div class="w-24 h-1 bg-blue-500 mx-auto"></div> |
| | </div> |
| | |
| | <div class="grid md:grid-cols-3 gap-8"> |
| | |
| | <div class="bg-white rounded-xl shadow-lg overflow-hidden transition duration-500 card-hover"> |
| | <div class="h-48 bg-gradient-to-r from-blue-500 to-blue-600 flex items-center justify-center"> |
| | <i class="fas fa-dumbbell text-white text-6xl"></i> |
| | </div> |
| | <div class="p-6"> |
| | <h3 class="text-xl font-bold text-gray-800 mb-3">Elite Fitness Center</h3> |
| | <p class="text-gray-600 mb-4">Transform your body with our science-backed training programs, nutrition plans, and accountability systems.</p> |
| | <ul class="space-y-2 mb-6"> |
| | <li class="flex items-center"> |
| | <i class="fas fa-check-circle text-blue-500 mr-2"></i> |
| | <span>Custom workout plans</span> |
| | </li> |
| | <li class="flex items-center"> |
| | <i class="fas fa-check-circle text-blue-500 mr-2"></i> |
| | <span>Meal planning & nutrition</span> |
| | </li> |
| | <li class="flex items-center"> |
| | <i class="fas fa-check-circle text-blue-500 mr-2"></i> |
| | <span>Progress tracking</span> |
| | </li> |
| | <li class="flex items-center"> |
| | <i class="fas fa-check-circle text-blue-500 mr-2"></i> |
| | <span>Live coaching sessions</span> |
| | </li> |
| | </ul> |
| | <a href="#" class="inline-block bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-6 rounded-full transition duration-300"> |
| | Learn More |
| | </a> |
| | </div> |
| | </div> |
| | |
| | |
| | <div class="bg-white rounded-xl shadow-lg overflow-hidden transition duration-500 card-hover"> |
| | <div class="h-48 bg-gradient-to-r from-green-500 to-green-600 flex items-center justify-center"> |
| | <i class="fas fa-chart-pie text-white text-6xl"></i> |
| | </div> |
| | <div class="p-6"> |
| | <h3 class="text-xl font-bold text-gray-800 mb-3">Forex Trading Academy</h3> |
| | <p class="text-gray-600 mb-4">Master the financial markets with our proven trading strategies and risk management techniques.</p> |
| | <ul class="space-y-2 mb-6"> |
| | <li class="flex items-center"> |
| | <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| | <span>Beginner to advanced courses</span> |
| | </li> |
| | <li class="flex items-center"> |
| | <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| | <span>Live trading sessions</span> |
| | </li> |
| | <li class="flex items-center"> |
| | <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| | <span>Market analysis tools</span> |
| | </li> |
| | <li class="flex items-center"> |
| | <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| | <span>Private trading community</span> |
| | </li> |
| | </ul> |
| | <a href="#" class="inline-block bg-green-600 hover:bg-green-700 text-white font-medium py-2 px-6 rounded-full transition duration-300"> |
| | Learn More |
| | </a> |
| | </div> |
| | </div> |
| | |
| | |
| | <div class="bg-white rounded-xl shadow-lg overflow-hidden transition duration-500 card-hover"> |
| | <div class="h-48 bg-gradient-to-r from-purple-500 to-purple-600 flex items-center justify-center"> |
| | <i class="fas fa-file-alt text-white text-6xl"></i> |
| | </div> |
| | <div class="p-6"> |
| | <h3 class="text-xl font-bold text-gray-800 mb-3">Success Template Center</h3> |
| | <p class="text-gray-600 mb-4">Access our library of proven templates, scripts, and frameworks to accelerate your success.</p> |
| | <ul class="space-y-2 mb-6"> |
| | <li class="flex items-center"> |
| | <i class="fas fa-check-circle text-purple-500 mr-2"></i> |
| | <span>Business templates</span> |
| | </li> |
| | <li class="flex items-center"> |
| | <i class="fas fa-check-circle text-purple-500 mr-2"></i> |
| | <span>Productivity systems</span> |
| | </li> |
| | <li class="flex items-center"> |
| | <i class="fas fa-check-circle text-purple-500 mr-2"></i> |
| | <span>Habit trackers</span> |
| | </li> |
| | <li class="flex items-center"> |
| | <i class="fas fa-check-circle text-purple-500 mr-2"></i> |
| | <span>Goal setting frameworks</span> |
| | </li> |
| | </ul> |
| | <a href="#" class="inline-block bg-purple-600 hover:bg-purple-700 text-white font-medium py-2 px-6 rounded-full transition duration-300"> |
| | Learn More |
| | </a> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | <div class="mt-12 text-center"> |
| | <h3 class="text-2xl font-semibold text-gray-800 mb-4">Bonus: Personal Development Mastery</h3> |
| | <p class="text-gray-600 max-w-4xl mx-auto mb-6">All members receive access to our flagship personal development program that teaches mindset mastery, productivity systems, relationship building, and purpose discovery.</p> |
| | <a href="#" class="inline-block bg-gray-900 hover:bg-black text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105"> |
| | View All Programs |
| | </a> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section class="py-16 bg-gradient-to-r from-blue-600 to-blue-800 text-white"> |
| | <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| | <div class="grid md:grid-cols-4 gap-8 text-center"> |
| | <div class="p-6"> |
| | <div class="text-4xl font-bold mb-2">5,000+</div> |
| | <div class="text-blue-200">Students Transformed</div> |
| | </div> |
| | <div class="p-6"> |
| | <div class="text-4xl font-bold mb-2">97%</div> |
| | <div class="text-blue-200">Satisfaction Rate</div> |
| | </div> |
| | <div class="p-6"> |
| | <div class="text-4xl font-bold mb-2">24/7</div> |
| | <div class="text-blue-200">Support Available</div> |
| | </div> |
| | <div class="p-6"> |
| | <div class="text-4xl font-bold mb-2">100+</div> |
| | <div class="text-blue-200">Expert Coaches</div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section id="testimonials" class="py-16 section-bg"> |
| | <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| | <div class="text-center mb-12"> |
| | <h2 class="text-3xl font-bold text-gray-900 mb-4">Success Stories</h2> |
| | <p class="text-xl text-gray-600">Hear from our community of winners</p> |
| | <div class="w-24 h-1 bg-blue-500 mx-auto"></div> |
| | </div> |
| | |
| | <div class="grid md:grid-cols-3 gap-8"> |
| | <div class="bg-white p-8 rounded-xl shadow-md testimonial-card"> |
| | <div class="flex items-center mb-4"> |
| | <img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4"> |
| | <div> |
| | <h4 class="font-bold">Sarah J.</h4> |
| | <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> |
| | <p class="text-gray-600 italic">"The fitness program completely transformed my body and confidence. I lost 35 pounds of fat and gained muscle definition I never thought possible. The community support kept me accountable."</p> |
| | </div> |
| | |
| | <div class="bg-white p-8 rounded-xl shadow-md testimonial-card"> |
| | <div class="flex items-center mb-4"> |
| | <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="font-bold">Michael T.</h4> |
| | <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> |
| | <p class="text-gray-600 italic">"The Forex Academy helped me go from losing money to consistently profitable. The step-by-step training and live trading sessions were game-changers. I've replaced my full-time income trading."</p> |
| | </div> |
| | |
| | <div class="bg-white p-8 rounded-xl shadow-md testimonial-card"> |
| | <div class="flex items-center mb-4"> |
| | <img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Jessica R." class="w-12 h-12 rounded-full mr-4"> |
| | <div> |
| | <h4 class="font-bold">Jessica R.</h4> |
| | <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> |
| | <p class="text-gray-600 italic">"The template center saved me hundreds of hours. Having proven frameworks for goal setting, productivity, and business systems helped me 10x my results while working less."</p> |
| | </div> |
| | </div> |
| | |
| | <div class="mt-12 text-center"> |
| | <a href="#" class="inline-block bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-full transition duration-300"> |
| | View More Success Stories |
| | </a> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section class="py-20 bg-gradient-to-r from-gray-900 to-black text-white"> |
| | <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> |
| | <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Join the Winners Circle?</h2> |
| | <p class="text-xl text-gray-300 mb-8 max-w-3xl mx-auto">Take the first step toward becoming your best self today. Our community of high achievers is waiting to welcome you.</p> |
| | <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| | <a href="#" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-4 px-10 rounded-full text-lg transition duration-300 transform hover:scale-105"> |
| | Enroll Now |
| | </a> |
| | <a href="#" class="bg-transparent hover:bg-white hover:text-gray-900 text-white font-bold py-4 px-10 border-2 border-white rounded-full text-lg transition duration-300"> |
| | Book a Consultation |
| | </a> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section id="contact" class="py-16 bg-white"> |
| | <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| | <div class="text-center mb-12"> |
| | <h2 class="text-3xl font-bold text-gray-900 mb-4">Contact Us</h2> |
| | <p class="text-xl text-gray-600">Have questions? We're here to help</p> |
| | <div class="w-24 h-1 bg-blue-500 mx-auto"></div> |
| | </div> |
| | |
| | <div class="flex flex-col md:flex-row gap-12"> |
| | <div class="md:w-1/2"> |
| | <form class="space-y-6"> |
| | <div> |
| | <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label> |
| | <input type="text" id="name" name="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500" placeholder="Your name"> |
| | </div> |
| | <div> |
| | <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label> |
| | <input type="email" id="email" name="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500" placeholder="your@email.com"> |
| | </div> |
| | <div> |
| | <label for="program" class="block text-sm font-medium text-gray-700 mb-1">Program Interest</label> |
| | <select id="program" name="program" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500"> |
| | <option value="">Select a program</option> |
| | <option value="fitness">Elite Fitness Center</option> |
| | <option value="forex">Forex Trading Academy</option> |
| | <option value="templates">Success Template Center</option> |
| | <option value="all">All Programs</option> |
| | </select> |
| | </div> |
| | <div> |
| | <label for="message" class="block text-sm font-medium text-gray-700 mb-1">Your Message</label> |
| | <textarea id="message" name="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500" placeholder="How can we help you?"></textarea> |
| | </div> |
| | <div> |
| | <button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg transition duration-300"> |
| | Send Message |
| | </button> |
| | </div> |
| | </form> |
| | </div> |
| | |
| | <div class="md:w-1/2"> |
| | <div class="bg-gray-50 p-8 rounded-xl h-full"> |
| | <h3 class="text-xl font-semibold text-gray-800 mb-6">Get In Touch</h3> |
| | |
| | <div class="space-y-6"> |
| | <div class="flex items-start"> |
| | <div class="bg-blue-100 p-3 rounded-full mr-4"> |
| | <i class="fas fa-envelope text-blue-600"></i> |
| | </div> |
| | <div> |
| | <h4 class="font-medium text-gray-800">Email Us</h4> |
| | <p class="text-gray-600">support@winnerscircle4l.com</p> |
| | </div> |
| | </div> |
| | |
| | <div class="flex items-start"> |
| | <div class="bg-blue-100 p-3 rounded-full mr-4"> |
| | <i class="fas fa-phone-alt text-blue-600"></i> |
| | </div> |
| | <div> |
| | <h4 class="font-medium text-gray-800">Call Us</h4> |
| | <p class="text-gray-600">+1 (555) 123-4567</p> |
| | </div> |
| | </div> |
| | |
| | <div class="flex items-start"> |
| | <div class="bg-blue-100 p-3 rounded-full mr-4"> |
| | <i class="fas fa-clock text-blue-600"></i> |
| | </div> |
| | <div> |
| | <h4 class="font-medium text-gray-800">Hours</h4> |
| | <p class="text-gray-600">Monday - Friday: 9am - 6pm EST</p> |
| | <p class="text-gray-600">Saturday: 10am - 2pm EST</p> |
| | </div> |
| | </div> |
| | |
| | <div class="flex items-start"> |
| | <div class="bg-blue-100 p-3 rounded-full mr-4"> |
| | <i class="fas fa-globe text-blue-600"></i> |
| | </div> |
| | <div> |
| | <h4 class="font-medium text-gray-800">Follow Us</h4> |
| | <div class="flex space-x-4 mt-2"> |
| | <a href="#" class="text-gray-600 hover:text-blue-600 transition duration-300"> |
| | <i class="fab fa-facebook-f text-xl"></i> |
| | </a> |
| | <a href="#" class="text-gray-600 hover:text-blue-600 transition duration-300"> |
| | <i class="fab fa-twitter text-xl"></i> |
| | </a> |
| | <a href="#" class="text-gray-600 hover:text-blue-600 transition duration-300"> |
| | <i class="fab fa-instagram text-xl"></i> |
| | </a> |
| | <a href="#" class="text-gray-600 hover:text-blue-600 transition duration-300"> |
| | <i class="fab fa-linkedin-in text-xl"></i> |
| | </a> |
| | <a href="#" class="text-gray-600 hover:text-blue-600 transition duration-300"> |
| | <i class="fab fa-youtube text-xl"></i> |
| | </a> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section class="py-16 section-bg"> |
| | <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8"> |
| | <div class="text-center mb-12"> |
| | <h2 class="text-3xl font-bold text-gray-900 mb-4">Frequently Asked Questions</h2> |
| | <div class="w-24 h-1 bg-blue-500 mx-auto"></div> |
| | </div> |
| | |
| | <div class="space-y-4"> |
| | <div class="border border-gray-200 rounded-lg overflow-hidden"> |
| | <button class="faq-question w-full flex justify-between items-center p-6 text-left bg-white hover:bg-gray-50 transition duration-300"> |
| | <span class="text-lg font-medium text-gray-800">How do I access the programs after purchasing?</span> |
| | <i class="fas fa-chevron-down text-blue-500 transition-transform duration-300"></i> |
| | </button> |
| | <div class="faq-answer hidden p-6 bg-gray-50 border-t border-gray-200"> |
| | <p class="text-gray-600">Immediately after purchase, you'll receive login credentials to our members portal where all your programs are hosted. You'll also get email instructions with next steps.</p> |
| | </div> |
| | </div> |
| | |
| | <div class="border border-gray-200 rounded-lg overflow-hidden"> |
| | <button class="faq-question w-full flex justify-between items-center p-6 text-left bg-white hover:bg-gray-50 transition duration-300"> |
| | <span class="text-lg font-medium text-gray-800">Is there a money-back guarantee?</span> |
| | <i class="fas fa-chevron-down text-blue-500 transition-transform duration-300"></i> |
| | </button> |
| | <div class="faq-answer hidden p-6 bg-gray-50 border-t border-gray-200"> |
| | <p class="text-gray-600">Yes! We offer a 30-day money-back guarantee on all programs. If you're not completely satisfied, just email us within 30 days for a full refund.</p> |
| | </div> |
| | </div> |
| | |
| | <div class="border border-gray-200 rounded-lg overflow-hidden"> |
| | <button class="faq-question w-full flex justify-between items-center p-6 text-left bg-white hover:bg-gray-50 transition duration-300"> |
| | <span class="text-lg font-medium text-gray-800">How much time do I need to commit?</span> |
| | <i class="fas fa-chevron-down text-blue-500 transition-transform duration-300"></i> |
| | </button> |
| | <div class="faq-answer hidden p-6 bg-gray-50 border-t border-gray-200"> |
| | <p class="text-gray-600">Our programs are designed for busy individuals. Most students see results with just 30-60 minutes per day. The key is consistency, not massive time commitments.</p> |
| | </div> |
| | </div> |
| | |
| | <div class="border border-gray-200 rounded-lg overflow-hidden"> |
| | <button class="faq-question w-full flex justify-between items-center p-6 text-left bg-white hover:bg-gray-50 transition duration-300"> |
| | <span class="text-lg font-medium text-gray-800">Do I need any special equipment or software?</span> |
| | <i class="fas fa-chevron-down text-blue-500 transition-transform duration-300"></i> |
| | </button> |
| | <div class="faq-answer hidden p-6 bg-gray-50 border-t border-gray-200"> |
| | <p class="text-gray-600">For fitness, basic equipment like dumbbells is helpful but not required (we provide bodyweight alternatives). For forex trading, you'll need a computer and internet access. No special software is required.</p> |
| | </div> |
| | </div> |
| | |
| | <div class="border border-gray-200 rounded-lg overflow-hidden"> |
| | <button class="faq-question w-full flex justify-between items-center p-6 text-left bg-white hover:bg-gray-50 transition duration-300"> |
| | <span class="text-lg font-medium text-gray-800">Can I access the programs on mobile?</span> |
| | <i class="fas fa-chevron-down text-blue-500 transition-transform duration-300"></i> |
| | </button> |
| | <div class="faq-answer hidden p-6 bg-gray-50 border-t border-gray-200"> |
| | <p class="text-gray-600">Absolutely! Our platform is fully responsive and works on smartphones, tablets, and computers. Some forex trading tools work best on larger screens though.</p> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <footer class="bg-gray-900 text-white pt-16 pb-8"> |
| | <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| | <div class="grid grid-cols-2 md:grid-cols-4 gap-8 mb-12"> |
| | <div> |
| | <h3 class="text-lg font-semibold mb-4">Winners Circle 4L</h3> |
| | <p class="text-gray-400">Helping you become the best version of yourself through holistic personal development.</p> |
| | </div> |
| | <div> |
| | <h3 class="text-lg font-semibold mb-4">Programs</h3> |
| | <ul class="space-y-2"> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Fitness Center</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Forex Academy</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Template Center</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Personal Development</a></li> |
| | </ul> |
| | </div> |
| | <div> |
| | <h3 class="text-lg font-semibold mb-4">Resources</h3> |
| | <ul class="space-y-2"> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Podcast</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Free Tools</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Success Stories</a></li> |
| | </ul> |
| | </div> |
| | <div> |
| | <h3 class="text-lg font-semibold mb-4">Company</h3> |
| | <ul class="space-y-2"> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Careers</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy Policy</a></li> |
| | </ul> |
| | </div> |
| | </div> |
| | |
| | <div class="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center"> |
| | <p class="text-gray-400 mb-4 md:mb-0">© 2023 Winners Circle 4L. All rights reserved.</p> |
| | <div class="flex space-x-6"> |
| | <a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
| | <i class="fab fa-facebook-f"></i> |
| | </a> |
| | <a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
| | <i class="fab fa-twitter"></i> |
| | </a> |
| | <a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
| | <i class="fab fa-instagram"></i> |
| | </a> |
| | <a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
| | <i class="fab fa-linkedin-in"></i> |
| | </a> |
| | <a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
| | <i class="fab fa-youtube"></i> |
| | </a> |
| | </div> |
| | </div> |
| | </div> |
| | </footer> |
| |
|
| | |
| | <button id="back-to-top" class="fixed bottom-8 right-8 bg-blue-600 text-white p-3 rounded-full shadow-lg opacity-0 invisible transition-all duration-300"> |
| | <i class="fas fa-arrow-up"></i> |
| | </button> |
| |
|
| | <script> |
| | |
| | document.getElementById('mobile-menu-button').addEventListener('click', function() { |
| | const menu = document.getElementById('mobile-menu'); |
| | menu.classList.toggle('hidden'); |
| | }); |
| | |
| | |
| | document.querySelectorAll('.faq-question').forEach(button => { |
| | button.addEventListener('click', () => { |
| | const answer = button.nextElementSibling; |
| | const icon = button.querySelector('i'); |
| | |
| | |
| | answer.classList.toggle('hidden'); |
| | |
| | |
| | icon.classList.toggle('rotate-180'); |
| | |
| | |
| | document.querySelectorAll('.faq-question').forEach(otherButton => { |
| | if (otherButton !== button) { |
| | otherButton.nextElementSibling.classList.add('hidden'); |
| | otherButton.querySelector('i').classList.remove('rotate-180'); |
| | } |
| | }); |
| | }); |
| | }); |
| | |
| | |
| | window.addEventListener('scroll', function() { |
| | const backToTopButton = document.getElementById('back-to-top'); |
| | if (window.pageYOffset > 300) { |
| | backToTopButton.classList.remove('opacity-0', 'invisible'); |
| | backToTopButton.classList.add('opacity-100', 'visible'); |
| | } else { |
| | backToTopButton.classList.remove('opacity-100', 'visible'); |
| | backToTopButton.classList.add('opacity-0', 'invisible'); |
| | } |
| | }); |
| | |
| | document.getElementById('back-to-top').addEventListener('click', function() { |
| | window.scrollTo({ |
| | top: 0, |
| | behavior: 'smooth' |
| | }); |
| | }); |
| | |
| | |
| | document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| | anchor.addEventListener('click', function(e) { |
| | e.preventDefault(); |
| | |
| | const targetId = this.getAttribute('href'); |
| | const targetElement = document.querySelector(targetId); |
| | |
| | if (targetElement) { |
| | window.scrollTo({ |
| | top: targetElement.offsetTop - 80, |
| | behavior: 'smooth' |
| | }); |
| | |
| | |
| | const mobileMenu = document.getElementById('mobile-menu'); |
| | if (!mobileMenu.classList.contains('hidden')) { |
| | mobileMenu.classList.add('hidden'); |
| | } |
| | } |
| | }); |
| | }); |
| | </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=SpawnFX/wc4l" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| | </html> |