File size: 46,349 Bytes
056de07 |
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 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NeuraLink - AI Solutions</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--text: #1e293b;
--text-light: #64748b;
--background: #f8fafc;
--card: #ffffff;
--border: #e2e8f0;
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
/* Dark mode variables */
.dark-mode {
--primary: #818cf8;
--primary-dark: #6366f1;
--text: #f8fafc;
--text-light: #94a3b8;
--background: #0f172a;
--card: #1e293b;
--border: #334155;
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
transition: background-color 0.3s, color 0.3s;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text);
background-color: var(--background);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header styles */
header {
padding: 20px 0;
position: sticky;
top: 0;
background-color: var(--background);
z-index: 100;
box-shadow: var(--shadow);
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 24px;
font-weight: 700;
color: var(--primary);
}
.logo-icon {
font-size: 28px;
}
nav ul {
display: flex;
list-style: none;
gap: 30px;
}
nav a {
text-decoration: none;
color: var(--text);
font-weight: 500;
position: relative;
padding: 5px 0;
}
nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: var(--primary);
transition: width 0.3s;
}
nav a:hover::after {
width: 100%;
}
.nav-actions {
display: flex;
align-items: center;
gap: 20px;
}
.theme-toggle {
background: none;
border: none;
color: var(--text);
font-size: 20px;
cursor: pointer;
}
.btn {
padding: 10px 20px;
border-radius: 6px;
font-weight: 500;
cursor: pointer;
border: none;
transition: all 0.3s;
}
.btn-primary {
background-color: var(--primary);
color: white;
}
.btn-primary:hover {
background-color: var(--primary-dark);
transform: translateY(-2px);
}
.btn-outline {
background-color: transparent;
border: 1px solid var(--primary);
color: var(--primary);
}
.btn-outline:hover {
background-color: var(--primary);
color: white;
transform: translateY(-2px);
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
font-size: 24px;
color: var(--text);
cursor: pointer;
}
/* Hero section */
.hero {
padding: 100px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
line-height: 1.2;
background: linear-gradient(45deg, var(--primary), #10b981);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p {
font-size: 1.2rem;
color: var(--text-light);
max-width: 700px;
margin: 0 auto 40px;
}
.hero-buttons {
display: flex;
gap: 20px;
justify-content: center;
margin-bottom: 40px;
}
.hero-image {
max-width: 800px;
margin: 0 auto;
position: relative;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
border: 1px solid var(--border);
}
.hero-image img {
width: 100%;
display: block;
}
.floating-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}
.shape {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg, var(--primary), rgba(99, 102, 241, 0.1));
filter: blur(40px);
opacity: 0.7;
animation: float 15s infinite linear;
}
.shape:nth-child(1) {
width: 300px;
height: 300px;
top: -150px;
left: -150px;
animation-delay: 0s;
}
.shape:nth-child(2) {
width: 400px;
height: 400px;
bottom: -200px;
right: -200px;
animation-delay: 3s;
animation-direction: reverse;
}
.shape:nth-child(3) {
width: 200px;
height: 200px;
top: 50%;
left: 20%;
animation-delay: 6s;
}
@keyframes float {
0%,
100% {
transform: translate(0, 0);
}
25% {
transform: translate(50px, 50px);
}
50% {
transform: translate(0, 100px);
}
75% {
transform: translate(-50px, 50px);
}
}
/* Features section */
.section {
padding: 100px 0;
}
.section-title {
text-align: center;
margin-bottom: 60px;
}
.section-title h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}
.section-title p {
color: var(--text-light);
max-width: 700px;
margin: 0 auto;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.feature-card {
background-color: var(--card);
border-radius: 12px;
padding: 30px;
box-shadow: var(--shadow);
transition: transform 0.3s;
border: 1px solid var(--border);
}
.feature-card:hover {
transform: translateY(-10px);
}
.feature-icon {
width: 60px;
height: 60px;
background-color: rgba(99, 102, 241, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
color: var(--primary);
font-size: 24px;
}
.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
}
.feature-card p {
color: var(--text-light);
}
/* How it works section */
.steps {
display: flex;
flex-direction: column;
gap: 40px;
max-width: 800px;
margin: 0 auto;
position: relative;
}
.step {
display: flex;
gap: 30px;
position: relative;
z-index: 1;
}
.step-number {
width: 60px;
height: 60px;
background-color: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: bold;
flex-shrink: 0;
}
.step-content {
background-color: var(--card);
padding: 25px;
border-radius: 12px;
box-shadow: var(--shadow);
flex-grow: 1;
border: 1px solid var(--border);
}
.step-content h3 {
margin-bottom: 10px;
}
.step-content p {
color: var(--text-light);
}
.steps::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 30px;
width: 2px;
background-color: var(--primary);
opacity: 0.2;
z-index: 0;
}
/* Pricing section */
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}
.pricing-card {
background-color: var(--card);
border-radius: 12px;
padding: 40px 30px;
box-shadow: var(--shadow);
text-align: center;
border: 1px solid var(--border);
position: relative;
overflow: hidden;
}
.pricing-card.popular::before {
content: 'Most Popular';
position: absolute;
top: 15px;
right: -45px;
background-color: var(--primary);
color: white;
padding: 5px 50px;
transform: rotate(45deg);
font-size: 12px;
font-weight: bold;
}
.pricing-card h3 {
font-size: 1.5rem;
margin-bottom: 20px;
}
.price {
font-size: 3rem;
font-weight: bold;
margin-bottom: 20px;
color: var(--primary);
}
.price span {
font-size: 1rem;
color: var(--text-light);
font-weight: normal;
}
.pricing-features {
list-style: none;
margin-bottom: 30px;
}
.pricing-features li {
padding: 10px 0;
color: var(--text-light);
position: relative;
}
.pricing-features li::before {
content: '\f00c';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
margin-right: 10px;
color: var(--primary);
}
/* Testimonials */
.testimonials-slider {
max-width: 800px;
margin: 0 auto;
position: relative;
}
.testimonials {
display: flex;
overflow: hidden;
}
.testimonial {
min-width: 100%;
padding: 0 20px;
transition: transform 0.5s;
text-align: center;
}
.testimonial-content {
background-color: var(--card);
padding: 40px;
border-radius: 12px;
box-shadow: var(--shadow);
margin-bottom: 30px;
border: 1px solid var(--border);
position: relative;
}
.testimonial-content::before {
content: '\f10d';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
top: 20px;
left: 20px;
color: var(--primary);
opacity: 0.2;
font-size: 50px;
}
.testimonial p {
font-size: 1.1rem;
margin-bottom: 20px;
}
.testimonial-author {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}
.author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
overflow: hidden;
}
.author-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.author-info h4 {
font-weight: 600;
margin-bottom: 5px;
}
.author-info p {
color: var(--text-light);
font-size: 0.9rem;
margin: 0;
}
.slider-controls {
display: flex;
justify-content: center;
gap: 15px;
}
.slider-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: var(--text-light);
cursor: pointer;
opacity: 0.5;
transition: all 0.3s;
}
.slider-dot.active {
background-color: var(--primary);
opacity: 1;
}
/* FAQ section */
.faq-container {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
background-color: var(--card);
border-radius: 8px;
margin-bottom: 15px;
box-shadow: var(--shadow);
border: 1px solid var(--border);
}
.faq-header {
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}
.faq-question {
font-weight: 500;
font-size: 1.1rem;
}
.faq-toggle {
width: 30px;
height: 30px;
border-radius: 50%;
background-color: rgba(99, 102, 241, 0.1);
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
transition: transform 0.3s;
}
.faq-item.active .faq-toggle {
transform: rotate(45deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
padding: 0 20px;
}
.faq-item.active .faq-answer {
max-height: 300px;
padding: 0 20px 20px;
}
/* CTA section */
.cta {
background: linear-gradient(135deg, var(--primary), #8b5cf6);
color: white;
padding: 80px 0;
text-align: center;
border-radius: 12px;
margin: 100px auto;
max-width: 1200px;
position: relative;
overflow: hidden;
box-shadow: var(--shadow);
}
.cta::before {
content: '';
position: absolute;
top: -50px;
right: -50px;
width: 200px;
height: 200px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
}
.cta::after {
content: '';
position: absolute;
bottom: -80px;
left: -80px;
width: 300px;
height: 300px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
}
.cta h2 {
font-size: 2.5rem;
margin-bottom: 20px;
position: relative;
z-index: 1;
}
.cta p {
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto 40px;
opacity: 0.9;
position: relative;
z-index: 1;
}
.cta .btn {
position: relative;
z-index: 1;
}
/* Footer */
footer {
background-color: var(--card);
padding: 60px 0 20px;
border-top: 1px solid var(--border);
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
margin-bottom: 60px;
}
.footer-column h3 {
font-size: 1.2rem;
margin-bottom: 20px;
color: var(--primary);
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
text-decoration: none;
color: var(--text-light);
transition: color 0.3s;
}
.footer-links a:hover {
color: var(--primary);
}
.social-links {
display: flex;
gap: 15px;
}
.social-links a {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(99, 102, 241, 0.1);
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
transition: all 0.3s;
}
.social-links a:hover {
background-color: var(--primary);
color: white;
}
.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid var(--border);
color: var(--text-light);
font-size: 0.9rem;
}
/* AI Chatbot */
.chatbot-container {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 999;
}
.chatbot-toggle {
width: 60px;
height: 60px;
background-color: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
transition: transform 0.3s;
}
.chatbot-toggle:hover {
transform: scale(1.1);
}
.chatbot-toggle i {
font-size: 24px;
}
.chatbot-window {
position: absolute;
bottom: 80px;
right: 0;
width: 350px;
height: 500px;
background-color: var(--card);
border-radius: 12px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
border: 1px solid var(--border);
display: none;
flex-direction: column;
}
.chatbot-header {
padding: 15px;
background-color: var(--primary);
color: white;
border-radius: 12px 12px 0 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.chatbot-title {
display: flex;
align-items: center;
gap: 10px;
}
.chatbot-title i {
font-size: 20px;
}
.chatbot-close {
background: none;
border: none;
color: white;
font-size: 20px;
cursor: pointer;
}
.chatbot-messages {
flex-grow: 1;
padding: 15px;
overflow-y: auto;
}
.message {
margin-bottom: 15px;
max-width: 80%;
padding: 10px 15px;
border-radius: 18px;
font-size: 0.9rem;
line-height: 1.4;
}
.bot-message {
background-color: rgba(99, 102, 241, 0.1);
color: var(--text);
border-radius: 18px 18px 18px 0;
margin-right: auto;
}
.user-message {
background-color: var(--primary);
color: white;
border-radius: 18px 18px 0 18px;
margin-left: auto;
}
.chatbot-input {
display: flex;
padding: 10px;
border-top: 1px solid var(--border);
}
.chatbot-input input {
flex-grow: 1;
padding: 10px 15px;
border: 1px solid var(--border);
border-radius: 20px;
outline: none;
background-color: var(--background);
color: var(--text);
}
.chatbot-input button {
background-color: var(--primary);
color: white;
border: none;
width: 40px;
height: 40px;
border-radius: 50%;
margin-left: 10px;
cursor: pointer;
}
.chatbot-active .chatbot-toggle {
transform: scale(1.1);
}
.chatbot-active .chatbot-window {
display: flex;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
.nav-container {
position: relative;
}
nav {
position: fixed;
top: 80px;
left: 0;
width: 100%;
background-color: var(--card);
box-shadow: var(--shadow);
padding: 20px;
transform: translateY(-150%);
transition: transform 0.3s;
z-index: 99;
}
nav.active {
transform: translateY(0);
}
nav ul {
flex-direction: column;
gap: 15px;
}
.mobile-menu-btn {
display: block;
}
.hero h1 {
font-size: 2.5rem;
}
.hero-buttons {
flex-direction: column;
gap: 10px;
}
.section {
padding: 60px 0;
}
.section-title h2 {
font-size: 2rem;
}
.steps::before {
display: none;
}
.step {
flex-direction: column;
gap: 15px;
}
.step-number {
width: 50px;
height: 50px;
}
.cta h2 {
font-size: 2rem;
}
.chatbot-window {
width: 300px;
height: 400px;
bottom: 70px;
right: 10px;
}
}
/* Animations */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate {
animation: fadeIn 0.5s ease-out forwards;
}
.delay-1 {
animation-delay: 0.1s;
}
.delay-2 {
animation-delay: 0.2s;
}
.delay-3 {
animation-delay: 0.3s;
}
.delay-4 {
animation-delay: 0.4s;
}
</style>
</head>
<body>
<header>
<div class="container nav-container">
<a href="#" class="logo">
<i class="fas fa-brain logo-icon"></i>
<span>NeuraLink</span>
</a>
<nav id="main-nav">
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#how-it-works">How It Works</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#faq">FAQ</a></li>
</ul>
</nav>
<div class="nav-actions">
<button class="theme-toggle" id="theme-toggle">
<i class="fas fa-moon"></i>
</button>
<button class="btn btn-outline">Login</button>
<button class="btn btn-primary">Get Started</button>
<button class="mobile-menu-btn" id="mobile-menu-btn">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</header>
<section class="hero">
<div class="floating-shapes">
<div class="shape"></div>
<div class="shape"></div>
<div class="shape"></div>
</div>
<div class="container">
<h1 class="animate">Advanced AI Solutions for Your Business</h1>
<p class="animate delay-1">Unlock the power of artificial intelligence with our cutting-edge technology. Automate
tasks, gain insights, and transform your business.</p>
<div class="hero-buttons animate delay-2">
<button class="btn btn-primary">Start Free Trial</button>
<button class="btn btn-outline">Learn More</button>
</div>
<div class="hero-image animate delay-3">
<img src="https://images.unsplash.com/photo-1677442135133-446b348c245c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="AI Dashboard">
</div>
</div>
</section>
<section class="section" id="features">
<div class="container">
<div class="section-title">
<h2 class="animate">Powerful AI Features</h2>
<p class="animate delay-1">Our platform offers a comprehensive suite of AI tools designed to help you work
smarter, not harder.</p>
</div>
<div class="features-grid">
<div class="feature-card animate">
<div class="feature-icon">
<i class="fas fa-robot"></i>
</div>
<h3>Smart Automation</h3>
<p>Automate repetitive tasks with intelligent workflows that learn and adapt to your business processes.</p>
</div>
<div class="feature-card animate delay-1">
<div class="feature-icon">
<i class="fas fa-chart-line"></i>
</div>
<h3>Predictive Analytics</h3>
<p>Get actionable insights with our advanced predictive models that forecast trends and opportunities.</p>
</div>
<div class="feature-card animate delay-2">
<div class="feature-icon">
<i class="fas fa-comments"></i>
</div>
<h3>Natural Language Processing</h3>
<p>Understand and process human language to extract meaning, sentiment, and intent from text data.</p>
</div>
<div class="feature-card animate delay-3">
<div class="feature-icon">
<i class="fas fa-eye"></i>
</div>
<h3>Computer Vision</h3>
<p>Analyze and interpret visual data to recognize patterns, objects, and faces in images and videos.</p>
</div>
<div class="feature-card animate delay-1">
<div class="feature-icon">
<i class="fas fa-cogs"></i>
</div>
<h3>Custom AI Models</h3>
<p>Build and train custom AI models tailored specifically to your business needs and data.</p>
</div>
<div class="feature-card animate delay-2">
<div class="feature-icon">
<i class="fas fa-lock"></i>
</div>
<h3>Enterprise Security</h3>
<p>Bank-grade security protocols to ensure your data remains private and protected at all times.</p>
</div>
</div>
</div>
</section>
<section class="section" id="how-it-works">
<div class="container">
<div class="section-title">
<h2 class="animate">How It Works</h2>
<p class="animate delay-1">Getting started with our AI platform is quick and easy. Follow these simple steps.
</p>
</div>
<div class="steps">
<div class="step animate">
<div class="step-number">1</div>
<div class="step-content">
<h3>Create Your Account</h3>
<p>Sign up for a free account in just a few minutes. No credit card required to get started.</p>
</div>
</div>
<div class="step animate delay-1">
<div class="step-number">2</div>
<div class="step-content">
<h3>Connect Your Data</h3>
<p>Integrate with your existing systems or upload your data to start training your AI models.</p>
</div>
</div>
<div class="step animate delay-2">
<div class="step-number">3</div>
<div class="step-content">
<h3>Train Your Models</h3>
<p>Use our intuitive interface to configure and train your AI models with your specific datasets.</p>
</div>
</div>
<div class="step animate delay-3">
<div class="step-number">4</div>
<div class="step-content">
<h3>Deploy & Monitor</h3>
<p>Deploy your AI solutions and monitor performance with our comprehensive analytics dashboard.</p>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="pricing">
<div class="container">
<div class="section-title">
<h2 class="animate">Simple, Transparent Pricing</h2>
<p class="animate delay-1">Choose the plan that fits your needs. No hidden fees, cancel anytime.</p>
</div>
<div class="pricing-grid">
<div class="pricing-card animate">
<h3>Starter</h3>
<div class="price">$29<span>/month</span></div>
<ul class="pricing-features">
<li>Up to 10,000 API calls</li>
<li>3 AI models</li>
<li>Basic analytics</li>
<li>Email support</li>
<li>Community forum</li>
</ul>
<button class="btn btn-outline">Get Started</button>
</div>
<div class="pricing-card animate delay-1 popular">
<h3>Professional</h3>
<div class="price">$99<span>/month</span></div>
<ul class="pricing-features">
<li>Up to 100,000 API calls</li>
<li>10 AI models</li>
<li>Advanced analytics</li>
<li>Priority support</li>
<li>Custom workflows</li>
</ul>
<button class="btn btn-primary">Get Started</button>
</div>
<div class="pricing-card animate delay-2">
<h3>Enterprise</h3>
<div class="price">Custom</div>
<ul class="pricing-features">
<li>Unlimited API calls</li>
<li>Unlimited AI models</li>
<li>Premium analytics</li>
<li>24/7 dedicated support</li>
<li>On-premise deployment</li>
</ul>
<button class="btn btn-outline">Contact Sales</button>
</div>
</div>
</div>
</section>
<section class="section" id="testimonials">
<div class="container">
<div class="section-title">
<h2 class="animate">Trusted by Businesses Worldwide</h2>
<p class="animate delay-1">Hear from our satisfied customers who have transformed their operations with our AI
solutions.</p>
</div>
<div class="testimonials-slider">
<div class="testimonials" id="testimonials">
<div class="testimonial">
<div class="testimonial-content">
<p>"NeuraLink's AI platform has revolutionized our customer service operations. We've seen a 40% reduction
in response times and a significant improvement in customer satisfaction scores."</p>
<div class="testimonial-author">
<div class="author-avatar">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson">
</div>
<div class="author-info">
<h4>Sarah Johnson</h4>
<p>CEO, TechSolutions Inc.</p>
</div>
</div>
</div>
</div>
<div class="testimonial">
<div class="testimonial-content">
<p>"The predictive analytics feature alone has paid for itself ten times over. We've been able to
anticipate market trends and adjust our inventory accordingly, saving us thousands in excess stock."</p>
<div class="testimonial-author">
<div class="author-avatar">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen">
</div>
<div class="author-info">
<h4>Michael Chen</h4>
<p>Operations Director, RetailCorp</p>
</div>
</div>
</div>
</div>
<div class="testimonial">
<div class="testimonial-content">
<p>"As a healthcare provider, we needed a secure and compliant AI solution. NeuraLink delivered exactly
that, helping us analyze patient data while maintaining the highest privacy standards."</p>
<div class="testimonial-author">
<div class="author-avatar">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Dr. Emma Rodriguez">
</div>
<div class="author-info">
<h4>Dr. Emma Rodriguez</h4>
<p>Medical Director, HealthFirst</p>
</div>
</div>
</div>
</div>
</div>
<div class="slider-controls">
<div class="slider-dot active" data-index="0"></div>
<div class="slider-dot" data-index="1"></div>
<div class="slider-dot" data-index="2"></div>
</div>
</div>
</div>
</section>
<section class="section" id="faq">
<div class="container">
<div class="section-title">
<h2 class="animate">Frequently Asked Questions</h2>
<p class="animate delay-1">Find answers to common questions about our platform and services.</p>
</div>
<div class="faq-container">
<div class="faq-item animate">
<div class="faq-header">
<h3 class="faq-question">What technical skills do I need to use NeuraLink?</h3>
<div class="faq-toggle">
<i class="fas fa-plus"></i>
</div>
</div>
<div class="faq-answer">
<p>NeuraLink is designed to be accessible to users of all technical levels. Our no-code interface allows you
to build and deploy AI models without any programming knowledge. For more advanced customization, we
provide comprehensive documentation and APIs for developers.</p>
</div>
</div>
<div class="faq-item animate delay-1">
<div class="faq-header">
<h3 class="faq-question">How is my data protected?</h3>
<div class="faq-toggle">
<i class="fas fa-plus"></i>
</div>
</div>
<div class="faq-answer">
<p>We take data security extremely seriously. All data is encrypted both in transit and at rest using
industry-standard AES-256 encryption. We comply with GDPR, CCPA, and other major privacy regulations. For
enterprise customers, we also offer on-premise deployment options.</p>
</div>
</div>
<div class="faq-item animate delay-2">
<div class="faq-header">
<h3 class="faq-question">Can I try before I buy?</h3>
<div class="faq-toggle">
<i class="fas fa-plus"></i>
</div>
</div>
<div class="faq-answer">
<p>Absolutely! We offer a 14-day free trial with full access to all features (except enterprise-only
capabilities). No credit card is required to start your trial. You can upgrade to a paid plan at any time
during or after your trial period.</p>
</div>
</div>
<div class="faq-item animate delay-3">
<div class="faq-header">
<h3 class="faq-question">What kind of support do you offer?</h3>
<div class="faq-toggle">
<i class="fas fa-plus"></i>
</div>
</div>
<div class="faq-answer">
<p>All plans include access to our extensive knowledge base and community forums. Starter plans include
email support with a 24-hour response time. Professional and Enterprise plans include priority support via
email, chat, and phone with faster response times. Enterprise customers also receive a dedicated customer
success manager.</p>
</div>
</div>
<div class="faq-item animate delay-1">
<div class="faq-header">
<h3 class="faq-question">Can I integrate NeuraLink with my existing systems?</h3>
<div class="faq-toggle">
<i class="fas fa-plus"></i>
</div>
</div>
<div class="faq-answer">
<p>Yes! We provide pre-built integrations with popular business tools like Salesforce, Shopify, Google
Analytics, and more. Our robust API also allows you to connect with custom systems and internal databases.
Our support team can assist with any integration questions.</p>
</div>
</div>
</div>
</div>
</section>
<div class="container">
<div class="cta">
<h2 class="animate">Ready to Transform Your Business with AI?</h2>
<p class="animate delay-1">Join thousands of companies already benefiting from our advanced artificial
intelligence platform.</p>
<button class="btn btn-primary animate delay-2">Start Your Free Trial Today</button>
</div>
</div>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-column">
<a href="#" class="logo">
<i class="fas fa-brain logo-icon"></i>
<span>NeuraLink</span>
</a>
<p>Powerful AI solutions to help your business grow smarter. Harness the potential of artificial intelligence
today.</p>
<div class="social-links">
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="footer-column">
<h3>Product</h3>
<ul class="footer-links">
<li><a href="#">Features</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Integrations</a></li>
<li><a href="#">Roadmap</a></li>
<li><a href="#">Changelog</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Resources</h3>
<ul class="footer-links">
<li><a href="#">Documentation</a></li>
<li><a href="#">Guides</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Community</a></li>
<li><a href="#">Webinars</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Company</h3>
<ul class="footer-links">
<li><a href="#">About Us</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">Legal</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 NeuraLink AI. All rights reserved.</p>
</div>
</div>
</footer>
<!-- AI Chatbot -->
<div class="chatbot-container" id="chatbot-container">
<div class="chatbot-toggle" id="chatbot-toggle">
<i class="fas fa-robot"></i>
</div>
<div class="chatbot-window" id="chatbot-window">
<div class="chatbot-header">
<div class="chatbot-title">
<i class="fas fa-robot"></i>
<span>NeuraLink AI Assistant</span>
</div>
<button class="chatbot-close" id="chatbot-close">
<i class="fas fa-times"></i>
</button>
</div>
<div class="chatbot-messages" id="chatbot-messages">
<div class="message bot-message">
Hello! I'm your AI assistant. How can I help you today?
</div>
</div>
<div class="chatbot-input">
<input type="text" id="chatbot-input" placeholder="Type your message...">
<button id="chatbot-send">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<script>
// Dark/Light mode toggle
const themeToggle = document.getElementById('theme-toggle');
const themeIcon = themeToggle.querySelector('i');
// Check for saved user preference or use system preference
const userTheme = localStorage.getItem('theme');
const systemTheme = window.matchMedia('(prefers-color-scheme: dark)').matches;
// Initial theme setup
const themeCheck = () => {
if (userTheme === 'dark' || (!userTheme && systemTheme)) {
document.documentElement.classList.add('dark-mode');
themeIcon.classList.replace('fa-moon', 'fa-sun');
} else {
themeIcon.classList.replace('fa-sun', 'fa-moon');
}
};
// Manual theme switch
const themeSwitch = () => {
if (document.documentElement.classList.contains('dark-mode')) {
document.documentElement.classList.remove('dark-mode');
localStorage.setItem('theme', 'light');
themeIcon.classList.replace('fa-sun', 'fa-moon');
} else {
document.documentElement.classList.add('dark-mode');
localStorage.setItem('theme', 'dark');
themeIcon.classList.replace('fa-moon', 'fa-sun');
}
};
// Apply theme on page load
themeCheck();
// Theme toggle event
themeToggle.addEventListener('click', themeSwitch);
// Mobile menu toggle
const mobileMenuBtn = document.getElementById('mobile-menu-btn');
const mainNav = document.getElementById('main-nav');
mobileMenuBtn.addEventListener('click', () => {
mainNav.classList.toggle('active');
const icon = mobileMenuBtn.querySelector('i');
if (mainNav.classList.contains('active')) {
icon.classList.replace('fa-bars', 'fa-times');
} else {
icon.classList.replace('fa-times', 'fa-bars');
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
window.scrollTo({
top: target.offsetTop - 100,
behavior: 'smooth'
});
// Close mobile menu if open
if (mainNav.classList.contains('active')) {
mainNav.classList.remove('active');
const icon = mobileMenuBtn.querySelector('i');
icon.classList.replace('fa-times', 'fa-bars');
}
}
});
});
// Testimonial slider
const testimonials = document.getElementById('testimonials');
const dots = document.querySelectorAll('.slider-dot');
let currentSlide = 0;
const showSlide = (index) => {
testimonials.style.transform = `translateX(-${index * 100}%)`;
dots.forEach((dot, i) => {
dot.classList.toggle('active', i === index);
});
currentSlide = index;
};
dots.forEach((dot, index) => {
dot.addEventListener('click', () => showSlide(index));
});
// Auto-advance testimonials
setInterval(() => {
currentSlide = (currentSlide + 1) % dots.length;
showSlide(currentSlide);
}, 5000);
// FAQ accordion
const faqItems = document.querySelectorAll('.faq-item');
faqItems.forEach(item => {
const header = item.querySelector('.faq-header');
header.addEventListener('click', () => {
// Close other open items
faqItems.forEach(otherItem => {
if (otherItem !== item && otherItem.classList.contains('active')) {
otherItem.classList.remove('active');
}
});
// Toggle current item
item.classList.toggle('active');
});
});
// AI Chatbot functionality
const chatbotContainer = document.getElementById('chatbot-container');
const chatbotToggle = document.getElementById('chatbot-toggle');
const chatbotWindow = document.getElementById('chatbot-window');
const chatbotClose = document.getElementById('chatbot-close');
const chatbotMessages = document.getElementById('chatbot-messages');
const chatbotInput = document.getElementById('chatbot-input');
const chatbotSend = document.getElementById('chatbot-send');
// Toggle chatbot window
chatbotToggle.addEventListener('click', () => {
chatbotContainer.classList.toggle('chatbot-active');
chatbotInput.focus();
});
// Close chatbot window
chatbotClose.addEventListener('click', () => {
chatbotContainer.classList.remove('chatbot-active');
});
// Send message function
const sendMessage = () => {
const message = chatbotInput.value.trim();
if (message) {
// Add user message
addMessage(message, 'user');
chatbotInput.value = '';
// Simulate bot typing indicator
const typingIndicator = document.createElement('div');
typingIndicator.className = 'message bot-message typing';
typingIndicator.innerHTML = '<span class="typing-dot"></span><span class="typing-dot"></span><span class="typing-dot"></span>';
chatbotMessages.appendChild(typingIndicator);
scrollToBottom();
// Simulate bot response after delay
setTimeout(() => {
// Remove typing indicator
const typing = document.querySelector('.typing');
if (typing) typing.remove();
// Generate response
const responses = [
"I'm an AI assistant and I'm here to help you with any questions about our services.",
"That's a great question! Let me find that information for you.",
"Our platform is designed to be intuitive and easy to use for everyone.",
"For more specific questions, you might want to check our documentation.",
"I can help you get started with setting up your first AI model.",
"Our customer support team is available 24/7 if you need further assistance."
];
const randomResponse = responses[Math.floor(Math.random() * responses.length)];
addMessage(randomResponse, 'bot');
// If asking about pricing
if (message.toLowerCase().includes('price') || message.toLowerCase().includes('cost')) {
setTimeout(() => {
addMessage('We offer several pricing plans starting from $29/month. You can check all options on our Pricing page.', 'bot');
}, 1000);
}
}, 1500 + Math.random() * 2000);
}
};
// Add message helper function
const addMessage = (text, sender) => {
const messageDiv = document.createElement('div');
messageDiv.className = `message ${sender}-message`;
messageDiv.textContent = text;
chatbotMessages.appendChild(messageDiv);
scrollToBottom();
};
// Scroll to bottom of chat
const scrollToBottom = () => {
chatbotMessages.scrollTop = chatbotMessages.scrollHeight;
};
// Send message on button click
chatbotSend.addEventListener('click', sendMessage);
// Send message on Enter key
chatbotInput.addEventListener('keypress', (e) => {
if (e.key === 'Enter') {
sendMessage();
}
});
// Scroll animations
const animateOnScroll = () => {
const elements = document.querySelectorAll('.animate');
elements.forEach(element => {
const elementTop = element.getBoundingClientRect().top;
const windowHeight = window.innerHeight;
if (elementTop < windowHeight - 100) {
element.style.opacity = '1';
element.style.transform = 'translateY(0)';
}
});
};
// Add scroll event listener
window.addEventListener('scroll', animateOnScroll);
// Trigger once on page 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 <a href="https://enzostvs-deepsite.hf.space" style="color: #fff;" target="_blank" >DeepSite</a> <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;"></p></body>
</html> |