Spaces:
Running
Running
File size: 71,831 Bytes
6f27765 |
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 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cosmic Insights - AI Astrology Platform</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=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
:root {
--primary: #6d28d9;
--secondary: #8b5cf6;
--dark: #1e1b4b;
--light: #f5f3ff;
}
body {
font-family: 'Poppins', sans-serif;
background-color: var(--light);
color: var(--dark);
transition: all 0.3s ease;
}
.font-serif {
font-family: 'Playfair Display', serif;
}
.gradient-bg {
background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.chart-container {
perspective: 1000px;
}
.chart-card {
transition: transform 0.5s;
transform-style: preserve-3d;
}
.chart-card:hover {
transform: rotateY(10deg) scale(1.02);
}
.ticker-wrap {
overflow: hidden;
white-space: nowrap;
}
.ticker {
display: inline-block;
animation: ticker 60s linear infinite;
}
@keyframes ticker {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
.dashboard-card {
transition: all 0.3s ease;
}
.dashboard-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.language-selector {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
background-position: right 0.5rem center;
background-repeat: no-repeat;
background-size: 1.5em 1.5em;
}
.dark-mode {
background-color: #111827;
color: #f3f4f6;
}
.dark-mode .dark\:bg-gray-800 {
background-color: #1f2937;
}
.dark-mode .dark\:text-white {
color: #f3f4f6;
}
.dark-mode .dark\:border-gray-700 {
border-color: #374151;
}
.dark-mode .dark\:bg-gray-900 {
background-color: #111827;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
.dark-mode ::-webkit-scrollbar-track {
background: #374151;
}
::-webkit-scrollbar-thumb {
background: #8b5cf6;
border-radius: 4px;
}
.dark-mode ::-webkit-scrollbar-thumb {
background: #6d28d9;
}
</style>
</head>
<body class="min-h-screen">
<!-- Dark Mode Toggle -->
<button id="darkModeToggle" class="fixed bottom-6 right-6 z-50 w-12 h-12 rounded-full gradient-bg shadow-lg flex items-center justify-center text-white">
<i class="fas fa-moon text-xl" id="darkModeIcon"></i>
</button>
<!-- Header -->
<header class="gradient-bg text-white shadow-lg sticky top-0 z-40">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-star-and-crescent text-2xl"></i>
<h1 class="text-2xl font-bold font-serif">Cosmic Insights</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#home" class="hover:text-purple-200 transition">Home</a>
<a href="#features" class="hover:text-purple-200 transition">Features</a>
<a href="#dashboard" class="hover:text-purple-200 transition">Dashboard</a>
<a href="#horoscope" class="hover:text-purple-200 transition">Horoscope</a>
<a href="#contact" class="hover:text-purple-200 transition">Contact</a>
</nav>
<div class="flex items-center space-x-4">
<select id="languageSelect" class="language-selector bg-transparent border border-white rounded px-3 py-1 text-white focus:outline-none focus:ring-2 focus:ring-purple-300">
<option value="en">English</option>
<option value="hi">हिन्दी</option>
<option value="mr">मरााठी</option>
<option value="ta">தமிழ்</option>
<option value="te">తెలుగు</option>
</select>
<button id="mobileMenuButton" class="md:hidden text-white focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobileMenu" class="hidden md:hidden bg-purple-900 px-4 py-2">
<div class="flex flex-col space-y-3">
<a href="#home" class="text-white hover:text-purple-200 transition">Home</a>
<a href="#features" class="text-white hover:text-purple-200 transition">Features</a>
<a href="#dashboard" class="text-white hover:text-purple-200 transition">Dashboard</a>
<a href="#horoscope" class="text-white hover:text-purple-200 transition">Horoscope</a>
<a href="#contact" class="text-white hover:text-purple-200 transition">Contact</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="py-16 md:py-24 gradient-bg text-white">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6 font-serif">Discover Your Cosmic Blueprint</h1>
<p class="text-xl mb-8">AI-powered astrology insights tailored to your unique birth chart. Get personalized predictions in multiple languages.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-purple-800 hover:bg-purple-100 font-bold py-3 px-6 rounded-lg transition duration-300 flex items-center justify-center">
<i class="fas fa-chart-pie mr-2"></i> Generate Your Chart
</button>
<button class="bg-transparent border-2 border-white hover:bg-white hover:text-purple-800 font-bold py-3 px-6 rounded-lg transition duration-300 flex items-center justify-center">
<i class="fas fa-play mr-2"></i> Watch Demo
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative w-full max-w-md">
<div class="absolute -top-6 -left-6 w-32 h-32 bg-purple-300 rounded-full opacity-20 animate-pulse"></div>
<div class="absolute -bottom-6 -right-6 w-32 h-32 bg-purple-400 rounded-full opacity-20 animate-pulse delay-300"></div>
<img src="https://via.placeholder.com/500x500/6d28d9/ffffff?text=Astrology+Chart" alt="Astrology Chart" class="relative z-10 rounded-xl shadow-2xl border-4 border-white">
</div>
</div>
</div>
</section>
<!-- Daily Horoscope Ticker -->
<section class="bg-purple-800 text-white py-3 overflow-hidden">
<div class="container mx-auto px-4">
<div class="flex items-center">
<span class="font-bold mr-4 whitespace-nowrap">Today's Rashibhavishya:</span>
<div class="ticker-wrap w-full overflow-hidden">
<div class="ticker">
<span class="mr-8">♈ Aries: A productive day awaits you. Focus on your goals...</span>
<span class="mr-8">♉ Taurus: Financial matters need attention. Avoid impulsive spending...</span>
<span class="mr-8">♊ Gemini: Communication is key today. Express your thoughts clearly...</span>
<span class="mr-8">♋ Cancer: Emotional balance is important. Spend time with loved ones...</span>
<span class="mr-8">♌ Leo: Your creativity shines today. Pursue artistic endeavors...</span>
<span class="mr-8">♍ Virgo: Health should be prioritized. Maintain a balanced routine...</span>
<span class="mr-8">♎ Libra: Relationships take center stage. Resolve any conflicts...</span>
<span class="mr-8">♏ Scorpio: Transformation is possible. Let go of what no longer serves you...</span>
<span class="mr-8">♐ Sagittarius: Adventure calls. Be open to new experiences...</span>
<span class="mr-8">♑ Capricorn: Career opportunities arise. Show your leadership...</span>
<span class="mr-8">♒ Aquarius: Innovation is favored. Think outside the box...</span>
<span class="mr-8">♓ Pisces: Intuition is strong. Trust your inner guidance...</span>
</div>
</div>
</div>
</div>
</section>
<!-- Birth Chart Form -->
<section class="py-16 bg-white dark:bg-gray-900">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4 font-serif dark:text-white">Generate Your Astrology Chart</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">Enter your birth details to receive a personalized astrology report powered by AI.</p>
</div>
<div class="max-w-3xl mx-auto bg-purple-50 dark:bg-gray-800 rounded-xl shadow-lg p-6 md:p-8">
<form id="birthChartForm">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label for="birthDate" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Birth Date</label>
<input type="date" id="birthDate" class="w-full px-4 py-2 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-500 focus:border-purple-500 dark:bg-gray-700 dark:border-gray-600 dark:text-white" required>
</div>
<div>
<label for="birthTime" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Birth Time</label>
<input type="time" id="birthTime" class="w-full px-4 py-2 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-500 focus:border-purple-500 dark:bg-gray-700 dark:border-gray-600 dark:text-white" required>
</div>
<div>
<label for="birthPlace" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Birth Place</label>
<input type="text" id="birthPlace" placeholder="City, Country" class="w-full px-4 py-2 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-500 focus:border-purple-500 dark:bg-gray-700 dark:border-gray-600 dark:text-white" required>
</div>
<div>
<label for="chartType" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Chart Type</label>
<select id="chartType" class="w-full px-4 py-2 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-500 focus:border-purple-500 dark:bg-gray-700 dark:border-gray-600 dark:text-white">
<option value="vedic">Vedic (Jyotish)</option>
<option value="western">Western Tropical</option>
<option value="draconic">Draconic</option>
<option value="sidereal">Sidereal</option>
<option value="composite">Composite Chart</option>
</select>
</div>
</div>
<div class="mt-6">
<label for="reportLanguage" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Report Language</label>
<select id="reportLanguage" class="w-full px-4 py-2 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-500 focus:border-purple-500 dark:bg-gray-700 dark:border-gray-600 dark:text-white">
<option value="en">English</option>
<option value="hi">Hindi (हिन्दी)</option>
<option value="mr">Marathi (मराठी)</option>
<option value="ta">Tamil (தமிழ்)</option>
<option value="te">Telugu (తెలుగు)</option>
<option value="kn">Kannada (ಕನ್ನಡ)</option>
<option value="bn">Bengali (বাংলা)</option>
</select>
</div>
<div class="mt-8 flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
<button type="submit" class="gradient-bg hover:opacity-90 text-white font-bold py-3 px-8 rounded-lg transition duration-300 flex items-center justify-center">
<i class="fas fa-calculator mr-2"></i> Calculate Chart
</button>
<button type="button" class="bg-gray-200 hover:bg-gray-300 text-gray-800 font-bold py-3 px-8 rounded-lg transition duration-300 flex items-center justify-center dark:bg-gray-700 dark:hover:bg-gray-600 dark:text-white">
<i class="fas fa-question-circle mr-2"></i> Sample Report
</button>
</div>
</form>
</div>
<div class="mt-12 text-center">
<p class="text-gray-600 dark:text-gray-300">You have <span class="font-bold text-purple-600 dark:text-purple-400">3 free questions</span> remaining before subscription is required.</p>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 bg-gray-50 dark:bg-gray-900">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4 font-serif dark:text-white">AI-Powered Astrology Features</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">Advanced astrological insights generated by our proprietary AI algorithms.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-white dark:bg-gray-800 rounded-xl shadow-lg overflow-hidden transition duration-300 hover:shadow-xl">
<div class="gradient-bg p-6 text-white">
<i class="fas fa-robot text-4xl mb-4"></i>
<h3 class="text-xl font-bold mb-2">AI Interpretation</h3>
</div>
<div class="p-6">
<p class="text-gray-600 dark:text-gray-300 mb-4">Our AI analyzes your birth chart using advanced algorithms trained on thousands of astrological texts to provide personalized insights.</p>
<ul class="space-y-2 text-gray-700 dark:text-gray-300">
<li class="flex items-start">
<i class="fas fa-check text-purple-500 mt-1 mr-2"></i>
<span>Personalized predictions</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-purple-500 mt-1 mr-2"></i>
<span>Multiple interpretation styles</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-purple-500 mt-1 mr-2"></i>
<span>Continuous learning model</span>
</li>
</ul>
</div>
</div>
<!-- Feature 2 -->
<div class="bg-white dark:bg-gray-800 rounded-xl shadow-lg overflow-hidden transition duration-300 hover:shadow-xl">
<div class="gradient-bg p-6 text-white">
<i class="fas fa-globe text-4xl mb-4"></i>
<h3 class="text-xl font-bold mb-2">Multilingual Reports</h3>
</div>
<div class="p-6">
<p class="text-gray-600 dark:text-gray-300 mb-4">Receive your astrology reports in multiple languages with culturally relevant interpretations.</p>
<div class="grid grid-cols-2 gap-3">
<span class="bg-purple-100 dark:bg-gray-700 text-purple-800 dark:text-purple-300 px-3 py-1 rounded-full text-sm flex items-center">
<i class="fas fa-language mr-2"></i> English
</span>
<span class="bg-purple-100 dark:bg-gray-700 text-purple-800 dark:text-purple-300 px-3 py-1 rounded-full text-sm flex items-center">
<i class="fas fa-language mr-2"></i> हिन्दी
</span>
<span class="bg-purple-100 dark:bg-gray-700 text-purple-800 dark:text-purple-300 px-3 py-1 rounded-full text-sm flex items-center">
<i class="fas fa-language mr-2"></i> मरााठी
</span>
<span class="bg-purple-100 dark:bg-gray-700 text-purple-800 dark:text-purple-300 px-3 py-1 rounded-full text-sm flex items-center">
<i class="fas fa-language mr-2"></i> தமிழ்
</span>
<span class="bg-purple-100 dark:bg-gray-700 text-purple-800 dark:text-purple-300 px-3 py-1 rounded-full text-sm flex items-center">
<i class="fas fa-language mr-2"></i> తెలుగు
</span>
<span class="bg-purple-100 dark:bg-gray-700 text-purple-800 dark:text-purple-300 px-3 py-1 rounded-full text-sm flex items-center">
<i class="fas fa-language mr-2"></i> বাংলা
</span>
</div>
</div>
</div>
<!-- Feature 3 -->
<div class="bg-white dark:bg-gray-800 rounded-xl shadow-lg overflow-hidden transition duration-300 hover:shadow-xl">
<div class="gradient-bg p-6 text-white">
<i class="fas fa-file-pdf text-4xl mb-4"></i>
<h3 class="text-xl font-bold mb-2">Printable Charts</h3>
</div>
<div class="p-6">
<p class="text-gray-600 dark:text-gray-300 mb-4">Generate beautiful, high-resolution astrology charts in various styles ready for printing or sharing.</p>
<div class="grid grid-cols-3 gap-2">
<div class="chart-container">
<div class="chart-card bg-white dark:bg-gray-700 p-2 rounded-lg shadow-md border border-gray-200 dark:border-gray-600">
<img src="https://via.placeholder.com/150/6d28d9/ffffff?text=Vedic" alt="Vedic Chart" class="w-full h-auto rounded">
<p class="text-center text-sm mt-1 dark:text-white">Vedic</p>
</div>
</div>
<div class="chart-container">
<div class="chart-card bg-white dark:bg-gray-700 p-2 rounded-lg shadow-md border border-gray-200 dark:border-gray-600">
<img src="https://via.placeholder.com/150/8b5cf6/ffffff?text=Western" alt="Western Chart" class="w-full h-auto rounded">
<p class="text-center text-sm mt-1 dark:text-white">Western</p>
</div>
</div>
<div class="chart-container">
<div class="chart-card bg-white dark:bg-gray-700 p-2 rounded-lg shadow-md border border-gray-200 dark:border-gray-600">
<img src="https://via.placeholder.com/150/7c3aed/ffffff?text=Draconic" alt="Draconic Chart" class="w-full h-auto rounded">
<p class="text-center text-sm mt-1 dark:text-white">Draconic</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Sample Chart Section -->
<section class="py-16 bg-white dark:bg-gray-900">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4 font-serif dark:text-white">Sample Astrology Charts</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">Explore different chart styles generated by our system.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Vedic Chart -->
<div class="bg-white dark:bg-gray-800 rounded-xl shadow-lg overflow-hidden border border-gray-200 dark:border-gray-700 transition duration-300 hover:shadow-xl">
<div class="gradient-bg p-4 text-white">
<h3 class="text-lg font-bold">Vedic Birth Chart</h3>
</div>
<div class="p-4">
<img src="https://via.placeholder.com/400x400/6d28d9/ffffff?text=Vedic+Chart" alt="Vedic Chart" class="w-full h-auto rounded-lg mb-4">
<p class="text-gray-600 dark:text-gray-300 mb-4">Traditional Indian astrology chart showing planetary positions in sidereal zodiac with houses and nakshatras.</p>
<button class="w-full gradient-bg hover:opacity-90 text-white font-bold py-2 px-4 rounded-lg transition duration-300 flex items-center justify-center">
<i class="fas fa-eye mr-2"></i> View Sample
</button>
</div>
</div>
<!-- Western Chart -->
<div class="bg-white dark:bg-gray-800 rounded-xl shadow-lg overflow-hidden border border-gray-200 dark:border-gray-700 transition duration-300 hover:shadow-xl">
<div class="gradient-bg p-4 text-white">
<h3 class="text-lg font-bold">Western Natal Chart</h3>
</div>
<div class="p-4">
<img src="https://via.placeholder.com/400x400/8b5cf6/ffffff?text=Western+Chart" alt="Western Chart" class="w-full h-auto rounded-lg mb-4">
<p class="text-gray-600 dark:text-gray-300 mb-4">Modern Western astrology wheel showing planets in tropical zodiac with aspects and house divisions.</p>
<button class="w-full gradient-bg hover:opacity-90 text-white font-bold py-2 px-4 rounded-lg transition duration-300 flex items-center justify-center">
<i class="fas fa-eye mr-2"></i> View Sample
</button>
</div>
</div>
<!-- Composite Chart -->
<div class="bg-white dark:bg-gray-800 rounded-xl shadow-lg overflow-hidden border border-gray-200 dark:border-gray-700 transition duration-300 hover:shadow-xl">
<div class="gradient-bg p-4 text-white">
<h3 class="text-lg font-bold">Composite Relationship</h3>
</div>
<div class="p-4">
<img src="https://via.placeholder.com/400x400/7c3aed/ffffff?text=Composite+Chart" alt="Composite Chart" class="w-full h-auto rounded-lg mb-4">
<p class="text-gray-600 dark:text-gray-300 mb-4">Chart showing the combined energy of two individuals in a relationship with midpoint calculations.</p>
<button class="w-full gradient-bg hover:opacity-90 text-white font-bold py-2 px-4 rounded-lg transition duration-300 flex items-center justify-center">
<i class="fas fa-eye mr-2"></i> View Sample
</button>
</div>
</div>
</div>
<div class="mt-12 text-center">
<button class="border-2 border-purple-600 text-purple-600 hover:bg-purple-600 hover:text-white font-bold py-3 px-8 rounded-lg transition duration-300 dark:border-purple-400 dark:text-purple-400 dark:hover:bg-purple-400 dark:hover:text-white">
View All Chart Types
</button>
</div>
</div>
</section>
<!-- ERP Dashboard Preview -->
<section id="dashboard" class="py-16 bg-gray-50 dark:bg-gray-900">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4 font-serif dark:text-white">Admin Dashboard</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">Comprehensive ERP system to manage users, reports, and payments.</p>
</div>
<div class="bg-white dark:bg-gray-800 rounded-xl shadow-lg overflow-hidden">
<!-- Dashboard Tabs -->
<div class="border-b border-gray-200 dark:border-gray-700">
<nav class="flex -mb-px">
<button class="dashboard-tab active py-4 px-6 text-center border-b-2 font-medium text-sm border-purple-500 text-purple-600 dark:text-purple-400">
<i class="fas fa-users mr-2"></i> Users
</button>
<button class="dashboard-tab py-4 px-6 text-center border-b-2 font-medium text-sm border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 dark:text-gray-400 dark:hover:text-gray-300">
<i class="fas fa-file-alt mr-2"></i> Reports
</button>
<button class="dashboard-tab py-4 px-6 text-center border-b-2 font-medium text-sm border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 dark:text-gray-400 dark:hover:text-gray-300">
<i class="fas fa-rupee-sign mr-2"></i> Payments
</button>
<button class="dashboard-tab py-4 px-6 text-center border-b-2 font-medium text-sm border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 dark:text-gray-400 dark:hover:text-gray-300">
<i class="fas fa-chart-line mr-2"></i> Analytics
</button>
</nav>
</div>
<!-- Dashboard Content -->
<div class="p-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-8">
<!-- Stats Card 1 -->
<div class="dashboard-card bg-white dark:bg-gray-700 rounded-lg shadow p-6 border border-gray-200 dark:border-gray-600">
<div class="flex items-center">
<div class="p-3 rounded-full bg-purple-100 dark:bg-purple-900/50 text-purple-600 dark:text-purple-300 mr-4">
<i class="fas fa-user-plus text-xl"></i>
</div>
<div>
<p class="text-sm text-gray-500 dark:text-gray-400">New Users</p>
<p class="text-2xl font-bold dark:text-white">142</p>
<p class="text-xs text-green-500">+12% from last week</p>
</div>
</div>
</div>
<!-- Stats Card 2 -->
<div class="dashboard-card bg-white dark:bg-gray-700 rounded-lg shadow p-6 border border-gray-200 dark:border-gray-600">
<div class="flex items-center">
<div class="p-3 rounded-full bg-blue-100 dark:bg-blue-900/50 text-blue-600 dark:text-blue-300 mr-4">
<i class="fas fa-file-alt text-xl"></i>
</div>
<div>
<p class="text-sm text-gray-500 dark:text-gray-400">Reports Generated</p>
<p class="text-2xl font-bold dark:text-white">1,248</p>
<p class="text-xs text-green-500">+23% from last week</p>
</div>
</div>
</div>
<!-- Stats Card 3 -->
<div class="dashboard-card bg-white dark:bg-gray-700 rounded-lg shadow p-6 border border-gray-200 dark:border-gray-600">
<div class="flex items-center">
<div class="p-3 rounded-full bg-green-100 dark:bg-green-900/50 text-green-600 dark:text-green-300 mr-4">
<i class="fas fa-rupee-sign text-xl"></i>
</div>
<div>
<p class="text-sm text-gray-500 dark:text-gray-400">Revenue</p>
<p class="text-2xl font-bold dark:text-white">₹84,760</p>
<p class="text-xs text-green-500">+18% from last week</p>
</div>
</div>
</div>
<!-- Stats Card 4 -->
<div class="dashboard-card bg-white dark:bg-gray-700 rounded-lg shadow p-6 border border-gray-200 dark:border-gray-600">
<div class="flex items-center">
<div class="p-3 rounded-full bg-yellow-100 dark:bg-yellow-900/50 text-yellow-600 dark:text-yellow-300 mr-4">
<i class="fas fa-globe text-xl"></i>
</div>
<div>
<p class="text-sm text-gray-500 dark:text-gray-400">Languages Used</p>
<p class="text-2xl font-bold dark:text-white">6</p>
<p class="text-xs text-gray-500 dark:text-gray-400">Most popular: Hindi</p>
</div>
</div>
</div>
</div>
<!-- Recent Users Table -->
<div class="mb-8">
<h3 class="text-lg font-semibold mb-4 dark:text-white">Recent Users</h3>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
<thead class="bg-gray-50 dark:bg-gray-700">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">Name</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">Email</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">Reports</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">Language</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">Status</th>
</tr>
</thead>
<tbody class="bg-white dark:bg-gray-800 divide-y divide-gray-200 dark:divide-gray-700">
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900 dark:text-white">Rahul Sharma</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">[email protected]</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">3</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">Hindi</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200">Active</span>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900 dark:text-white">Priya Patel</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">[email protected]</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">5</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">English</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200">Active</span>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900 dark:text-white">Amit Kumar</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">[email protected]</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">1</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">Marathi</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-100 text-yellow-800 dark:bg-yellow-900 dark:text-yellow-200">Trial</span>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900 dark:text-white">Neha Gupta</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">[email protected]</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">7</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">Tamil</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200">Active</span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Chart -->
<div>
<h3 class="text-lg font-semibold mb-4 dark:text-white">User Growth</h3>
<div class="bg-white dark:bg-gray-700 p-4 rounded-lg shadow border border-gray-200 dark:border-gray-600">
<img src="https://via.placeholder.com/1000x400/f3f4f6/6b7280?text=User+Growth+Chart" alt="User Growth Chart" class="w-full h-auto">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Daily Horoscope Section -->
<section id="horoscope" class="py-16 bg-white dark:bg-gray-900">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4 font-serif dark:text-white">Daily Rashibhavishya</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">Your daily astrological forecast based on moon signs.</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Aries -->
<div class="bg-gradient-to-br from-red-50 to-orange-50 dark:from-gray-800 dark:to-gray-700 rounded-xl shadow-lg overflow-hidden border border-red-100 dark:border-gray-700">
<div class="bg-red-500 dark:bg-red-700 p-4 text-white">
<div class="flex items-center justify-between">
<h3 class="text-lg font-bold">Aries (मेष)</h3>
<span class="text-2xl">♈</span>
</div>
<p class="text-sm opacity-90">March 21 - April 19</p>
</div>
<div class="p-4">
<p class="text-gray-700 dark:text-gray-300 mb-4">Today brings opportunities for leadership. Your energy is high, making it a good day to initiate projects. Be mindful of impulsive decisions in financial matters.</p>
<div class="flex justify-between text-sm">
<span class="text-red-600 dark:text-red-400"><i class="fas fa-heart mr-1"></i> Love: 4/5</span>
<span class="text-yellow-600 dark:text-yellow-400"><i class="fas fa-briefcase mr-1"></i> Career: 5/5</span>
<span class="text-green-600 dark:text-green-400"><i class="fas fa-heartbeat mr-1"></i> Health: 3/5</span>
</div>
</div>
</div>
<!-- Taurus -->
<div class="bg-gradient-to-br from-green-50 to-emerald-50 dark:from-gray-800 dark:to-gray-700 rounded-xl shadow-lg overflow-hidden border border-green-100 dark:border-gray-700">
<div class="bg-green-600 dark:bg-green-700 p-4 text-white">
<div class="flex items-center justify-between">
<h3 class="text-lg font-bold">Taurus (वृषभ)</h3>
<span class="text-2xl">♉</span>
</div>
<p class="text-sm opacity-90">April 20 - May 20</p>
</div>
<div class="p-4">
<p class="text-gray-700 dark:text-gray-300 mb-4">Financial matters require attention today. Your practical nature serves you well. Avoid stubbornness in relationships and be open to compromise.</p>
<div class="flex justify-between text-sm">
<span class="text-red-600 dark:text-red-400"><i class="fas fa-heart mr-1"></i> Love: 3/5</span>
<span class="text-yellow-600 dark:text-yellow-400"><i class="fas fa-briefcase mr-1"></i> Career: 4/5</span>
<span class="text-green-600 dark:text-green-400"><i class="fas fa-heartbeat mr-1"></i> Health: 4/5</span>
</div>
</div>
</div>
<!-- Gemini -->
<div class="bg-gradient-to-br from-yellow-50 to-amber-50 dark:from-gray-800 dark:to-gray-700 rounded-xl shadow-lg overflow-hidden border border-yellow-100 dark:border-gray-700">
<div class="bg-yellow-500 dark:bg-yellow-700 p-4 text-white">
<div class="flex items-center justify-between">
<h3 class="text-lg font-bold">Gemini (मििथुन)</h3>
<span class="text-2xl">♊</span>
</div>
<p class="text-sm opacity-90">May 21 - June 20</p>
</div>
<div class="p-4">
<p class="text-gray-700 dark:text-gray-300 mb-4">Communication is your strength today. Express your ideas clearly. A chance meeting could lead to valuable connections. Avoid spreading yourself too thin.</p>
<div class="flex justify-between text-sm">
<span class="text-red-600 dark:text-red-400"><i class="fas fa-heart mr-1"></i> Love: 5/5</span>
<span class="text-yellow-600 dark:text-yellow-400"><i class="fas fa-briefcase mr-1"></i> Career: 3/5</span>
<span class="text-green-600 dark:text-green-400"><i class="fas fa-heartbeat mr-1"></i> Health: 4/5</span>
</div>
</div>
</div>
<!-- Cancer -->
<div class="bg-gradient-to-br from-blue-50 to-cyan-50 dark:from-gray-800 dark:to-gray-700 rounded-xl shadow-lg overflow-hidden border border-blue-100 dark:border-gray-700">
<div class="bg-blue-500 dark:bg-blue-700 p-4 text-white">
<div class="flex items-center justify-between">
<h3 class="text-lg font-bold">Cancer (कर्र्क)</h3>
<span class="text-2xl">♋</span>
</div>
<p class="text-sm opacity-90">June 21 - July 22</p>
</div>
<div class="p-4">
<p class="text-gray-700 dark:text-gray-300 mb-4">Emotional matters take center stage. Family time will be rewarding. Trust your intuition in decision making. Avoid withdrawing when faced with challenges.</p>
<div class="flex justify-between text-sm">
<span class="text-red-600 dark:text-red-400"><i class="fas fa-heart mr-1"></i> Love: 4/5</span>
<span class="text-yellow-600 dark:text-yellow-400"><i class="fas fa-briefcase mr-1"></i> Career: 3/5</span>
<span class="text-green-600 dark:text-green-400"><i class="fas fa-heartbeat mr-1"></i> Health: 3/5</span>
</div>
</div>
</div>
</div>
<div class="mt-6 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Leo -->
<div class="bg-gradient-to-br from-orange-50 to-amber-50 dark:from-gray-800 dark:to-gray-700 rounded-xl shadow-lg overflow-hidden border border-orange-100 dark:border-gray-700">
<div class="bg-orange-500 dark:bg-orange-700 p-4 text-white">
<div class="flex items-center justify-between">
<h3 class="text-lg font-bold">Leo (सिंह)</h3>
<span class="text-2xl">♌</span>
</div>
<p class="text-sm opacity-90">July 23 - August 22</p>
</div>
<div class="p-4">
<p class="text-gray-700 dark:text-gray-300 mb-4">Your creative energy is high today. Take center stage in your endeavors. Generosity will be rewarded. Avoid pride getting in the way of valuable advice.</p>
<div class="flex justify-between text-sm">
<span class="text-red-600 dark:text-red-400"><i class="fas fa-heart mr-1"></i> Love: 4/5</span>
<span class="text-yellow-600 dark:text-yellow-400"><i class="fas fa-briefcase mr-1"></i> Career: 5/5</span>
<span class="text-green-600 dark:text-green-400"><i class="fas fa-heartbeat mr-1"></i> Health: 4/5</span>
</div>
</div>
</div>
<!-- Virgo -->
<div class="bg-gradient-to-br from-emerald-50 to-teal-50 dark:from-gray-800 dark:to-gray-700 rounded-xl shadow-lg overflow-hidden border border-emerald-100 dark:border-gray-700">
<div class="bg-emerald-600 dark:bg-emerald-700 p-4 text-white">
<div class="flex items-center justify-between">
<h3 class="text-lg font-bold">Virgo (कन्या)</h3>
<span class="text-2xl">♍</span>
</div>
<p class="text-sm opacity-90">August 23 - September 22</p>
</div>
<div class="p-4">
<p class="text-gray-700 dark:text-gray-300 mb-4">Attention to detail serves you well today. Health routines should be prioritized. Your analytical skills are sharp. Avoid being overly critical of others.</p>
<div class="flex justify-between text-sm">
<span class="text-red-600 dark:text-red-400"><i class="fas fa-heart mr-1"></i> Love: 3/5</span>
<span class="text-yellow-600 dark:text-yellow-400"><i class="fas fa-briefcase mr-1"></i> Career: 4/5</span>
<span class="text-green-600 dark:text-green-400"><i class="fas fa-heartbeat mr-1"></i> Health: 5/5</span>
</div>
</div>
</div>
<!-- Libra -->
<div class="bg-gradient-to-br from-pink-50 to-rose-50 dark:from-gray-800 dark:to-gray-700 rounded-xl shadow-lg overflow-hidden border border-pink-100 dark:border-gray-700">
<div class="bg-pink-500 dark:bg-pink-700 p-4 text-white">
<div class="flex items-center justify-between">
<h3 class="text-lg font-bold">Libra (तुला)</h3>
<span class="text-2xl">♎</span>
</div>
<p class="text-sm opacity-90">September 23 - October 22</p>
</div>
<div class="p-4">
<p class="text-gray-700 dark:text-gray-300 mb-4">Relationships require balance today. Your diplomatic skills are valuable. Artistic pursuits are favored. Avoid indecision by trusting your instincts.</p>
<div class="flex justify-between text-sm">
<span class="text-red-600 dark:text-red-400"><i class="fas fa-heart mr-1"></i> Love: 5/5</span>
<span class="text-yellow-600 dark:text-yellow-400"><i class="fas fa-briefcase mr-1"></i> Career: 3/5</span>
<span class="text-green-600 dark:text-green-400"><i class="fas fa-heartbeat mr-1"></i> Health: 3/5</span>
</div>
</div>
</div>
<!-- Scorpio -->
<div class="bg-gradient-to-br from-purple-50 to-violet-50 dark:from-gray-800 dark:to-gray-700 rounded-xl shadow-lg overflow-hidden border border-purple-100 dark:border-gray-700">
<div class="bg-purple-600 dark:bg-purple-700 p-4 text-white">
<div class="flex items-center justify-between">
<h3 class="text-lg font-bold">Scorpio (वृश्चिक)</h3>
<span class="text-2xl">♏</span>
</div>
<p class="text-sm opacity-90">October 23 - November 21</p>
</div>
<div class="p-4">
<p class="text-gray-700 dark:text-gray-300 mb-4">Transformation is possible today. Your intensity can be channeled productively. Financial insights may come. Avoid being overly secretive with loved ones.</p>
<div class="flex justify-between text-sm">
<span class="text-red-600 dark:text-red-400"><i class="fas fa-heart mr-1"></i> Love: 4/5</span>
<span class="text-yellow-600 dark:text-yellow-400"><i class="fas fa-briefcase mr-1"></i> Career: 4/5</span>
<span class="text-green-600 dark:text-green-400"><i class="fas fa-heartbeat mr-1"></i> Health: 4/5</span>
</div>
</div>
</div>
</div>
<div class="mt-6 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Sagittarius -->
<div class="bg-gradient-to-br from-amber-50 to-yellow-50 dark:from-gray-800 dark:to-gray-700 rounded-xl shadow-lg overflow-hidden border border-amber-100 dark:border-gray-700">
<div class="bg-amber-500 dark:bg-amber-700 p-4 text-white">
<div class="flex items-center justify-between">
<h3 class="text-lg font-bold">Sagittarius (धनु)</h3>
<span class="text-2xl">♐</span>
</div>
<p class="text-sm opacity-90">November 22 - December 21</p>
</div>
<div class="p-4">
<p class="text-gray-700 dark:text-gray-300 mb-4">Adventure calls today. Be open to new experiences and learning opportunities. Your optimism is contagious. Avoid overpromising and underdelivering.</p>
<div class="flex justify-between text-sm">
<span class="text-red-600 dark:text-red-400"><i class="fas fa-heart mr-1"></i> Love: 3/5</span>
<span class="text-yellow-600 dark:text-yellow-400"><i class="fas fa-briefcase mr-1"></i> Career: 4/5</span>
<span class="text-green-600 dark:text-green-400"><i class="fas fa-heartbeat mr-1"></i> Health: 5/5</span>
</div>
</div>
</div>
<!-- Capricorn -->
<div class="bg-gradient-to-br from-gray-50 to-slate-50 dark:from-gray-800 dark:to-gray-700 rounded-xl shadow-lg overflow-hidden border border-gray-200 dark:border-gray-700">
<div class="bg-gray-600 dark:bg-gray-700 p-4 text-white">
<div class="flex items-center justify-between">
<h3 class="text-lg font-bold">Capricorn (मकर)</h3>
<span class="text-2xl">♑</span>
</div>
<p class="text-sm opacity-90">December 22 - January 19</p>
</div>
<div class="p-4">
<p class="text-gray-700 dark:text-gray-300 mb-4">Career opportunities arise today. Your discipline will be rewarded. Long-term planning is favored. Avoid being overly rigid in your approach.</p>
<div class="flex justify-between text-sm">
<span class="text-red-600 dark:text-red-400"><i class="fas fa-heart mr-1"></i> Love: 3/5</span>
<span class="text-yellow-600 dark:text-yellow-400"><i class="fas fa-briefcase mr-1"></i> Career: 5/5</span>
<span class="text-green-600 dark:text-green-400"><i class="fas fa-heartbeat mr-1"></i> Health: 4/5</span>
</div>
</div>
</div>
<!-- Aquarius -->
<div class="bg-gradient-to-br from-cyan-50 to-sky-50 dark:from-gray-800 dark:to-gray-700 rounded-xl shadow-lg overflow-hidden border border-cyan-100 dark:border-gray-700">
<div class="bg-cyan-500 dark:bg-cyan-700 p-4 text-white">
<div class="flex items-center justify-between">
<h3 class="text-lg font-bold">Aquarius (कुंभ)</h3>
<span class="text-2xl">♒</span>
</div>
<p class="text-sm opacity-90">January 20 - February 18</p>
</div>
<div class="p-4">
<p class="text-gray-700 dark:text-gray-300 mb-4">Innovation is favored today. Your unique perspective is valuable. Social connections may bring unexpected benefits. Avoid being overly detached emotionally.</p>
<div class="flex justify-between text-sm">
<span class="text-red-600 dark:text-red-400"><i class="fas fa-heart mr-1"></i> Love: 4/5</span>
<span class="text-yellow-600 dark:text-yellow-400"><i class="fas fa-briefcase mr-1"></i> Career: 4/5</span>
<span class="text-green-600 dark:text-green-400"><i class="fas fa-heartbeat mr-1"></i> Health: 3/5</span>
</div>
</div>
</div>
<!-- Pisces -->
<div class="bg-gradient-to-br from-indigo-50 to-blue-50 dark:from-gray-800 dark:to-gray-700 rounded-xl shadow-lg overflow-hidden border border-indigo-100 dark:border-gray-700">
<div class="bg-indigo-500 dark:bg-indigo-700 p-4 text-white">
<div class="flex items-center justify-between">
<h3 class="text-lg font-bold">Pisces (मीन)</h3>
<span class="text-2xl">♓</span>
</div>
<p class="text-sm opacity-90">February 19 - March 20</p>
</div>
<div class="p-4">
<p class="text-gray-700 dark:text-gray-300 mb-4">Intuition is strong today. Trust your inner guidance. Creative and spiritual pursuits are favored. Avoid escapism when faced with practical matters.</p>
<div class="flex justify-between text-sm">
<span class="text-red-600 dark:text-red-400"><i class="fas fa-heart mr-1"></i> Love: 5/5</span>
<span class="text-yellow-600 dark:text-yellow-400"><i class="fas fa-briefcase mr-1"></i> Career: 3/5</span>
<span class="text-green-600 dark:text-green-400"><i class="fas fa-heartbeat mr-1"></i> Health: 3/5</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section class="py-16 bg-gray-50 dark:bg-gray-900">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4 font-serif dark:text-white">Pricing Plans</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">Choose the plan that works best for your astrological needs.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Free Plan -->
<div class="bg-white dark:bg-gray-800 rounded-xl shadow-lg overflow-hidden border border-gray-200 dark:border-gray-700 transition duration-300 hover:shadow-xl">
<div class="p-6 border-b border-gray-200 dark:border-gray-700">
<h3 class="text-2xl font-bold text-center dark:text-white">Free</h3>
<div class="mt-4 text-center">
<span class="text-4xl font-bold dark:text-white">₹0</span>
<span class="text-gray-600 dark:text-gray-300">/forever</span>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">3 free questions</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">Basic birth chart</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">Daily horoscope</span>
</li>
<li class="flex items-start text-gray-400">
<i class="fas fa-times mt-1 mr-2"></i>
<span>Detailed interpretations</span>
</li>
<li class="flex items-start text-gray-400">
<i class="fas fa-times mt-1 mr-2"></i>
<span>Relationship analysis</span>
</li>
<li class="flex items-start text-gray-400">
<i class="fas fa-times mt-1 mr-2"></i>
<span>Yearly predictions</span>
</li>
</ul>
<button class="w-full mt-8 bg-gray-200 hover:bg-gray-300 text-gray-800 font-bold py-3 px-4 rounded-lg transition duration-300 dark:bg-gray-700 dark:hover:bg-gray-600 dark:text-white">
Current Plan
</button>
</div>
</div>
<!-- Premium Plan -->
<div class="bg-white dark:bg-gray-800 rounded-xl shadow-xl overflow-hidden border-2 border-purple-500 transform scale-105 z-10 transition duration-300 hover:shadow-2xl">
<div class="gradient-bg p-6 text-white">
<div class="flex justify-between items-center">
<h3 class="text-2xl font-bold">Premium</h3>
<span class="bg-white text-purple-600 text-xs font-bold px-2 py-1 rounded-full">POPULAR</span>
</div>
<div class="mt-4 text-center">
<span class="text-4xl font-bold">₹499</span>
<span class="opacity-90">/month</span>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">Unlimited questions</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">Detailed birth chart</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">Daily horoscope</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">AI interpretations</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">Relationship analysis</span>
</li>
<li class="flex items-start text-gray-400">
<i class="fas fa-times mt-1 mr-2"></i>
<span>Yearly predictions</span>
</li>
</ul>
<button class="w-full mt-8 gradient-bg hover:opacity-90 text-white font-bold py-3 px-4 rounded-lg transition duration-300">
Upgrade Now
</button>
</div>
</div>
<!-- Professional Plan -->
<div class="bg-white dark:bg-gray-800 rounded-xl shadow-lg overflow-hidden border border-gray-200 dark:border-gray-700 transition duration-300 hover:shadow-xl">
<div class="p-6 border-b border-gray-200 dark:border-gray-700">
<h3 class="text-2xl font-bold text-center dark:text-white">Professional</h3>
<div class="mt-4 text-center">
<span class="text-4xl font-bold dark:text-white">₹2,999</span>
<span class="text-gray-600 dark:text-gray-300">/year</span>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">Unlimited questions</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">All chart types</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">Advanced AI analysis</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">Relationship compatibility</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">Yearly predictions</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700 dark:text-gray-300">Priority support</span>
</li>
</ul>
<button class="w-full mt-8 bg-gray-200 hover:bg-gray-300 text-gray-800 font-bold py-3 px-4 rounded-lg transition duration-300 dark:bg-gray-700 dark:hover:bg-gray-600 dark:text-white">
Choose Plan
</button>
</div>
</div>
</div>
<div class="mt-12 text-center">
<p class="text-gray-600 dark:text-gray-300">Need a custom plan for business or bulk reports? <a href="#" class="text-purple-600 hover:text-purple-800 dark:text-purple-400 dark:hover:text-purple-300 font-medium">Contact us</a></p>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-white dark:bg-gray-900">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4 font-serif dark:text-white">What Our Users Say</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">Trusted by thousands of astrology enthusiasts worldwide.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 dark:bg-gray-800 p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://via.placeholder.com/50/6d28d9/ffffff?text=RS" alt="Rahul Sharma" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold dark:text-white">Rahul Sharma</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-700 dark:text-gray-300 italic">"The AI interpretations are incredibly accurate. I was skeptical at first, but the insights about my career path were spot on. The Hindi reports are perfect for my family members who don't understand English well."</p>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 dark:bg-gray-800 p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://via.placeholder.com/50/8b5cf6/ffffff?text=PM" alt="Priya Mehta" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold dark:text-white">Priya Mehta</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
<p class="text-gray-700 dark:text-gray-300 italic">"As a professional astrologer, I use this platform to generate charts quickly for my clients. The multiple chart styles and languages save me hours of work. The AI suggestions often give me new perspectives to consider."</p>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 dark:bg-gray-800 p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://via.placeholder.com/50/7c3aed/ffffff?text=AK" alt="Amit Kumar" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold dark:text-white">Amit Kumar</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-700 dark:text-gray-300 italic">"The relationship compatibility report helped me understand my marriage dynamics better. The Marathi language option was perfect for my wife who prefers reading in her native
<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=tushkum/cosmic-insight-website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |