-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2310 lines (2018 loc) · 128 KB
/
index.html
File metadata and controls
2310 lines (2018 loc) · 128 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" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Batuhan Ozer | Robotics Engineer & Software Developer</title>
<meta name="description"
content="Portfolio of Batuhan Ozer - Robotics Engineer specializing in quadruped robots, autonomous underwater vehicles, computer vision and software development.">
<link href="./styles.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Syne:wght@400;500;600;700;800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* ==== BASE RESET & VARS ==== */
:root {
--cursor-size: 20px;
}
body {
background-color: #050507;
color: #e2e8f0;
overflow-x: hidden;
}
@media (min-width: 768px) {
body {
cursor: none;
}
}
/* ==== CUSTOM CURSOR ==== */
.cursor-dot {
width: 8px;
height: 8px;
background: white;
position: fixed;
top: 0;
left: 0;
border-radius: 50%;
pointer-events: none;
z-index: 9990;
mix-blend-mode: difference;
transition: opacity 0.3s;
}
.cursor-circle {
width: 40px;
height: 40px;
border: 1px solid rgba(255, 255, 255, 0.5);
position: fixed;
top: 0;
left: 0;
border-radius: 50%;
pointer-events: none;
z-index: 9989;
transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s;
}
/* Hover State for Cursor */
body.hovering .cursor-circle {
width: 60px;
height: 60px;
background-color: rgba(59, 130, 246, 0.1);
border-color: rgba(59, 130, 246, 0.3);
}
/* ==== SCROLLBAR ==== */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #050507;
}
::-webkit-scrollbar-thumb {
background: #333;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* ==== NOISE TEXTURE ==== */
.noise-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 999;
pointer-events: none;
opacity: 0.05;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
/* ==== UTILITIES ==== */
.text-gradient {
background: linear-gradient(135deg, #60A5FA 0%, #D946EF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.glass-panel {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.05);
}
/* Spotlight Effect */
.spotlight-card {
position: relative;
overflow: hidden;
background: #0E0E11;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.spotlight-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
opacity: 0;
transition: opacity 0.5s;
pointer-events: none;
z-index: 2;
}
.spotlight-card:hover::before {
opacity: 1;
}
/* ==== MODAL ANIMATIONS ==== */
.modal {
opacity: 0;
visibility: hidden;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal.active {
opacity: 1;
visibility: visible;
}
.modal-content {
transform: scale(0.95) translateY(20px);
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal.active .modal-content {
transform: scale(1) translateY(0);
}
/* Show cursor in modals on desktop */
@media (min-width: 768px) {
.modal.active {
cursor: auto;
}
.modal.active * {
cursor: auto;
}
/* Hide custom cursor when modal is active */
body:has(.modal.active) .cursor-dot,
body:has(.modal.active) .cursor-circle {
opacity: 0;
pointer-events: none;
}
/* Re-enable normal cursor on modal */
.modal.active~* {
cursor: auto !important;
}
}
/* Lenis Setup */
html.lenis {
height: auto;
}
.lenis.lenis-smooth {
scroll-behavior: auto;
}
/* ==== LIGHT MODE STYLES ==== */
html:not(.dark) body {
background-color: #f8fafc;
color: #1e293b;
}
html:not(.dark) .bg-bg {
background-color: #f8fafc;
}
html:not(.dark) .bg-surface,
html:not(.dark) .bg-surface\/50,
html:not(.dark) .bg-surface\/30 {
background-color: #f1f5f9;
}
html:not(.dark) .spotlight-card {
background: #ffffff;
border-color: rgba(0, 0, 0, 0.1);
}
html:not(.dark) .glass-panel {
background: rgba(255, 255, 255, 0.8);
border-color: rgba(0, 0, 0, 0.1);
}
html:not(.dark) .text-white {
color: #1e293b;
}
html:not(.dark) .text-slate-400,
html:not(.dark) .text-slate-500 {
color: #64748b;
}
html:not(.dark) .text-slate-300 {
color: #475569;
}
html:not(.dark) .border-white\/10,
html:not(.dark) .border-white\/5 {
border-color: rgba(0, 0, 0, 0.1);
}
html:not(.dark) .bg-white\/5,
html:not(.dark) .bg-white\/10 {
background-color: rgba(0, 0, 0, 0.05);
}
html:not(.dark) .modal-content {
background-color: #ffffff;
}
html:not(.dark) .cursor-dot {
background: #1e293b;
mix-blend-mode: normal;
}
html:not(.dark) .cursor-circle {
border-color: rgba(0, 0, 0, 0.3);
}
html:not(.dark) body.hovering .cursor-circle {
background-color: rgba(59, 130, 246, 0.1);
border-color: rgba(59, 130, 246, 0.3);
}
html:not(.dark) ::-webkit-scrollbar-track {
background: #f8fafc;
}
html:not(.dark) ::-webkit-scrollbar-thumb {
background: #cbd5e1;
}
/* ==== SCROLL PROGRESS INDICATOR ==== */
.scroll-progress {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 3px;
background: linear-gradient(90deg, #3B82F6, #D946EF, #EC4899);
z-index: 9999;
transition: width 0.1s ease-out;
}
/* ==== MOBILE FIXES ==== */
@media (max-width: 1023px) {
.spotlight-card {
min-height: auto;
}
.nav-container {
padding: 0.5rem 1rem;
}
html:not(.dark) #mobile-menu {
background-color: #f8fafc;
}
html:not(.dark) .mobile-link {
color: #1e293b;
}
html:not(.dark) .mobile-link.text-primary {
color: #3B82F6;
}
}
/* Hero reveal text - CSS Animation */
.reveal-text {
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 0.8s ease-out forwards;
}
/* Stagger delays */
.reveal-text:nth-of-type(1) { animation-delay: 0.1s; }
.reveal-text:nth-of-type(2) { animation-delay: 0.2s; }
.reveal-text:nth-of-type(3) { animation-delay: 0.3s; }
.reveal-text:nth-of-type(4) { animation-delay: 0.4s; }
.reveal-text:nth-of-type(5) { animation-delay: 0.5s; }
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
/* Ensure modals work on mobile */
@media (max-width: 768px) {
.modal-content {
max-width: 95vw;
max-height: 85vh;
padding: 1.5rem;
}
/* Disable heavy animations on mobile for performance */
#hero>div[class*="blur-"] {
opacity: 0.3;
}
.noise-overlay {
opacity: 0.015;
}
/* Improve text readability on mobile */
#hero h1 {
font-size: 2.5rem;
line-height: 1.2;
}
#hero p {
font-size: 1rem;
}
}
/* ==== ENHANCED LIGHT MODE ==== */
html:not(.dark) .spotlight-card {
background: #ffffff;
box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(0, 0, 0, 0.05);
}
html:not(.dark) .glass-panel {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(12px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
html:not(.dark) #hero h1 {
color: #0f172a;
}
html:not(.dark) .text-gradient {
background: linear-gradient(135deg, #2563EB 0%, #C026D3 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
html:not(.dark) .bg-surface\/50 {
background-color: #f1f5f9;
}
html:not(.dark) .modal-content {
background-color: #ffffff;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
html:not(.dark) .bg-primary .text-white {
color: #ffffff !important;
}
html:not(.dark) .bg-primary {
color: #ffffff;
}
/* Force white text for dark components in light mode */
.text-always-white {
color: #ffffff !important;
}
/* Honours Cards - Adaptive Overlay */
.honours-overlay {
background-color: rgba(255, 255, 255, 0.9);
}
.dark .honours-overlay {
background-color: rgba(15, 23, 42, 0.9);
}
.group:hover .honours-overlay {
background-color: rgba(255, 255, 255, 0.8);
}
.dark .group:hover .honours-overlay {
background-color: rgba(15, 23, 42, 0.8);
}
</style>
</head>
<body class="selection:bg-primary selection:text-white">
<div class="scroll-progress" id="scroll-progress"></div>
<div class="cursor-dot hidden md:block"></div>
<div class="cursor-circle hidden md:block"></div>
<div class="noise-overlay"></div>
<nav class="fixed top-0 w-full z-[9998] px-6 py-6 transition-all duration-300 border-b border-transparent"
id="navbar">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<a href="#"
class="font-display font-bold text-xl tracking-tight z-50 hover-target relative group flex items-center gap-2">
<span class="text-primary text-2xl"></></span> Batuhan Ozer
</a>
<div
class="hidden lg:flex items-center gap-1 p-1 bg-white/5 backdrop-blur-xl border border-white/10 rounded-full">
<a href="#about"
class="nav-link px-6 py-2 text-sm text-slate-400 hover:text-white transition-colors hover-target">About</a>
<a href="#expertise"
class="nav-link px-6 py-2 text-sm text-slate-400 hover:text-white transition-colors hover-target">Expertise</a>
<a href="#projects"
class="nav-link px-6 py-2 text-sm text-slate-400 hover:text-white transition-colors hover-target">Projects</a>
<a href="#experience"
class="nav-link px-6 py-2 text-sm text-slate-400 hover:text-white transition-colors hover-target">Experience</a>
<a href="#awards"
class="nav-link px-6 py-2 text-sm text-slate-400 hover:text-white transition-colors hover-target">Awards</a>
<a href="hacker/index.html"
class="px-5 py-2 text-sm border border-white/10 rounded-full text-slate-300 hover:text-white hover:bg-white/10 transition-all hover-target flex items-center gap-2"
aria-label="Switch to hacker themed version">
<i class="fas fa-terminal text-sm"></i>
<span>Hacker Theme</span>
</a>
<button id="theme-toggle"
class="hidden lg:block px-4 py-2 text-sm text-slate-400 hover:text-white transition-colors hover-target"
aria-label="Toggle theme">
<i class="fas fa-sun hidden dark:block"></i>
<i class="fas fa-moon block dark:hidden"></i>
</button>
<a href="#contact"
class="px-6 py-2 text-sm bg-white/10 rounded-full text-white hover:bg-primary transition-all hover-target ml-2">Contact
Me</a>
</div>
<button class="lg:hidden z-50 text-white hover-target p-2" id="mobile-menu-btn">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</nav>
<div id="mobile-menu"
class="fixed inset-0 bg-bg z-[9997] flex flex-col items-center justify-center gap-8 opacity-0 pointer-events-none transition-opacity duration-300 lg:hidden">
<a href="#about" class="text-2xl font-display font-bold mobile-link">About</a>
<a href="#expertise" class="text-2xl font-display font-bold mobile-link">Expertise</a>
<a href="#projects" class="text-2xl font-display font-bold mobile-link">Projects</a>
<a href="#experience" class="text-2xl font-display font-bold mobile-link">Experience</a>
<a href="#awards" class="text-2xl font-display font-bold mobile-link">Awards</a>
<a href="hacker/index.html"
class="text-2xl font-display font-bold mobile-link text-primary flex items-center gap-2">
<i class="fas fa-terminal text-base"></i>
<span>Hacker Theme</span>
</a>
<a href="#contact" class="text-2xl font-display font-bold text-primary mobile-link">Contact</a>
<button id="mobile-theme-toggle"
class="mt-4 px-6 py-3 rounded-full border border-white/20 text-slate-400 hover:text-white transition-colors">
<i class="fas fa-sun mr-2 hidden dark:inline"></i>
<i class="fas fa-moon mr-2 inline dark:hidden"></i>
<span class="dark:hidden">Dark Mode</span>
<span class="hidden dark:inline">Light Mode</span>
</button>
</div>
<main>
<section id="hero"
class="min-h-screen flex flex-col justify-center items-center relative px-6 pt-20 overflow-hidden">
<div
class="absolute top-[-20%] left-[-10%] w-[50vw] h-[50vw] bg-primary/20 rounded-full blur-[120px] animate-pulse">
</div>
<div class="absolute bottom-[-10%] right-[-10%] w-[40vw] h-[40vw] bg-accent/10 rounded-full blur-[100px]">
</div>
<div class="max-w-5xl mx-auto text-center z-10">
<div
class="inline-block mb-6 px-4 py-1.5 rounded-full border border-white/10 bg-white/5 backdrop-blur-md">
<span class="text-primary text-sm font-mono tracking-widest uppercase">Robotics Engineer & Software
Developer</span>
</div>
<h1
class="font-display font-bold text-5xl md:text-7xl lg:text-8xl leading-[1.1] mb-8 tracking-tight reveal-text">
Building the <br>
<span class="text-gradient">Autonomous</span> Future
</h1>
<p
class="max-w-2xl mx-auto text-slate-400 text-lg md:text-xl leading-relaxed mb-10 reveal-text delay-100">
Software Engineering Coordinator at <strong class="text-white">LA2 Dynamics</strong>.
Building quadruped robots with MPC and Reinforcement Learning.
<span class="text-white">4x International Competition Winner</span> (Roboboat, Singapore AUV).
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center items-center reveal-text delay-200">
<a href="#projects"
class="group relative px-8 py-4 bg-primary text-white font-semibold rounded-full overflow-hidden hover-target shadow-lg shadow-primary/25">
<span class="relative z-10 flex items-center gap-2"><i class="fas fa-project-diagram"></i> View
Projects</span>
<div
class="absolute inset-0 bg-white/20 transform translate-y-full transition-transform duration-300 group-hover:translate-y-0">
</div>
</a>
<a href="#contact"
class="group px-8 py-4 border border-white/20 rounded-full hover:bg-white/5 transition-colors hover-target flex items-center gap-2 text-white">
<i class="fas fa-envelope"></i> Contact Me
</a>
</div>
<!-- Skills Bar -->
<div class="mt-16 w-full max-w-5xl glass-panel rounded-2xl p-6 reveal-text delay-300 mx-auto">
<div class="flex flex-wrap justify-center gap-6 md:gap-12 text-slate-400">
<div class="flex items-center gap-2 hover:text-white transition-colors group">
<i
class="fab fa-cuttlefish text-xl text-primary group-hover:scale-110 transition-transform"></i>
<span class="font-medium">C/C++</span>
</div>
<div class="flex items-center gap-2 hover:text-white transition-colors group">
<i
class="fab fa-python text-xl text-primary group-hover:scale-110 transition-transform"></i>
<span class="font-medium">Python</span>
</div>
<div class="flex items-center gap-2 hover:text-white transition-colors group">
<i class="fas fa-robot text-xl text-primary group-hover:scale-110 transition-transform"></i>
<span class="font-medium">ROS</span>
</div>
<div class="flex items-center gap-2 hover:text-white transition-colors group">
<i
class="fab fa-docker text-xl text-primary group-hover:scale-110 transition-transform"></i>
<span class="font-medium">Docker</span>
</div>
<div class="flex items-center gap-2 hover:text-white transition-colors group">
<i
class="fas fa-microchip text-xl text-primary group-hover:scale-110 transition-transform"></i>
<span class="font-medium">Embedded</span>
</div>
<div class="flex items-center gap-2 hover:text-white transition-colors group">
<i class="fas fa-eye text-xl text-primary group-hover:scale-110 transition-transform"></i>
<span class="font-medium">Perception</span>
</div>
<div class="flex items-center gap-2 hover:text-white transition-colors group">
<i class="fas fa-cubes text-xl text-primary group-hover:scale-110 transition-transform"></i>
<span class="font-medium">3D Design</span>
</div>
</div>
</div>
</div>
<div class="absolute bottom-10 left-1/2 -translate-x-1/2 animate-bounce opacity-50">
<i class="fas fa-chevron-down text-xl"></i>
</div>
</section>
<section id="about" class="py-24 px-6 relative">
<div class="max-w-7xl mx-auto">
<div class="flex flex-col lg:flex-row gap-16">
<div class="lg:w-2/5 lg:sticky lg:top-24 h-fit">
<h2 class="font-display text-4xl md:text-5xl font-bold mb-8">About <span
class="text-slate-500">Me</span></h2>
<div class="space-y-6 text-slate-400 text-lg leading-relaxed">
<p>
I'm a Robotics Engineer and Software Developer driven by the challenge of creating
intelligent, autonomous systems. My focus is on building robust software and integrating
complex hardware to bring advanced robotic capabilities to life.
</p>
<p>
Currently, at <strong class="text-white">LA2 Dynamics</strong>, I coordinate software
development efforts, concentrating on enhancing the locomotion, perception, and overall
intelligence of quadruped robots through well-architected software solutions.
</p>
<p>
Previously, leading the <strong class="text-white">ITU AUV Team</strong> provided
invaluable experience in managing technical projects and fostering collaboration,
culminating in international competition victories. I also founded <strong
class="text-white">Poly Design 3D</strong>, creating tools for 3D artists.
</p>
<div class="pt-6 flex gap-4">
<a href="assets/batuhan_resume_020925.pdf"
class="text-primary hover:text-white transition-colors hover-target font-medium flex items-center gap-2">
<i class="fas fa-download"></i> Download Resume
</a>
</div>
</div>
</div>
<div class="lg:w-3/5 grid grid-cols-1 sm:grid-cols-2 gap-4">
<div class="spotlight-card p-6 rounded-2xl">
<i class="fab fa-cuttlefish text-3xl text-primary mb-4"></i>
<h3 class="text-xl font-bold mb-4 font-display">Languages & Core</h3>
<div class="flex flex-wrap gap-2">
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fab fa-cuttlefish"></i> C / C++</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fab fa-python"></i> Python</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fa-brands fa-microsoft"></i> C#</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fab fa-js"></i> JavaScript</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fa-solid fa-terminal"></i> Maxscript</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fab fa-linux"></i> Linux / Bash</span>
</div>
</div>
<div class="spotlight-card p-6 rounded-2xl">
<i class="fas fa-robot text-3xl text-accent mb-4"></i>
<h3 class="text-xl font-bold mb-4 font-display">Robotics & AI</h3>
<div class="flex flex-wrap gap-2">
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-robot"></i> ROS /
ROS2</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-cogs"></i> Control Systems MPC /
WBC</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-brain"></i> Isaac
Lab</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-eye"></i> Computer
Vision</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-microchip"></i> Embedded
(STM32)</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-layer-group"></i> Sensor
Fusion</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-network-wired"></i> Networking
</span>
</div>
</div>
<div class="spotlight-card p-6 rounded-2xl">
<i class="fas fa-tools text-3xl text-green-400 mb-4"></i>
<h3 class="text-xl font-bold mb-4 font-display">Tools & Platforms</h3>
<div class="flex flex-wrap gap-2">
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fab fa-git-alt"></i> Git
/
GitLab</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fab fa-docker"></i> Docker</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-terminal"></i> CI/CD</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-cubes"></i> 3ds
Max
SDK</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-cubes"></i> Blender
API</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-gear"></i> Qt
Framework</span>
</div>
</div>
<div class="spotlight-card p-6 rounded-2xl">
<i class="fas fa-lightbulb text-3xl text-yellow-400 mb-4"></i>
<h3 class="text-xl font-bold mb-4 font-display">Concepts</h3>
<div class="flex flex-wrap gap-2">
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-sitemap"></i> System
Architecture</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-tasks"></i> Agile
/
Scrum</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-users"></i> Team
Leadership</span>
<span
class="px-3 py-1 bg-white/5 rounded-lg text-sm border border-white/5 flex items-center gap-1.5"><i
class="fas fa-lightbulb"></i> Problem
Solving</span>
</div>
</div>
<div class="spotlight-card p-6 rounded-2xl md:col-span-2 bg-surface2/50">
<h3 class="text-xl font-bold mb-4 font-display flex items-center gap-2"><i
class="fas fa-graduation-cap text-primary"></i> Education</h3>
<div class="space-y-4">
<div>
<div class="flex justify-between items-baseline">
<h4 class="font-bold text-white">B.Sc. Control & Automation Engineering</h4>
<span class="text-sm text-slate-500">2018 - 2024</span>
</div>
<p class="text-slate-400 text-sm">Istanbul Technical University | GPA: 3.26/4.00</p>
<p class="text-slate-500 text-xs italic mt-1">Thesis: Modeling, Control and
Navigation of Underwater Vehicles</p>
</div>
<div class="w-full h-px bg-white/10"></div>
<div>
<div class="flex justify-between items-baseline">
<h4 class="font-bold text-white">High School Diploma</h4>
<span class="text-sm text-slate-500">2014 - 2018</span>
</div>
<p class="text-slate-400 text-sm">Private Bilfen Science High School | GPA: 96/100
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="expertise" class="py-24 px-6 bg-surface/50">
<div class="max-w-7xl mx-auto">
<div class="mb-16">
<h2 class="font-display text-4xl md:text-5xl font-bold">Areas of <span
class="text-gradient">Expertise</span></h2>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div
class="spotlight-card p-8 rounded-3xl group transition-all duration-300 hover:border-primary/50">
<div
class="w-14 h-14 bg-primary/10 rounded-xl flex items-center justify-center text-primary text-2xl mb-6">
<i class="fas fa-paw"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-white">Quadruped Robotics</h3>
<p class="text-slate-400 text-sm leading-relaxed mb-6">
Developing advanced locomotion using nonlinear MPC and reinforcement learning (PPO) trained
in NVIDIA Isaac Lab with sim2real transfer. Full-stack from embedded STM32 to high-level
control.
</p>
<div class="flex flex-wrap gap-2">
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">C++</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">MPC</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Isaac
Lab</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">PPO</span>
</div>
</div>
<div
class="spotlight-card p-8 rounded-3xl group transition-all duration-300 hover:border-cyan-500/50">
<div
class="w-14 h-14 bg-cyan-500/10 rounded-xl flex items-center justify-center text-cyan-400 text-2xl mb-6">
<i class="fas fa-water"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-white">Underwater Robotics</h3>
<p class="text-slate-400 text-sm leading-relaxed mb-6">
Building autonomous underwater vehicles with robust navigation, state-machine control, and
perception systems. Specializing in underwater computer vision and sensor fusion.
</p>
<div class="flex flex-wrap gap-2">
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Python</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">OpenCV</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Control</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Sensor
Fusion</span>
</div>
</div>
<div
class="spotlight-card p-8 rounded-3xl group transition-all duration-300 hover:border-purple-500/50">
<div
class="w-14 h-14 bg-purple-500/10 rounded-xl flex items-center justify-center text-purple-400 text-2xl mb-6">
<i class="fas fa-eye"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-white">Computer Vision & AI</h3>
<p class="text-slate-400 text-sm leading-relaxed mb-6">
Implementing vision systems including YOLO-based object detection, visual odometry, stereo
vision, and point cloud processing.
</p>
<div class="flex flex-wrap gap-2">
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">CUDA</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">YOLO</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">ML</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Point
Cloud</span>
</div>
</div>
<div
class="spotlight-card p-8 rounded-3xl group transition-all duration-300 hover:border-orange-500/50">
<div
class="w-14 h-14 bg-orange-500/10 rounded-xl flex items-center justify-center text-orange-400 text-2xl mb-6">
<i class="fas fa-cubes"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-white">3D Software Dev</h3>
<p class="text-slate-400 text-sm leading-relaxed mb-6">
Creating plugins/tools for Autodesk 3ds Max and Blender, enhancing artist workflows and
automating tasks.
</p>
<div class="flex flex-wrap gap-2">
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">C++</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Python</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Maxscript</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Graphics</span>
</div>
</div>
<div
class="spotlight-card p-8 rounded-3xl group transition-all duration-300 hover:border-gray-500/50">
<div
class="w-14 h-14 bg-gray-500/10 rounded-xl flex items-center justify-center text-gray-400 text-2xl mb-6">
<i class="fas fa-server"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-white">DevOps & Infra</h3>
<p class="text-slate-400 text-sm leading-relaxed mb-6">
Setting up offline GitLab instances, CI/CD pipelines, and Dockerized environments for
efficient software development.
</p>
<div class="flex flex-wrap gap-2">
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Docker</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Git</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">CI/CD</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Linux</span>
</div>
</div>
<div
class="spotlight-card p-8 rounded-3xl group transition-all duration-300 hover:border-red-500/50">
<div
class="w-14 h-14 bg-red-500/10 rounded-xl flex items-center justify-center text-red-400 text-2xl mb-6">
<i class="fas fa-users"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-white">Team Leadership</h3>
<p class="text-slate-400 text-sm leading-relaxed mb-6">
Leading technical teams in competitive environments, coordinating between disciplines, and
managing projects from conception to completion.
</p>
<div class="flex flex-wrap gap-2">
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Management</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Coordination</span>
<span
class="px-2 py-1 bg-white/5 rounded text-xs text-slate-300 border border-white/5">Leadership</span>
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="py-24 px-6">
<div class="max-w-7xl mx-auto">
<div class="flex flex-col md:flex-row md:items-end justify-between mb-16">
<h2 class="font-display text-4xl md:text-5xl font-bold">Featured <span
class="text-slate-500">Projects</span></h2>
<p class="text-slate-400 mt-4 md:mt-0 text-sm">Click cards for technical details</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
<!-- Project 1: Sarbot -->
<div class="spotlight-card rounded-3xl overflow-hidden group hover:border-primary/50 transition-colors duration-500 cursor-pointer flex flex-col h-full hover-target"
onclick="openModal('modal-quadruped')">
<!-- Header / Banner -->
<div
class="h-48 bg-gradient-to-br from-blue-50 to-slate-100 dark:from-blue-900/20 dark:to-slate-900 relative flex items-center justify-center overflow-hidden shrink-0">
<div
class="absolute inset-0 bg-white/5 opacity-0 group-hover:opacity-10 transition-opacity duration-500">
</div>
<i
class="fas fa-robot text-6xl text-primary/20 dark:text-primary/50 group-hover:scale-110 group-hover:text-primary transition-all duration-500"></i>
<div
class="absolute top-4 right-4 px-3 py-1 bg-green-500/20 text-green-600 dark:text-green-400 text-xs font-bold rounded-full border border-green-500/20 backdrop-blur-sm">
Active Development
</div>
</div>
<!-- Content -->
<div class="p-8 flex-1 flex flex-col">
<h3
class="text-2xl font-display font-bold text-slate-900 dark:text-white mb-3 group-hover:text-primary transition-colors">
Sarbot Quadruped</h3>
<p class="text-slate-600 dark:text-slate-400 text-sm leading-relaxed mb-6 line-clamp-3">
Leading end-to-end development at LA2 Dynamics. Nonlinear MPC, RL policies trained in
Isaac Lab, and custom STM32 firmware.
</p>
<!-- Metrics -->
<div class="grid grid-cols-3 gap-2 mb-6 border-y border-slate-200 dark:border-white/5 py-4">
<div class="text-center">
<div class="text-lg font-bold text-slate-900 dark:text-white">MPC</div>
<div class="text-[10px] text-slate-500 uppercase tracking-wider">Control</div>
</div>
<div class="text-center border-l border-slate-200 dark:border-white/5">
<div class="text-lg font-bold text-slate-900 dark:text-white">RL</div>
<div class="text-[10px] text-slate-500 uppercase tracking-wider">Sim2Real</div>
</div>
<div class="text-center border-l border-slate-200 dark:border-white/5">
<div class="text-lg font-bold text-slate-900 dark:text-white">STM32</div>
<div class="text-[10px] text-slate-500 uppercase tracking-wider">Embedded</div>
</div>
</div>
<!-- Tags -->
<div class="flex flex-wrap gap-2 mb-6 mt-auto">
<span
class="px-2 py-1 bg-slate-100 dark:bg-white/5 rounded text-xs text-primary border border-slate-200 dark:border-white/5">C++</span>
<span
class="px-2 py-1 bg-slate-100 dark:bg-white/5 rounded text-xs text-primary border border-slate-200 dark:border-white/5">Isaac
Lab</span>
<span
class="px-2 py-1 bg-slate-100 dark:bg-white/5 rounded text-xs text-primary border border-slate-200 dark:border-white/5">ROS</span>
</div>
<div
class="flex items-center text-sm font-bold text-slate-900 dark:text-white group-hover:text-primary transition-colors pt-2">
View Technical Details <i
class="fas fa-arrow-right ml-2 transition-transform group-hover:translate-x-1"></i>
</div>
</div>
</div>
<!-- Project 2: AUV -->
<div class="spotlight-card rounded-3xl overflow-hidden group hover:border-cyan-500/50 transition-colors duration-500 cursor-pointer flex flex-col h-full hover-target"
onclick="openModal('modal-auv')">
<div
class="h-48 bg-gradient-to-br from-cyan-50 to-slate-100 dark:from-cyan-900/20 dark:to-slate-900 relative flex items-center justify-center overflow-hidden shrink-0">
<div
class="absolute inset-0 bg-white/5 opacity-0 group-hover:opacity-10 transition-opacity duration-500">
</div>
<i
class="fas fa-water text-6xl text-cyan-400/30 dark:text-cyan-400/50 group-hover:scale-110 group-hover:text-cyan-400 transition-all duration-500"></i>
<div
class="absolute top-4 right-4 px-3 py-1 bg-green-500/20 text-green-600 dark:text-green-400 text-xs font-bold rounded-full border border-green-500/20 backdrop-blur-sm">
Active Mentorship
</div>
</div>
<div class="p-8 flex-1 flex flex-col">
<h3
class="text-2xl font-display font-bold text-slate-900 dark:text-white mb-3 group-hover:text-cyan-400 transition-colors">
Award-Winning AUVs</h3>
<p class="text-slate-600 dark:text-slate-400 text-sm leading-relaxed mb-6 line-clamp-3">