Spaces:
Running
Running
File size: 59,937 Bytes
a40d504 |
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 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 |
<!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-Powered Career Guidance for Indian Students</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary-red: #dc2626;
--dark-red: #991b1b;
--light-red: #fecaca;
--dark-bg: #111827;
}
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.hero-bg {
background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(254, 202, 202, 0.9) 100%), url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.testimonial-card {
transition: all 0.3s ease;
background: linear-gradient(145deg, #1f2937, #111827);
}
.testimonial-card:hover {
transform: scale(1.03);
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.btn-hover {
transition: all 0.3s ease;
}
.btn-hover:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.5);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: white;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.how-it-works-step {
position: relative;
}
.how-it-works-step:not(:last-child)::after {
content: '';
position: absolute;
top: 50%;
right: -50px;
width: 40px;
height: 2px;
background-color: var(--primary-red);
}
.trust-badge {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.section-title {
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
width: 50%;
height: 4px;
bottom: -8px;
left: 0;
background-color: var(--primary-red);
border-radius: 2px;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full bg-gray-900 text-white shadow-lg z-50">
<div class="container mx-auto px-6 py-3">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-4">
<div class="flex items-center">
<i class="fas fa-robot text-2xl mr-2 text-red-500"></i>
<span class="text-xl font-bold">Career-9</span>
</div>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="nav-link">Home</a>
<a href="#about" class="nav-link">About</a>
<a href="#how-it-works" class="nav-link">How It Works</a>
<a href="#features" class="nav-link">Features</a>
<a href="#testimonials" class="nav-link">Testimonials</a>
<a href="#trust" class="nav-link">Why Trust Us</a>
</div>
<div class="md:hidden">
<button class="mobile-menu-button">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
<div class="hidden md:block">
<a href="#cta" class="bg-red-600 text-white px-6 py-2 rounded-full font-medium btn-hover">Get Started</a>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="mobile-menu hidden md:hidden bg-gray-800">
<div class="container mx-auto px-6 py-3 flex flex-col space-y-4">
<a href="#home" class="block py-2">Home</a>
<a href="#about" class="block py-2">About</a>
<a href="#how-it-works" class="block py-2">How It Works</a>
<a href="#features" class="block py-2">Features</a>
<a href="#testimonials" class="block py-2">Testimonials</a>
<a href="#trust" class="block py-2">Why Trust Us</a>
<a href="#cta" class="block bg-red-600 text-white px-6 py-2 rounded-full font-medium text-center">Get Started</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-bg min-h-screen flex items-center text-white pt-20">
<div class="container mx-auto px-6 py-20">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<div class="flex items-center mb-6">
<div class="bg-white text-red-600 px-4 py-1 rounded-full font-bold text-sm mr-3">TRUSTED BY 50,000+ INDIAN PARENTS</div>
<div class="flex items-center">
<i class="fas fa-star text-yellow-300 mr-1"></i>
<span class="font-medium">4.9/5 (2,500+ reviews)</span>
</div>
</div>
<h1 class="text-4xl md:text-6xl font-bold leading-tight mb-6">
The Right Career Path for Your <span class="text-red-200">Child's Future</span>
</h1>
<p class="text-xl md:text-2xl mb-8 text-red-100">
AI-powered career guidance designed specifically for Indian students. Help your child make the best career choice with data-driven insights.
</p>
<div class="flex flex-wrap gap-4 mb-8">
<div class="bg-white bg-opacity-20 px-4 py-2 rounded-full flex items-center">
<i class="fas fa-check-circle mr-2"></i>
<span>92% Accuracy</span>
</div>
<div class="bg-white bg-opacity-20 px-4 py-2 rounded-full flex items-center">
<i class="fas fa-rupee-sign mr-2"></i>
<span>Affordable</span>
</div>
<div class="bg-white bg-opacity-20 px-4 py-2 rounded-full flex items-center">
<i class="fas fa-graduation-cap mr-2"></i>
<span>Indian Education Focus</span>
</div>
</div>
<div class="flex space-x-4">
<a href="#cta" class="bg-white text-red-600 px-8 py-3 rounded-full font-bold text-lg btn-hover">
Start Free Assessment
</a>
<a href="#how-it-works" class="border-2 border-white text-white px-8 py-3 rounded-full font-bold text-lg btn-hover">
<i class="fas fa-play-circle mr-2"></i> Watch Demo
</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<img src="https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Indian family discussing career options"
class="rounded-xl shadow-2xl floating max-w-md w-full border-4 border-white">
<div class="absolute -bottom-6 -right-6 bg-white p-4 rounded-xl shadow-lg">
<div class="flex items-center">
<div class="bg-red-100 p-3 rounded-full mr-3">
<i class="fas fa-chart-line text-red-600 text-xl"></i>
</div>
<div>
<div class="text-gray-900 font-bold">95% Success Rate</div>
<div class="text-gray-600 text-sm">in career satisfaction</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Trust Badges -->
<section class="py-8 bg-gray-900 text-white">
<div class="container mx-auto px-6">
<div class="flex flex-wrap justify-center items-center gap-6 md:gap-12">
<div class="trust-badge px-6 py-3 rounded-full flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Indian_Institute_of_Technology_Delhi_Logo.svg/1200px-Indian_Institute_of_Technology_Delhi_Logo.svg.png" alt="IIT Delhi" class="h-8 mr-2">
<span>IIT Delhi Approved</span>
</div>
<div class="trust-badge px-6 py-3 rounded-full flex items-center">
<i class="fas fa-shield-alt text-red-400 mr-2"></i>
<span>ISO 27001 Certified</span>
</div>
<div class="trust-badge px-6 py-3 rounded-full flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Indian_Institute_of_Management_Ahmedabad_Logo.svg/1200px-Indian_Institute_of_Management_Ahmedabad_Logo.svg.png" alt="IIM Ahmedabad" class="h-8 mr-2">
<span>IIM Ahmedabad Partner</span>
</div>
<div class="trust-badge px-6 py-3 rounded-full flex items-center">
<i class="fas fa-lock text-red-400 mr-2"></i>
<span>100% Data Privacy</span>
</div>
</div>
</div>
</section>
<!-- About Us -->
<section id="about" class="py-20 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-gray-900 mb-4 section-title">About Career-9</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Designed by IIT/IIM alumni for Indian students</p>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<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=2070&q=80"
alt="Indian students studying"
class="rounded-xl shadow-lg w-full max-w-lg">
<div class="absolute -bottom-6 -left-6 bg-red-600 text-white p-6 rounded-xl shadow-lg max-w-xs">
<div class="text-4xl font-bold mb-2">8+ Years</div>
<div class="text-lg">of helping Indian students find their perfect career</div>
</div>
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<h3 class="text-2xl md:text-3xl font-bold text-gray-900 mb-6">Why Indian Parents Trust Us</h3>
<p class="text-gray-600 mb-6 leading-relaxed">
Career-9 was founded by IIT/IIM alumni who understand the unique challenges Indian students face in career selection. We combine global best practices with deep understanding of the Indian education system.
</p>
<p class="text-gray-600 mb-6 leading-relaxed">
Unlike generic career tests, our Navigator 360 assessment is specifically calibrated for Indian career paths, entrance exams (JEE, NEET, CLAT etc.), and job markets.
</p>
<div class="flex flex-wrap gap-4 mt-8">
<div class="flex items-center bg-red-50 px-4 py-2 rounded-full">
<i class="fas fa-map-marker-alt text-red-600 mr-2"></i>
<span class="text-red-800 font-medium">Made in India</span>
</div>
<div class="flex items-center bg-red-50 px-4 py-2 rounded-full">
<i class="fas fa-user-tie text-red-600 mr-2"></i>
<span class="text-red-800 font-medium">IIT/IIM Experts</span>
</div>
<div class="flex items-center bg-red-50 px-4 py-2 rounded-full">
<i class="fas fa-rupee-sign text-red-600 mr-2"></i>
<span class="text-red-800 font-medium">Affordable</span>
</div>
</div>
<div class="mt-12 bg-gray-50 p-6 rounded-xl border-l-4 border-red-600">
<div class="flex items-start">
<img src="https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1887&q=80"
alt="Dr. Sharma"
class="w-16 h-16 rounded-full mr-4 border-2 border-red-600">
<div>
<h4 class="font-bold text-gray-900">Dr. Rajesh Sharma</h4>
<p class="text-sm text-gray-500 mb-2">Education Psychologist, IIT Delhi</p>
<p class="text-gray-600 italic">"Career-9's approach combines scientific rigor with cultural sensitivity - exactly what Indian students need for career decisions."</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Why Trust Us -->
<section id="trust" class="py-20 bg-gray-900 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 section-title">Why Indian Parents Choose Us</h2>
<p class="text-xl text-gray-300 max-w-2xl mx-auto">The most trusted career guidance platform in India</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Trust 1 -->
<div class="bg-gray-800 p-8 rounded-xl border-l-4 border-red-600">
<div class="bg-red-600 w-16 h-16 rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-lock"></i>
</div>
<h3 class="text-xl font-bold mb-3">Data Privacy Guaranteed</h3>
<p class="text-gray-300">
We follow strict data protection protocols compliant with Indian laws. Your child's information is completely secure.
</p>
</div>
<!-- Trust 2 -->
<div class="bg-gray-800 p-8 rounded-xl border-l-4 border-red-600">
<div class="bg-red-600 w-16 h-16 rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="text-xl font-bold mb-3">Proven Track Record</h3>
<p class="text-gray-300">
92% of students who followed our recommendations reported higher career satisfaction 3 years later.
</p>
</div>
<!-- Trust 3 -->
<div class="bg-gray-800 p-8 rounded-xl border-l-4 border-red-600">
<div class="bg-red-600 w-16 h-16 rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-rupee-sign"></i>
</div>
<h3 class="text-xl font-bold mb-3">Indian Market Focus</h3>
<p class="text-gray-300">
Our algorithms are specifically trained on Indian career paths, salary data, and growth opportunities.
</p>
</div>
</div>
<div class="mt-16 bg-gray-800 rounded-xl p-8">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h3 class="text-2xl font-bold mb-4">Featured in</h3>
<div class="grid grid-cols-2 md:grid-cols-3 gap-6">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b5/The_Indian_Express_logo.svg/2560px-The_Indian_Express_logo.svg.png" alt="Indian Express" class="h-10 object-contain opacity-80">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/The_Times_of_India_logo.svg/2560px-The_Times_of_India_logo.svg.png" alt="Times of India" class="h-10 object-contain opacity-80">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/CNBC_Awaaz_Logo.png/1200px-CNBC_Awaaz_Logo.png" alt="CNBC Awaaz" class="h-10 object-contain opacity-80">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/HT_Media_Limited_logo.png/640px-HT_Media_Limited_logo.png" alt="Hindustan Times" class="h-10 object-contain opacity-80">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/DD_News_logo.png/640px-DD_News_logo.png" alt="DD News" class="h-10 object-contain opacity-80">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/India_Today_logo.png/640px-India_Today_logo.png" alt="India Today" class="h-10 object-contain opacity-80">
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<h3 class="text-2xl font-bold mb-4">Our Credentials</h3>
<ul class="space-y-4">
<li class="flex items-start">
<i class="fas fa-check-circle text-red-400 mt-1 mr-3"></i>
<span>Founded by IIT/IIM alumni with 15+ years education experience</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-red-400 mt-1 mr-3"></i>
<span>Recognized by AICTE (All India Council for Technical Education)</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-red-400 mt-1 mr-3"></i>
<span>Partnered with 50+ Indian colleges and universities</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-red-400 mt-1 mr-3"></i>
<span>ISO 27001 certified for data security</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- How It Works -->
<section id="how-it-works" class="py-20 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-gray-900 mb-4 section-title">How It Works</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Simple 3-step process to discover your child's ideal career path</p>
</div>
<div class="flex flex-col md:flex-row justify-center items-center md:items-start space-y-12 md:space-y-0 md:space-x-12">
<!-- Step 1 -->
<div class="how-it-works-step flex flex-col items-center text-center max-w-xs">
<div class="bg-red-100 w-20 h-20 rounded-full flex items-center justify-center mb-6">
<div class="bg-red-600 w-16 h-16 rounded-full flex items-center justify-center text-white text-2xl">
<i class="fas fa-clipboard-list"></i>
</div>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">1. Assessment</h3>
<p class="text-gray-600">
Your child completes our comprehensive 45-minute online assessment covering skills, interests and personality.
</p>
</div>
<!-- Step 2 -->
<div class="how-it-works-step flex flex-col items-center text-center max-w-xs">
<div class="bg-red-100 w-20 h-20 rounded-full flex items-center justify-center mb-6">
<div class="bg-red-600 w-16 h-16 rounded-full flex items-center justify-center text-white text-2xl">
<i class="fas fa-brain"></i>
</div>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">2. AI Analysis</h3>
<p class="text-gray-600">
Our AI compares your child's profile with 50,000+ successful Indian professionals to find best matches.
</p>
</div>
<!-- Step 3 -->
<div class="how-it-works-step flex flex-col items-center text-center max-w-xs">
<div class="bg-red-100 w-20 h-20 rounded-full flex items-center justify-center mb-6">
<div class="bg-red-600 w-16 h-16 rounded-full flex items-center justify-center text-white text-2xl">
<i class="fas fa-road"></i>
</div>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">3. Career Roadmap</h3>
<p class="text-gray-600">
Receive a detailed report with career options, required education path, and action plan.
</p>
</div>
</div>
<div class="mt-16 bg-red-50 rounded-xl p-8 max-w-4xl mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-6 md:mb-0 flex justify-center">
<img src="https://images.unsplash.com/photo-1544717305-2782549b5136?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1887&q=80"
alt="Sample report"
class="rounded-lg shadow-md h-48 border-2 border-white">
</div>
<div class="md:w-2/3 md:pl-8">
<h3 class="text-2xl font-bold text-gray-900 mb-3">What's in the Report?</h3>
<ul class="space-y-2 text-gray-700">
<li class="flex items-start">
<i class="fas fa-check text-red-600 mr-2 mt-1"></i>
<span>Top 3 career matches with growth potential in India</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-red-600 mr-2 mt-1"></i>
<span>Recommended stream selection (Science/Commerce/Arts)</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-red-600 mr-2 mt-1"></i>
<span>Entrance exam roadmap (JEE, NEET, CLAT etc.)</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-red-600 mr-2 mt-1"></i>
<span>Skill development plan for the next 3 years</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-red-600 mr-2 mt-1"></i>
<span>1-on-1 consultation with our career expert</span>
</li>
</ul>
</div>
</div>
</div>
<div class="mt-16 text-center">
<a href="#cta" class="bg-red-600 text-white px-8 py-3 rounded-full font-bold text-lg inline-block btn-hover">
<i class="fas fa-download mr-2"></i> Download Sample Report
</a>
</div>
</div>
</section>
<!-- Features -->
<section id="features" class="py-20 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-gray-900 mb-4 section-title">Our Unique Features</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">What makes Career-9 different from other career tests</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300 border-t-4 border-red-600">
<div class="bg-red-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 text-red-600 text-2xl">
<i class="fas fa-desktop"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Indian Education Focus</h3>
<p class="text-gray-600">
Our algorithms are specifically trained on Indian education paths (CBSE, ICSE, State Boards), entrance exams, and job markets.
</p>
</div>
<!-- Feature 2 -->
<div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300 border-t-4 border-red-600">
<div class="bg-red-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 text-red-600 text-2xl">
<i class="fas fa-user-graduate"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Stream Selection Guidance</h3>
<p class="text-gray-600">
Get clear recommendations on Science/Commerce/Arts stream selection after 10th grade based on career goals.
</p>
</div>
<!-- Feature 3 -->
<div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300 border-t-4 border-red-600">
<div class="bg-red-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 text-red-600 text-2xl">
<i class="fas fa-chalkboard-teacher"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Expert Consultation</h3>
<p class="text-gray-600">
1-on-1 session with our career counselors (IIT/IIM alumni) to discuss the report and answer all questions.
</p>
</div>
<!-- Feature 4 -->
<div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300 border-t-4 border-red-600">
<div class="bg-red-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 text-red-600 text-2xl">
<i class="fas fa-rupee-sign"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Salary Projections</h3>
<p class="text-gray-600">
Realistic salary expectations for each career path in Indian job market (metro and non-metro cities).
</p>
</div>
<!-- Feature 5 -->
<div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300 border-t-4 border-red-600">
<div class="bg-red-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 text-red-600 text-2xl">
<i class="fas fa-book"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Entrance Exam Roadmap</h3>
<p class="text-gray-600">
Detailed preparation plan for JEE, NEET, CLAT and other entrance exams if required for chosen careers.
</p>
</div>
<!-- Feature 6 -->
<div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300 border-t-4 border-red-600">
<div class="bg-red-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 text-red-600 text-2xl">
<i class="fas fa-sync-alt"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Annual Updates</h3>
<p class="text-gray-600">
Free annual reassessment to adjust recommendations as your child grows and develops new interests.
</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section id="testimonials" class="py-20 bg-gray-900 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 section-title">Parent & Student Stories</h2>
<p class="text-xl text-gray-300 max-w-2xl mx-auto">Hear from Indian families who transformed their career decisions</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card p-8 rounded-xl">
<div class="flex items-center mb-6">
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1888&q=80" alt="Parent" class="w-12 h-12 rounded-full mr-4 border-2 border-red-500">
<div>
<h4 class="font-bold">Mr. Sharma</h4>
<p class="text-red-300 text-sm">Parent from Delhi</p>
</div>
</div>
<p class="text-gray-300">
"We were pushing our son towards engineering like most Indian parents. Career-9 showed his aptitude was actually in design. He's now at NID and happier than ever!"
</p>
<div class="mt-6 flex items-center">
<div class="flex mr-4">
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
</div>
<span class="text-sm text-gray-400">2 months ago</span>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card p-8 rounded-xl">
<div class="flex items-center mb-6">
<img src="https://images.unsplash.com/photo-1593104547489-5cf65e3620eb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80" alt="Student" class="w-12 h-12 rounded-full mr-4 border-2 border-red-500">
<div>
<h4 class="font-bold">Priya M.</h4>
<p class="text-red-300 text-sm">Student from Bangalore</p>
</div>
</div>
<p class="text-gray-300">
"I was confused between Medicine and Psychology. The assessment showed Psychology was my true calling. The roadmap helped me get into TISS directly after 12th!"
</p>
<div class="mt-6 flex items-center">
<div class="flex mr-4">
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star-half-alt text-yellow-300"></i>
</div>
<span class="text-sm text-gray-400">4 months ago</span>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card p-8 rounded-xl">
<div class="flex items-center mb-6">
<img src="https://images.unsplash.com/photo-1580894732444-8ecded7900cd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Parent" class="w-12 h-12 rounded-full mr-4 border-2 border-red-500">
<div>
<h4 class="font-bold">Mrs. Patel</h4>
<p class="text-red-300 text-sm">Parent from Ahmedabad</p>
</div>
</div>
<p class="text-gray-300">
"As middle-class parents, we couldn't afford expensive career counseling. Career-9 gave us professional guidance at 1/10th the cost of traditional counselors."
</p>
<div class="mt-6 flex items-center">
<div class="flex mr-4">
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
</div>
<span class="text-sm text-gray-400">1 year ago</span>
</div>
</div>
</div>
<div class="mt-16 text-center">
<a href="#" class="border-2 border-red-600 text-white px-8 py-3 rounded-full font-bold text-lg inline-block btn-hover">
<i class="fas fa-play-circle mr-2"></i> Watch More Success Stories
</a>
</div>
</div>
</section>
<!-- Pricing -->
<section class="py-20 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-gray-900 mb-4 section-title">Affordable Career Guidance</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Premium quality at a fraction of traditional counseling costs</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-xl shadow-lg border border-gray-200">
<div class="text-center mb-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Basic Assessment</h3>
<div class="text-4xl font-bold text-red-600 mb-2">₹999</div>
<div class="text-gray-500">one-time</div>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Comprehensive career assessment</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Detailed career report (digital)</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Stream selection guidance</span>
</li>
<li class="flex items-start text-gray-400">
<i class="fas fa-times mt-1 mr-2"></i>
<span>No expert consultation</span>
</li>
</ul>
<a href="#cta" class="block text-center bg-gray-100 text-gray-800 px-6 py-3 rounded-full font-medium btn-hover">
Choose Plan
</a>
</div>
<!-- Popular Plan -->
<div class="bg-white p-8 rounded-xl shadow-2xl border-2 border-red-600 transform scale-105 relative">
<div class="absolute top-0 right-0 bg-red-600 text-white px-4 py-1 text-sm font-bold rounded-bl-lg rounded-tr-lg">
MOST POPULAR
</div>
<div class="text-center mb-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Premium Package</h3>
<div class="text-4xl font-bold text-red-600 mb-2">₹2,499</div>
<div class="text-gray-500">one-time</div>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Everything in Basic</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>45-min expert consultation</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Entrance exam roadmap</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>1 annual reassessment</span>
</li>
</ul>
<a href="#cta" class="block text-center bg-red-600 text-white px-6 py-3 rounded-full font-medium btn-hover">
Choose Plan
</a>
</div>
<!-- Family Plan -->
<div class="bg-white p-8 rounded-xl shadow-lg border border-gray-200">
<div class="text-center mb-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Family Package</h3>
<div class="text-4xl font-bold text-red-600 mb-2">₹4,999</div>
<div class="text-gray-500">for 2 children</div>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Everything in Premium</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>For 2 siblings</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Compare siblings' profiles</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Priority support</span>
</li>
</ul>
<a href="#cta" class="block text-center bg-gray-100 text-gray-800 px-6 py-3 rounded-full font-medium btn-hover">
Choose Plan
</a>
</div>
</div>
<div class="mt-12 text-center text-gray-600 max-w-3xl mx-auto">
<p>All plans include lifetime access to your dashboard. Payment options: Credit/Debit Cards, UPI, Net Banking. 7-day money back guarantee.</p>
</div>
</div>
</section>
<!-- CTA Section -->
<section id="cta" class="py-20 bg-gray-900 text-white">
<div class="container mx-auto px-6">
<div class="bg-gradient-to-r from-red-600 to-red-500 rounded-2xl p-12 text-center shadow-xl relative overflow-hidden">
<div class="absolute -right-20 -top-20 w-64 h-64 bg-red-700 rounded-full opacity-20"></div>
<div class="absolute -left-20 -bottom-20 w-64 h-64 bg-red-700 rounded-full opacity-20"></div>
<div class="relative z-10">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Secure Your Child's Future Today</h2>
<p class="text-xl text-red-100 max-w-2xl mx-auto mb-8">
Join 50,000+ Indian parents who made confident career decisions for their children
</p>
<a href="#" class="bg-white text-red-600 px-10 py-4 rounded-full font-bold text-lg inline-block btn-hover">
<i class="fas fa-lock mr-2"></i> Get Started - 100% Secure
</a>
<div class="mt-6 flex flex-wrap justify-center items-center gap-4">
<div class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Indian_Rupee_symbol.svg/1024px-Indian_Rupee_symbol.svg.png" alt="Rupee" class="h-4 mr-1">
<span>No-cost EMI available</span>
</div>
<div class="flex items-center">
<i class="fas fa-shield-alt mr-2"></i>
<span>7-day money back guarantee</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ -->
<section class="py-20 bg-white">
<div class="container mx-auto px-6 max-w-4xl">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4 section-title">Frequently Asked Questions</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Common questions from Indian parents</p>
</div>
<div class="space-y-6">
<!-- FAQ 1 -->
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-question w-full text-left p-6 bg-gray-50 hover:bg-gray-100 transition flex justify-between items-center">
<span class="text-lg font-medium text-gray-800">How is Career-9 different from school career counseling?</span>
<i class="fas fa-chevron-down text-red-600 transition-transform duration-300"></i>
</button>
<div class="faq-answer p-6 hidden">
<p class="text-gray-600">
Most school counselors have limited time and resources to provide personalized guidance. Career-9 uses advanced AI to analyze your child's unique profile against thousands of data points from successful Indian professionals. Our recommendations are data-driven, unbiased, and specific to the Indian education and job market.
</p>
</div>
</div>
<!-- FAQ 2 -->
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-question w-full text-left p-6 bg-gray-50 hover:bg-gray-100 transition flex justify-between items-center">
<span class="text-lg font-medium text-gray-800">Is this suitable for students of all ages?</span>
<i class="fas fa-chevron-down text-red-600 transition-transform duration-300"></i>
</button>
<div class="faq-answer p-6 hidden">
<p class="text-gray-600">
We recommend Career-9 for students from 8th grade onwards. The assessment adapts based on the student's age:
<br><br>
<strong>8th-10th:</strong> Focuses on stream selection (Science/Commerce/Arts) and early skill development
<br>
<strong>11th-12th:</strong> Provides detailed career options and entrance exam roadmaps
<br>
<strong>College students:</strong> Offers specialization guidance and job market preparation
</p>
</div>
</div>
<!-- FAQ 3 -->
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-question w-full text-left p-6 bg-gray-50 hover:bg-gray-100 transition flex justify-between items-center">
<span class="text-lg font-medium text-gray-800">How long does the assessment take?</span>
<i class="fas fa-chevron-down text-red-600 transition-transform duration-300"></i>
</button>
<div class="faq-answer p-6 hidden">
<p class="text-gray-600">
The online assessment takes about 45 minutes to complete. It's designed to be engaging and can be paused and resumed anytime. We recommend students complete it in one sitting when they're fresh and focused.
</p>
</div>
</div>
<!-- FAQ 4 -->
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-question w-full text-left p-6 bg-gray-50 hover:bg-gray-100 transition flex justify-between items-center">
<span class="text-lg font-medium text-gray-800">What if we disagree with the recommendations?</span>
<i class="fas fa-chevron-down text-red-600 transition-transform duration-300"></i>
</button>
<div class="faq-answer p-6 hidden">
<p class="text-gray-600">
Our expert consultations (included in Premium plans) are specifically designed to address this. Many Indian parents initially have concerns when results differ from traditional expectations (like engineering/medicine). Our counselors explain the rationale behind each recommendation and help find middle ground that satisfies both data-driven insights and family expectations.
</p>
</div>
</div>
<!-- FAQ 5 -->
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-question w-full text-left p-6 bg-gray-50 hover:bg-gray-100 transition flex justify-between items-center">
<span class="text-lg font-medium text-gray-800">How do you ensure data privacy for my child?</span>
<i class="fas fa-chevron-down text-red-600 transition-transform duration-300"></i>
</button>
<div class="faq-answer p-6 hidden">
<p class="text-gray-600">
We take data privacy extremely seriously, especially for minors. Career-9 is ISO 27001 certified for information security. All data is encrypted and stored securely in India. We never share individual data with third parties. Parents have full control over what information is shared and can request complete data deletion at any time.
</p>
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="#" class="text-red-600 font-medium inline-flex items-center">
<span>Have more questions? Chat with our support team</span>
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-robot text-2xl mr-2 text-red-500"></i>
<span class="text-xl font-bold">Career-9</span>
</div>
<p class="text-gray-400 mb-4">
AI-powered career guidance designed for Indian students by IIT/IIM alumni.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">For Parents</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">How It Helps</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Success Stories</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Parent Resources</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">For Students</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Take Assessment</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Career Explorer</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Stream Selector</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">College Finder</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Contact Us</h3>
<ul class="space-y-2">
<li class="flex items-center text-gray-400">
<i class="fas fa-map-marker-alt mr-2 text-red-400"></i>
<span>123 Career Street, Bangalore 560001</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-phone-alt mr-2 text-red-400"></i>
<span>+91 98765 43210</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-envelope mr-2 text-red-400"></i>
<span>support@career9.in</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-clock mr-2 text-red-400"></i>
<span>Mon-Sat: 9AM-6PM</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">
© 2023 Career-9 Technologies Pvt Ltd. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Refund Policy</a>
</div>
</div>
<div class="mt-8 text-center text-gray-500 text-xs">
<p>Career-9 is not affiliated with any educational board (CBSE, ICSE, State Boards) or entrance exam (JEE, NEET, CLAT etc.).</p>
<p class="mt-2">All career predictions are based on statistical analysis and should be considered as guidance only.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuButton = document.querySelector('.mobile-menu-button');
const mobileMenu = document.querySelector('.mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
});
});
// FAQ accordion
document.querySelectorAll('.faq-question').forEach(question => {
question.addEventListener('click', () => {
const answer = question.nextElementSibling;
const icon = question.querySelector('i');
// Toggle answer visibility
answer.classList.toggle('hidden');
// Rotate icon
if (answer.classList.contains('hidden')) {
icon.style.transform = 'rotate(0deg)';
} else {
icon.style.transform = 'rotate(180deg)';
}
});
});
// Animation on scroll
const animateOnScroll = () => {
const elements = document.querySelectorAll('.feature-card, .testimonial-card, .how-it-works-step');
elements.forEach(element => {
const elementPosition = element.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.3;
if (elementPosition < screenPosition) {
element.style.opacity = '1';
element.style.transform = 'translateY(0)';
}
});
};
// Set initial state for animated elements
document.querySelectorAll('.feature-card, .testimonial-card, .how-it-works-step').forEach(element => {
element.style.opacity = '0';
element.style.transform = 'translateY(20px)';
element.style.transition = 'all 0.6s ease';
});
window.addEventListener('scroll', animateOnScroll);
window.addEventListener('load', animateOnScroll);
</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/website-2" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
</html> |