Spaces:
Running
Running
File size: 33,273 Bytes
712488a |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Career-9 | AI-Driven Career Guidance Platform</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
body {
font-family: 'Lora', serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
}
.hero-section {
background: linear-gradient(rgba(46, 139, 87, 0.8), rgba(46, 139, 87, 0.8)), url('https://images.unsplash.com/photo-1588072432836-e10032774350?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1472&q=80');
background-size: cover;
background-position: center;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.transition-smooth {
transition: all 0.3s ease;
}
.testimonial-card {
opacity: 0;
transition: opacity 0.5s ease;
}
.testimonial-card.active {
opacity: 1;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-6 py-3 flex justify-between items-center">
<div class="flex items-center">
<div class="bg-emerald-700 text-white p-2 rounded-lg mr-2">
<i class="fas fa-graduation-cap text-xl"></i>
</div>
<span class="font-bold text-emerald-700 text-xl">Career-9</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="text-emerald-700 font-semibold hover:text-emerald-900 transition-smooth">Home</a>
<a href="#" class="text-gray-600 hover:text-emerald-700 transition-smooth">How It Works</a>
<a href="#" class="text-gray-600 hover:text-emerald-700 transition-smooth">Features</a>
<a href="#" class="text-gray-600 hover:text-emerald-700 transition-smooth">Testimonials</a>
<a href="#" class="text-gray-600 hover:text-emerald-700 transition-smooth">About Us</a>
</div>
<div class="hidden md:block">
<button class="bg-emerald-700 hover:bg-emerald-800 text-white px-4 py-2 rounded-lg font-semibold transition-smooth">
Get Started
</button>
</div>
<div class="md:hidden">
<button id="menu-toggle" class="text-emerald-700 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white px-6 py-4 shadow-lg">
<div class="flex flex-col space-y-4">
<a href="#" class="text-emerald-700 font-semibold">Home</a>
<a href="#" class="text-gray-600 hover:text-emerald-700">How It Works</a>
<a href="#" class="text-gray-600 hover:text-emerald-700">Features</a>
<a href="#" class="text-gray-600 hover:text-emerald-700">Testimonials</a>
<a href="#" class="text-gray-600 hover:text-emerald-700">About Us</a>
<button class="bg-emerald-700 hover:bg-emerald-800 text-white px-4 py-2 rounded-lg font-semibold w-full">
Get Started
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-section text-white py-20 md:py-32">
<div class="container mx-auto px-6 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Empower Your Child's Future with Career-9</h1>
<p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">AI-powered career guidance to help students discover their strengths and unlock their full potential.</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<button class="bg-amber-500 hover:bg-amber-600 text-white px-8 py-4 rounded-lg font-bold text-lg transition-smooth shadow-lg">
Start Free Assessment
</button>
<button class="bg-white hover:bg-gray-100 text-emerald-700 px-8 py-4 rounded-lg font-bold text-lg transition-smooth shadow-lg">
Learn More
</button>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-white py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="p-4">
<div class="text-emerald-700 text-4xl font-bold mb-2">10K+</div>
<div class="text-gray-600">Students Guided</div>
</div>
<div class="p-4">
<div class="text-emerald-700 text-4xl font-bold mb-2">95%</div>
<div class="text-gray-600">Satisfaction Rate</div>
</div>
<div class="p-4">
<div class="text-emerald-700 text-4xl font-bold mb-2">50+</div>
<div class="text-gray-600">Career Paths</div>
</div>
<div class="p-4">
<div class="text-emerald-700 text-4xl font-bold mb-2">24/7</div>
<div class="text-gray-600">Support</div>
</div>
</div>
</div>
</section>
<!-- Discover Your Strengths Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-emerald-700 mb-4">Discover Your Strengths</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Our AI-powered assessment identifies your child's unique talents, interests, and personality traits to recommend the most suitable career paths.</p>
</div>
<div class="flex flex-col md:flex-row items-center gap-10">
<div class="md:w-1/2">
<div class="bg-white p-8 rounded-xl shadow-lg card-hover transition-smooth">
<div class="flex items-center mb-6">
<div class="bg-emerald-100 text-emerald-700 p-3 rounded-full mr-4">
<i class="fas fa-brain text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Comprehensive Assessment</h3>
</div>
<p class="text-gray-600 mb-6">Our scientifically validated questionnaire evaluates multiple dimensions including cognitive abilities, personality traits, and vocational interests.</p>
<div class="flex items-center mb-6">
<div class="bg-amber-100 text-amber-700 p-3 rounded-full mr-4">
<i class="fas fa-chart-line text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Personalized Insights</h3>
</div>
<p class="text-gray-600 mb-6">Get detailed reports highlighting your child's strengths, areas for improvement, and recommended career paths tailored to their unique profile.</p>
<button class="bg-emerald-700 hover:bg-emerald-800 text-white px-6 py-3 rounded-lg font-semibold w-full transition-smooth">
Take Assessment Now
</button>
</div>
</div>
<div class="md:w-1/2">
<img src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="Students learning" class="rounded-xl shadow-lg w-full">
</div>
</div>
</div>
</section>
<!-- Personalized Career Paths Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-emerald-700 mb-4">Personalized Career Paths</h2>
<p class="text-gray-600 max-w-2xl mx-auto">We don't believe in one-size-fits-all solutions. Our AI analyzes multiple data points to recommend careers that align with your child's unique profile.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Career Path Card 1 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover transition-smooth">
<div class="bg-emerald-100 text-emerald-700 p-4 rounded-lg mb-4 inline-block">
<i class="fas fa-laptop-code text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Technology</h3>
<p class="text-gray-600 mb-4">For students with strong analytical skills and interest in innovation.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check-circle text-emerald-700 mr-2"></i>
<span>Software Engineer</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-emerald-700 mr-2"></i>
<span>Data Scientist</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-emerald-700 mr-2"></i>
<span>Cybersecurity Expert</span>
</li>
</ul>
<button class="text-emerald-700 font-semibold hover:text-emerald-900 transition-smooth flex items-center">
Explore More <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
<!-- Career Path Card 2 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover transition-smooth">
<div class="bg-amber-100 text-amber-700 p-4 rounded-lg mb-4 inline-block">
<i class="fas fa-heartbeat text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Healthcare</h3>
<p class="text-gray-600 mb-4">For compassionate individuals with strong scientific aptitude.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check-circle text-emerald-700 mr-2"></i>
<span>Doctor</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-emerald-700 mr-2"></i>
<span>Medical Researcher</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-emerald-700 mr-2"></i>
<span>Public Health Specialist</span>
</li>
</ul>
<button class="text-emerald-700 font-semibold hover:text-emerald-900 transition-smooth flex items-center">
Explore More <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
<!-- Career Path Card 3 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover transition-smooth">
<div class="bg-blue-100 text-blue-700 p-4 rounded-lg mb-4 inline-block">
<i class="fas fa-paint-brush text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Creative Arts</h3>
<p class="text-gray-600 mb-4">For imaginative minds with strong visual or performing arts skills.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check-circle text-emerald-700 mr-2"></i>
<span>Graphic Designer</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-emerald-700 mr-2"></i>
<span>Film Director</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-emerald-700 mr-2"></i>
<span>Architect</span>
</li>
</ul>
<button class="text-emerald-700 font-semibold hover:text-emerald-900 transition-smooth flex items-center">
Explore More <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
</section>
<!-- Sample Report Section -->
<section class="py-16 bg-emerald-700 text-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">See What You'll Get</h2>
<p class="max-w-2xl mx-auto">Our detailed reports provide actionable insights to guide your child's career journey.</p>
</div>
<div class="bg-white rounded-xl shadow-2xl overflow-hidden">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 p-8 text-gray-800">
<h3 class="text-2xl font-bold mb-6">Sample Career Report</h3>
<div class="space-y-6">
<div>
<h4 class="font-bold text-emerald-700 mb-2">Top Career Matches</h4>
<p>Based on your assessment results, these careers align best with your skills and interests.</p>
</div>
<div>
<h4 class="font-bold text-emerald-700 mb-2">Personality Insights</h4>
<p>Understand how your personality traits influence your career preferences and workplace behavior.</p>
</div>
<div>
<h4 class="font-bold text-emerald-700 mb-2">Skill Development Plan</h4>
<p>Personalized recommendations to strengthen the skills needed for your top career matches.</p>
</div>
<div>
<h4 class="font-bold text-emerald-700 mb-2">Educational Pathways</h4>
<p>Detailed guidance on courses, degrees, and institutions that will help you achieve your career goals.</p>
</div>
</div>
</div>
<div class="md:w-1/2 bg-gray-100 p-8 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Sample report" class="rounded-lg shadow-md w-full">
</div>
</div>
</div>
</div>
</section>
<!-- Skill Mastery Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-emerald-700 mb-4">Skill Mastery</h2>
<p class="text-gray-600 max-w-2xl mx-auto">We don't just recommend careers - we help students develop the skills they need to succeed.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Skill 1 -->
<div class="bg-white p-6 rounded-xl shadow-md card-hover transition-smooth text-center">
<div class="bg-emerald-100 text-emerald-700 p-4 rounded-full inline-block mb-4">
<i class="fas fa-comments text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Communication</h3>
<p class="text-gray-600">Interactive modules to enhance verbal and written communication skills.</p>
</div>
<!-- Skill 2 -->
<div class="bg-white p-6 rounded-xl shadow-md card-hover transition-smooth text-center">
<div class="bg-amber-100 text-amber-700 p-4 rounded-full inline-block mb-4">
<i class="fas fa-brain text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Critical Thinking</h3>
<p class="text-gray-600">Exercises to develop analytical and problem-solving abilities.</p>
</div>
<!-- Skill 3 -->
<div class="bg-white p-6 rounded-xl shadow-md card-hover transition-smooth text-center">
<div class="bg-blue-100 text-blue-700 p-4 rounded-full inline-block mb-4">
<i class="fas fa-users text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Teamwork</h3>
<p class="text-gray-600">Collaborative projects to build leadership and cooperation skills.</p>
</div>
<!-- Skill 4 -->
<div class="bg-white p-6 rounded-xl shadow-md card-hover transition-smooth text-center">
<div class="bg-purple-100 text-purple-700 p-4 rounded-full inline-block mb-4">
<i class="fas fa-lightbulb text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Creativity</h3>
<p class="text-gray-600">Activities to foster innovation and out-of-the-box thinking.</p>
</div>
</div>
<div class="text-center mt-12">
<button class="bg-emerald-700 hover:bg-emerald-800 text-white px-8 py-3 rounded-lg font-semibold transition-smooth shadow-lg inline-flex items-center">
Explore All Skill Modules <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-emerald-700 mb-4">Trusted by Families</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Hear from parents and students who have transformed their career journeys with Career-9.</p>
</div>
<div class="relative max-w-4xl mx-auto">
<!-- Testimonial Cards -->
<div class="testimonial-card active">
<div class="bg-gray-50 p-8 rounded-xl shadow-md">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Priya Sharma" class="w-16 h-16 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Priya Sharma</h4>
<p class="text-gray-600">Parent, Mumbai</p>
</div>
</div>
<p class="text-gray-700 italic mb-6">"Career-9 helped my daughter discover her passion for environmental science. The detailed report gave us clear guidance on courses and colleges. She's now pursuing her dream degree at a top university!"</p>
<div class="flex">
<i class="fas fa-star text-amber-400"></i>
<i class="fas fa-star text-amber-400"></i>
<i class="fas fa-star text-amber-400"></i>
<i class="fas fa-star text-amber-400"></i>
<i class="fas fa-star text-amber-400"></i>
</div>
</div>
</div>
<div class="testimonial-card hidden">
<div class="bg-gray-50 p-8 rounded-xl shadow-md">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Rahul Patel" class="w-16 h-16 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Rahul Patel</h4>
<p class="text-gray-600">Student, Bangalore</p>
</div>
</div>
<p class="text-gray-700 italic mb-6">"I was confused between engineering and design. Career-9's assessment showed my strong creative abilities and recommended product design. The skill modules helped me build my portfolio, and I got into my dream design school!"</p>
<div class="flex">
<i class="fas fa-star text-amber-400"></i>
<i class="fas fa-star text-amber-400"></i>
<i class="fas fa-star text-amber-400"></i>
<i class="fas fa-star text-amber-400"></i>
<i class="fas fa-star text-amber-400"></i>
</div>
</div>
</div>
<div class="testimonial-card hidden">
<div class="bg-gray-50 p-8 rounded-xl shadow-md">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Ananya Gupta" class="w-16 h-16 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Ananya Gupta</h4>
<p class="text-gray-600">Educator, Delhi</p>
</div>
</div>
<p class="text-gray-700 italic mb-6">"As a school counselor, I've recommended Career-9 to dozens of students. The AI-powered insights complement my guidance, and the reports provide students with clarity I couldn't achieve alone. It's revolutionized our career counseling program."</p>
<div class="flex">
<i class="fas fa-star text-amber-400"></i>
<i class="fas fa-star text-amber-400"></i>
<i class="fas fa-star text-amber-400"></i>
<i class="fas fa-star text-amber-400"></i>
<i class="fas fa-star text-amber-400"></i>
</div>
</div>
</div>
<!-- Navigation Arrows -->
<button id="prev-testimonial" class="absolute left-0 top-1/2 transform -translate-y-1/2 -ml-4 bg-white p-2 rounded-full shadow-md text-emerald-700 hover:text-emerald-900">
<i class="fas fa-chevron-left text-xl"></i>
</button>
<button id="next-testimonial" class="absolute right-0 top-1/2 transform -translate-y-1/2 -mr-4 bg-white p-2 rounded-full shadow-md text-emerald-700 hover:text-emerald-900">
<i class="fas fa-chevron-right text-xl"></i>
</button>
<!-- Dots Indicator -->
<div class="flex justify-center mt-6 space-x-2">
<button class="testimonial-dot w-3 h-3 rounded-full bg-emerald-700 active" data-index="0"></button>
<button class="testimonial-dot w-3 h-3 rounded-full bg-gray-300" data-index="1"></button>
<button class="testimonial-dot w-3 h-3 rounded-full bg-gray-300" data-index="2"></button>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-gradient-to-r from-emerald-700 to-emerald-900 text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Unlock Your Child's Potential?</h2>
<p class="text-xl mb-10 max-w-2xl mx-auto">Join thousands of families who have discovered the perfect career path with Career-9.</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<button class="bg-amber-500 hover:bg-amber-600 text-white px-8 py-4 rounded-lg font-bold text-lg transition-smooth shadow-lg">
Start Free Assessment
</button>
<button class="bg-white hover:bg-gray-100 text-emerald-700 px-8 py-4 rounded-lg font-bold text-lg transition-smooth shadow-lg">
Speak to an Expert
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<div class="bg-emerald-700 text-white p-2 rounded-lg mr-2">
<i class="fas fa-graduation-cap text-xl"></i>
</div>
<span class="font-bold text-xl">Career-9</span>
</div>
<p class="text-gray-400 mb-4">Empowering students to discover and pursue their ideal careers through AI-driven guidance.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition-smooth">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-smooth">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-smooth">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-smooth">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition-smooth">Home</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-smooth">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-smooth">How It Works</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-smooth">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-smooth">Testimonials</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition-smooth">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-smooth">Career Guides</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-smooth">FAQs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-smooth">Support</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-smooth">Privacy Policy</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Contact Us</h4>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-map-marker-alt text-emerald-700 mt-1 mr-3"></i>
<span class="text-gray-400">123 Career Street, Bangalore, India 560001</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt text-emerald-700 mr-3"></i>
<span class="text-gray-400">+91 98765 43210</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope text-emerald-700 mr-3"></i>
<span class="text-gray-400">hello@career9.com</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-10 pt-6 text-center text-gray-400">
<p>© 2023 Career-9. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const menuToggle = document.getElementById('menu-toggle');
const mobileMenu = document.getElementById('mobile-menu');
menuToggle.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Testimonial carousel
const testimonials = document.querySelectorAll('.testimonial-card');
const dots = document.querySelectorAll('.testimonial-dot');
let currentIndex = 0;
function showTestimonial(index) {
testimonials.forEach(testimonial => testimonial.classList.remove('active'));
dots.forEach(dot => dot.classList.remove('bg-emerald-700', 'active'));
dots.forEach(dot => dot.classList.add('bg-gray-300'));
testimonials[index].classList.add('active');
dots[index].classList.add('bg-emerald-700', 'active');
dots[index].classList.remove('bg-gray-300');
currentIndex = index;
}
document.getElementById('next-testimonial').addEventListener('click', () => {
let nextIndex = (currentIndex + 1) % testimonials.length;
showTestimonial(nextIndex);
});
document.getElementById('prev-testimonial').addEventListener('click', () => {
let prevIndex = (currentIndex - 1 + testimonials.length) % testimonials.length;
showTestimonial(prevIndex);
});
dots.forEach(dot => {
dot.addEventListener('click', () => {
const index = parseInt(dot.getAttribute('data-index'));
showTestimonial(index);
});
});
// Auto-rotate testimonials
setInterval(() => {
let nextIndex = (currentIndex + 1) % testimonials.length;
showTestimonial(nextIndex);
}, 5000);
</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=aashishjha/websites" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
</html> |