juancaedu / index.html
VedetteStore's picture
Add 2 files
ea686b6 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JuancaEdu - Transformative Education</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>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
:root {
--primary: #3b82f6;
--primary-dark: #2563eb;
--secondary: #f59e0b;
--dark: #1e293b;
--light: #f8fafc;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--light);
color: var(--dark);
overflow-x: hidden;
}
.hero-gradient {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
}
.card-hover {
transition: all 0.3s ease;
}
.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);
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.animate-float-delay-1 {
animation: float 6s ease-in-out infinite 1s;
}
.animate-float-delay-2 {
animation: float 6s ease-in-out infinite 2s;
}
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: var(--primary);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.scroll-indicator {
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-20px);}
60% {transform: translateY(-10px);}
}
</style>
</head>
<body>
<!-- Navigation Component -->
<nav class="fixed w-full bg-white/80 backdrop-blur-md z-50 shadow-sm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-20">
<div class="flex-shrink-0 flex items-center">
<a href="#" class="text-2xl font-bold text-blue-500">Juanca<span class="text-orange-400">Edu</span></a>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-8">
<a href="#features" class="nav-link text-gray-700 hover:text-blue-500 px-3 py-2 text-sm font-medium">Features</a>
<a href="#courses" class="nav-link text-gray-700 hover:text-blue-500 px-3 py-2 text-sm font-medium">Courses</a>
<a href="#testimonials" class="nav-link text-gray-700 hover:text-blue-500 px-3 py-2 text-sm font-medium">Testimonials</a>
<a href="#pricing" class="nav-link text-gray-700 hover:text-blue-500 px-3 py-2 text-sm font-medium">Pricing</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-blue-500 px-3 py-2 text-sm font-medium">Contact</a>
</div>
</div>
<div class="hidden md:block">
<a href="#" class="bg-blue-500 hover:bg-blue-600 text-white px-6 py-2 rounded-full font-medium transition duration-300">Get Started</a>
</div>
<div class="md:hidden">
<button id="mobile-menu-button" class="text-gray-700 hover:text-blue-500">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="md:hidden hidden bg-white shadow-lg">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#features" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-500">Features</a>
<a href="#courses" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-500">Courses</a>
<a href="#testimonials" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-500">Testimonials</a>
<a href="#pricing" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-500">Pricing</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-500">Contact</a>
<a href="#" class="block w-full bg-blue-500 text-white px-4 py-2 rounded-md text-center font-medium mt-2">Get Started</a>
</div>
</div>
</nav>
<!-- Hero Component -->
<section class="hero-gradient pt-32 pb-20 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0 fade-in">
<h1 class="text-4xl md:text-6xl font-bold text-gray-900 leading-tight mb-6">
Transform Your <span class="text-blue-500">Learning</span> Experience
</h1>
<p class="text-lg text-gray-600 mb-8 max-w-lg">
JuancaEdu provides cutting-edge educational resources to help you master new skills and advance your career. Join thousands of satisfied learners today.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-blue-500 hover:bg-blue-600 text-white px-8 py-3 rounded-full font-medium text-center transition duration-300">
Start Learning Now
</a>
<a href="#courses" class="border-2 border-gray-300 hover:border-blue-500 text-gray-700 hover:text-blue-500 px-8 py-3 rounded-full font-medium text-center transition duration-300">
Explore Courses
</a>
</div>
<div class="mt-8 flex items-center space-x-4">
<div class="flex -space-x-2">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/12.jpg" alt="User 1">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/men/11.jpg" alt="User 2">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/19.jpg" alt="User 3">
</div>
<div>
<p class="text-sm text-gray-600">Join <span class="font-bold text-blue-500">5,000+</span> happy students</p>
</div>
</div>
</div>
<div class="md:w-1/2 relative fade-in">
<div class="relative">
<img src="https://images.unsplash.com/photo-1580894732444-8ecded7900cd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Learning illustration" class="rounded-2xl shadow-xl w-full max-w-lg mx-auto">
<div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-xl shadow-lg w-40 animate-float">
<div class="flex items-center">
<div class="bg-blue-100 p-2 rounded-lg">
<i class="fas fa-book text-blue-500"></i>
</div>
<p class="ml-2 text-sm font-medium">100+ Courses</p>
</div>
</div>
<div class="absolute -top-6 -right-6 bg-white p-4 rounded-xl shadow-lg w-40 animate-float-delay-1">
<div class="flex items-center">
<div class="bg-orange-100 p-2 rounded-lg">
<i class="fas fa-chart-line text-orange-500"></i>
</div>
<p class="ml-2 text-sm font-medium">Career Growth</p>
</div>
</div>
<div class="absolute top-1/2 -right-10 bg-white p-4 rounded-xl shadow-lg w-40 animate-float-delay-2">
<div class="flex items-center">
<div class="bg-green-100 p-2 rounded-lg">
<i class="fas fa-user-graduate text-green-500"></i>
</div>
<p class="ml-2 text-sm font-medium">Expert Tutors</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-16 text-center scroll-indicator">
<a href="#features" class="text-gray-500 hover:text-blue-500">
<i class="fas fa-chevron-down text-2xl"></i>
</a>
</div>
</section>
<!-- Features Component -->
<section id="features" class="py-20 px-4 sm:px-6 lg:px-8 bg-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16 fade-in">
<span class="text-blue-500 font-medium">WHY CHOOSE US</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4">Our Key Features</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Discover what makes JuancaEdu the preferred choice for learners worldwide.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-gray-50 p-8 rounded-2xl card-hover fade-in">
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-laptop-code text-blue-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Interactive Learning</h3>
<p class="text-gray-600">Engage with hands-on exercises, quizzes, and real-world projects that make learning stick.</p>
</div>
<!-- Feature 2 -->
<div class="bg-gray-50 p-8 rounded-2xl card-hover fade-in" style="transition-delay: 0.1s">
<div class="w-14 h-14 bg-orange-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-chalkboard-teacher text-orange-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Expert Instructors</h3>
<p class="text-gray-600">Learn from industry professionals with years of practical experience in their fields.</p>
</div>
<!-- Feature 3 -->
<div class="bg-gray-50 p-8 rounded-2xl card-hover fade-in" style="transition-delay: 0.2s">
<div class="w-14 h-14 bg-green-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-clock text-green-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Self-Paced Learning</h3>
<p class="text-gray-600">Study at your own convenience with 24/7 access to all course materials.</p>
</div>
<!-- Feature 4 -->
<div class="bg-gray-50 p-8 rounded-2xl card-hover fade-in" style="transition-delay: 0.3s">
<div class="w-14 h-14 bg-purple-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-certificate text-purple-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Certification</h3>
<p class="text-gray-600">Earn recognized certificates to showcase your skills to employers.</p>
</div>
<!-- Feature 5 -->
<div class="bg-gray-50 p-8 rounded-2xl card-hover fade-in" style="transition-delay: 0.4s">
<div class="w-14 h-14 bg-red-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-comments text-red-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Community Support</h3>
<p class="text-gray-600">Join a vibrant community of learners and get help when you need it.</p>
</div>
<!-- Feature 6 -->
<div class="bg-gray-50 p-8 rounded-2xl card-hover fade-in" style="transition-delay: 0.5s">
<div class="w-14 h-14 bg-yellow-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-mobile-alt text-yellow-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Mobile Friendly</h3>
<p class="text-gray-600">Learn on the go with our mobile-optimized platform and app.</p>
</div>
</div>
</div>
</section>
<!-- Courses Component -->
<section id="courses" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-50">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16 fade-in">
<span class="text-blue-500 font-medium">OUR OFFERINGS</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4">Popular Courses</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Browse our most in-demand courses across various disciplines.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Course 1 -->
<div class="bg-white rounded-2xl overflow-hidden shadow-md card-hover fade-in">
<div class="relative">
<img src="https://images.unsplash.com/photo-1551033406-611cf9a28f67?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Web Development" class="w-full h-48 object-cover">
<div class="absolute top-4 right-4 bg-blue-500 text-white text-xs font-bold px-2 py-1 rounded">BESTSELLER</div>
</div>
<div class="p-6">
<div class="flex items-center mb-2">
<div class="flex items-center 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-half-alt"></i>
</div>
<span class="text-gray-600 text-sm ml-2">4.7 (1,245)</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-2">Full Stack Web Development</h3>
<p class="text-gray-600 mb-4">Master HTML, CSS, JavaScript, React, Node.js and build complete web applications.</p>
<div class="flex justify-between items-center">
<div class="flex items-center">
<i class="far fa-clock text-gray-500 mr-1"></i>
<span class="text-gray-600 text-sm">32 Hours</span>
</div>
<span class="text-blue-500 font-bold">$149</span>
</div>
</div>
</div>
<!-- Course 2 -->
<div class="bg-white rounded-2xl overflow-hidden shadow-md card-hover fade-in" style="transition-delay: 0.1s">
<div class="relative">
<img src="https://images.unsplash.com/photo-1610563166150-b34df4f3bcd6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=767&q=80" alt="Data Science" class="w-full h-48 object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-2">
<div class="flex items-center 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="far fa-star"></i>
</div>
<span class="text-gray-600 text-sm ml-2">4.5 (892)</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-2">Data Science Fundamentals</h3>
<p class="text-gray-600 mb-4">Learn Python, Pandas, NumPy, Matplotlib and machine learning basics.</p>
<div class="flex justify-between items-center">
<div class="flex items-center">
<i class="far fa-clock text-gray-500 mr-1"></i>
<span class="text-gray-600 text-sm">40 Hours</span>
</div>
<span class="text-blue-500 font-bold">$199</span>
</div>
</div>
</div>
<!-- Course 3 -->
<div class="bg-white rounded-2xl overflow-hidden shadow-md card-hover fade-in" style="transition-delay: 0.2s">
<div class="relative">
<img src="https://images.unsplash.com/photo-1593642632823-8f785ba67e45?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80" alt="Digital Marketing" class="w-full h-48 object-cover">
<div class="absolute top-4 right-4 bg-orange-500 text-white text-xs font-bold px-2 py-1 rounded">POPULAR</div>
</div>
<div class="p-6">
<div class="flex items-center mb-2">
<div class="flex items-center 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>
<span class="text-gray-600 text-sm ml-2">4.9 (2,103)</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-2">Digital Marketing Masterclass</h3>
<p class="text-gray-600 mb-4">SEO, Social Media, Content Marketing, Google Ads and Analytics.</p>
<div class="flex justify-between items-center">
<div class="flex items-center">
<i class="far fa-clock text-gray-500 mr-1"></i>
<span class="text-gray-600 text-sm">28 Hours</span>
</div>
<span class="text-blue-500 font-bold">$129</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-12 fade-in">
<a href="#" class="inline-flex items-center text-blue-500 font-medium hover:text-blue-600">
View All Courses
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Testimonials Component -->
<section id="testimonials" class="py-20 px-4 sm:px-6 lg:px-8 bg-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16 fade-in">
<span class="text-blue-500 font-medium">SUCCESS STORIES</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4">What Our Students Say</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Hear from our community of learners who transformed their careers.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 p-8 rounded-2xl fade-in">
<div class="flex items-center mb-6">
<div class="flex items-center 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>
<p class="text-gray-700 mb-6 italic">"JuancaEdu's Full Stack Development course completely changed my career trajectory. Within 3 months of completing the course, I landed a job as a junior developer at a tech startup. The hands-on projects were invaluable!"</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full">
<div class="ml-4">
<h4 class="font-bold text-gray-900">Sarah Johnson</h4>
<p class="text-gray-600 text-sm">Web Developer at TechStart</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 p-8 rounded-2xl fade-in" style="transition-delay: 0.1s">
<div class="flex items-center mb-6">
<div class="flex items-center 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-half-alt"></i>
</div>
</div>
<p class="text-gray-700 mb-6 italic">"The Data Science course provided me with practical skills I could immediately apply at work. The instructors were knowledgeable and the community support was exceptional. I've since been promoted to lead our analytics team."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/44.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full">
<div class="ml-4">
<h4 class="font-bold text-gray-900">Michael Chen</h4>
<p class="text-gray-600 text-sm">Data Science Lead at FinCorp</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 p-8 rounded-2xl fade-in" style="transition-delay: 0.2s">
<div class="flex items-center mb-6">
<div class="flex items-center 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>
<p class="text-gray-700 mb-6 italic">"As a complete beginner, I was nervous about learning to code. But the structured curriculum and supportive instructors made the journey enjoyable. I now freelance as a front-end developer while finishing my degree."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/67.jpg" alt="Emma Rodriguez" class="w-12 h-12 rounded-full">
<div class="ml-4">
<h4 class="font-bold text-gray-900">Emma Rodriguez</h4>
<p class="text-gray-600 text-sm">Freelance Developer</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Component -->
<section id="pricing" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-50">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16 fade-in">
<span class="text-blue-500 font-medium">FLEXIBLE PLANS</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4">Simple, Transparent Pricing</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Choose the plan that fits your learning goals and budget.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Plan -->
<div class="bg-white p-8 rounded-2xl shadow-md card-hover fade-in">
<div class="text-center mb-6">
<h3 class="text-xl font-bold text-gray-900 mb-2">Basic</h3>
<p class="text-gray-600">Perfect for beginners</p>
</div>
<div class="text-center mb-8">
<span class="text-4xl font-bold text-gray-900">$19</span>
<span class="text-gray-600">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Access to 50+ courses</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Community support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Basic certificates</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times mr-2"></i>
<span>No live sessions</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times mr-2"></i>
<span>No career coaching</span>
</li>
</ul>
<a href="#" class="block w-full bg-gray-100 hover:bg-gray-200 text-gray-800 font-medium py-3 px-4 rounded-lg text-center transition duration-300">Get Started</a>
</div>
<!-- Pro Plan (Featured) -->
<div class="bg-blue-50 border-2 border-blue-200 p-8 rounded-2xl shadow-md card-hover fade-in" style="transition-delay: 0.1s">
<div class="text-center mb-6">
<div class="inline-block bg-blue-500 text-white text-xs font-bold px-3 py-1 rounded-full mb-2">MOST POPULAR</div>
<h3 class="text-xl font-bold text-gray-900 mb-2">Pro</h3>
<p class="text-gray-600">For serious learners</p>
</div>
<div class="text-center mb-8">
<span class="text-4xl font-bold text-gray-900">$49</span>
<span class="text-gray-600">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Access to all 200+ courses</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Priority support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Professional certificates</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Monthly live Q&A</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Career coaching sessions</span>
</li>
</ul>
<a href="#" class="block w-full bg-blue-500 hover:bg-blue-600 text-white font-medium py-3 px-4 rounded-lg text-center transition duration-300">Get Started</a>
</div>
<!-- Team Plan -->
<div class="bg-white p-8 rounded-2xl shadow-md card-hover fade-in" style="transition-delay: 0.2s">
<div class="text-center mb-6">
<h3 class="text-xl font-bold text-gray-900 mb-2">Team</h3>
<p class="text-gray-600">For companies & groups</p>
</div>
<div class="text-center mb-8">
<span class="text-4xl font-bold text-gray-900">$99</span>
<span class="text-gray-600">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Everything in Pro</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Up to 5 team members</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Team progress tracking</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Custom learning paths</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Dedicated account manager</span>
</li>
</ul>
<a href="#" class="block w-full bg-gray-100 hover:bg-gray-200 text-gray-800 font-medium py-3 px-4 rounded-lg text-center transition duration-300">Contact Sales</a>
</div>
</div>
<div class="mt-12 text-center fade-in">
<p class="text-gray-600">Need help choosing a plan? <a href="#contact" class="text-blue-500 hover:text-blue-600 font-medium">Contact our team</a></p>
</div>
</div>
</section>
<!-- CTA Component -->
<section class="py-20 px-4 sm:px-6 lg:px-8 bg-blue-500 text-white">
<div class="max-w-4xl mx-auto text-center fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Career?</h2>
<p class="text-xl text-blue-100 mb-8">Join thousands of learners who have already taken the first step toward their dream careers with JuancaEdu.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-white hover:bg-gray-100 text-blue-500 px-8 py-3 rounded-full font-medium text-center transition duration-300">
Start Learning Now
</a>
<a href="#" class="border-2 border-white hover:bg-white/10 text-white px-8 py-3 rounded-full font-medium text-center transition duration-300">
Talk to an Advisor
</a>
</div>
</div>
</section>
<!-- FAQ Component -->
<section class="py-20 px-4 sm:px-6 lg:px-8 bg-white">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-16 fade-in">
<span class="text-blue-500 font-medium">HAVE QUESTIONS?</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4">Frequently Asked Questions</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Find answers to common questions about our courses and platform.</p>
</div>
<div class="space-y-4">
<!-- FAQ Item 1 -->
<div class="border border-gray-200 rounded-xl overflow-hidden fade-in">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium text-gray-900">How do I access my courses after purchasing?</h3>
<i class="fas fa-chevron-down text-blue-500 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-gray-600">Once you've purchased a course or subscription, you'll receive immediate access to your learning dashboard. Simply log in to your JuancaEdu account and navigate to "My Courses" to begin learning. All course materials are available 24/7 from any device.</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="border border-gray-200 rounded-xl overflow-hidden fade-in" style="transition-delay: 0.1s">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium text-gray-900">Are the certificates recognized by employers?</h3>
<i class="fas fa-chevron-down text-blue-500 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-gray-600">Yes! Our certificates are widely recognized in the industry and can be verified online by potential employers. Many of our students have successfully used JuancaEdu certificates to land jobs or advance their careers. Our Pro certificates carry additional weight as they include verification of completed projects.</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="border border-gray-200 rounded-xl overflow-hidden fade-in" style="transition-delay: 0.2s">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium text-gray-900">Can I download course videos for offline viewing?</h3>
<i class="fas fa-chevron-down text-blue-500 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-gray-600">Our mobile app allows you to download videos for offline viewing, perfect for learning on the go without an internet connection. On desktop, videos are streamed but you'll have access to downloadable exercise files, slides, and other resources associated with each course.</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="border border-gray-200 rounded-xl overflow-hidden fade-in" style="transition-delay: 0.3s">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium text-gray-900">What if I'm not satisfied with a course?</h3>
<i class="fas fa-chevron-down text-blue-500 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-gray-600">We offer a 30-day money-back guarantee on all courses. If you're not completely satisfied with your purchase, simply contact our support team within 30 days for a full refund, no questions asked. We're confident in the quality of our courses and want you to be completely happy with your learning experience.</p>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="border border-gray-200 rounded-xl overflow-hidden fade-in" style="transition-delay: 0.4s">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium text-gray-900">How often are courses updated?</h3>
<i class="fas fa-chevron-down text-blue-500 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-gray-600">Our team continuously reviews and updates courses to ensure they reflect the latest industry standards and technologies. Major updates are typically released every 3-6 months, with minor updates and bug fixes applied as needed. As a student, you'll always have access to the most current version of any course you've purchased.</p>
</div>
</div>
</div>
<div class="text-center mt-12 fade-in">
<p class="text-gray-600">Still have questions? <a href="#contact" class="text-blue-500 hover:text-blue-600 font-medium">Contact our support team</a></p>
</div>
</div>
</section>
<!-- Contact Component -->
<section id="contact" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-50">
<div class="max-w-7xl mx-auto">
<div class="flex flex-col lg:flex-row">
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12 fade-in">
<span class="text-blue-500 font-medium">GET IN TOUCH</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4">Contact Us</h2>
<p class="text-gray-600 mb-8">Have questions about our courses or need help choosing the right one? Our team is here to help you on your learning journey.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-lg">
<i class="fas fa-envelope text-blue-500 text-xl"></i>
</div>
<div class="ml-4">
<h4 class="font-bold text-gray-900">Email Us</h4>
<p class="text-gray-600">hello@juancaedu.com</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-orange-100 p-3 rounded-lg">
<i class="fas fa-phone-alt text-orange-500 text-xl"></i>
</div>
<div class="ml-4">
<h4 class="font-bold text-gray-900">Call Us</h4>
<p class="text-gray-600">+1 (555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-lg">
<i class="fas fa-map-marker-alt text-green-500 text-xl"></i>
</div>
<div class="ml-4">
<h4 class="font-bold text-gray-900">Visit Us</h4>
<p class="text-gray-600">123 Education St, Learning City, LC 10101</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-bold text-gray-900 mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="bg-gray-200 hover:bg-blue-500 hover:text-white text-gray-700 p-3 rounded-full transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="bg-gray-200 hover:bg-blue-400 hover:text-white text-gray-700 p-3 rounded-full transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-gray-200 hover:bg-pink-500 hover:text-white text-gray-700 p-3 rounded-full transition duration-300">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="bg-gray-200 hover:bg-blue-700 hover:text-white text-gray-700 p-3 rounded-full transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-gray-200 hover:bg-red-500 hover:text-white text-gray-700 p-3 rounded-full transition duration-300">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="lg:w-1/2 fade-in" style="transition-delay: 0.1s">
<div class="bg-white p-8 rounded-2xl shadow-md">
<form id="contact-form">
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">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-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300" placeholder="John Doe" required>
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">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-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300" placeholder="john@example.com" required>
</div>
<div class="mb-6">
<label for="subject" class="block text-gray-700 font-medium mb-2">Subject</label>
<select id="subject" name="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300" required>
<option value="" disabled selected>Select a subject</option>
<option value="course-info">Course Information</option>
<option value="technical-support">Technical Support</option>
<option value="billing">Billing Inquiry</option>
<option value="feedback">Feedback</option>
<option value="other">Other</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" name="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300" placeholder="Your message here..." required></textarea>
</div>
<button type="submit" class="w-full bg-blue-500 hover:bg-blue-600 text-white font-medium py-3 px-4 rounded-lg transition duration-300">
Send Message
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Component -->
<footer class="bg-gray-900 text-white py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="fade-in">
<a href="#" class="text-2xl font-bold text-white">Juanca<span class="text-orange-400">Edu</span></a>
<p class="mt-4 text-gray-400">Empowering learners worldwide with high-quality, accessible education.</p>
<div class="mt-6 flex space-x-4">
<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>
</div>
</div>
<div class="fade-in" style="transition-delay: 0.1s">
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Home</a></li>
<li><a href="#features" class="text-gray-400 hover:text-white transition duration-300">Features</a></li>
<li><a href="#courses" class="text-gray-400 hover:text-white transition duration-300">Courses</a></li>
<li><a href="#pricing" class="text-gray-400 hover:text-white transition duration-300">Pricing</a></li>
<li><a href="#testimonials" class="text-gray-400 hover:text-white transition duration-300">Testimonials</a></li>
</ul>
</div>
<div class="fade-in" style="transition-delay: 0.2s">
<h3 class="text-lg font-semibold mb-4">Courses</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Web Development</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Data Science</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Digital Marketing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Graphic Design</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Business Analytics</a></li>
</ul>
</div>
<div class="fade-in" style="transition-delay: 0.3s">
<h3 class="text-lg font-semibold mb-4">Newsletter</h3>
<p class="text-gray-400 mb-4">Subscribe to our newsletter for the latest updates and course offerings.</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 w-full rounded-l-lg focus:outline-none text-gray-900">
<button type="submit" class="bg-blue-500 hover:bg-blue-600 px-4 py-2 rounded-r-lg 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 fade-in">
<p class="text-gray-400">© 2023 JuancaEdu. All rights reserved.</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// FAQ toggle functionality
document.querySelectorAll('.faq-toggle').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
content.classList.toggle('hidden');
icon.classList.toggle('rotate-180');
});
});
// Contact form submission
document.getElementById('contact-form').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you soon.');
this.reset();
});
// Scroll animation
const fadeElements = document.querySelectorAll('.fade-in');
const fadeInOnScroll = () => {
fadeElements.forEach(element => {
const elementTop = element.getBoundingClientRect().top;
const windowHeight = window.innerHeight;
if (elementTop < windowHeight - 100) {
element.classList.add('visible');
}
});
};
// Initial check
fadeInOnScroll();
// Check on scroll
window.addEventListener('scroll', fadeInOnScroll);
</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=VedetteStore/juancaedu" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>