-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcv.html
More file actions
1277 lines (1169 loc) · 76.3 KB
/
cv.html
File metadata and controls
1277 lines (1169 loc) · 76.3 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="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dr. Kadeghe Goodluck Fue - EB-1A Robotics and AI Engineer Portfolio</title>
<meta name="description"
content="Portfolio of Dr. Kadeghe Goodluck Fue, Senior Robotics & Machine Learning Engineer. Specializing in autonomous systems, Edge AI, and agricultural robotics.">
<meta name="keywords"
content="Dr. Kadeghe Goodluck Fue, CV, resume, robotics engineer, machine learning, AI, autonomous systems, Edge AI, agricultural robotics, download PDF">
<meta name="author" content="Dr. Kadeghe Goodluck Fue">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://kadefue.github.io/cv.html">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://kadefue.github.io/cv.html">
<meta property="og:title" content="CV - Dr. Kadeghe Goodluck Fue - Robotics & AI Engineer">
<meta property="og:description"
content="Download the CV of Dr. Kadeghe Goodluck Fue, Senior Robotics & Machine Learning Engineer specializing in autonomous systems and Edge AI.">
<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/cv.html">
<meta property="twitter:title" content="CV - Dr. Kadeghe Goodluck Fue - Robotics & AI Engineer">
<meta property="twitter:description"
content="Download the CV of Dr. Kadeghe Goodluck Fue, Senior Robotics & Machine Learning Engineer specializing in autonomous systems and Edge AI.">
<meta property="twitter:image" content="https://kadefue.github.io/images/profile.jpg">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></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>
@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;
}
/* Animation: Hover Lift & Glow */
.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;
}
/* ATS Keyword Highlighting */
.ats-keyword {
/* Initially hidden highlight, revealed by toggle */
background-color: transparent;
font-weight: inherit;
color: inherit;
transition: all 0.3s ease;
}
.ats-mode .ats-keyword {
background-color: #fef3c7;
/* Amber-100 */
color: #92400e;
/* Amber-800 */
font-weight: 700;
padding: 0 4px;
border-radius: 4px;
border: 1px solid #d97706;
}
.print-only {
display: none;
}
@page {
size: A4 portrait;
margin: 1cm;
}
.print-page {
page-break-after: always;
}
.print-page:last-child {
page-break-after: auto;
}
@media print {
body {
background: #ffffff !important;
color: #111827 !important;
}
body>*:not(.print-only) {
display: none !important;
}
.print-only {
display: block !important;
width: 100%;
padding: 0;
margin: 0;
}
.print-only .print-card {
box-shadow: none !important;
background: #ffffff !important;
border: none !important;
margin: 0 !important;
}
.print-only .no-print {
display: none !important;
}
.print-only .section-title {
color: #1e293b;
}
.print-only .skill-pill {
display: inline-block;
margin: 0 0 4px 0;
padding: 4px 8px;
border-radius: 9999px;
border: 1px solid #cbd5e1;
background: #f1f5f9;
color: #0f172a;
font-size: 10px;
}
.print-only .section-divider {
border-top: 1px solid #cbd5e1;
margin: 16px 0;
}
.print-only .graphic-bar {
height: 6px;
border-radius: 9999px;
background: linear-gradient(90deg, #6366f1, #38bdf8);
margin: 10px 0 18px;
}
}
</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">
<div class="print-only">
<div class="min-h-screen bg-white p-6">
<div class="mx-auto max-w-5xl rounded-3xl border border-slate-200 bg-slate-50 print-card p-6">
<div class="grid gap-6 lg:grid-cols-[2.5fr_1fr] items-start">
<div>
<div class="inline-flex items-center gap-3 mb-4">
<div class="h-3 w-20 rounded-full bg-gradient-to-r from-indigo-600 via-cyan-500 to-sky-400">
</div>
<span class="text-xs uppercase tracking-[0.2em] text-slate-500">Executive CV</span>
</div>
<h1 class="text-4xl font-bold tracking-tight text-slate-900">Dr. Kadeghe Goodluck Fue</h1>
<p class="mt-2 text-base text-slate-700">Leader • Scientist • Engineer</p>
<div class="mt-4 text-sm text-slate-600 space-y-2">
<div><strong>Sokoine University of Agriculture</strong> — Senior Lecturer, Mechatronics &
Precision Agriculture</div>
<div><strong>Email:</strong> kadefue [at] sua.ac.tz | kadefue [at] gmail.com</div>
<div><strong>Links:</strong> linkedin.com/in/kadefue | orcid.org/0000-0001-6362-3174</div>
</div>
</div>
<div class="flex justify-center lg:justify-end">
<div class="w-36 h-36 rounded-3xl overflow-hidden border-4 border-indigo-200 shadow-xl">
<img src="profile.png" alt="Dr. Fue" class="w-full h-full object-cover">
</div>
</div>
</div>
<div class="graphic-bar"></div>
<div class="grid gap-6 lg:grid-cols-[2fr_1fr]">
<section>
<h2 class="section-title text-xl font-bold mb-3">Professional Summary</h2>
<p class="text-sm leading-relaxed text-slate-700">Accomplished robotics and AI leader with a
proven track record of driving innovation in precision agriculture, machine vision, and
intelligent automation. Combines academic rigor with applied engineering to deliver systems
that improve farm productivity, optimize resource use, and support national-level digital
transformation programs.</p>
<div class="mt-6 grid gap-4 sm:grid-cols-2">
<div class="rounded-3xl bg-indigo-50 p-4">
<h3 class="text-sm font-semibold text-indigo-700">Leadership</h3>
<p class="text-xs text-slate-600 mt-2">Led the World Bank HEET project at SUA,
coordinating cross-disciplinary teams and delivering technology solutions for higher
education and agriculture.</p>
</div>
<div class="rounded-3xl bg-slate-100 p-4">
<h3 class="text-sm font-semibold text-slate-900">Research & Science</h3>
<p class="text-xs text-slate-600 mt-2">Published peer-reviewed work in robotics and
agricultural AI, with a focus on sensor-driven decision systems and environmental
intelligence.</p>
</div>
<div class="rounded-3xl bg-cyan-50 p-4">
<h3 class="text-sm font-semibold text-cyan-700">Engineering Impact</h3>
<p class="text-xs text-slate-600 mt-2">Designed embedded control systems and autonomous
vehicle prototypes for crop monitoring, irrigation management, and field robotics.
</p>
</div>
<div class="rounded-3xl bg-emerald-50 p-4">
<h3 class="text-sm font-semibold text-emerald-700">Innovation</h3>
<p class="text-xs text-slate-600 mt-2">Built applied solutions integrating IoT, GIS, and
AI for precision agriculture and public-sector digital services.</p>
</div>
</div>
</section>
<aside class="rounded-3xl bg-white p-5 shadow-sm border border-slate-200">
<h2 class="section-title text-xl font-bold mb-3">Quick Facts</h2>
<ul class="space-y-3 text-sm text-slate-700">
<li><strong>15+ years</strong> of academic, research, and engineering experience</li>
<li><strong>100+</strong> trained students and young innovators</li>
<li><strong>$32M</strong> project leadership for HEET program</li>
<li><strong>8+</strong> international grants and awards</li>
<li><strong>Peer reviewer</strong> for IEEE RA-L and Computers in Agriculture</li>
</ul>
</aside>
</div>
<div class="section-divider"></div>
<div class="grid gap-6 lg:grid-cols-2">
<section class="rounded-3xl bg-white p-5 shadow-sm border border-slate-200">
<h2 class="section-title text-xl font-bold mb-3">Leadership & Management</h2>
<ul class="list-disc pl-5 text-sm text-slate-700 space-y-2">
<li>Senior Lecturer and leader for Mechatronics, Cybernetics, and Precision Agriculture.
</li>
<li>Acting Coordinator of the Academic Information Management and Support Unit.</li>
<li>Principal Investigator of <a href="https://www.epalab.org/" target="_blank"
class="text-indigo-600 hover:text-indigo-800 hover:underline transition-colors font-medium">EPALAB</a>
and mentor for the <a href="https://yeesi.epalab.org" target="_blank"
class="text-indigo-600 hover:text-indigo-800 hover:underline transition-colors font-medium">YEESI
innovation lab</a>.</li>
<li>Managed multidisciplinary research teams across academia and government.</li>
</ul>
</section>
<section class="rounded-3xl bg-white p-5 shadow-sm border border-slate-200">
<h2 class="section-title text-xl font-bold mb-3">Research Excellence</h2>
<ul class="list-disc pl-5 text-sm text-slate-700 space-y-2">
<li>Geospatial AI and machine vision for precision crop monitoring.</li>
<li>Novel robotics control methods for autonomous agricultural vehicles.</li>
<li>Data-driven irrigation scheduling and smart farm decision support.</li>
<li>Published work and funded research in international journals.</li>
</ul>
</section>
</div>
<div class="section-divider"></div>
<div class="grid gap-6 lg:grid-cols-[1.3fr_0.7fr]">
<section>
<h2 class="section-title text-xl font-bold mb-3">Education</h2>
<div class="space-y-4 text-sm text-slate-700">
<div class="rounded-3xl bg-slate-50 p-4 border border-slate-200">
<strong>PhD in Engineering</strong><br>University of Georgia, USA<br><span
class="text-xs text-slate-500">Machine Vision & Agricultural Robotics</span>
</div>
<div class="rounded-3xl bg-slate-50 p-4 border border-slate-200">
<strong>MSc in Agricultural and Biological Engineering</strong><br>University of
Florida, USA<br><span class="text-xs text-slate-500">Information Systems, Automation,
Precision Agriculture</span>
</div>
<div class="rounded-3xl bg-slate-50 p-4 border border-slate-200">
<strong>BSc in Computer Engineering & Information Technology</strong><br>University of
Dar es Salaam, Tanzania<br><span class="text-xs text-slate-500">Electronics, Software,
Telecommunications</span>
</div>
</div>
</section>
<aside class="rounded-3xl bg-slate-50 p-5 border border-slate-200">
<h2 class="section-title text-xl font-bold mb-3">Technical Stack</h2>
<div class="space-y-3 text-sm text-slate-700">
<div><strong>Languages:</strong> Python, C/C++, JavaScript, R, PHP</div>
<div><strong>AI / Vision:</strong> TensorFlow, Keras, OpenCV, PyTorch</div>
<div><strong>Robotics:</strong> ROS, Gazebo, Arduino, Raspberry Pi</div>
<div><strong>GIS / Data:</strong> QGIS, ArcGIS, MapServer, OpenLayers</div>
<div><strong>Systems:</strong> Laravel, Django, MySQL, MSSQL</div>
</div>
</aside>
</div>
</div>
<div
class="print-page mt-8 mx-auto max-w-5xl rounded-3xl border border-slate-200 bg-slate-50 print-card p-6">
<div class="grid gap-5 lg:grid-cols-[1.2fr_0.8fr] items-start">
<div>
<h2 class="section-title text-xl font-bold mb-3">Professional Experience</h2>
<div class="space-y-4 text-sm text-slate-700">
<div>
<strong>Senior Lecturer</strong> — Sokoine University of Agriculture<br>
Led teaching, research, and laboratory development in mechatronics, cybernetics, and
precision agriculture.
</div>
<div>
<strong>Educational Technology & Digital Infrastructure Specialist</strong><br>
Led digital transformation projects for HEET and institutional learning systems.
</div>
<div>
<strong>Research Scholar</strong> — North Carolina State University<br>
Conducted geospatial AI research and machine vision experiments for agriculture and
natural resource planning.
</div>
</div>
</div>
<aside class="rounded-3xl bg-white p-5 shadow-sm border border-slate-200">
<h2 class="section-title text-xl font-bold mb-3">Recognition</h2>
<ul class="list-disc pl-5 text-sm text-slate-700 space-y-2">
<li>Zindi Challenge winner in global outbreak forecasting.</li>
<li>TWAS-BMBF Seed Grant awardee.</li>
<li>Lead technical role in World Bank HEET Project.</li>
<li>Published author and peer reviewer.</li>
</ul>
</aside>
</div>
<div class="section-divider"></div>
<h2 class="section-title text-xl font-bold mb-3">Selected Leadership & Engineering Projects</h2>
<div class="space-y-4 text-sm text-slate-700">
<div class="rounded-3xl bg-white p-4 border border-slate-200">
<strong>Autonomous Field Robotics</strong> — Designed and deployed autonomous vehicles for
precision spraying and harvesting trials, integrating ROS, path planning, and sensor fusion.
</div>
<div class="rounded-3xl bg-white p-4 border border-slate-200">
<strong>Smart Irrigation Systems</strong> — Built IoT-driven irrigation scheduling using sensor
networks, MQTT, and machine learning to reduce water use and increase yield predictability.
</div>
<div class="rounded-3xl bg-white p-4 border border-slate-200">
<strong>Digital Agriculture Platforms</strong> — Delivered decision support tools and mobile SMS
systems for market access, logistics, and farm management in Tanzania.
</div>
<div class="rounded-3xl bg-white p-4 border border-slate-200">
<strong>Research Labs & Capacity Building</strong> — Established <a
href="https://www.epalab.org/" target="_blank"
class="text-indigo-600 hover:text-indigo-800 hover:underline transition-colors font-medium">EPALAB</a>
and <a href="https://yeesi.epalab.org" target="_blank"
class="text-indigo-600 hover:text-indigo-800 hover:underline transition-colors font-medium">YEESI
Lab</a> for student innovation, skilling, and community-focused AgTech research.
</div>
</div>
<div class="section-divider"></div>
<div class="grid gap-6 lg:grid-cols-2">
<section>
<h2 class="section-title text-xl font-bold mb-3">Scientific Contributions</h2>
<p class="text-sm leading-relaxed text-slate-700">Published research on agricultural machine
vision, control systems, and geospatial analytics that informs adaptive farming
interventions and sustainable food systems.</p>
</section>
<section>
<h2 class="section-title text-xl font-bold mb-3">Contact & Availability</h2>
<div class="text-sm text-slate-700 space-y-3">
<div><strong>Email:</strong> kadefue [at] sua.ac.tz | kadefue [at] gmail.com</div>
<div><strong>LinkedIn:</strong> linkedin.com/in/kadefue</div>
<div><strong>ORCID:</strong> orcid.org/0000-0001-6362-3174</div>
</div>
</section>
</div>
<div class="section-divider"></div>
<footer class="text-sm text-slate-600">Print this page to generate a two-page, polished PDF CV with
executive summary, leadership profile, and career highlights.</footer>
</div>
</div>
</div>
<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">
<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 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 active 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>
<!-- ATS Toggle & Mobile Menu Button -->
<div class="flex items-center space-x-4 md:hidden">
<!-- Language Switcher Mobile -->
<div class="flex items-center space-x-2 mr-2">
<button onclick="changeLanguage('en')" class="lang-btn-en text-xs font-bold">EN</button>
<span class="text-slate-300">|</span>
<button onclick="changeLanguage('sw')" class="lang-btn-sw text-xs text-slate-500">SW</button>
</div>
</div>
<div class="flex items-center space-x-4">
<div class="hidden md:block">
<label class="inline-flex items-center cursor-pointer">
<input type="checkbox" id="ats-toggle" class="sr-only peer">
<div
class="w-11 h-6 bg-slate-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-indigo-300 rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-indigo-600 relative">
</div>
<span class="ml-3 text-sm font-medium text-slate-600">Recruiter Mode</span>
</label>
</div>
<div class="flex items-center md:hidden">
<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>
<div id="mobile-menu" class="hidden md:hidden bg-white/80 backdrop-blur-xl border-t border-white/50">
<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-slate-700 hover:text-indigo-600 hover:bg-slate-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>
<!-- Mobile ATS Toggle -->
<div class="px-3 py-2 border-t border-slate-100 mt-2">
<label class="inline-flex items-center cursor-pointer">
<input type="checkbox" id="ats-toggle-mobile" class="sr-only peer">
<div
class="w-11 h-6 bg-slate-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-indigo-300 rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-indigo-600 relative">
</div>
<span class="ml-3 text-sm font-medium text-slate-600">Recruiter Mode</span>
</label>
</div>
</div>
</div>
</nav>
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 pt-28 pb-12">
<!-- 1. OVERVIEW / HERO -->
<header class="mb-12 border-b border-slate-200 pb-12">
<div class="flex flex-col md:flex-row gap-8 items-start mb-6">
<!-- Profile Image -->
<div class="flex-shrink-0 w-32 h-32 md:w-40 md:h-40 rounded-full overflow-hidden border-4 border-white shadow-xl ring-2 ring-indigo-50">
<img src="profile3.jpg" alt="Dr. Kadeghe Goodluck Fue" class="w-full h-full object-cover hover:scale-105 transition-transform duration-500">
</div>
<div class="flex-1 w-full flex flex-col md:flex-row justify-between items-start md:items-center gap-4">
<div>
<h1 class="text-4xl md:text-5xl font-bold text-slate-900 mb-2">
Dr. Kadeghe <br class="md:hidden"> <span class="text-indigo-600">Goodluck Fue</span> <span
class="text-slate-600 text-2xl md:text-3xl">(PhD, P.Eng PE11382)</span>
</h1>
<h2 class="text-xl text-slate-600 font-medium" data-i18n="cv.role_subtitle">Senior Robotics &
Machine Learning Engineer</h2>
</div>
<div class="mt-4 md:mt-0 flex gap-3">
<a href="contact.html" data-i18n="cv.contact_me"
class="bg-indigo-600 text-white px-5 py-2 rounded-lg font-semibold hover:bg-indigo-700 transition shadow-sm whitespace-nowrap">Contact
Me</a>
<a href="https://github.com/kadefue" target="_blank" data-i18n="cv.github_portfolio"
class="bg-white text-slate-700 border border-slate-300 px-5 py-2 rounded-lg font-semibold hover:bg-slate-50 transition whitespace-nowrap">GitHub
Portfolio</a>
</div>
</div>
</div>
<p class="text-lg text-slate-600 leading-relaxed max-w-4xl" data-i18n="cv.tagline">
Full-Stack Autonomous Systems | Technical Lead | EB-1A Eligible
</p>
<p class="mt-4 text-slate-600 max-w-3xl leading-relaxed" data-i18n="cv.intro_text">
Visionary Full-Stack Physical AI Leader with <span class="ats-keyword">14+ years</span> of architecting
and deploying pioneering autonomous systems. I bridge the critical "bit-to-atom" gap, leading the design
of custom mechatronic hardware (<span class="ats-keyword">SolidWorks</span>, <span
class="ats-keyword">Arduino</span>) and optimizing real-time perception stacks (<span
class="ats-keyword">YOLO</span>, <span class="ats-keyword">Optical Flow</span>) on edge devices
(<span class="ats-keyword">NVIDIA Jetson</span>). Proven leadership managing <span
class="ats-keyword">$2M+</span> portfolios and winning international data science challenges.
</p>
</header>
<!-- 2. KEY STATS GRID -->
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 mb-16">
<div
class="bg-white/50 backdrop-blur-lg p-6 rounded-xl shadow-xl border border-white/50 text-center card-hover">
<span class="block text-4xl font-bold text-indigo-600 mb-1">14+</span>
<span class="text-sm font-semibold text-slate-500 uppercase tracking-wide"
data-i18n="cv.years_experience">Years Experience</span>
</div>
<div
class="bg-white/50 backdrop-blur-lg p-6 rounded-xl shadow-xl border border-white/50 text-center card-hover">
<span class="block text-4xl font-bold text-indigo-600 mb-1">$2M+</span>
<span class="text-sm font-semibold text-slate-500 uppercase tracking-wide"
data-i18n="cv.portfolio_managed">Portfolio Managed</span>
</div>
<div
class="bg-white/50 backdrop-blur-lg p-6 rounded-xl shadow-xl border border-white/50 text-center card-hover">
<span class="block text-4xl font-bold text-indigo-600 mb-1">52+</span>
<span class="text-sm font-semibold text-slate-500 uppercase tracking-wide"
data-i18n="cv.publications_count">Publications</span>
</div>
<div
class="bg-white/50 backdrop-blur-lg p-6 rounded-xl shadow-xl border border-white/50 text-center card-hover">
<span class="block text-4xl font-bold text-indigo-600 mb-1">1st</span>
<span class="text-sm font-semibold text-slate-500 uppercase tracking-wide"
data-i18n="cv.global_challenge">Global Data Challenge</span>
<span class="text-xs text-slate-400 block mt-1">(Amazon Funded)</span>
</div>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-12">
<!-- LEFT COLUMN (Skills & Education) -->
<div class="lg:col-span-1 space-y-12">
<!-- SKILLS CHART SECTION -->
<section class="bg-white/50 backdrop-blur-lg p-6 rounded-2xl shadow-xl border border-white/50">
<h3 class="text-lg font-bold text-slate-900 mb-4 flex items-center gap-2"
data-i18n="section_titles.technical_stack">
<svg class="w-5 h-5 text-indigo-500" 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>
Technical Stack Analysis
</h3>
<p class="text-xs text-slate-500 mb-6" data-i18n="cv.tech_stack_desc">Comprehensive "Bit-to-Atom"
Full Stack Competency.</p>
<div class="relative h-64 w-full">
<canvas id="skillsChartCanvas"></canvas>
</div>
<!-- Additional Skills Badges -->
<div class="mt-8 space-y-4">
<div>
<h4 class="text-xs font-bold text-slate-400 uppercase tracking-wider mb-2">Robotics &
Mechatronics</h4>
<div class="flex flex-wrap gap-2">
<span
class="text-xs bg-slate-100 text-slate-700 px-2 py-1 rounded border border-slate-200">ROS/ROS2</span>
<span
class="text-xs bg-slate-100 text-slate-700 px-2 py-1 rounded border border-slate-200">SolidWorks</span>
<span
class="text-xs bg-slate-100 text-slate-700 px-2 py-1 rounded border border-slate-200">Arduino/
IoT</span>
<span
class="text-xs bg-slate-100 text-slate-700 px-2 py-1 rounded border border-slate-200">UGV/UAV
Fleets</span>
</div>
</div>
<div>
<h4 class="text-xs font-bold text-slate-400 uppercase tracking-wider mb-2">AI & Computer
Vision</h4>
<div class="flex flex-wrap gap-2">
<span
class="text-xs bg-slate-100 text-slate-700 px-2 py-1 rounded border border-slate-200">YOLOv8</span>
<span
class="text-xs bg-slate-100 text-slate-700 px-2 py-1 rounded border border-slate-200">PyTorch</span>
<span
class="text-xs bg-slate-100 text-slate-700 px-2 py-1 rounded border border-slate-200">TensorFlow</span>
<span
class="text-xs bg-slate-100 text-slate-700 px-2 py-1 rounded border border-slate-200">OpenCV</span>
</div>
</div>
<div>
<h4 class="text-xs font-bold text-slate-400 uppercase tracking-wider mb-2">Programming &
Tools</h4>
<div class="flex flex-wrap gap-2">
<span
class="text-xs bg-slate-100 text-slate-700 px-2 py-1 rounded border border-slate-200">Python
(Expert)</span>
<span
class="text-xs bg-slate-100 text-slate-700 px-2 py-1 rounded border border-slate-200">C/C++</span>
<span
class="text-xs bg-slate-100 text-slate-700 px-2 py-1 rounded border border-slate-200">Docker</span>
<span
class="text-xs bg-slate-100 text-slate-700 px-2 py-1 rounded border border-slate-200">Linux</span>
</div>
</div>
</div>
</section>
<!-- EDUCATION -->
<section>
<h3 class="text-lg font-bold text-slate-900 mb-6 flex items-center gap-2"
data-i18n="section_titles.education">
<svg class="w-5 h-5 text-indigo-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path d="M12 14l9-5-9-5-9 5 9 5z"></path>
<path
d="M12 14l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14z">
</path>
</svg>
Education
</h3>
<div class="relative border-l-2 border-slate-200 ml-3 space-y-8 pl-6">
<div class="relative">
<span
class="absolute -left-[31px] top-1.5 h-4 w-4 rounded-full bg-white border-2 border-indigo-500"></span>
<h4 class="font-bold text-slate-900">PhD in Engineering (AI and Robotics)</h4>
<p class="text-sm text-slate-600">University of Georgia, USA, 2016-2020</p>
<span
class="text-xs bg-indigo-50 text-indigo-700 px-2 py-0.5 rounded mt-1 inline-block">GPA:
Magna Cum Laude</span>
</div>
<div class="relative">
<span
class="absolute -left-[31px] top-1.5 h-4 w-4 rounded-full bg-slate-300 border-2 border-white"></span>
<h4 class="font-bold text-slate-900">MSc in Ag and Biol Engineering (Precision Agriculture)
</h4>
<p class="text-sm text-slate-600">University of Florida, USA, 2012 - 2014</p>
<span
class="text-xs bg-indigo-50 text-indigo-700 px-2 py-0.5 rounded mt-1 inline-block">GPA:
Summa Cum Laude</span>
</div>
<div class="relative">
<span
class="absolute -left-[31px] top-1.5 h-4 w-4 rounded-full bg-slate-300 border-2 border-white"></span>
<h4 class="font-bold text-slate-900">BSc in Comp Engineering & IT</h4>
<p class="text-sm text-slate-600">University of Dar es Salaam, 2007 - 2011</p>
<span
class="text-xs bg-indigo-50 text-indigo-700 px-2 py-0.5 rounded mt-1 inline-block">GPA:
Magna Cum Laude</span>
</div>
</div>
</section>
</div>
<!-- RIGHT COLUMN (Experience & Projects) -->
<div class="lg:col-span-2 space-y-12">
<!-- EXPERIENCE -->
<section>
<h3 class="text-2xl font-bold text-slate-900 mb-2"
data-i18n="section_titles.professional_experience">Professional Experience</h3>
<p class="text-slate-500 mb-8" data-i18n="cv.prof_exp_desc">Evolution from hands-on engineering to
strategic technical leadership.</p>
<div class="space-y-8">
<!-- Job 1 -->
<div class="group relative border-l-2 border-indigo-200 pl-6 pb-2">
<div
class="absolute -left-[9px] top-0 w-4 h-4 rounded-full bg-indigo-200 group-hover:bg-indigo-600 transition-colors">
</div>
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-baseline mb-2">
<h4 class="text-xl font-bold text-slate-900" data-i18n="jobs.sua_lead_title">Senior
Lecturer / Lead
Engineer / Principal Investigator / HEET Digitalization Leader</h4>
<span
class="text-xs font-mono font-bold text-indigo-600 bg-indigo-50 px-2 py-1 rounded">March
2021 - Present</span>
</div>
<h5 class="text-md font-semibold text-slate-700 mb-3" data-i18n="jobs.sua_lead_desc">Sokoine
University of Agriculture (SUA) -
Academic Information Management and Support Unit</h5>
<p class="text-slate-600 mb-4 leading-relaxed">
<strong>Managerial Leadership:</strong> Working as HEET Digitalization Leader in a <span
class="ats-keyword">$32M World Bank HEET
Project</span>. Leading the team on improvement of Online Learning Tools, Upgrading
of ICT Infrastructure (Core LAN system), Development of the cutting-edge Information
System for Academic issues and Improving power backup.
</p>
<ul
class="list-disc list-outside ml-4 space-y-2 text-slate-600 text-sm marker:text-indigo-400">
<li><strong>Strategic Leadership:</strong> Architected the technical roadmap for the new
ELectronics and Precision Agriculture Lab. As PI of the Lab, I am spearheading the
development of novel technologies for Agriculture and Environmental Health Systems
</li>
<li><strong>Impact:</strong> Managed a cross-functional team of 3+ engineers and
researchers. Hosting students from SUA and other 3 universities across Tanzania</li>
</ul>
</div>
<!-- Job 2 -->
<div class="group relative border-l-2 border-slate-200 pl-6 pb-2">
<div
class="absolute -left-[9px] top-0 w-4 h-4 rounded-full bg-slate-200 group-hover:bg-indigo-400 transition-colors">
</div>
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-baseline mb-2">
<h4 class="text-xl font-bold text-slate-900" data-i18n="jobs.uga_postdoc_title">
Geospatial Research Scholar</h4>
<span
class="text-xs font-mono font-bold text-slate-500 bg-slate-50 px-2 py-1 rounded">Nov
2020 - Feb 2021</span>
</div>
<h5 class="text-md font-semibold text-slate-700 mb-3" data-i18n="jobs.uga_postdoc_desc">
US Department of Agriculture (USDA) and North Carolina State University (NCSU)
</h5>
<p class="text-slate-600 mb-4 leading-relaxed">
Spearheaded the development of AI-driven robotics for precision agriculture, focusing on
<span class="ats-keyword">multi-UGV coordination</span> and real-time winter crops
detection.
</p>
<ul
class="list-disc list-outside ml-4 space-y-2 text-slate-600 text-sm marker:text-indigo-400">
<li><strong>Innovation:</strong> Developed a <span class="ats-keyword">Modified Pure
Pursuit</span> algorithm improving path tracking by 30%.</li>
<li><strong>Tech Stack:</strong> ROS, Python, OpenCV, NVIDIA Jetson, SolidWorks.</li>
</ul>
</div>
<!-- Job 3 -->
<div class="group relative border-l-2 border-slate-200 pl-6 pb-2">
<div
class="absolute -left-[9px] top-0 w-4 h-4 rounded-full bg-slate-200 group-hover:bg-indigo-400 transition-colors">
</div>
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-baseline mb-2">
<h4 class="text-xl font-bold text-slate-900" data-i18n="jobs.uga_gra_title">Graduate
Research Assistant</h4>
<span
class="text-xs font-mono font-bold text-slate-500 bg-slate-50 px-2 py-1 rounded">Aug
2016 - Nov 2020</span>
</div>
<h5 class="text-md font-semibold text-slate-700 mb-3" data-i18n="jobs.uga_gra_desc">
University of Georgia (UGA)</h5>
<p class="text-slate-600 mb-4 leading-relaxed">
Developed autonomous cotton harvesting robots and yield estimation systems using deep
learning (<span class="ats-keyword">YOLO</span>).
</p>
</div>
<!-- Job 4 -->
<div class="group relative border-l-2 border-slate-200 pl-6 pb-2">
<div
class="absolute -left-[9px] top-0 w-4 h-4 rounded-full bg-slate-200 group-hover:bg-indigo-400 transition-colors">
</div>
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-baseline mb-2">
<h4 class="text-xl font-bold text-slate-900" data-i18n="jobs.sua_asst_lecturer_title">
Assistant Lecturer</h4>
<span
class="text-xs font-mono font-bold text-slate-500 bg-slate-50 px-2 py-1 rounded">Nov
2013 - Aug 2016</span>
</div>
<h5 class="text-md font-semibold text-slate-700 mb-3"
data-i18n="jobs.sua_asst_lecturer_desc">Sokoine University of Agriculture (SUA)</h5>
</div>
<!-- Job 5 -->
<div class="group relative border-l-2 border-slate-200 pl-6 pb-2">
<div
class="absolute -left-[9px] top-0 w-4 h-4 rounded-full bg-slate-200 group-hover:bg-indigo-400 transition-colors">
</div>
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-baseline mb-2">
<h4 class="text-xl font-bold text-slate-900" data-i18n="jobs.sua_tutorial_asst_title">
Tutorial Assistant</h4>
<span
class="text-xs font-mono font-bold text-slate-500 bg-slate-50 px-2 py-1 rounded">Nov
2010 - Nov 2013</span>
</div>
<h5 class="text-md font-semibold text-slate-700 mb-3"
data-i18n="jobs.sua_tutorial_asst_desc">Sokoine University of Agriculture (SUA)</h5>
</div>
</div>
</section>
<!-- 6. TEACHING RESPONSIBILITIES -->
<section>
<div class="mb-6">
<h3 class="text-2xl font-bold text-slate-900 mb-1">TEACHING RESPONSIBILITIES <span
class="text-sm text-slate-500">[since 2021]</span></h3>
<p class="text-slate-500 text-sm">Courses taught across graduate and undergraduate levels;
topics emphasize practical, hands-on skills in programming, embedded systems, networking,
instrumentation and agricultural applications of AI and IoT.</p>
</div>
<div class="space-y-6">
<div>
<h4 class="font-bold text-slate-800">AEC 813 — Artificial Intelligence, IoT and GIS
Application in Agriculture (PhD Students)</h4>
<p class="text-slate-600 text-sm">Advanced topics in machine learning for agriculture,
spatial data analysis (GIS), sensor integration, edge AI deployment, and research
methodologies for PhD-level projects.</p>
</div>
<div>
<h4 class="font-bold text-slate-800">ABE 715 — Computer Programming (Masters Students)</h4>
<p class="text-slate-600 text-sm">Structured programming, data structures, algorithmic
thinking, and application development in Python and C for engineering problem solving.
</p>
</div>
<div>
<h4 class="font-bold text-slate-800">AGE 418 — Sensors and Controls for Precision
Agriculture (Senior Students)</h4>
<p class="text-slate-600 text-sm">Sensor technologies, control systems, data acquisition,
and system design for automated precision agriculture platforms.</p>
</div>
<div>
<h4 class="font-bold text-slate-800">BPE 419 — Mechatronics (Senior Students)</h4>
<p class="text-slate-600 text-sm">Integration of mechanical, electronic and software
subsystems; actuators, embedded controllers and practical robotics labs.</p>
</div>
<div>
<h4 class="font-bold text-slate-800">AGE 328 — Communications and Computer Networking
(Junior Students)</h4>
<p class="text-slate-600 text-sm">Fundamentals of networking, wireless communications,
protocols, and networked systems for IoT applications.</p>
</div>
<div>
<h4 class="font-bold text-slate-800">AGE 316 — Microcomputer Systems (Junior Students)</h4>
<p class="text-slate-600 text-sm">Microcontroller programming, embedded system
architectures, interfacing, and low-level system design using platforms such as Arduino
and ESP32.</p>
</div>
<div>
<h4 class="font-bold text-slate-800">AGE 310 — Instrumentation and Measurements (Junior
Students)</h4>
<p class="text-slate-600 text-sm">Principles of measurement, instrumentation design, sensor
calibration, data logging and signal conditioning for field and lab use.</p>
</div>
<div>
<h4 class="font-bold text-slate-800">AGE 219 — Introduction to Computer Programming
(Sophomore Students)</h4>
<p class="text-slate-600 text-sm">Introductory programming concepts, problem-solving with
code, basic algorithms and practical labs using Python.</p>
</div>
<div>
<h4 class="font-bold text-slate-800">AGE 214 — Introduction to Electronics (Sophomore
Students)</h4>
<p class="text-slate-600 text-sm">Foundations of electronics, circuit analysis,
analog/digital components and hands-on lab exercises to build simple electronic systems.
</p>
</div>
</div>
</section>
<!-- PROJECTS / INNOVATIONS -->
<section>
<div class="flex justify-between items-center mb-6">
<div>
<h3 class="text-2xl font-bold text-slate-900 mb-1"
data-i18n="section_titles.innovation_lab">Electronics and Precision Agriculture Lab
Innovations</h3>
<p class="text-slate-500 text-sm" data-i18n="cv.innovation_lab_desc">Deep dive into key
engineering contributions.</p>
</div>
<!-- Filter Buttons -->
<div class="flex space-x-2">
<button
class="filter-btn active text-xs font-bold px-3 py-1 rounded-full bg-indigo-600 text-white transition-all shadow-sm"
data-filter="all" data-i18n="cv.filter_all">All</button>
<button
class="filter-btn text-xs font-medium px-3 py-1 rounded-full bg-slate-100 text-slate-600 hover:bg-slate-200 transition-all"
data-filter="robotics" data-i18n="cv.filter_robotics">Robotics</button>
<button
class="filter-btn text-xs font-medium px-3 py-1 rounded-full bg-slate-100 text-slate-600 hover:bg-slate-200 transition-all"
data-filter="ai" data-i18n="cv.filter_cloud">Cloud/AI</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6" id="projects-grid">
<!-- Project 1: Autonomous Spraying Robot -->
<div
class="project-card robotics p-5 rounded-xl border border-white/50 shadow-xl bg-white/50 backdrop-blur-lg hover:border-indigo-300 transition-all cursor-default group">
<div class="flex justify-between items-start mb-3">
<h4 class="font-bold text-slate-800 group-hover:text-indigo-700 transition-colors">
Autonomous Spraying Robot</h4>
<span
class="text-xs bg-indigo-50 text-indigo-700 px-2 py-1 rounded border border-indigo-100 font-bold">Robotics</span>
</div>
<p class="text-slate-600 mb-6 leading-relaxed">
Implemented autonomous mission planning and execution for a multi-UGV fleet used in
agricultural mapping and spraying operations (<span
class="ats-keyword">PX4/ArduPilot</span>, <span class="ats-keyword">ROS</span>).
</p>
</div>
<!-- Project 2: Yield Estimation (YOLO) -->
<div
class="project-card ai p-5 rounded-xl border border-white/50 shadow-xl bg-white/50 backdrop-blur-lg hover:border-indigo-300 transition-all cursor-default group">
<div class="flex justify-between items-start mb-3">
<h4 class="font-bold text-slate-800 group-hover:text-indigo-700 transition-colors">
Real-Time Yield Estimation</h4>
<span
class="text-xs bg-purple-50 text-purple-700 px-2 py-1 rounded border border-purple-100 font-bold">AI
/ Vision</span>
</div>
<p class="text-slate-600 mb-6 leading-relaxed">
Developed a deep learning pipeline using <span class="ats-keyword">YOLO</span> and SORT
tracking to count cotton bolls in real-time video feeds with 95% accuracy.
</p>
</div>
<!-- Project 3: Cotton Harvesting Robot -->
<div
class="project-card robotics p-5 rounded-xl border border-white/50 shadow-xl bg-white/50 backdrop-blur-lg hover:border-indigo-300 transition-all cursor-default group">
<div class="flex justify-between items-start mb-3">
<h4 class="font-bold text-slate-800 group-hover:text-indigo-700 transition-colors">
Cotton Harvesting Robot</h4>
<span
class="text-xs bg-indigo-50 text-indigo-700 px-2 py-1 rounded border border-indigo-100 font-bold">Robotics</span>
</div>
<p class="text-slate-600 mb-6 leading-relaxed">
Designed the end-effector and manipulator control system for a redbot ground vehicle to
autonomously harvest cotton bolls (<span class="ats-keyword">MoveIt!</span>, <span
class="ats-keyword">Kinematics</span>).
</p>
</div>
<!-- Project 4: Variable Rate Sprayer -->
<div
class="project-card robotics p-5 rounded-xl border border-white/50 shadow-xl bg-white/50 backdrop-blur-lg hover:border-indigo-300 transition-all cursor-default group">
<div class="flex justify-between items-start mb-3">
<h4 class="font-bold text-slate-800 group-hover:text-indigo-700 transition-colors">
Variable Rate Sprayer</h4>
<span
class="text-xs bg-indigo-50 text-indigo-700 px-2 py-1 rounded border border-indigo-100 font-bold">IoT
/ Embedded</span>
</div>
<p class="text-slate-600 mb-6 leading-relaxed">
Created an IoT-enabled smart sprayer that adjusts chemical application based on
real-time sensor data, reducing waste by 40% (<span class="ats-keyword">ESP32</span>,
<span class="ats-keyword">MQTT</span>).
</p>
</div>
<!-- Project 5: TanPredikt -->
<div
class="project-card ai p-5 rounded-xl border border-white/50 shadow-xl bg-white/50 backdrop-blur-lg hover:border-indigo-300 transition-all cursor-default group">
<div class="flex justify-between items-start mb-3">
<h4 class="font-bold text-slate-800 group-hover:text-indigo-700 transition-colors">
TanPredikt</h4>
<span
class="text-xs bg-purple-50 text-purple-700 px-2 py-1 rounded border border-purple-100 font-bold">AI
/ Forecasting</span>
</div>
<p class="text-slate-600 mb-6 leading-relaxed" data-i18n="projects.tanpredikt_desc">