-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1441 lines (1283 loc) · 69.6 KB
/
index.html
File metadata and controls
1441 lines (1283 loc) · 69.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NeonTech Corp - Cyberpunk Technology Solutions</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
:root {
--neon-cyan: #00ffff;
--neon-pink: #ff0080;
--neon-purple: #8b5cf6;
--neon-green: #00ff41;
--neon-orange: #ff6600;
--cyber-dark: #0a0a0f;
--cyber-darker: #050507;
--cyber-gray: #1a1a2e;
}
* {
box-sizing: border-box;
}
body {
font-family: 'Rajdhani', sans-serif;
background: var(--cyber-darker);
overflow-x: hidden;
color: #ffffff;
margin: 0;
padding: 0;
}
.orbitron {
font-family: 'Orbitron', monospace;
}
/* Animated Grid Background */
.cyber-grid {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
z-index: -3;
background-image:
linear-gradient(rgba(0, 255, 255, 0.15) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 255, 255, 0.15) 1px, transparent 1px);
background-size: 60px 60px;
animation: grid-move 25s linear infinite;
opacity: 0.8;
}
@keyframes grid-move {
0% { transform: translate(0, 0); }
100% { transform: translate(60px, 60px); }
}
/* Matrix Rain Effect with Japanese Katakana */
.matrix-rain {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
z-index: -2;
overflow: hidden;
}
.matrix-column {
position: absolute;
top: -100vh;
color: var(--neon-green);
font-family: 'Orbitron', monospace;
font-size: 16px;
line-height: 1.4;
animation: matrix-fall linear infinite;
opacity: 0.8;
text-shadow: 0 0 10px var(--neon-green);
}
@keyframes matrix-fall {
0% {
transform: translateY(-100vh);
opacity: 1;
}
90% {
opacity: 0.8;
}
100% {
transform: translateY(100vh);
opacity: 0;
}
}
/* Floating Neon Particles */
.particle {
position: absolute;
width: 4px;
height: 4px;
border-radius: 50%;
animation: float-particle 12s linear infinite;
pointer-events: none;
}
@keyframes float-particle {
0% {
transform: translateY(100vh) translateX(0) rotate(0deg) scale(0);
opacity: 0;
}
5% {
opacity: 1;
transform: translateY(95vh) translateX(10px) rotate(18deg) scale(1);
}
95% {
opacity: 1;
transform: translateY(-5vh) translateX(150px) rotate(342deg) scale(1);
}
100% {
transform: translateY(-10vh) translateX(200px) rotate(360deg) scale(0);
opacity: 0;
}
}
/* Neon Glow Effects */
.neon-text {
text-shadow:
0 0 5px currentColor,
0 0 10px currentColor,
0 0 15px currentColor,
0 0 20px currentColor,
0 0 35px currentColor;
}
.neon-cyan { color: var(--neon-cyan); }
.neon-pink { color: var(--neon-pink); }
.neon-purple { color: var(--neon-purple); }
.neon-green { color: var(--neon-green); }
.neon-orange { color: var(--neon-orange); }
/* Holographic Interface Cards */
.holo-card {
background: linear-gradient(135deg,
rgba(0, 255, 255, 0.12) 0%,
rgba(255, 0, 128, 0.08) 30%,
rgba(139, 92, 246, 0.12) 70%,
rgba(0, 255, 65, 0.08) 100%);
border: 1px solid rgba(0, 255, 255, 0.4);
backdrop-filter: blur(15px);
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.holo-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg,
transparent,
rgba(255, 255, 255, 0.15),
transparent);
transition: left 1s ease;
}
.holo-card:hover::before {
left: 100%;
}
.holo-card:hover {
transform: translateY(-12px) scale(1.03);
box-shadow:
0 25px 50px rgba(0, 255, 255, 0.25),
inset 0 0 25px rgba(0, 255, 255, 0.15);
border-color: rgba(0, 255, 255, 0.8);
}
/* Scan Line Effect */
.scan-line {
position: relative;
overflow: hidden;
}
.scan-line::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg,
transparent,
var(--neon-cyan),
var(--neon-purple),
var(--neon-cyan),
transparent);
animation: scan 4s linear infinite;
opacity: 0.8;
}
@keyframes scan {
0% { transform: translateY(-100%); opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { transform: translateY(600%); opacity: 0; }
}
/* Glitch Effect with RGB Separation */
.glitch {
position: relative;
display: inline-block;
}
.glitch::before,
.glitch::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.3s ease;
}
.glitch:hover::before,
.glitch:hover::after {
opacity: 0.8;
}
.glitch:hover::before {
animation: glitch-anim 0.3s infinite linear alternate-reverse;
color: var(--neon-pink);
z-index: -1;
transform: translate(-2px, 0);
}
.glitch:hover::after {
animation: glitch-anim2 0.3s infinite linear alternate-reverse;
color: var(--neon-cyan);
z-index: -2;
transform: translate(2px, 0);
}
.glitch:hover {
animation: glitch-skew 0.3s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
0% { clip: rect(42px, 9999px, 44px, 0); }
5% { clip: rect(12px, 9999px, 59px, 0); }
10% { clip: rect(48px, 9999px, 29px, 0); }
15% { clip: rect(42px, 9999px, 73px, 0); }
20% { clip: rect(63px, 9999px, 27px, 0); }
25% { clip: rect(34px, 9999px, 55px, 0); }
30% { clip: rect(86px, 9999px, 73px, 0); }
35% { clip: rect(20px, 9999px, 20px, 0); }
40% { clip: rect(26px, 9999px, 60px, 0); }
45% { clip: rect(25px, 9999px, 66px, 0); }
50% { clip: rect(57px, 9999px, 98px, 0); }
55% { clip: rect(5px, 9999px, 46px, 0); }
60% { clip: rect(82px, 9999px, 31px, 0); }
65% { clip: rect(54px, 9999px, 27px, 0); }
70% { clip: rect(28px, 9999px, 99px, 0); }
75% { clip: rect(45px, 9999px, 69px, 0); }
80% { clip: rect(23px, 9999px, 85px, 0); }
85% { clip: rect(54px, 9999px, 84px, 0); }
90% { clip: rect(45px, 9999px, 47px, 0); }
95% { clip: rect(37px, 9999px, 20px, 0); }
100% { clip: rect(4px, 9999px, 91px, 0); }
}
@keyframes glitch-anim2 {
0% { clip: rect(65px, 9999px, 100px, 0); }
5% { clip: rect(52px, 9999px, 74px, 0); }
10% { clip: rect(79px, 9999px, 85px, 0); }
15% { clip: rect(75px, 9999px, 5px, 0); }
20% { clip: rect(67px, 9999px, 61px, 0); }
25% { clip: rect(14px, 9999px, 79px, 0); }
30% { clip: rect(1px, 9999px, 66px, 0); }
35% { clip: rect(86px, 9999px, 30px, 0); }
40% { clip: rect(23px, 9999px, 98px, 0); }
45% { clip: rect(85px, 9999px, 72px, 0); }
50% { clip: rect(71px, 9999px, 75px, 0); }
55% { clip: rect(2px, 9999px, 48px, 0); }
60% { clip: rect(30px, 9999px, 16px, 0); }
65% { clip: rect(59px, 9999px, 50px, 0); }
70% { clip: rect(41px, 9999px, 62px, 0); }
75% { clip: rect(2px, 9999px, 82px, 0); }
80% { clip: rect(47px, 9999px, 73px, 0); }
85% { clip: rect(3px, 9999px, 27px, 0); }
90% { clip: rect(26px, 9999px, 55px, 0); }
95% { clip: rect(42px, 9999px, 97px, 0); }
100% { clip: rect(38px, 9999px, 49px, 0); }
}
@keyframes glitch-skew {
2% { transform: skew(0.8deg); }
4% { transform: skew(-1.2deg); }
6% { transform: skew(0.4deg); }
8% { transform: skew(-0.3deg); }
10% { transform: skew(0.6deg); }
12% { transform: skew(-0.9deg); }
14% { transform: skew(0deg); }
}
/* Cyber Button */
.cyber-btn {
background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
border: 2px solid transparent;
position: relative;
overflow: hidden;
transition: all 0.4s ease;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 700;
box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}
.cyber-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg,
transparent,
rgba(255, 255, 255, 0.4),
transparent);
transition: left 0.6s ease;
}
.cyber-btn:hover::before {
left: 100%;
}
.cyber-btn:hover {
transform: translateY(-4px);
box-shadow:
0 15px 40px rgba(0, 255, 255, 0.5),
0 0 30px rgba(0, 255, 255, 0.8);
}
/* Pulse Animation */
.pulse-ring {
animation: pulse-ring 2.5s infinite;
}
@keyframes pulse-ring {
0% { transform: scale(1); opacity: 1; }
100% { transform: scale(3); opacity: 0; }
}
/* Navigation */
.nav-link {
position: relative;
transition: all 0.3s ease;
padding: 8px 16px;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
transition: all 0.3s ease;
transform: translateX(-50%);
}
.nav-link:hover::after {
width: 100%;
}
.nav-link:hover {
color: var(--neon-cyan);
text-shadow: 0 0 10px var(--neon-cyan);
}
/* Section Animations */
.fade-in {
opacity: 0;
transform: translateY(60px);
transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
/* Tech Icons */
.tech-icon {
font-size: 5rem;
transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
filter: drop-shadow(0 0 15px currentColor);
}
.tech-icon:hover {
transform: scale(1.3) rotate(15deg);
filter: drop-shadow(0 0 25px currentColor);
}
/* Loading Animation */
.loading-bar {
width: 100%;
height: 4px;
background: rgba(0, 255, 255, 0.2);
position: relative;
overflow: hidden;
border-radius: 2px;
}
.loading-bar::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg,
transparent,
var(--neon-cyan),
var(--neon-purple),
var(--neon-cyan),
transparent);
animation: loading 2.5s linear infinite;
}
@keyframes loading {
0% { left: -100%; }
100% { left: 100%; }
}
/* Responsive Design */
@media (max-width: 768px) {
.cyber-grid {
background-size: 40px 40px;
}
.matrix-column {
font-size: 12px;
}
.tech-icon {
font-size: 3.5rem;
}
.glitch {
font-size: 3rem;
}
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: var(--cyber-darker);
}
::-webkit-scrollbar-thumb {
background: linear-gradient(var(--neon-cyan), var(--neon-purple));
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(var(--neon-purple), var(--neon-pink));
}
/* Performance Optimizations */
.will-change-transform {
will-change: transform;
}
.will-change-opacity {
will-change: opacity;
}
/* Additional Cyberpunk Effects */
.data-stream {
position: absolute;
width: 2px;
height: 100px;
background: linear-gradient(to bottom, transparent, var(--neon-green), transparent);
animation: data-flow 3s linear infinite;
}
@keyframes data-flow {
0% { transform: translateY(-100px); opacity: 0; }
50% { opacity: 1; }
100% { transform: translateY(100vh); opacity: 0; }
}
</style>
</head>
<body>
<!-- Animated Grid Background -->
<div class="cyber-grid will-change-transform"></div>
<!-- Matrix Rain with Japanese Katakana -->
<div class="matrix-rain will-change-transform" id="matrixRain"></div>
<!-- Floating Neon Particles -->
<div id="particles" class="will-change-transform"></div>
<!-- Data Streams -->
<div id="dataStreams"></div>
<!-- Navigation -->
<nav class="fixed top-0 w-full z-50 bg-black/30 backdrop-blur-lg border-b border-cyan-400/40">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-20">
<div class="flex items-center">
<div class="text-3xl font-bold orbitron neon-text neon-cyan glitch" data-text="STARNEONTECH">
STARNEONTECH
</div>
<div class="ml-4 px-3 py-1 bg-cyan-400/20 rounded-lg text-sm orbitron neon-cyan border border-cyan-400/30">
CORP v5.0
</div>
</div>
<div class="hidden md:flex space-x-1">
<a href="#home" class="nav-link text-gray-300 orbitron">HOME</a>
<a href="#ai" class="nav-link text-gray-300 orbitron">AI</a>
<a href="#blockchain" class="nav-link text-gray-300 orbitron">BLOCKCHAIN</a>
<a href="#web3" class="nav-link text-gray-300 orbitron">WEB 3.0</a>
<a href="#iot" class="nav-link text-gray-300 orbitron">IOT</a>
<a href="#arvr" class="nav-link text-gray-300 orbitron">AR/VR</a>
<a href="#quantum" class="nav-link text-gray-300 orbitron">QUANTUM</a>
</div>
<a href="https://startechnology.space/site" target="_blank" class="border-2 border-cyan-250 text-cyan-250 hover:bg-cyan-250 hover:text-black px-10 py-3 rounded-xl transition-all duration-200 orbitron font-bold inline-block">
CONNECT
</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center justify-center relative overflow-hidden pt-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center relative z-10">
<div class="mb-12">
<h1 class="text-7xl md:text-9xl font-black mb-8 orbitron glitch neon-text neon-cyan will-change-transform" data-text="STARNEONTECH">
STAR TECHNOLOGY
</h1>
<div class="loading-bar mb-10 max-w-2xl mx-auto"></div>
<p class="text-2xl md:text-3xl text-gray-300 mb-16 max-w-5xl mx-auto leading-relaxed font-light">
Pioneering the cyberpunk future with cutting-edge technology solutions.
From AI consciousness to quantum realities, we're architecting tomorrow's digital dystopia.
</p>
</div>
<div style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/1194373364?badge=0&autopause=0&player_id=0&app_id=58479&autoplay=1&muted=1&loop=1" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" style="position:absolute;top:0;left:0;width:100%;height:100%;" title="Turkey/Kirklareli/Vize year 2982"></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>
<div class="loading-bar mb-10 max-w-2xl mx-auto"></div>
<p class="text-2xl md:text-3xl text-gray-300 mb-16 max-w-5xl mx-auto leading-relaxed font-light">
<div class="flex flex-col sm:flex-row gap-8 justify-center items-center mb-20">
<button class="cyber-btn px-12 py-5 rounded-xl text-xl font-bold orbitron">
<a href="https://startechnology.space/about" target="_blank" class="border-2 border-cyan-400 text-cyan-400 hover:bg-cyan-400 hover:text-black px-12 py-5 rounded-xl transition-all duration-300 orbitron font-bold inline-block">
JACK IN
</a>
</button>
<a href="https://starcomputer.com.tr/matrix" target="_blank" class="border-2 border-cyan-400 text-cyan-400 hover:bg-cyan-400 hover:text-black px-12 py-5 rounded-xl transition-all duration-300 orbitron font-bold inline-block">
VIEW MATRIX
</a>
<a href="https://startechnology.space/code" target="_blank" class="border-2 border-cyan-900 text-cyan-900 hover:bg-cyan-900 hover:text-black px-12 py-5 rounded-xl transition-all duration-300 orbitron font-bold inline-block">
CODE
</a>
</div>
<!-- Cyberpunk Stats Grid -->
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 max-w-6xl mx-auto">
<div class="holo-card rounded-2xl p-8 scan-line will-change-transform">
<div class="text-5xl font-black neon-text neon-cyan mb-3 orbitron">∞</div>
<div class="text-gray-400 font-semibold">Neural Networks</div>
<div class="w-full bg-gray-700 rounded-full h-3 mt-4">
<div class="bg-gradient-to-r from-cyan-400 to-purple-400 h-3 rounded-full" style="width: 100%"></div>
</div>
</div>
<div class="holo-card rounded-2xl p-8 scan-line will-change-transform">
<div class="text-5xl font-black neon-text neon-purple mb-3 orbitron">1M+</div>
<div class="text-gray-400 font-semibold">Blockchain Ops</div>
<div class="w-full bg-gray-700 rounded-full h-3 mt-4">
<div class="bg-gradient-to-r from-purple-400 to-pink-400 h-3 rounded-full" style="width: 95%"></div>
</div>
</div>
<div class="holo-card rounded-2xl p-8 scan-line will-change-transform">
<div class="text-5xl font-black neon-text neon-green mb-3 orbitron">99.9%</div>
<div class="text-gray-400 font-semibold">System Uptime</div>
<div class="w-full bg-gray-700 rounded-full h-3 mt-4">
<div class="bg-gradient-to-r from-green-400 to-cyan-400 h-3 rounded-full" style="width: 100%"></div>
</div>
</div>
<div class="holo-card rounded-2xl p-8 scan-line will-change-transform">
<div class="text-5xl font-black neon-text neon-orange mb-3 orbitron">24/7</div>
<div class="text-gray-400 font-semibold">Cyber Defense</div>
<div class="w-full bg-gray-700 rounded-full h-3 mt-4">
<div class="bg-gradient-to-r from-orange-400 to-red-400 h-3 rounded-full" style="width: 100%"></div>
</div>
</div>
</div>
</div>
<!-- Floating Cyberpunk Elements -->
<div class="absolute top-24 right-24 text-8xl opacity-40 animate-bounce will-change-transform">⚡</div>
<div class="absolute bottom-40 left-24 text-6xl opacity-50 animate-pulse will-change-transform">🔮</div>
<div class="absolute top-1/3 right-1/4 text-5xl opacity-35 animate-spin will-change-transform">🌐</div>
</section>
<!-- AI Section -->
<section id="ai" class="py-24 relative fade-in">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-20">
<h2 class="text-6xl font-black mb-8 orbitron neon-text neon-cyan glitch" data-text="ARTIFICIAL INTELLIGENCE">ARTIFICIAL INTELLIGENCE</h2>
<p class="text-2xl text-gray-400 max-w-4xl mx-auto font-light">
Neural consciousness awakening. Machine learning transcending human limitations.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-10">
<div class="holo-card rounded-2xl p-10 group scan-line will-change-transform">
<div class="tech-icon neon-cyan mb-8 text-center will-change-transform">🤖</div>
<h3 class="text-2xl font-bold mb-6 neon-text neon-cyan orbitron">NEURAL NETWORKS</h3>
<p class="text-gray-300 mb-8 leading-relaxed text-lg">
Deep learning architectures that simulate synaptic connections, creating artificial consciousness.
</p>
<ul class="text-gray-400 space-y-3">
<li class="flex items-center">
<span class="w-3 h-3 bg-cyan-400 rounded-full mr-4 pulse-ring"></span>
Convolutional Networks
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-cyan-400 rounded-full mr-4 pulse-ring"></span>
Transformer Models
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-cyan-400 rounded-full mr-4 pulse-ring"></span>
Generative AI
</li>
</ul>
</div>
<div class="holo-card rounded-2xl p-10 group scan-line will-change-transform">
<div class="tech-icon neon-purple mb-8 text-center will-change-transform">🧠</div>
<h3 class="text-2xl font-bold mb-6 neon-text neon-purple orbitron">MACHINE LEARNING</h3>
<p class="text-gray-300 mb-8 leading-relaxed text-lg">
Algorithms that evolve and adapt, learning from data patterns to predict the future.
</p>
<ul class="text-gray-400 space-y-3">
<li class="flex items-center">
<span class="w-3 h-3 bg-purple-400 rounded-full mr-4 pulse-ring"></span>
Supervised Learning
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-purple-400 rounded-full mr-4 pulse-ring"></span>
Reinforcement Learning
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-purple-400 rounded-full mr-4 pulse-ring"></span>
Unsupervised Learning
</li>
</ul>
</div>
<div class="holo-card rounded-2xl p-10 group scan-line will-change-transform">
<div class="tech-icon neon-green mb-8 text-center will-change-transform">🎯</div>
<h3 class="text-2xl font-bold mb-6 neon-text neon-green orbitron">PREDICTIVE ANALYTICS</h3>
<p class="text-gray-300 mb-8 leading-relaxed text-lg">
Quantum-enhanced forecasting models that see through the digital veil of uncertainty.
</p>
<ul class="text-gray-400 space-y-3">
<li class="flex items-center">
<span class="w-3 h-3 bg-green-400 rounded-full mr-4 pulse-ring"></span>
Time Series Analysis
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-green-400 rounded-full mr-4 pulse-ring"></span>
Risk Assessment
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-green-400 rounded-full mr-4 pulse-ring"></span>
Market Prediction
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Blockchain Section -->
<section id="blockchain" class="py-24 bg-black/30 relative fade-in">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-20">
<h2 class="text-6xl font-black mb-8 orbitron neon-text neon-purple glitch" data-text="BLOCKCHAIN MATRIX">BLOCKCHAIN MATRIX</h2>
<p class="text-2xl text-gray-400 max-w-4xl mx-auto font-light">
Decentralized ledgers securing the digital underground. Trust through cryptographic proof.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="holo-card rounded-2xl p-8 will-change-transform">
<div class="tech-icon neon-purple mb-6 text-center will-change-transform">⛓️</div>
<h3 class="text-xl font-bold mb-4 neon-text neon-purple orbitron">SMART CONTRACTS</h3>
<p class="text-gray-300 mb-4 leading-relaxed">
Self-executing code that enforces agreements without corporate overlords.
</p>
<div class="loading-bar"></div>
</div>
<div class="holo-card rounded-2xl p-8 will-change-transform">
<div class="tech-icon neon-cyan mb-6 text-center will-change-transform">🏦</div>
<h3 class="text-xl font-bold mb-4 neon-text neon-cyan orbitron">DEFI PROTOCOLS</h3>
<p class="text-gray-300 mb-4 leading-relaxed">
Financial freedom through decentralized banking systems.
</p>
<div class="loading-bar"></div>
</div>
<div class="holo-card rounded-2xl p-8 will-change-transform">
<div class="tech-icon neon-green mb-6 text-center will-change-transform">🎨</div>
<h3 class="text-xl font-bold mb-4 neon-text neon-green orbitron">NFT MARKETS</h3>
<p class="text-gray-300 mb-4 leading-relaxed">
Digital art ownership in the metaverse economy.
</p>
<div class="loading-bar"></div>
</div>
<div class="holo-card rounded-2xl p-8 will-change-transform">
<div class="tech-icon neon-pink mb-6 text-center will-change-transform">🔐</div>
<h3 class="text-xl font-bold mb-4 neon-text neon-pink orbitron">CRYPTO SECURITY</h3>
<p class="text-gray-300 mb-4 leading-relaxed">
Military-grade encryption protecting digital assets.
</p>
<div class="loading-bar"></div>
</div>
<div class="holo-card rounded-2xl p-8 will-change-transform">
<div class="tech-icon neon-orange mb-6 text-center will-change-transform">🌐</div>
<h3 class="text-xl font-bold mb-4 neon-text neon-orange orbitron">CROSS-CHAIN</h3>
<p class="text-gray-300 mb-4 leading-relaxed">
Bridging blockchain networks across the digital divide.
</p>
<div class="loading-bar"></div>
</div>
<div class="holo-card rounded-2xl p-8 will-change-transform">
<div class="tech-icon neon-cyan mb-6 text-center will-change-transform">⚡</div>
<h3 class="text-xl font-bold mb-4 neon-text neon-cyan orbitron">LAYER 2 SCALING</h3>
<p class="text-gray-300 mb-4 leading-relaxed">
Lightning-fast transactions at cyberpunk speeds.
</p>
<div class="loading-bar"></div>
</div>
</div>
</div>
</section>
<!-- Web 3.0 Section -->
<section id="web3" class="py-24 relative fade-in">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-20">
<h2 class="text-6xl font-black mb-8 orbitron neon-text neon-green glitch" data-text="WEB 3.0 REVOLUTION">WEB 3.0 REVOLUTION</h2>
<p class="text-2xl text-gray-400 max-w-4xl mx-auto font-light">
The decentralized web where data sovereignty returns to the people.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center">
<div class="space-y-10">
<div class="holo-card rounded-2xl p-8 will-change-transform">
<h3 class="text-3xl font-bold neon-text neon-green mb-6 orbitron">DECENTRALIZED APPS</h3>
<p class="text-gray-300 leading-relaxed text-lg">
Applications running on blockchain networks, free from corporate control and censorship.
</p>
</div>
<div class="holo-card rounded-2xl p-8 will-change-transform">
<h3 class="text-3xl font-bold neon-text neon-cyan mb-6 orbitron">DIGITAL IDENTITY</h3>
<p class="text-gray-300 leading-relaxed text-lg">
Self-sovereign identity systems giving users complete control over their digital personas.
</p>
</div>
<div class="holo-card rounded-2xl p-8 will-change-transform">
<h3 class="text-3xl font-bold neon-text neon-purple mb-6 orbitron">METAVERSE INTEGRATION</h3>
<p class="text-gray-300 leading-relaxed text-lg">
Seamless connection between virtual worlds and blockchain-based economies.
</p>
</div>
</div>
<div class="holo-card rounded-3xl p-12 text-center scan-line will-change-transform">
<div class="text-9xl mb-10 neon-text neon-green will-change-transform">🌐</div>
<h3 class="text-4xl font-bold neon-text neon-green mb-8 orbitron">WEB 3.0 STACK</h3>
<div class="space-y-6">
<div class="flex justify-between items-center text-lg">
<span class="text-gray-400 font-semibold">IPFS Storage</span>
<span class="neon-text neon-cyan orbitron font-bold">ACTIVE</span>
</div>
<div class="flex justify-between items-center text-lg">
<span class="text-gray-400 font-semibold">ENS Domains</span>
<span class="neon-text neon-purple orbitron font-bold">CONNECTED</span>
</div>
<div class="flex justify-between items-center text-lg">
<span class="text-gray-400 font-semibold">Wallet Integration</span>
<span class="neon-text neon-green orbitron font-bold">ENABLED</span>
</div>
<div class="flex justify-between items-center text-lg">
<span class="text-gray-400 font-semibold">DAO Governance</span>
<span class="neon-text neon-pink orbitron font-bold">LIVE</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- IoT Section -->
<section id="iot" class="py-24 bg-black/30 relative fade-in">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-20">
<h2 class="text-6xl font-black mb-8 orbitron neon-text neon-orange glitch" data-text="INTERNET OF THINGS">INTERNET OF THINGS</h2>
<p class="text-2xl text-gray-400 max-w-4xl mx-auto font-light">
Connected devices forming the neural network of smart cities and digital ecosystems.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="holo-card rounded-2xl p-8 text-center will-change-transform">
<div class="tech-icon neon-orange mb-6 will-change-transform">🏠</div>
<h3 class="text-xl font-bold neon-text neon-orange orbitron mb-3">SMART HOMES</h3>
<p class="text-gray-400">Automated living spaces</p>
</div>
<div class="holo-card rounded-2xl p-8 text-center will-change-transform">
<div class="tech-icon neon-cyan mb-6 will-change-transform">🏭</div>
<h3 class="text-xl font-bold neon-text neon-cyan orbitron mb-3">INDUSTRIAL IOT</h3>
<p class="text-gray-400">Manufacturing optimization</p>
</div>
<div class="holo-card rounded-2xl p-8 text-center will-change-transform">
<div class="tech-icon neon-green mb-6 will-change-transform">🚗</div>
<h3 class="text-xl font-bold neon-text neon-green orbitron mb-3">CONNECTED CARS</h3>
<p class="text-gray-400">Autonomous vehicle systems</p>
</div>
<div class="holo-card rounded-2xl p-8 text-center will-change-transform">
<div class="tech-icon neon-purple mb-6 will-change-transform">🏥</div>
<h3 class="text-xl font-bold neon-text neon-purple orbitron mb-3">HEALTHCARE IOT</h3>
<p class="text-gray-400">Remote patient monitoring</p>
</div>
<div class="holo-card rounded-2xl p-8 text-center will-change-transform">
<div class="tech-icon neon-pink mb-6 will-change-transform">🌾</div>
<h3 class="text-xl font-bold neon-text neon-pink orbitron mb-3">SMART AGRICULTURE</h3>
<p class="text-gray-400">Precision farming solutions</p>
</div>
<div class="holo-card rounded-2xl p-8 text-center will-change-transform">
<div class="tech-icon neon-cyan mb-6 will-change-transform">🏙️</div>
<h3 class="text-xl font-bold neon-text neon-cyan orbitron mb-3">SMART CITIES</h3>
<p class="text-gray-400">Urban infrastructure management</p>
</div>
<div class="holo-card rounded-2xl p-8 text-center will-change-transform">
<div class="tech-icon neon-green mb-6 will-change-transform">⚡</div>
<h3 class="text-xl font-bold neon-text neon-green orbitron mb-3">ENERGY GRID</h3>
<p class="text-gray-400">Smart power distribution</p>
</div>
<div class="holo-card rounded-2xl p-8 text-center will-change-transform">
<div class="tech-icon neon-orange mb-6 will-change-transform">📡</div>
<h3 class="text-xl font-bold neon-text neon-orange orbitron mb-3">EDGE COMPUTING</h3>
<p class="text-gray-400">Real-time data processing</p>
</div>
</div>
</div>
</section>
<!-- AR/VR Section -->
<section id="arvr" class="py-24 relative fade-in">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-20">
<h2 class="text-6xl font-black mb-8 orbitron neon-text neon-pink glitch" data-text="AUGMENTED & VIRTUAL REALITY">AUGMENTED & VIRTUAL REALITY</h2>
<p class="text-2xl text-gray-400 max-w-4xl mx-auto font-light">
Immersive experiences blending digital and physical realities into cyberpunk dreamscapes.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-12">
<div class="holo-card rounded-2xl p-10 scan-line will-change-transform">
<div class="tech-icon neon-pink mb-8 text-center will-change-transform">🥽</div>
<h3 class="text-3xl font-bold mb-6 neon-text neon-pink orbitron">VIRTUAL REALITY</h3>
<p class="text-gray-300 mb-8 leading-relaxed text-lg">
Fully immersive digital worlds for training, entertainment, and consciousness expansion.
</p>
<ul class="text-gray-400 space-y-4">
<li class="flex items-center">
<span class="w-3 h-3 bg-pink-400 rounded-full mr-4 pulse-ring"></span>
VR Training Simulations
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-pink-400 rounded-full mr-4 pulse-ring"></span>
Virtual Showrooms
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-pink-400 rounded-full mr-4 pulse-ring"></span>
Immersive Gaming
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-pink-400 rounded-full mr-4 pulse-ring"></span>
Virtual Meetings
</li>
</ul>
</div>
<div class="holo-card rounded-2xl p-10 scan-line will-change-transform">
<div class="tech-icon neon-cyan mb-8 text-center will-change-transform">📱</div>
<h3 class="text-3xl font-bold mb-6 neon-text neon-cyan orbitron">AUGMENTED REALITY</h3>
<p class="text-gray-300 mb-8 leading-relaxed text-lg">
Digital overlays enhancing reality with holographic information and interactive elements.
</p>
<ul class="text-gray-400 space-y-4">
<li class="flex items-center">
<span class="w-3 h-3 bg-cyan-400 rounded-full mr-4 pulse-ring"></span>
AR Shopping Experiences
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-cyan-400 rounded-full mr-4 pulse-ring"></span>
Industrial Maintenance
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-cyan-400 rounded-full mr-4 pulse-ring"></span>
Educational AR Apps
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-cyan-400 rounded-full mr-4 pulse-ring"></span>
Navigation Systems
</li>
</ul>
</div>
<div class="holo-card rounded-2xl p-10 scan-line will-change-transform">
<div class="tech-icon neon-purple mb-8 text-center will-change-transform">🌐</div>
<h3 class="text-3xl font-bold mb-6 neon-text neon-purple orbitron">MIXED REALITY</h3>
<p class="text-gray-300 mb-8 leading-relaxed text-lg">
Seamless integration of virtual and physical objects in shared holographic environments.
</p>
<ul class="text-gray-400 space-y-4">
<li class="flex items-center">
<span class="w-3 h-3 bg-purple-400 rounded-full mr-4 pulse-ring"></span>
Holographic Displays
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-purple-400 rounded-full mr-4 pulse-ring"></span>
Collaborative Workspaces
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-purple-400 rounded-full mr-4 pulse-ring"></span>
3D Visualization
</li>
<li class="flex items-center">
<span class="w-3 h-3 bg-purple-400 rounded-full mr-4 pulse-ring"></span>
Spatial Computing
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Quantum Section -->
<section id="quantum" class="py-24 bg-black/30 relative fade-in">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-20">
<h2 class="text-6xl font-black mb-8 orbitron neon-text neon-purple glitch" data-text="QUANTUM COMPUTING">QUANTUM COMPUTING</h2>
<p class="text-2xl text-gray-400 max-w-4xl mx-auto font-light">
Harnessing quantum mechanics to transcend classical computing limitations and unlock infinite possibilities.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center">
<div class="holo-card rounded-3xl p-12 relative will-change-transform">
<!-- Quantum Visualization -->
<div class="relative w-96 h-96 mx-auto mb-10">
<div class="absolute inset-0 border-2 border-purple-400 rounded-full animate-spin will-change-transform" style="animation-duration: 30s;"></div>
<div class="absolute inset-6 border-2 border-cyan-400 rounded-full animate-spin will-change-transform" style="animation-duration: 20s; animation-direction: reverse;"></div>
<div class="absolute inset-12 border-2 border-pink-400 rounded-full animate-spin will-change-transform" style="animation-duration: 15s;"></div>