-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
968 lines (882 loc) · 68.2 KB
/
index.html
File metadata and controls
968 lines (882 loc) · 68.2 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dr. Kadeghe Goodluck Fue - Home</title>
<meta name="description"
content="Official website of Dr. Kadeghe Goodluck Fue, Senior Robotics & Machine Learning Engineer and Researcher. Specializing in autonomous systems, Edge AI, and agricultural robotics.">
<meta name="keywords" content="Dr. Kadeghe Goodluck Fue, robotics engineer, machine learning, AI researcher, autonomous systems, Edge AI, agricultural robotics, computer vision, embedded systems, Tanzania">
<meta name="author" content="Dr. Kadeghe Goodluck Fue">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://kadefue.github.io/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://kadefue.github.io/">
<meta property="og:title" content="Dr. Kadeghe Goodluck Fue - Robotics & AI Engineer Portfolio">
<meta property="og:description" content="Senior Robotics & Machine Learning Engineer specializing in autonomous systems, Edge AI, and agricultural robotics.">
<meta property="og:image" content="https://kadefue.github.io/images/profile.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://kadefue.github.io/">
<meta property="twitter:title" content="Dr. Kadeghe Goodluck Fue - Robotics & AI Engineer Portfolio">
<meta property="twitter:description" content="Senior Robotics & Machine Learning Engineer specializing in autonomous systems, Edge AI, and agricultural robotics.">
<meta property="twitter:image" content="https://kadefue.github.io/images/profile.jpg">
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Dr. Kadeghe Goodluck Fue",
"jobTitle": "Senior Robotics & Machine Learning Engineer",
"description": "Researcher and engineer specializing in autonomous systems, Edge AI, and agricultural robotics",
"url": "https://kadefue.github.io/",
"sameAs": [
"https://github.com/kadefue",
"https://linkedin.com/in/kadeghe-fue"
],
"knowsAbout": [
"Robotics",
"Machine Learning",
"Artificial Intelligence",
"Computer Vision",
"Embedded Systems",
"Autonomous Systems",
"Edge AI",
"Agricultural Robotics"
],
"alumniOf": {
"@type": "EducationalOrganization",
"name": "University of Dar es Salaam"
},
"hasOccupation": {
"@type": "Occupation",
"name": "Robotics Engineer",
"occupationLocation": {
"@type": "Country",
"name": "Tanzania"
}
}
}
</script>
<script src="https://cdn.tailwindcss.com"></script>
<script data-goatcounter="https://kadefue.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;700&display=swap"
rel="stylesheet">
<style>
/* Custom Styles & Utilities */
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(-45deg, #e0e7ff, #b8c5b8, #f0fdf4, #e0f2fe, #e0e7ff);
background-size: 400% 400%;
animation: gradientShift 15s ease infinite;
background-attachment: fixed;
}
.font-mono {
font-family: 'JetBrains Mono', monospace;
}
.nav-link.active {
color: #4f46e5;
border-bottom: 2px solid #4f46e5;
}
/* Hover & Animation Effects */
.card-hover {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px -5px rgba(79, 70, 229, 0.2);
border-color: #818cf8;
}
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(0px);
}
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes blob {
0% {
transform: translate(0px, 0px) scale(1);
border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}
33% {
transform: translate(30px, -50px) scale(1.1);
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
66% {
transform: translate(-20px, 20px) scale(0.9);
border-radius: 30% 70% 50% 50% / 30% 70% 40% 60%;
}
100% {
transform: translate(0px, 0px) scale(1);
border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}
}
.animate-blob {
animation: blob 7s infinite;
}
.animation-delay-2000 {
animation-delay: 2s;
}
/* Slideshow Fade Effect */
.slide-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 1s ease-in-out;
border-radius: 9999px;
/* Rounded full */
}
.slide-image.active {
opacity: 1;
}
</style>
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body class="text-slate-800 antialiased selection:bg-indigo-100 selection:text-indigo-900">
<nav
class="fixed top-0 left-0 w-full bg-white/40 backdrop-blur-lg border-b border-white/60 z-50 shadow-sm transition-all duration-300">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16 items-center">
<div class="flex-shrink-0 flex items-center gap-3">
<img src="profile.png" alt="Dr. Fue"
class="w-10 h-10 rounded-full border border-indigo-100 shadow-sm object-cover">
<a href="index.html"
class="font-bold text-lg md:text-xl text-slate-900 tracking-tight hover:text-indigo-600 transition-colors">Dr.
Kadeghe Goodluck Fue</a>
</div>
<div class="hidden md:flex space-x-6 lg:space-x-8 items-center">
<a href="index.html" data-i18n="nav.home"
class="nav-link active text-sm font-medium text-slate-600 hover:text-indigo-600 py-5 transition-colors border-b-2 border-transparent">Home</a>
<a href="about.html" data-i18n="nav.about"
class="nav-link text-sm font-medium text-slate-600 hover:text-indigo-600 py-5 transition-colors border-b-2 border-transparent">About</a>
<a href="news.html" data-i18n="nav.news"
class="nav-link text-sm font-medium text-slate-600 hover:text-indigo-600 py-5 transition-colors border-b-2 border-transparent">News</a>
<a href="research.html" data-i18n="nav.research"
class="nav-link text-sm font-medium text-slate-600 hover:text-indigo-600 py-5 transition-colors border-b-2 border-transparent">Research</a>
<a href="publications.html" data-i18n="nav.publications"
class="nav-link text-sm font-medium text-slate-600 hover:text-indigo-600 py-5 transition-colors border-b-2 border-transparent">Publications</a>
<a href="cv.html" data-i18n="nav.cv"
class="nav-link text-sm font-medium text-slate-600 hover:text-indigo-600 py-5 transition-colors border-b-2 border-transparent">CV</a>
<a href="contact.html" data-i18n="nav.contact"
class="nav-link text-sm font-medium text-slate-600 hover:text-indigo-600 py-5 transition-colors border-b-2 border-transparent">Contact</a>
<!-- Language Switcher Desktop -->
<div class="flex items-center space-x-2 border-l pl-4 border-slate-200">
<button onclick="changeLanguage('en')"
class="lang-btn-en text-sm font-medium hover:text-indigo-600 transition-colors">EN</button>
<span class="text-slate-300">|</span>
<button onclick="changeLanguage('sw')"
class="lang-btn-sw text-sm font-medium text-slate-500 hover:text-indigo-600 transition-colors">SW</button>
</div>
</div>
<div class="flex items-center md:hidden gap-4">
<!-- Language Switcher Mobile -->
<div class="flex items-center space-x-2">
<button onclick="changeLanguage('en')"
class="lang-btn-en text-xs font-medium hover:text-indigo-600 transition-colors">EN</button>
<span class="text-slate-300">|</span>
<button onclick="changeLanguage('sw')"
class="lang-btn-sw text-xs font-medium text-slate-500 hover:text-indigo-600 transition-colors">SW</button>
</div>
<button id="mobile-menu-btn" class="text-slate-500 hover:text-indigo-600 focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<div id="mobile-menu"
class="hidden md:hidden bg-white/80 backdrop-blur-xl border-t border-white/50 shadow-lg absolute w-full">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="index.html" data-i18n="nav.home"
class="block px-3 py-2 rounded-md text-base font-medium text-indigo-600 bg-indigo-50">Home</a>
<a href="about.html" data-i18n="nav.about"
class="block px-3 py-2 rounded-md text-base font-medium text-slate-700 hover:text-indigo-600 hover:bg-slate-50">About</a>
<a href="news.html" data-i18n="nav.news"
class="block px-3 py-2 rounded-md text-base font-medium text-slate-700 hover:text-indigo-600 hover:bg-slate-50">News</a>
<a href="research.html" data-i18n="nav.research"
class="block px-3 py-2 rounded-md text-base font-medium text-slate-700 hover:text-indigo-600 hover:bg-slate-50">Research</a>
<a href="publications.html" data-i18n="nav.publications"
class="block px-3 py-2 rounded-md text-base font-medium text-slate-700 hover:text-indigo-600 hover:bg-slate-50">Publications</a>
<a href="cv.html" data-i18n="nav.cv"
class="block px-3 py-2 rounded-md text-base font-medium text-slate-700 hover:text-indigo-600 hover:bg-slate-50">CV</a>
<a href="contact.html" data-i18n="nav.contact"
class="block px-3 py-2 rounded-md text-base font-medium text-slate-700 hover:text-indigo-600 hover:bg-slate-50">Contact</a>
</div>
</div>
</nav>
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 pt-28 pb-12 space-y-16">
<section id="welcome" class="relative">
<div
class="absolute top-0 -left-4 w-72 h-72 bg-purple-300 rounded-full mix-blend-multiply filter blur-xl opacity-20 animate-blob">
</div>
<div
class="absolute top-0 -right-4 w-72 h-72 bg-indigo-300 rounded-full mix-blend-multiply filter blur-xl opacity-20 animate-blob animation-delay-2000">
</div>
<div class="flex flex-col md:flex-row items-center gap-8 md:gap-16 relative z-10">
<div class="flex-shrink-0 animate-float">
<div class="relative w-56 h-56 md:w-64 md:h-64">
<div
class="absolute inset-0 bg-indigo-600 rounded-full blur opacity-20 transform translate-y-4">
</div>
<div id="image-slider"
class="relative w-full h-full rounded-full border-4 border-white shadow-2xl ring-4 ring-indigo-50 overflow-hidden">
<img src="profile.png" alt="Dr. Fue" class="slide-image active">
<img src="profile2.jpg" alt="KadeFue 2" class="slide-image">
<img src="profile3.jpg" alt="KadeFue 3" class="slide-image">
<img src="profile4.jpg" alt="KadeFue 4" class="slide-image">
<img src="profile5.png" alt="KadeFue 5" class="slide-image">
<img src="profile6.jpg" alt="KadeFue 6" class="slide-image">
<img src="profile7.jpeg" alt="KadeFue 7" class="slide-image">
<img src="profile7.jpg" alt="KadeFue 8" class="slide-image"> <!-- Robotics and AI showcase images -->
<img src="robotics1.jpg" alt="Robotics Research" class="slide-image">
<img src="ai_demo.jpg" alt="AI Demonstration" class="slide-image">
<img src="precision_ag.jpg" alt="Precision Agriculture" class="slide-image">
<img src="drone_tech.jpg" alt="Drone Technology" class="slide-image"> </div>
</div>
</div>
<div class="text-center md:text-left">
<div data-i18n="hero.welcome"
class="inline-block px-3 py-1 mb-4 text-xs font-semibold tracking-wider text-indigo-600 uppercase bg-indigo-50 rounded-full">
Welcome to my portfolio
</div>
<h1 class="text-4xl md:text-6xl font-extrabold text-slate-900 tracking-tight mb-4 leading-tight">
Dr. Kadeghe <br class="hidden md:block"> <span class="text-indigo-600">Goodluck Fue</span> <span
class="text-slate-600">(PhD, P.Eng PE11382)</span>
</h1>
<p class="text-lg md:text-xl text-slate-600 font-medium mb-8 leading-relaxed max-w-2xl">
<span data-i18n="hero.role">Senior Lecturer & Registered Professional Engineer (PE11382).</span>
<br>
<span data-i18n="hero.description">Innovating at the intersection of</span> <span
data-i18n="hero.mechatronics"
class="text-indigo-600 font-bold bg-indigo-50 px-1 rounded">Mechatronics</span>,
<span data-i18n="hero.ai" class="text-indigo-600 font-bold bg-indigo-50 px-1 rounded">Artificial
Intelligence</span>,
and
<span data-i18n="hero.precision_ag"
class="text-indigo-600 font-bold bg-indigo-50 px-1 rounded">Digital Agriculture</span>.
</p>
<div class="flex flex-wrap gap-4 justify-center md:justify-start">
<a href="about.html"
class="card-hover bg-indigo-600 text-white px-8 py-4 rounded-xl hover:bg-indigo-700 transition-all font-semibold shadow-lg shadow-indigo-200 flex items-center gap-2">
<span data-i18n="hero.more_about">More About Me</span>
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
<a href="research.html"
class="card-hover bg-white text-slate-700 border border-slate-200 px-8 py-4 rounded-xl hover:border-indigo-500 hover:text-indigo-600 transition-all font-medium shadow-sm flex items-center gap-2">
<span data-i18n="hero.view_research">View Research</span>
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M19.428 15.428a2 2 0 00-1.022-.547l-2.384-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z">
</path>
</svg>
</a>
</div>
</div>
</div>
</section>
<section class="grid grid-cols-2 md:grid-cols-4 gap-4 md:gap-8">
<div
class="bg-white/50 backdrop-blur-lg p-6 rounded-2xl shadow-xl border border-white/50 text-center card-hover">
<div class="text-3xl md:text-4xl font-bold text-indigo-600 mb-1">14+</div>
<div data-i18n="stats.years_experience"
class="text-xs text-slate-500 uppercase font-bold tracking-wide">Years Experience</div>
</div>
<div
class="bg-white/50 backdrop-blur-lg p-6 rounded-2xl shadow-xl border border-white/50 text-center card-hover">
<div class="text-3xl md:text-4xl font-bold text-indigo-600 mb-1">52+</div>
<div data-i18n="stats.publications" class="text-xs text-slate-500 uppercase font-bold tracking-wide">
Publications</div>
</div>
<div
class="bg-white/50 backdrop-blur-lg p-6 rounded-2xl shadow-xl border border-white/50 text-center card-hover">
<div class="text-3xl md:text-4xl font-bold text-indigo-600 mb-1">1020+</div>
<div data-i18n="stats.citations" class="text-xs text-slate-500 uppercase font-bold tracking-wide">
Citations</div>
</div>
<div
class="bg-white/50 backdrop-blur-lg p-6 rounded-2xl shadow-xl border border-white/50 text-center card-hover">
<div class="text-3xl md:text-4xl font-bold text-indigo-600 mb-1">$2.0M+</div>
<div data-i18n="stats.portfolio" class="text-xs text-slate-500 uppercase font-bold tracking-wide">
Project Portfolio Managed</div>
</div>
</section>
<section id="expertise" class="bg-white rounded-3xl p-8 md:p-12 shadow-xl shadow-indigo-100/50 border border-slate-100">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-slate-900 mb-4">Expertise in Robotics & AI</h2>
<p class="text-slate-600 max-w-2xl mx-auto">Showcasing advanced capabilities in robotics engineering, artificial intelligence, and autonomous systems</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="text-center group">
<div class="bg-gradient-to-br from-indigo-50 to-purple-50 p-8 rounded-2xl mb-4 group-hover:shadow-lg transition-all duration-300">
<svg class="w-16 h-16 text-indigo-600 mx-auto mb-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path>
</svg>
<h3 class="text-xl font-bold text-slate-900 mb-4">Robotics Engineering</h3>
<!-- Progress indicators -->
<div class="space-y-3 mb-4">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">System Design</span>
<span class="text-sm font-bold text-indigo-600">95%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 95%"></div>
</div>
</div>
<div class="space-y-3 mb-4">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">Control Systems</span>
<span class="text-sm font-bold text-indigo-600">90%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 90%"></div>
</div>
</div>
<div class="space-y-3">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">Integration</span>
<span class="text-sm font-bold text-indigo-600">88%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 88%"></div>
</div>
</div>
</div>
</div>
<div class="text-center group">
<div class="bg-gradient-to-br from-green-50 to-green-50 p-8 rounded-2xl mb-4 group-hover:shadow-lg transition-all duration-300">
<svg class="w-16 h-16 text-purple-600 mx-auto mb-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"></path>
</svg>
<h3 class="text-xl font-bold text-slate-900 mb-4">Artificial Intelligence</h3>
<!-- Achievement badges -->
<div class="flex justify-center gap-2 mb-4">
<div class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-xs font-bold">ML Expert</div>
<div class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-xs font-bold">Deep Learning</div>
</div>
<div class="space-y-3 mb-4">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">Neural Networks</span>
<span class="text-sm font-bold text-purple-600">92%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-purple-600 h-2 rounded-full" style="width: 92%"></div>
</div>
</div>
<div class="space-y-3">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">Computer Vision</span>
<span class="text-sm font-bold text-purple-600">89%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-purple-600 h-2 rounded-full" style="width: 89%"></div>
</div>
</div>
</div>
</div>
<div class="text-center group">
<div class="bg-gradient-to-br from-green-50 to-teal-50 p-8 rounded-2xl mb-4 group-hover:shadow-lg transition-all duration-300">
<svg class="w-16 h-16 text-green-600 mx-auto mb-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 10l2 2 4-4"></path>
</svg>
<h3 class="text-xl font-bold text-slate-900 mb-4">Computer Vision</h3>
<!-- Visual indicators -->
<div class="flex justify-center gap-3 mb-4">
<div class="w-8 h-8 bg-green-200 rounded-full flex items-center justify-center">
<svg class="w-4 h-4 text-green-700" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path>
</svg>
</div>
<div class="w-8 h-8 bg-green-200 rounded-full flex items-center justify-center">
<svg class="w-4 h-4 text-green-700" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path>
</svg>
</div>
<div class="w-8 h-8 bg-green-200 rounded-full flex items-center justify-center">
<svg class="w-4 h-4 text-green-700" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path>
</svg>
</div>
</div>
<div class="space-y-3 mb-4">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">Image Processing</span>
<span class="text-sm font-bold text-green-600">94%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-green-600 h-2 rounded-full" style="width: 94%"></div>
</div>
</div>
<div class="space-y-3">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">Object Detection</span>
<span class="text-sm font-bold text-green-600">87%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-green-600 h-2 rounded-full" style="width: 87%"></div>
</div>
</div>
</div>
</div>
<div class="text-center group">
<div class="bg-gradient-to-br from-blue-50 to-indigo-50 p-8 rounded-2xl mb-4 group-hover:shadow-lg transition-all duration-300">
<svg class="w-16 h-16 text-blue-600 mx-auto mb-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.428 15.428a2 2 0 00-1.022-.547l-2.384-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z"></path>
</svg>
<h3 class="text-xl font-bold text-slate-900 mb-4">Autonomous Systems</h3>
<!-- Achievement metrics -->
<div class="grid grid-cols-2 gap-4 mb-4">
<div class="text-center">
<div class="text-2xl font-bold text-blue-600">50+</div>
<div class="text-xs text-slate-500">Projects</div>
</div>
<div class="text-center">
<div class="text-2xl font-bold text-blue-600">15+</div>
<div class="text-xs text-slate-500">Years</div>
</div>
</div>
<div class="space-y-3 mb-4">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">Navigation</span>
<span class="text-sm font-bold text-blue-600">91%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-blue-600 h-2 rounded-full" style="width: 91%"></div>
</div>
</div>
<div class="space-y-3">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">Path Planning</span>
<span class="text-sm font-bold text-blue-600">85%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-blue-600 h-2 rounded-full" style="width: 85%"></div>
</div>
</div>
</div>
</div>
<div class="text-center group">
<div class="bg-gradient-to-br from-yellow-50 to-orange-50 p-8 rounded-2xl mb-4 group-hover:shadow-lg transition-all duration-300">
<svg class="w-16 h-16 text-yellow-600 mx-auto mb-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"></path>
</svg>
<h3 class="text-xl font-bold text-slate-900 mb-4">Data Analytics</h3>
<!-- Data visualization elements -->
<div class="flex justify-center gap-2 mb-4">
<div class="w-3 h-8 bg-yellow-400 rounded-sm"></div>
<div class="w-3 h-12 bg-orange-400 rounded-sm"></div>
<div class="w-3 h-6 bg-yellow-500 rounded-sm"></div>
<div class="w-3 h-10 bg-orange-500 rounded-sm"></div>
<div class="w-3 h-14 bg-yellow-600 rounded-sm"></div>
</div>
<div class="space-y-3 mb-4">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">Big Data</span>
<span class="text-sm font-bold text-yellow-600">88%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-yellow-600 h-2 rounded-full" style="width: 88%"></div>
</div>
</div>
<div class="space-y-3">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">Predictive Modeling</span>
<span class="text-sm font-bold text-yellow-600">86%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-yellow-600 h-2 rounded-full" style="width: 86%"></div>
</div>
</div>
</div>
</div>
<div class="text-center group">
<div class="bg-gradient-to-br from-green-50 to-green-50 p-8 rounded-2xl mb-4 group-hover:shadow-lg transition-all duration-300">
<svg class="w-16 h-16 text-red-600 mx-auto mb-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"></path>
</svg>
<h3 class="text-xl font-bold text-slate-900 mb-4">IoT Integration</h3>
<!-- Network visualization -->
<div class="flex justify-center items-center mb-4">
<div class="relative">
<div class="w-6 h-6 bg-red-400 rounded-full absolute -left-8 top-2"></div>
<div class="w-8 h-8 bg-red-500 rounded-full"></div>
<div class="w-6 h-6 bg-green-400 rounded-full absolute -right-8 top-2"></div>
<div class="w-4 h-4 bg-red-300 rounded-full absolute left-1 -top-4"></div>
<div class="w-4 h-4 bg-green-300 rounded-full absolute right-1 -bottom-4"></div>
</div>
</div>
<div class="space-y-3 mb-4">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">Sensor Networks</span>
<span class="text-sm font-bold text-red-600">90%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-red-600 h-2 rounded-full" style="width: 90%"></div>
</div>
</div>
<div class="space-y-3">
<div class="flex justify-between items-center">
<span class="text-sm text-slate-600">Cloud Integration</span>
<span class="text-sm font-bold text-red-600">87%</span>
</div>
<div class="w-full bg-slate-200 rounded-full h-2">
<div class="bg-red-600 h-2 rounded-full" style="width: 87%"></div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-12">
<div class="bg-gradient-to-r from-indigo-50 to-purple-50 p-8 rounded-3xl border border-indigo-100 shadow-xl shadow-indigo-100/50">
<div class="text-center mb-8">
<h3 class="text-2xl font-bold text-slate-900 mb-2">Comprehensive Skills & Technology Stack</h3>
<p class="text-slate-600 max-w-2xl mx-auto">A detailed overview of my proficiency across programming languages, frameworks, tools, and advanced technical domains.</p>
</div>
<div class="space-y-6">
<!-- Category 1: Languages -->
<div class="bg-white/80 backdrop-blur-sm rounded-2xl p-6 border border-white shadow-sm transition-all hover:shadow-md">
<h4 class="text-lg font-bold text-indigo-700 mb-4 flex items-center gap-2">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"></path></svg>
Programming/Scripting/Database Languages
</h4>
<div class="flex flex-wrap gap-2">
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">Python</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">C/C++</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">R</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">Java</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">VB.NET</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">C#.NET</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">MySQL</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">PostgreSQL</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">MSSQL</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">Z basic</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">PIC PRO basic</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">MatLab</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">PHP</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">JavaScript</span>
<span class="bg-indigo-50 text-indigo-800 text-sm font-medium px-3 py-1.5 rounded-full border border-indigo-100 shadow-sm">N.I. LabView</span>
</div>
</div>
<!-- Category 2: Frameworks & Tools -->
<div class="bg-white/80 backdrop-blur-sm rounded-2xl p-6 border border-white shadow-sm transition-all hover:shadow-md">
<h4 class="text-lg font-bold text-purple-700 mb-4 flex items-center gap-2">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 10l-2 1m0 0l-2-1m2 1v2.5M20 7l-2 1m2-1l-2-1m2 1v2.5M14 4l-2-1-2 1M4 7l2-1M4 7l2 1M4 7v2.5M12 21l-2-1m2 1l2-1m-2 1v-2.5M6 18l-2-1v-2.5M18 18l2-1v-2.5"></path></svg>
Frameworks and Tools Used
</h4>
<div class="flex flex-wrap gap-2">
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Linux Systems</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">ROS</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Gazebo</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">RViz</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">OpenCV</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">TensorFlow</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Keras</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">CodeIgniter</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Laravel</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">MEAN</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">MERN</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">FastAPI</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">ReactJS</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Angular</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Django</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">MapServer</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">GeoODK</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">ODK</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">GDAL</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">OpenLayers</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">eMotion</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">GPS</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">ArduPilot</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">RTOS</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Pix4D</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">QGIS</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Arc GIS</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">PLC</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">CUDA</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Git</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Agile (XP & Scrum)</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">SolidWorks</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Ultimaker</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Visual Studio</span>
<span class="bg-purple-50 text-purple-800 text-sm font-medium px-3 py-1.5 rounded-full border border-purple-100 shadow-sm">Android Studio IDE</span>
</div>
</div>
<!-- Category 3: Advanced Skills -->
<div class="bg-white/80 backdrop-blur-sm rounded-2xl p-6 border border-white shadow-sm transition-all hover:shadow-md">
<h4 class="text-lg font-bold text-teal-700 mb-4 flex items-center gap-2">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.428 15.428a2 2 0 00-1.022-.547l-2.384-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z"></path></svg>
Advanced Skills In
</h4>
<div class="flex flex-wrap gap-2">
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Geographic Information Systems</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">GNSS/GPS</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Web Mapping</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Satellite Image Analysis</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Machine Vision</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Deep Learning</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">SLAM</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">PCB Design</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Object Detection</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Object Tracking</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Image Classification</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Precision Irrigation</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Precision Agriculture</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Autonomous Systems</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Unmanned Ground/Aerial Vehicles</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Sensor Fusion (EKF)</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Embedded Systems</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Path & Motion Planning</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Robotic Manipulators</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Robot State Estimation</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Robotic Control Systems</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Sensor Data Analysis</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Cloud Computing</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Microcontroller Programming</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Planter Downforce Technology</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Wireless Sensor Networks</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">IoT</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Computer-Aided 3D Design</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">3D Printing</span>
<span class="bg-teal-50 text-teal-800 text-sm font-medium px-3 py-1.5 rounded-full border border-teal-100 shadow-sm">Hydrostatic Vehicles</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="sdgs" class="bg-white/50 backdrop-blur-lg rounded-3xl p-8 md:p-12 shadow-xl border border-white/50">
<div class="text-center mb-12">
<div class="inline-block px-3 py-1 mb-4 text-xs font-semibold tracking-wider text-green-700 uppercase bg-green-100 rounded-full">
Global Impact
</div>
<h2 class="text-3xl font-bold text-slate-900 mb-4">Sustainable Development Goals</h2>
<p class="text-slate-600 max-w-2xl mx-auto">Applying research in Robotics and AI to address critical global challenges and contribute to the UN Sustainable Development Goals (SDGs).</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- SDG 2: Zero Hunger -->
<div class="card-hover group bg-white/60 backdrop-blur-sm rounded-2xl p-6 shadow-sm border border-white/50 flex flex-col items-center text-center">
<div class="w-20 h-20 bg-[#DDA63A] rounded-2xl flex items-center justify-center mb-5 rotate-3 group-hover:rotate-0 transition-transform duration-300 shadow-md">
<span class="text-white font-black text-3xl">2</span>
</div>
<h3 class="text-lg font-bold text-slate-900 mb-2">Zero Hunger</h3>
<p class="text-sm text-slate-600 leading-relaxed">Developing agricultural robotics, Edge AI, and precision fertilization tools to improve food security and sustainable farming.</p>
</div>
<!-- SDG 4: Quality Education -->
<div class="card-hover group bg-white/60 backdrop-blur-sm rounded-2xl p-6 shadow-sm border border-white/50 flex flex-col items-center text-center">
<div class="w-20 h-20 bg-[#C5192D] rounded-2xl flex items-center justify-center mb-5 -rotate-3 group-hover:rotate-0 transition-transform duration-300 shadow-md">
<span class="text-white font-black text-3xl">4</span>
</div>
<h3 class="text-lg font-bold text-slate-900 mb-2">Quality Education</h3>
<p class="text-sm text-slate-600 leading-relaxed">Mentoring engineers, innovating at the university level, and contributing to national educational simulators for STEM.</p>
</div>
<!-- SDG 9: Industry, Innovation and Infrastructure -->
<div class="card-hover group bg-white/60 backdrop-blur-sm rounded-2xl p-6 shadow-sm border border-white/50 flex flex-col items-center text-center">
<div class="w-20 h-20 bg-[#FD6925] rounded-2xl flex items-center justify-center mb-5 rotate-3 group-hover:rotate-0 transition-transform duration-300 shadow-md">
<span class="text-white font-black text-3xl">9</span>
</div>
<h3 class="text-lg font-bold text-slate-900 mb-2">Innovation & Infrastructure</h3>
<p class="text-sm text-slate-600 leading-relaxed">Pushing boundaries in autonomous systems, IoT integration, and embedded AI technologies for rapid industrialization.</p>
</div>
<!-- SDG 13: Climate Action -->
<div class="card-hover group bg-white/60 backdrop-blur-sm rounded-2xl p-6 shadow-sm border border-white/50 flex flex-col items-center text-center">
<div class="w-20 h-20 bg-[#3F7E44] rounded-2xl flex items-center justify-center mb-5 -rotate-3 group-hover:rotate-0 transition-transform duration-300 shadow-md">
<span class="text-white font-black text-3xl">13</span>
</div>
<h3 class="text-lg font-bold text-slate-900 mb-2">Climate Action</h3>
<p class="text-sm text-slate-600 leading-relaxed">Leveraging Data Analytics and AI Weather World Models to build resilience and adapt to changing climate conditions.</p>
</div>
</div>
</section>
<section id="news"
class="bg-white/50 backdrop-blur-lg rounded-3xl p-8 md:p-12 shadow-xl border border-white/50">
<div class="flex items-center justify-between mb-8">
<div class="flex items-center gap-3">
<span class="bg-indigo-100 text-indigo-700 p-3 rounded-xl">
<svg xmlns="http://www.w3.org/2000/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="M19 20H5a2 2 0 01-2-2V6a2 2 0 012-2h10a2 2 0 012 2v1m2 13a2 2 0 01-2-2V7m2 13a2 2 0 002-2V9a2 2 0 00-2-2h-2m-4-3H9M7 16h6M7 8h6v4H7V8z" />
</svg>
</span>
<h2 data-i18n="section_titles.latest_updates" class="text-2xl font-bold text-slate-900">Latest
Updates</h2>
</div>
<a href="news.html" class="text-sm font-medium text-indigo-600 hover:text-indigo-800 flex items-center">
<span data-i18n="section_titles.view_archive">View Archive</span>
<svg class="w-4 h-4 ml-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
</svg>
</a>
</div>
<div class="space-y-4">
<div
class="group flex gap-4 items-start p-4 rounded-xl hover:bg-slate-50 transition-colors cursor-default border border-transparent hover:border-slate-200">
<div class="flex-shrink-0 w-16 text-center">
<span class="block text-sm font-bold text-slate-400 uppercase">Jan-Feb</span>
<span class="block text-xl font-bold text-indigo-600">2026</span>
</div>
<div>
<h3 class="font-bold text-slate-900 group-hover:text-indigo-600 transition-colors">Development
of the Education Simulator for Ministry of EST</h3>
<p class="text-slate-600 text-sm mt-1">Participated at WAMO in Morogoro, Tanzana.</p>
</div>
</div>
<div
class="group flex gap-4 items-start p-4 rounded-xl hover:bg-slate-50 transition-colors cursor-default border border-transparent hover:border-slate-200">
<div class="flex-shrink-0 w-16 text-center">
<span class="block text-sm font-bold text-slate-400 uppercase">Nov</span>
<span class="block text-xl font-bold text-indigo-600">2025</span>
</div>
<div>
<h3 class="font-bold text-slate-900 group-hover:text-indigo-600 transition-colors">Combined 10th
IRSPBL, 7th SASEE, and 5th SoTL</h3>
<p class="text-slate-600 text-sm mt-1">Participated at University of Pretoria, South Africa held
at Future Africa, Pretoria.</p>
</div>
</div>
<div
class="group flex gap-4 items-start p-4 rounded-xl hover:bg-slate-50 transition-colors cursor-default border border-transparent hover:border-slate-200">
<div class="flex-shrink-0 w-16 text-center">
<span class="block text-sm font-bold text-slate-400 uppercase">Oct</span>
<span class="block text-xl font-bold text-indigo-600">2025</span>
</div>
<div>
<h3 class="font-bold text-slate-900 group-hover:text-indigo-600 transition-colors">Scientific
Conference Presentation</h3>
<p class="text-slate-600 text-sm mt-1">Presented 2 papers on Multimodal and Weather World Models
at the 2nd Five University Consortium Scientific Conference.</p>
</div>
</div>
<div
class="group flex gap-4 items-start p-4 rounded-xl hover:bg-slate-50 transition-colors cursor-default border border-transparent hover:border-slate-200">
<div class="flex-shrink-0 w-16 text-center">
<span class="block text-sm font-bold text-slate-400 uppercase">Feb</span>
<span class="block text-xl font-bold text-indigo-600">2025</span>
</div>
<div>
<h3 class="font-bold text-slate-900 group-hover:text-indigo-600 transition-colors">Paper
Accepted in Frontiers</h3>
<p class="text-slate-600 text-sm mt-1">"Digitalization of Precision Fertilization in East
Africa: Adoption, Benefits and Losses" in Frontiers in Sustainable Food Systems.</p>
</div>
</div>
</div>
</section>
<section class="grid grid-cols-1 md:grid-cols-3 gap-6">
<a href="about.html"
class="card-hover group block p-8 bg-white/50 backdrop-blur-lg rounded-2xl shadow-xl border border-white/50 relative overflow-hidden">
<div class="absolute top-0 right-0 p-4 opacity-10 group-hover:opacity-20 transition-opacity">
<svg class="w-24 h-24 text-indigo-600" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M10 9a3 3 0 100-6 3 3 0 000 6zm-7 9a7 7 0 1114 0H3z"
clip-rule="evenodd"></path>
</svg>
</div>
<h3 data-i18n="section_titles.biography"
class="text-xl font-bold text-slate-900 group-hover:text-indigo-600 mb-2 transition-colors">
Biography</h3>
<p class="text-slate-600 text-sm leading-relaxed">Learn more about my professional journey, biography,
and expertise.</p>
</a>
<a href="research.html"
class="card-hover group block p-8 bg-white/50 backdrop-blur-lg rounded-2xl shadow-xl border border-white/50 relative overflow-hidden">
<div class="absolute top-0 right-0 p-4 opacity-10 group-hover:opacity-20 transition-opacity">
<svg class="w-24 h-24 text-indigo-600" fill="currentColor" viewBox="0 0 20 20">
<path
d="M9 4.804A7.968 7.968 0 005.5 4c-1.255 0-2.443.29-3.5.804v10A7.969 7.969 0 015.5 14c1.669 0 3.218.51 4.5 1.385A7.962 7.962 0 0114.5 14c1.255 0 2.443.29 3.5.804v-10A7.968 7.968 0 0014.5 4c-1.255 0-2.443.29-3.5.804V12a1 1 0 11-2 0V4.804z">
</path>
</svg>
</div>
<h3 data-i18n="section_titles.research"
class="text-xl font-bold text-slate-900 group-hover:text-indigo-600 mb-2 transition-colors">Research
</h3>
<p class="text-slate-600 text-sm leading-relaxed">Explore my current and past research projects in AI
and Agriculture.</p>
</a>
<a href="publications.html"
class="card-hover group block p-8 bg-white/50 backdrop-blur-lg rounded-2xl shadow-xl border border-white/50 relative overflow-hidden">
<div class="absolute top-0 right-0 p-4 opacity-10 group-hover:opacity-20 transition-opacity">
<svg class="w-24 h-24 text-indigo-600" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd"
d="M4 4a2 2 0 012-2h4.586A2 2 0 0112 2.586L15.414 6A2 2 0 0116 7.414V16a2 2 0 01-2 2H6a2 2 0 01-2-2V4zm2 6a1 1 0 011-1h6a1 1 0 110 2H7a1 1 0 01-1-1zm1 3a1 1 0 100 2h6a1 1 0 100-2H7z"
clip-rule="evenodd"></path>
</svg>
</div>
<h3 data-i18n="section_titles.publications"
class="text-xl font-bold text-slate-900 group-hover:text-indigo-600 mb-2 transition-colors">
Publications</h3>
<p class="text-slate-600 text-sm leading-relaxed">View my complete list of peer-reviewed journal
articles and papers.</p>
</a>
</section>
</main>
<footer class="bg-slate-900/80 backdrop-blur-lg text-slate-400 py-12 mt-12 border-t border-slate-700/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<div class="mb-6 flex justify-center">
<img src="profile.png" alt="Dr. Fue"
class="w-16 h-16 rounded-full border-2 border-slate-700 grayscale hover:grayscale-0 transition-all duration-500">
</div>
<p class="mb-4 text-white font-bold text-lg">Dr. Kadeghe Goodluck Fue <span
class="text-slate-400 text-sm font-normal">(PE11382)</span></p>
<div class="flex justify-center space-x-6 mb-8 flex-wrap">
<a href="https://kadefue.github.io/" data-i18n="common.github"
class="hover:text-white transition-colors">GitHub</a>
<a href="https://linkedin.com/in/kadefue/" data-i18n="common.linkedin"
class="hover:text-white transition-colors">LinkedIn</a>
<a href="https://scholar.google.com/citations?user=rqeqefwAAAAJ&hl=en" data-i18n="common.google_scholar"
class="hover:text-white transition-colors">Google Scholar</a>
<a href="https://orcid.org/0000-0001-6362-3174" data-i18n="common.orcid"
class="hover:text-white transition-colors">ORCID</a>
<a href="mailto:kadefue@gmail.com" data-i18n="common.email"
class="hover:text-white transition-colors">Email</a>
<a href="cv.html?download=true" data-download-cv="true" class="hover:text-white transition-colors">Download CV (PDF)</a>
</div>
<p class="text-sm text-slate-500">© <span id="year"></span> Kadeghe Goodluck Fue. <span
data-i18n="footer.rights">All rights reserved.</span>
</p>
</div>
</footer>
<script src="js/translations.js"></script>
<script src="js/main.js"></script>
<script>
// "Webbling Exchanging" Slideshow Script
const images = document.querySelectorAll('.slide-image');
let currentImageIndex = 0;
function rotateImages() {
// Remove active class from current image
images[currentImageIndex].classList.remove('active');
// Calculate next index
currentImageIndex = (currentImageIndex + 1) % images.length;
// Add active class to next image
images[currentImageIndex].classList.add('active');
}
// Change image every 4 seconds
setInterval(rotateImages, 4000);
</script>
</body>
</html>