File size: 42,392 Bytes
ef61639 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 | <!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>
/* Custom CSS for elements that need more specific styling */
.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);
}
/* Animation for the call-to-action button */
@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">
<!-- Navigation -->
<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>
<!-- Mobile menu -->
<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>
<!-- Hero Section -->
<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>
<!-- About 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>
<!-- Programs 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">
<!-- Fitness Center -->
<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>
<!-- Forex Center -->
<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>
<!-- Template Center -->
<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>
<!-- Stats 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>
<!-- Testimonials 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>
<!-- CTA 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>
<!-- Contact 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>
<!-- FAQ 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 -->
<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>
<!-- Back to Top Button -->
<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>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// FAQ accordion
document.querySelectorAll('.faq-question').forEach(button => {
button.addEventListener('click', () => {
const answer = button.nextElementSibling;
const icon = button.querySelector('i');
// Toggle answer visibility
answer.classList.toggle('hidden');
// Rotate icon
icon.classList.toggle('rotate-180');
// Close other open FAQs
document.querySelectorAll('.faq-question').forEach(otherButton => {
if (otherButton !== button) {
otherButton.nextElementSibling.classList.add('hidden');
otherButton.querySelector('i').classList.remove('rotate-180');
}
});
});
});
// Back to top button
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'
});
});
// Smooth scrolling for navigation links
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'
});
// Close mobile menu if open
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> |