-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
2893 lines (2600 loc) · 139 KB
/
about.html
File metadata and controls
2893 lines (2600 loc) · 139 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-9">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StarTechnology.space - Future Technology Hub</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;600;700&display=swap');
:root {
--cyber-blue: #00f5ff;
--cyber-purple: #8a2be2;
--cyber-pink: #ff1493;
--cyber-green: #39ff14;
--dark-bg: #0a0a0a;
--grid-color: rgba(0, 245, 255, 0.1);
}
body {
font-family: 'Rajdhani', sans-serif;
background: var(--dark-bg);
overflow-x: hidden;
}
.cyber-font {
font-family: 'Orbitron', monospace;
}
.cyber-grid {
background-image:
linear-gradient(rgba(0, 245, 255, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 245, 255, 0.1) 1px, transparent 1px);
background-size: 50px 50px;
animation: grid-move 20s linear infinite;
}
@keyframes grid-move {
0% { background-position: 0 0; }
100% { background-position: 50px 50px; }
}
.glow-text {
text-shadow: 0 0 10px var(--cyber-blue), 0 0 20px var(--cyber-blue), 0 0 30px var(--cyber-blue);
}
.glow-border {
box-shadow: 0 0 20px rgba(0, 245, 255, 0.5), inset 0 0 20px rgba(0, 245, 255, 0.1);
border: 1px solid var(--cyber-blue);
}
.cyber-button {
background: linear-gradient(45deg, transparent, rgba(0, 245, 255, 0.1), transparent);
border: 1px solid var(--cyber-blue);
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}
.cyber-button:hover {
box-shadow: 0 0 30px rgba(0, 245, 255, 0.7);
transform: translateY(-2px);
}
.cyber-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.cyber-button:hover::before {
left: 100%;
}
.floating {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.pulse-ring {
animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
0% { transform: scale(1); opacity: 1; }
100% { transform: scale(2); opacity: 0; }
}
.data-stream {
position: absolute;
width: 2px;
height: 100px;
background: linear-gradient(to bottom, transparent, var(--cyber-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; }
}
.hologram {
background: linear-gradient(45deg,
rgba(0, 245, 255, 0.1) 0%,
rgba(138, 43, 226, 0.1) 25%,
rgba(255, 20, 147, 0.1) 50%,
rgba(57, 255, 20, 0.1) 75%,
rgba(0, 245, 255, 0.1) 100%);
background-size: 400% 400%;
animation: hologram-shift 4s ease-in-out infinite;
}
@keyframes hologram-shift {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.mobile-menu {
transform: translateX(-100%);
transition: transform 0.3s ease;
}
.mobile-menu.open {
transform: translateX(0);
}
.neon-border {
border: 2px solid transparent;
background: linear-gradient(45deg, var(--cyber-blue), var(--cyber-purple), var(--cyber-pink)) border-box;
-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: destination-out;
mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
mask-composite: exclude;
}
.glitch {
position: relative;
animation: glitch 2s infinite;
}
@keyframes glitch {
0%, 100% { transform: translate(0); }
20% { transform: translate(-2px, 2px); }
40% { transform: translate(-2px, -2px); }
60% { transform: translate(2px, 2px); }
80% { transform: translate(2px, -2px); }
100% { transform: translate(2px, -2px); }
}
.particle {
position: absolute;
width: 4px;
height: 4px;
background: var(--cyber-blue);
border-radius: 50%;
animation: particle-float 8s infinite linear;
}
@keyframes particle-float {
0% { transform: translateY(100vh) translateX(0); opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
}
.scan-line {
position: absolute;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
animation: scan 3s infinite;
}
@keyframes scan {
0% { top: 0; opacity: 1; }
100% { top: 100%; opacity: 0; }
}
.matrix-rain {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}
.matrix-column {
position: absolute;
top: -100%;
color: var(--cyber-green);
font-family: 'Courier New', monospace;
font-size: 14px;
animation: matrix-fall 10s linear infinite;
}
@keyframes matrix-fall {
0% { top: -100%; opacity: 1; }
100% { top: 100%; opacity: 0; }
}
.ripple {
position: absolute;
border-radius: 50%;
background: rgba(0, 245, 255, 0.3);
transform: scale(0);
animation: ripple-animation 0.6s linear;
pointer-events: none;
}
@keyframes ripple-animation {
to {
transform: scale(4);
opacity: 0;
}
}
.focus\:glow-border:focus {
box-shadow: 0 0 20px rgba(0, 245, 255, 0.5), inset 0 0 20px rgba(0, 245, 255, 0.1);
}
.tech-card {
backdrop-filter: blur(10px);
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(0, 245, 255, 0.3);
transition: all 0.3s ease;
}
.tech-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}
.status-indicator {
animation: status-pulse 2s infinite;
}
@keyframes status-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.cyber-loader {
width: 40px;
height: 40px;
border: 3px solid rgba(0, 245, 255, 0.3);
border-top: 3px solid var(--cyber-blue);
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.neural-network {
position: absolute;
width: 100%;
height: 100%;
opacity: 0.1;
pointer-events: none;
}
.neural-node {
position: absolute;
width: 4px;
height: 4px;
background: var(--cyber-blue);
border-radius: 50%;
animation: neural-pulse 3s infinite;
}
@keyframes neural-pulse {
0%, 100% { opacity: 0.3; transform: scale(1); }
50% { opacity: 1; transform: scale(1.5); }
}
.quantum-effect {
position: relative;
overflow: hidden;
}
.quantum-effect::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
animation: quantum-sweep 2s infinite;
}
@keyframes quantum-sweep {
0% { left: -100%; }
100% { left: 100%; }
}
</style>
</head>
<body class="bg-black text-white cyber-grid">
<!-- Matrix Rain Effect -->
<div class="matrix-rain" id="matrix-rain"></div>
<!-- Neural Network Background -->
<div class="neural-network" id="neural-network"></div>
<!-- Data Streams -->
<div class="data-stream" style="left: 10%; animation-delay: 0s;"></div>
<div class="data-stream" style="left: 30%; animation-delay: 1s;"></div>
<div class="data-stream" style="left: 60%; animation-delay: 2s;"></div>
<div class="data-stream" style="left: 80%; animation-delay: 0.5s;"></div>
<div class="data-stream" style="left: 100%; animation-delay: 0.5s;"></div>
<!-- Floating Particles -->
<div class="particle" style="left: 20%; animation-delay: 0s;"></div>
<div class="particle" style="left: 40%; animation-delay: 2s;"></div>
<div class="particle" style="left: 60%; animation-delay: 4s;"></div>
<div class="data-stream" style="left: 80%; animation-delay: 0.5s;"></div>
<div class="data-stream" style="left: 100%; animation-delay: 0.5s;"></div>
<!-- Navigation -->
<nav class="fixed top-0 w-full z-50 bg-black/80 backdrop-blur-md border-b border-cyan-500/30">
<div class="scan-line"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<div class="flex items-center">
<div class="cyber-font text-2xl font-bold glow-text glitch">
StarTechnology.space
</div>
</div>
</div>
<!-- Desktop Menu -->
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-8">
<a href="#home" class="text-cyan-400 hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-colors relative group">
Ana Sayfa
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 transition-all group-hover:w-full"></span>
</a>
<a href="#domain-site-network" class="text-gray-300 hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-colors relative group">
App
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 transition-all group-hover:w-full"></span>
</a>
<a href="#app" class="text-gray-300 hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-colors relative group">
Domain/Network
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 transition-all group-hover:w-full"></span>
</a>
<a href="#services" class="text-gray-300 hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-colors relative group">
Hizmetler
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 transition-all group-hover:w-full"></span>
</a>
<a href="#projects" class="text-gray-300 hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-colors relative group">
Projeler
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 transition-all group-hover:w-full"></span>
</a>
<a href="#about" class="text-gray-300 hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-colors relative group">
Hakkımızda
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 transition-all group-hover:w-full"></span>
</a>
<a href="#contact" class="text-gray-300 hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-colors relative group">
İletişim
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 transition-all group-hover:w-full"></span>
</a>
<a href="#pay" class="text-gray-300 hover:text-cyan-300 px-3 py-2 text-sm font-medium transition-colors relative group">
Pay
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 transition-all group-hover:w-full"></span>
</a>
</div>
</div>
</div>
<!-- Mobile Menu Button -->
<div class="md:hidden">
<button id="mobile-menu-btn" class="text-gray-400 hover:text-white focus:outline-none">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="mobile-menu md:hidden fixed top-16 left-0 w-full h-screen bg-black/95 backdrop-blur-md z-40">
<div class="px-2 pt-2 pb-3 space-y-1">
<a href="#home" class="text-cyan-400 block px-3 py-2 text-base font-medium">Ana Sayfa</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center justify-center relative overflow-hidden pt-16">
<div class="absolute inset-0 bg-gradient-to-br from-purple-900/20 via-blue-900/20 to-cyan-900/20"></div>
<!-- Floating Elements -->
<div class="absolute top-20 left-10 w-20 h-20 border border-cyan-500/30 rounded-full floating quantum-effect" style="animation-delay: 0s;"></div>
<div class="absolute top-40 right-20 w-16 h-16 border border-purple-500/30 rounded-full floating quantum-effect" style="animation-delay: 1s;"></div>
<div class="absolute bottom-40 left-20 w-12 h-12 border border-pink-500/30 rounded-full floating quantum-effect" style="animation-delay: 2s;"></div>
<!-- Holographic Interface -->
<div class="absolute top-32 right-32 w-64 h-32 hologram rounded-lg opacity-30 hidden lg:block"></div>
<div class="absolute bottom-32 left-32 w-48 h-24 hologram rounded-lg opacity-20 hidden lg:block"></div>
<div class="text-center z-10 max-w-4xl mx-auto px-4">
<div class="mb-8">
<div class="inline-block relative">
<div class="absolute inset-0 pulse-ring border-2 border-cyan-500/50 rounded-full"></div>
<div class="w-24 h-24 mx-auto bg-gradient-to-r from-cyan-500 to-purple-500 rounded-full flex items-center justify-center neon-border">
<svg class="w-12 h-12 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
</div>
</div>
</div>
<div style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/1126768670?badge=0&autopause=0&player_id=0&app_id=58479" 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="Star Teknoloji"></iframe></div><script src="https://player.vimeo.com/api/player.js"></script> <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"></h1>
<div class="text-center mb-16">
<p class="text-xl text-gray-400"></p>
<div class="w-32 h-1 bg-gradient-to-r from-cyan-500 to-purple-500 mx-auto mt-4"></div>
<h3 class="cyber-font text-2xl font-bold text-cyan-400 mb-6 glow-text"></h3>
<section id="" class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<p align="center" dir="auto">
<h2 class="cyber-font text-3xl md:text-5xl font-bold mb-4 glow-text">GELECEK Teknolojisi</h2>
<span class="inline-block">Dijital dönüşümün öncüsü,</span>
<span class="inline-block text-cyan-400 glow-text">yapay zeka</span>
<span class="inline-block">ve</span>
<span class="inline-block text-purple-400 glow-text">blockchain</span>
<span class="inline-block">teknolojileriyle</span>
<br>
<span class="text-cyan-400 glow-text text-3xl font-bold">geleceği şekillendiriyoruz</span>
</div>
<div class="flex flex-col sm:flex-row gap-4 justify-center items-center">
<a href="https://ogtal.com" target="_blank" class="cyber-button px-8 py-4 text-lg font-semibold text-cyan-400 rounded-lg group inline-block">
<span class="relative z-10">Projemizi Keşfet</span>
</a>
<a href="https://codes-exe.github.io/OgtalHub/" target="_blank" class="cyber-button px-8 py-4 text-lg font-semibold text-yellow-400 rounded-lg group inline-block">
<span class="relative z-10">Matrix Hub</span>
</a>
<a href="https://starteknoloji.space/matrixcode" target="_blank" class="cyber-button px-8 py-4 text-lg font-semibold text-cyan-400 rounded-lg group inline-block">
<span class="relative z-10">Matrix Code</span>
</a>
<a href="https://starteknoloji.space/matrixeditor" target="_blank" class="cyber-button px-8 py-4 text-lg font-semibold text-purple-400 rounded-lg group inline-block">
<span class="relative z-10">Matrix Editör</span>
</a>
<a href="https://starteknoloji.space/login" target="_blank" class="cyber-button px-8 py-4 text-lg font-semibold text-yellow-400 rounded-lg group inline-block">
<span class="relative z-10">CODES Premium $</span>
</a>
</div>
</section>
<!-- Tech Stats -->
<div class="mt-16 grid grid-cols-2 md:grid-cols-4 gap-8">
<div class="text-center tech-card rounded-lg p-4">
<div class="cyber-font text-3xl font-bold text-cyan-400 mb-2 counter" data-target="150">12</div>
<div class="text-gray-400 text-sm">Aktif Projeler</div>
</div>
<div class="text-center tech-card rounded-lg p-4">
<div class="cyber-font text-3xl font-bold text-purple-400 mb-2 counter" data-target="25">1</div>
<div class="text-gray-400 text-sm">Uzman Ekip</div>
</div>
<div class="text-center tech-card rounded-lg p-4">
<div class="cyber-font text-3xl font-bold text-green-400 mb-2 counter" data-target="500">39</div>
<div class="text-gray-400 text-sm">Memnun Müşteri</div>
</div>
<div class="text-center tech-card rounded-lg p-4">
<div class="cyber-font text-3xl font-bold text-orange-400 mb-2">24/7</div>
<div class="text-gray-400 text-sm">Destek</div>
</div>
<div class="text-center tech-card rounded-lg p-4">
<div class="cyber-font text-3xl font-bold text-red-400 mb-2">12</div>
<div class="text-gray-400 text-sm">Site</div>
</div>
<div class="text-center tech-card rounded-lg p-4">
<div class="cyber-font text-3xl font-bold text-blue-400 mb-2">Code</div>
<div class="text-gray-400 text-sm">Varlık</div>
</div>
<div class="text-center tech-card rounded-lg p-4">
<div class="cyber-font text-3xl font-bold text-orange-400 mb-2">%100</div>
<div class="text-gray-400 text-sm">Güvenlik</div>
</div>
<div class="text-center tech-card rounded-lg p-4">
<div class="cyber-font text-3xl font-bold text-pink-400 mb-2">5</div>
<div class="text-gray-400 text-sm">App</div>
</div>
</div>
</div>
</section>
<!-- Future Tens İmage, Vİdeo, Music, Grafik, Section -->
<section id="services" class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="cyber-font text-3xl md:text-5xl font-bold mb-4 glow-text">Ogtal</h2>
<p class="text-xl text-gray-400">Ogtal immortality</p>
<section id="OGTAL" class="py-20 relative">
<h2 class="cyber-font text-3xl md:text-5xl font-bold mb-4 glow-text">Future Tens İmage, Vİdeo, Music, Grafik, Section</h2>
<p class="text-xl text-gray-400">System Ogtal </p>
<div class="w-32 h-1 bg-gradient-to-r from-cyan-500 to-purple-500 mx-auto mt-4"></div>
<h3 class="cyber-font text-2xl font-bold text-cyan-400 mb-6 glow-text">Star Technology Production"Ogtal Core System"</h3>
<section id="Future Tens İmage Section" class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<p align="center" dir="auto">
<a>
<a>
<div class="text-center mb-16">
<p align="center" dir="auto">
<a>
</a>
<div class="text-center mb-16">
<p align="center" dir="auto">
<a>
</a>
<a>
<a href="https://startekchnology.space/logo" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-yellow-400 rounded-lg group inline-block">
<span class="relative z-10">İMAGE</span>
</a>
<a>
</a><a href="https://startechnology.space/video" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-red-400 rounded-lg group inline-block">
<span class="relative z-10">VİDEO</span>
</a>
</a>
<a>
</a><a href="https://startechnology.space/grafik" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-green-400 rounded-lg group inline-block">
<span class="relative z-10">GRAFİK</span>
</a>
<a>
</a><a href="https://startechnology.space/music" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-blue-400 rounded-lg group inline-block">
<span class="relative z-10">MUSİC</span>
</a>
<a>
<a href="https://startechnology.space/index.md" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-orange-400 rounded-lg group inline-block">
<span class="relative z-10">İNDEX</span>
</a>
</div>
</div>
<div style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/1117344358?badge=0&autopause=0&player_id=0&app_id=58479" 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="Ogtal"></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>
<div style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/1118667870?badge=0&autopause=0&player_id=0&app_id=58479" 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="Ogtal - Star Technology"></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>
<div class="text-center mb-16">
</section>
<div class="w-32 h-1 bg-gradient-to-r from-cyan-500 to-purple-500 mx-auto mt-4"></div>
<h2 class="cyber-font text-3xl md:text-5xl font-bold mb-4 glow-text">Domain-Network</h2>
<p class="text-xl text-gray-400">Teknolojinin sınırlarını zorlayan çözümler</p>
<div class="w-32 h-1 bg-gradient-to-r from-cyan-500 to-purple-500 mx-auto mt-4"></div>
<h3 class="cyber-font text-2xl font-bold text-cyan-400 mb-6 glow-text">Yapılandırma ve Geliştirme</h3>
<section id="domain-network" class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<a>
<a href="https://braverclient.com" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-yellow-400 rounded-lg group inline-block">
<span class="relative z-10">BRAVER CLİENT</span>
</a>
<a>
<a href="https://ogtal.com" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-yellow-400 rounded-lg group inline-block">
<span class="relative z-10">Ogtal Core Systems</span>
</a>
<a>
<a href="https://starteknoloji.tr" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-red-400 rounded-lg group inline-block">
<span class="relative z-10">Star Teknoloji.TR</span>
</a>
<a>
<a href="https://starcomputer.tr" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-green-400 rounded-lg group inline-block">
<span class="relative z-10">Star Computer.TR</span>
</a>
<a>
<a href="https://starcomputer.shop" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-blue-400 rounded-lg group inline-block">
<span class="relative z-10">Star Computer Shop</span>
</a>
<a>
<a href="https://starcomputer.space" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-pink-400 rounded-lg group inline-block">
<span class="relative z-10">Star Computer Space</span>
</a>
<a>
<a href="https://starcomputer.com.tr" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-orange-400 rounded-lg group inline-block">
<span class="relative z-10">Star Computer.com.TR</span>
</a>
<a>
<a href="https://starcomputer.site" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-purple-400 rounded-lg group inline-block">
<span class="relative z-10">Star Computer Site</span>
</a>
<a>
<a href="https://birliraci.com" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-saxe-400 rounded-lg group inline-block">
<span class="relative z-10">Bir Liracı</span>
</a>
<a>
<a href="https://yerlicins.com" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-Orange-400 rounded-lg group inline-block">
<span class="relative z-10">Yerli Cins</span>
</a>
<a>
<a href="https://octal.digital" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-pink-400 rounded-lg group inline-block">
<span class="relative z-10">Octal Digital</span>
</a>
<a>
<a href="https://octal.com.tr" target="_blank" class="cyber-button w-full px-8 py-3 text-lg font-semibold text-pink-400 rounded-lg group inline-block">
<span class="relative z-10">Octal com.TR</span>
</a>
</div>
</div>
</section></div>
</div></section>
</section>
<!-- Services Section -->
<section id="services" class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="cyber-font text-3xl md:text-5xl font-bold mb-4 glow-text">HİZMETLERİMİZ</h2>
<p class="text-xl text-gray-400">Teknolojinin sınırlarını zorlayan çözümler</p>
<div class="w-32 h-1 bg-gradient-to-r from-cyan-500 to-purple-500 mx-auto mt-4"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1: AI -->
<div class="tech-card hologram glow-border rounded-lg p-6 hover:scale-105 transition-all duration-300 group relative overflow-hidden">
<div class="scan-line"></div>
<div class="text-center mb-4">
<div class="w-16 h-16 mx-auto bg-gradient-to-r from-cyan-500 to-blue-500 rounded-full flex items-center justify-center mb-4 group-hover:animate-pulse">
<svg class="w-8 h-8 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M13 6a3 3 0 11-6 0 3 3 0 016 0zM18 8a2 2 0 11-4 0 2 2 0 014 0zM14 15a4 4 0 00-8 0v3h8v-3z"></path>
</svg>
</div>
<h3 class="cyber-font text-xl font-bold text-cyan-400 mb-2">YAPAY ZEKA</h3>
</div>
<p class="text-gray-300 text-center mb-4">Makine öğrenmesi ve derin öğrenme algoritmaları ile akıllı sistemler geliştiriyoruz.</p>
<div class="flex flex-wrap gap-2 justify-center">
<span class="px-2 py-1 bg-cyan-500/20 text-cyan-400 rounded text-xs">Neural Networks</span>
<span class="px-2 py-1 bg-blue-500/20 text-blue-400 rounded text-xs">Deep Learning</span>
<span class="px-2 py-1 bg-teal-500/20 text-teal-400 rounded text-xs">Computer Vision</span>
</div>
</div>
<!-- Service 2: Blockchain -->
<div class="tech-card hologram glow-border rounded-lg p-6 hover:scale-105 transition-all duration-300 group relative overflow-hidden">
<div class="scan-line"></div>
<div class="text-center mb-4">
<div class="w-16 h-16 mx-auto bg-gradient-to-r from-purple-500 to-pink-500 rounded-full flex items-center justify-center mb-4 group-hover:animate-pulse">
<svg class="w-8 h-8 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M3 4a1 1 0 011-1h12a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1V4zM3 10a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H4a1 1 0 01-1-1v-6zM14 9a1 1 0 00-1 1v6a1 1 0 001 1h2a1 1 0 001-1v-6a1 1 0 00-1-1h-2z"></path>
</svg>
</div>
<h3 class="cyber-font text-xl font-bold text-purple-400 mb-2">BLOCKCHAIN</h3>
</div>
<p class="text-gray-300 text-center mb-4">Güvenli ve şeffaf blockchain çözümleri ile dijital varlık yönetimi sağlıyoruz.</p>
<div class="flex flex-wrap gap-2 justify-center">
<span class="px-2 py-1 bg-purple-500/20 text-purple-400 rounded text-xs">Smart Contracts</span>
<span class="px-2 py-1 bg-pink-500/20 text-pink-400 rounded text-xs">DeFi</span>
<span class="px-2 py-1 bg-violet-500/20 text-violet-400 rounded text-xs">NFT</span>
</div>
</div>
<!-- Service 3: Web 3.0 -->
<div class="tech-card hologram glow-border rounded-lg p-6 hover:scale-105 transition-all duration-300 group relative overflow-hidden">
<div class="scan-line"></div>
<div class="text-center mb-4">
<div class="w-16 h-16 mx-auto bg-gradient-to-r from-green-500 to-cyan-500 rounded-full flex items-center justify-center mb-4 group-hover:animate-pulse">
<svg class="w-8 h-8 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M3 3a1 1 0 000 2v8a2 2 0 002 2h2.586l-1.293 1.293a1 1 0 101.414 1.414L10 15.414l2.293 2.293a1 1 0 001.414-1.414L12.414 15H15a2 2 0 002-2V5a1 1 0 100-2H3z"></path>
</svg>
</div>
<h3 class="cyber-font text-xl font-bold text-green-400 mb-2">WEB 3.0</h3>
</div>
<p class="text-gray-300 text-center mb-4">Merkeziyetsiz web uygulamaları ve akıllı kontratlar ile geleceğin internetini inşa ediyoruz.</p>
<div class="flex flex-wrap gap-2 justify-center">
<span class="px-2 py-1 bg-green-500/20 text-green-400 rounded text-xs">dApps</span>
<span class="px-2 py-1 bg-cyan-500/20 text-cyan-400 rounded text-xs">IPFS</span>
<span class="px-2 py-1 bg-emerald-500/20 text-emerald-400 rounded text-xs">DAO</span>
</div>
</div>
<!-- Service 4: IoT -->
<div class="tech-card hologram glow-border rounded-lg p-6 hover:scale-105 transition-all duration-300 group relative overflow-hidden">
<div class="scan-line"></div>
<div class="text-center mb-4">
<div class="w-16 h-16 mx-auto bg-gradient-to-r from-red-500 to-orange-500 rounded-full flex items-center justify-center mb-4 group-hover:animate-pulse">
<svg class="w-8 h-8 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
<h3 class="cyber-font text-xl font-bold text-orange-400 mb-2">IoT ÇÖZÜMLER</h3>
</div>
<p class="text-gray-300 text-center mb-4">Nesnelerin interneti teknolojisi ile akıllı şehir ve endüstri 4.0 çözümleri sunuyoruz.</p>
<div class="flex flex-wrap gap-2 justify-center">
<span class="px-2 py-1 bg-orange-500/20 text-orange-400 rounded text-xs">Smart City</span>
<span class="px-2 py-1 bg-red-500/20 text-red-400 rounded text-xs">Industry 4.0</span>
<span class="px-2 py-1 bg-yellow-500/20 text-yellow-400 rounded text-xs">Edge Computing</span>
</div>
</div>
<!-- Service 5: AR/VR -->
<div class="tech-card hologram glow-border rounded-lg p-6 hover:scale-105 transition-all duration-300 group relative overflow-hidden">
<div class="scan-line"></div>
<div class="text-center mb-4">
<div class="w-16 h-16 mx-auto bg-gradient-to-r from-indigo-500 to-purple-500 rounded-full flex items-center justify-center mb-4 group-hover:animate-pulse">
<svg class="w-8 h-8 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M2 6a2 2 0 012-2h6a2 2 0 012 2v6a2 2 0 01-2 2H4a2 2 0 01-2-2V6zM14.553 7.106A1 1 0 0014 8v4a1 1 0 00.553.894l2 1A1 1 0 0018 13V7a1 1 0 00-1.447-.894l-2 1z"></path>
</svg>
</div>
<h3 class="cyber-font text-xl font-bold text-indigo-400 mb-2">AR/VR</h3>
</div>
<p class="text-gray-300 text-center mb-4">Artırılmış ve sanal gerçeklik teknolojileri ile immersive deneyimler yaratıyoruz.</p>
<div class="flex flex-wrap gap-2 justify-center">
<span class="px-2 py-1 bg-indigo-500/20 text-indigo-400 rounded text-xs">Metaverse</span>
<span class="px-2 py-1 bg-purple-500/20 text-purple-400 rounded text-xs">3D Modeling</span>
<span class="px-2 py-1 bg-blue-500/20 text-blue-400 rounded text-xs">XR</span>
</div>
</div>
<!-- Service 6: Quantum -->
<div class="tech-card hologram glow-border rounded-lg p-6 hover:scale-105 transition-all duration-300 group relative overflow-hidden">
<div class="scan-line"></div>
<div class="text-center mb-4">
<div class="w-16 h-16 mx-auto bg-gradient-to-r from-teal-500 to-cyan-500 rounded-full flex items-center justify-center mb-4 group-hover:animate-pulse">
<svg class="w-8 h-8 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M3 4a1 1 0 011-1h12a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1V4zM3 10a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H4a1 1 0 01-1-1v-6zM14 9a1 1 0 00-1 1v6a1 1 0 001 1h2a1 1 0 001-1v-6a1 1 0 00-1-1h-2z"></path>
</svg>
</div>
<h3 class="cyber-font text-xl font-bold text-teal-400 mb-2">QUANTUM</h3>
</div>
<p class="text-gray-300 text-center mb-4">Kuantum bilişim teknolojileri ile süper hızlı hesaplama ve güvenlik çözümleri geliştiriyoruz.</p>
<div class="flex flex-wrap gap-2 justify-center">
<span class="px-2 py-1 bg-teal-500/20 text-teal-400 rounded text-xs">Quantum Computing</span>
<span class="px-2 py-1 bg-cyan-500/20 text-cyan-400 rounded text-xs">Cryptography</span>
<span class="px-2 py-1 bg-blue-500/20 text-blue-400 rounded text-xs">Algorithms</span>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="cyber-font text-3xl md:text-5xl font-bold mb-4 glow-text">PROJELERİMİZ</h2>
<p class="text-xl text-gray-400">Geleceği şekillendiren teknolojik çözümler</p>
<div class="w-32 h-1 bg-gradient-to-r from-cyan-500 to-purple-500 mx-auto mt-4"></div>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
<!-- Project 1: Studio Space -->
<div class="tech-card hologram glow-border rounded-lg overflow-hidden hover:scale-105 transition-all duration-300 group">
<div class="h-48 bg-gradient-to-br from-indigo-600 via-purple-600 to-pink-600 flex items-center justify-center relative overflow-hidden">
<div class="scan-line"></div>
<div class="text-center z-10">
<div class="w-16 h-16 mx-auto bg-white/20 rounded-full flex items-center justify-center mb-4 group-hover:animate-pulse">
<svg class="w-8 h-8 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M4 3a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V5a2 2 0 00-2-2H4zm12 12H4l4-8 3 6 2-4 3 6z"/>
</svg>
</div>
<h3 class="cyber-font text-2xl font-bold text-white">STUDIO SPACE</h3>
</div>
</div>
<div class="p-6">
<p class="text-gray-300 mb-4">Yapay zeka kullanarak OGTAL projesi formatı ile görsel oluşturma ve geliştirme uygulaması. AI destekli tasarım ve otomatik optimizasyon.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-indigo-500/20 text-indigo-400 rounded-full text-sm">AI Design</span>
<span class="px-3 py-1 bg-purple-500/20 text-purple-400 rounded-full text-sm">OGTAL Format</span>
<span class="px-3 py-1 bg-pink-500/20 text-pink-400 rounded-full text-sm">Visual Creation</span>
</div>
<a href="https://ogtal.com" target="_blank" class="cyber-button w-full py-2 text-indigo-400 rounded group inline-block text-center">
<span class="relative z-10">Projeyi Keşfet</span>
</a>
</div>
</div>
<!-- Project 2: Neural Core -->
<div class="tech-card hologram glow-border rounded-lg overflow-hidden hover:scale-105 transition-all duration-300 group">
<div class="h-48 bg-gradient-to-br from-cyan-600 to-purple-600 flex items-center justify-center relative overflow-hidden">
<div class="scan-line"></div>
<div class="text-center z-10">
<div class="w-16 h-16 mx-auto bg-white/20 rounded-full flex items-center justify-center mb-4 group-hover:animate-spin">
<svg class="w-8 h-8 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
</div>
<h3 class="cyber-font text-2xl font-bold text-white">NEURAL CORE</h3>
</div>
</div>
<div class="p-6">
<p class="text-gray-300 mb-4">Yapay sinir ağları tabanlı karar destek sistemi. Büyük veri analizi ile gerçek zamanlı öngörüler sağlar.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-cyan-500/20 text-cyan-400 rounded-full text-sm">AI</span>
<span class="px-3 py-1 bg-purple-500/20 text-purple-400 rounded-full text-sm">Machine Learning</span>
<span class="px-3 py-1 bg-green-500/20 text-green-400 rounded-full text-sm">Big Data</span>
</div>
<button class="cyber-button w-full py-2 text-cyan-400 rounded group">
<span class="relative z-10">Detayları Gör</span>
</button>
</div>
</div>
<!-- Project 3: Crypto Vault -->
<div class="tech-card hologram glow-border rounded-lg overflow-hidden hover:scale-105 transition-all duration-300 group">
<div class="h-48 bg-gradient-to-br from-purple-600 to-pink-600 flex items-center justify-center relative overflow-hidden">
<div class="scan-line"></div>
<div class="text-center z-10">
<div class="w-16 h-16 mx-auto bg-white/20 rounded-full flex items-center justify-center mb-4 group-hover:animate-pulse">
<svg class="w-8 h-8 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M3 4a1 1 0 011-1h12a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1V4zM3 10a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H4a1 1 0 01-1-1v-6zM14 9a1 1 0 00-1 1v6a1 1 0 001 1h2a1 1 0 001-1v-6a1 1 0 00-1-1h-2z"/>
</svg>
</div>
<h3 class="cyber-font text-2xl font-bold text-white">CRYPTO VAULT</h3>
</div>
</div>
<div class="p-6">
<p class="text-gray-300 mb-4">Blockchain tabanlı güvenli dijital varlık yönetim platformu. Multi-signature ve cold storage desteği.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-purple-500/20 text-purple-400 rounded-full text-sm">Blockchain</span>
<span class="px-3 py-1 bg-pink-500/20 text-pink-400 rounded-full text-sm">Cryptocurrency</span>
<span class="px-3 py-1 bg-blue-500/20 text-blue-400 rounded-full text-sm">Security</span>
</div>
<button class="cyber-button w-full py-2 text-purple-400 rounded group">
<span class="relative z-10">Detayları Gör</span>
</button>
</div>
</div>
<!-- Project 4: Meta Space -->
<div class="tech-card hologram glow-border rounded-lg overflow-hidden hover:scale-105 transition-all duration-300 group">
<div class="h-48 bg-gradient-to-br from-green-600 to-cyan-600 flex items-center justify-center relative overflow-hidden">
<div class="scan-line"></div>
<div class="text-center z-10">
<div class="w-16 h-16 mx-auto bg-white/20 rounded-full flex items-center justify-center mb-4 group-hover:animate-bounce">
<svg class="w-8 h-8 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M3 3a1 1 0 000 2v8a2 2 0 002 2h2.586l-1.293 1.293a1 1 0 101.414 1.414L10 15.414l2.293 2.293a1 1 0 001.414-1.414L12.414 15H15a2 2 0 002-2V5a1 1 0 100-2H3z"/>
</svg>
</div>
<h3 class="cyber-font text-2xl font-bold text-white">META SPACE</h3>
</div>
</div>
<div class="p-6">
<p class="text-gray-300 mb-4">Sanal gerçeklik tabanlı metaverse platformu. 3D sosyal etkileşim ve dijital ekonomi ekosistemi.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-green-500/20 text-green-400 rounded-full text-sm">VR</span>
<span class="px-3 py-1 bg-cyan-500/20 text-cyan-400 rounded-full text-sm">Metaverse</span>
<span class="px-3 py-1 bg-teal-500/20 text-teal-400 rounded-full text-sm">3D</span>
</div>
<button class="cyber-button w-full py-2 text-green-400 rounded group">
<span class="relative z-10">Detayları Gör</span>
</button>
</div>
</div>
<!-- Project 5: Quantum Net -->
<div class="tech-card hologram glow-border rounded-lg overflow-hidden hover:scale-105 transition-all duration-300 group">
<div class="h-48 bg-gradient-to-br from-orange-600 to-red-600 flex items-center justify-center relative overflow-hidden">
<div class="scan-line"></div>
<div class="text-center z-10">
<div class="w-16 h-16 mx-auto bg-white/20 rounded-full flex items-center justify-center mb-4 group-hover:animate-ping">
<svg class="w-8 h-8 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/>
</svg>
</div>
<h3 class="cyber-font text-2xl font-bold text-white">QUANTUM NET</h3>
</div>
</div>
<div class="p-6">
<p class="text-gray-300 mb-4">Kuantum şifreleme teknolojisi ile ultra güvenli iletişim ağı. Hack-proof veri transferi sağlar.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-orange-500/20 text-orange-400 rounded-full text-sm">Quantum</span>
<span class="px-3 py-1 bg-red-500/20 text-red-400 rounded-full text-sm">Encryption</span>
<span class="px-3 py-1 bg-yellow-500/20 text-yellow-400 rounded-full text-sm">Network</span>
</div>
<button class="cyber-button w-full py-2 text-orange-400 rounded group">
<span class="relative z-10">Detayları Gör</span>
</button>
</div>
</div>
<!-- Project 6: Braver Client -->
<div class="tech-card hologram glow-border rounded-lg overflow-hidden hover:scale-105 transition-all duration-300 group">
<div class="h-48 bg-gradient-to-br from-pink-600 to-red-600 flex items-center justify-center relative overflow-hidden">
<div class="scan-line"></div>
<div class="text-center z-10">
<div class="w-16 h-16 mx-auto bg-white/20 rounded-full flex items-center justify-center mb-4 group-hover:animate-ping">
<svg class="w-8 h-8 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/>
</svg>
</div>
<h3 class="cyber-font text-2xl font-bold text-white">BRAVER CLİENT</h3>
</div>
</div>
<div class="p-6">
<p class="text-gray-300 mb-4">Kurulumundan sonra kendi üretir ve gelişir, Otomatik olarak işleyen sistem, Eserinizi ölümsüzleştirebilirsiniz. </p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-red-500/20 text-orange-400 rounded-full text-sm">Ogtal</span>
<span class="px-3 py-1 bg-pink-500/20 text-red-400 rounded-full text-sm">Matrix</span>
<span class="px-3 py-1 bg-yellow-500/20 text-yellow-400 rounded-full text-sm">Quadratic</span>
</div>
<button class="cyber-button w-full py-2 text-pink-400 rounded group">
<span class="relative z-10">Yakında!</span>
</button>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="cyber-font text-3xl md:text-5xl font-bold mb-4 glow-text">HAKKIMIZDA</h2>
<p class="text-xl text-gray-400">Teknolojinin sınırlarını zorlayan vizyoner ekip</p>
<div class="w-32 h-1 bg-gradient-to-r from-cyan-500 to-purple-500 mx-auto mt-4"></div>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div>
<h3 class="cyber-font text-2xl font-bold text-cyan-400 mb-6 glow-text">GELECEĞİN TEKNOLOJİSİNİ BUGÜN İNŞA EDİYORUZ</h3>
<p class="text-gray-300 text-lg mb-6 leading-relaxed">
StarTeknoloji.space olarak, yapay zeka, blockchain, kuantum bilişim ve metaverse teknolojilerinde
öncü çözümler geliştiren bir teknoloji şirketiyiz. Misyonumuz, dijital dönüşümün ötesine geçerek
insanlığın teknolojik evriminde rol oynamaktır.
</p>
<p class="text-gray-300 text-lg mb-8 leading-relaxed">
Uzman ekibimiz, en son teknolojileri kullanarak işletmelerin ve bireylerin dijital geleceğe
hazırlanmasına yardımcı oluyor. Her proje, inovasyonun ve mükemmelliğin bir yansımasıdır.
</p>
<div class="grid grid-cols-2 gap-6">
<div class="text-center tech-card rounded-lg p-4">
<div class="cyber-font text-3xl font-bold text-cyan-400 mb-2 counter" data-target="4">0</div>
<div class="text-gray-400">Tamamlanan Proje</div>
</div>
<div class="text-center tech-card rounded-lg p-4">
<div class="cyber-font text-3xl font-bold text-purple-400 mb-2 counter" data-target="25">1</div>
<div class="text-gray-400">Uzman Ekip</div>
</div>
<div class="text-center tech-card rounded-lg p-4">
<div class="cyber-font text-3xl font-bold text-green-400 mb-2 counter" data-target="8">32</div>
<div class="text-gray-400">Yıllık Deneyim</div>
</div>
<div class="text-center tech-card rounded-lg p-4">
<div class="cyber-font text-3xl font-bold text-orange-400 mb-2">100%</div>
<div class="text-gray-400">Müşteri Memnuniyeti</div>
</div>
</div>
</div>
<div class="relative">
<div class="tech-card hologram glow-border rounded-lg p-8 text-center relative overflow-hidden">
<div class="scan-line"></div>
<div class="mb-6">
<div class="w-32 h-32 mx-auto bg-gradient-to-r from-cyan-500 via-purple-500 to-pink-500 rounded-full flex items-center justify-center floating neon-border">
<svg class="w-16 h-16 text-white" fill="currentColor" viewBox="0 0 20 20">
<path d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
</div>
</div>
<h4 class="cyber-font text-xl font-bold text-cyan-400 mb-4 glow-text">VİZYONUMUZ</h4>
<p class="text-gray-300 mb-6">
Teknolojinin gücünü insanlığın hizmetine sunarak, daha akıllı, güvenli ve sürdürülebilir
bir dijital gelecek inşa etmek.
</p>
<!-- Tech Timeline -->
<div class="space-y-4">
<div class="flex items-center justify-between text-sm tech-card rounded p-2">