-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1920 lines (1812 loc) · 110 KB
/
index.html
File metadata and controls
1920 lines (1812 loc) · 110 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Zahid Hasan - Expert Embedded Systems Developer with 2+ years experience in firmware development, IoT, and microcontroller programming. Specialized in ESP32, ARM, AVR, and RTOS.">
<meta name="keywords"
content="embedded systems, firmware developer, embedded C, IoT, microcontroller, ESP32, ARM, AVR, FreeRTOS, embedded engineer">
<meta name="author" content="Zahid Hasan">
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<meta property="og:type" content="website">
<meta property="og:title" content="Zahid Hasan - Embedded Systems Developer | Portfolio">
<meta property="og:description"
content="Expert in firmware development, IoT solutions, and embedded systems. 2+ years experience with ESP32, ARM, and RTOS.">
<meta property="og:image" content="https://codewithzahid.github.io/photos/zahid.jpg">
<meta property="og:url" content="https://codewithzahid.github.io">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Zahid Hasan - Embedded Systems Developer">
<meta name="twitter:description"
content="Expert firmware developer specializing in IoT and microcontroller systems.">
<meta name="twitter:image" content="https://codewithzahid.github.io/photos/zahid.jpg">
<link rel="canonical" href="https://codewithzahid.github.io">
<link rel="sitemap" type="application/xml" href="https://codewithzahid.github.io/sitemap.xml">
<link rel="apple-touch-icon" href="https://codewithzahid.github.io/photos/zahid.jpg">
<title>Zahid Hasan - Embedded Systems Developer | Firmware & IoT Expert</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
orbitron: ['Orbitron', 'sans-serif'],
},
colors: {
'deep-purple': '#14102a',
'mid-purple': '#271b4d',
'light-purple': '#583d9c',
'accent': '#8a5cf5'
},
animation: {
'float': 'float 6s ease-in-out infinite',
'glow': 'glow 2s ease-in-out infinite',
'slide-up': 'slideUp 0.8s ease-out',
'fade-in': 'fadeIn 1s ease-out',
'scale-in': 'scaleIn 0.6s ease-out',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
glow: {
'0%, 100%': { boxShadow: '0 0 20px rgba(138, 92, 245, 0.5)' },
'50%': { boxShadow: '0 0 40px rgba(138, 92, 245, 0.8)' },
},
slideUp: {
'0%': { transform: 'translateY(50px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
scaleIn: {
'0%': { transform: 'scale(0.8)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
},
}
}
}
}
</script>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Orbitron:wght@500;700;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-text {
background: linear-gradient(135deg, #8a5cf5 0%, #c77dff 50%, #8a5cf5 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
background-size: 200% auto;
animation: gradient-shift 3s linear infinite;
}
@keyframes gradient-shift {
0% {
background-position: 0% center;
}
100% {
background-position: 200% center;
}
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(138, 92, 245, 0.3);
}
.reveal {
opacity: 0;
transform: translateY(50px);
transition: all 0.8s ease-out;
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
.parallax-bg {
transition: transform 0.1s ease-out;
}
.typing-animation::after {
content: '|';
animation: blink 1s step-start infinite;
}
@keyframes blink {
50% {
opacity: 0;
}
}
.skill-icon {
transition: all 0.3s ease;
}
.skill-icon:hover {
transform: rotate(360deg) scale(1.2);
}
.wave-line {
position: relative;
overflow: hidden;
}
.wave-line::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, #8a5cf5, transparent);
animation: wave 3s linear infinite;
}
@keyframes wave {
0% {
left: -100%;
}
100% {
left: 100%;
}
}
</style>
<!-- JSON-LD Schema Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Zahid Hasan",
"jobTitle": "Embedded Systems Developer",
"url": "https://codewithzahid.github.io",
"image": "https://codewithzahid.github.io/photos/zahid.jpg",
"description": "Expert Embedded Systems Developer specializing in firmware development, IoT solutions, and microcontroller programming.",
"sameAs": [
"https://github.com",
"https://linkedin.com",
"https://twitter.com"
],
"knowsAbout": [
"Embedded C/C++",
"Firmware Development",
"IoT Systems",
"RTOS",
"Microcontrollers",
"ESP32",
"ARM Architecture",
"AVR Microcontrollers",
"FreeRTOS",
"Digital Electronics"
],
"worksFor": {
"@type": "Organization",
"name": "Freelance"
}
}
</script>
<!-- Organization Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Zahid Hasan - Embedded Systems Developer",
"image": "https://codewithzahid.github.io/photos/zahid.jpg",
"description": "Professional embedded systems developer offering firmware development and IoT solutions.",
"url": "https://codewithzahid.github.io",
"address": {
"@type": "PostalAddress",
"addressLocality": "Dhaka",
"addressCountry": "BD"
},
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-123-456-7890",
"contactType": "Customer Service"
}
}
</script>
<!-- Breadcrumb Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://codewithzahid.github.io"
},
{
"@type": "ListItem",
"position": 2,
"name": "About",
"item": "https://codewithzahid.github.io#about"
},
{
"@type": "ListItem",
"position": 3,
"name": "Projects",
"item": "https://codewithzahid.github.io#projects"
},
{
"@type": "ListItem",
"position": 4,
"name": "Contact",
"item": "https://codewithzahid.github.io#contact"
}
]
}
</script>
<!-- FAQ Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What does Zahid Hasan specialize in?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Zahid Hasan specializes in embedded systems development, firmware programming, IoT solutions, and microcontroller programming with expertise in ESP32, ARM, AVR, and RTOS."
}
},
{
"@type": "Question",
"name": "What programming languages does Zahid use?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Zahid is proficient in Embedded C, C++, and has experience with various microcontroller platforms including ARM Cortex-M, AVR, and ESP32 architectures."
}
},
{
"@type": "Question",
"name": "What is Zahid's experience level?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Zahid has 2+ years of professional experience in embedded systems development with 15+ completed projects in IoT, firmware, and hardware integration."
}
}
]
}
</script>
</head>
<body class="bg-deep-purple text-white font-poppins overflow-x-hidden">
<!-- Navigation -->
<nav class="fixed top-0 left-0 right-0 bg-deep-purple/95 backdrop-blur-md z-50 shadow-lg border-b border-accent/20">
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
<!-- Stylish Logo -->
<div class="logo text-3xl md:text-4xl font-orbitron font-black tracking-wider">
<span class="text-white relative">
<span class="relative z-10"><ZAHID/></span>
</span>
</div>
<!-- Hamburger Icon -->
<button id="menu-toggle"
class="md:hidden text-accent text-3xl focus:outline-none hover:scale-110 transition-transform">
<i class="fas fa-bars"></i>
</button>
<!-- Navigation Links -->
<div id="menu"
class="hidden md:flex md:space-x-8 absolute md:relative top-full left-0 w-full md:w-auto bg-deep-purple md:bg-transparent text-center md:text-left md:flex-row flex-col md:items-center shadow-md md:shadow-none">
<a href="#home"
class="hover:text-accent transition-all hover:scale-110 block md:inline py-3 md:py-0 font-semibold relative group">
Home
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-accent group-hover:w-full transition-all duration-300"></span>
</a>
<a href="#about"
class="hover:text-accent transition-all hover:scale-110 block md:inline py-3 md:py-0 font-semibold relative group">
About
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-accent group-hover:w-full transition-all duration-300"></span>
</a>
<a href="#projects"
class="hover:text-accent transition-all hover:scale-110 block md:inline py-3 md:py-0 font-semibold relative group">
Projects
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-accent group-hover:w-full transition-all duration-300"></span>
</a>
<a href="#lab"
class="hover:text-accent transition-all hover:scale-110 block md:inline py-3 md:py-0 font-semibold relative group">
Lab
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-accent group-hover:w-full transition-all duration-300"></span>
</a>
<div class="relative group py-3 md:py-0">
<button
class="hover:text-accent transition-all hover:scale-110 font-semibold relative flex items-center">
More
<i class="fas fa-chevron-down text-xs ml-2 group-hover:rotate-180 transition-transform"></i>
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-accent group-hover:w-full transition-all duration-300"></span>
</button>
<div
class="absolute left-0 mt-0 w-48 bg-mid-purple rounded-lg shadow-lg opacity-0 invisible group-hover:opacity-100 group-hover:visible transition-all duration-300 py-2 z-50 md:top-full">
<a href="#education"
class="block px-4 py-2 hover:text-accent hover:bg-deep-purple/50 transition-all text-sm"><i
class="fas fa-graduation-cap mr-2"></i>Education</a>
<a href="#certifications"
class="block px-4 py-2 hover:text-accent hover:bg-deep-purple/50 transition-all text-sm"><i
class="fas fa-certificate mr-2"></i>Certifications</a>
<a href="#awards"
class="block px-4 py-2 hover:text-accent hover:bg-deep-purple/50 transition-all text-sm"><i
class="fas fa-trophy mr-2"></i>Honors & Awards</a>
<a href="#activities"
class="block px-4 py-2 hover:text-accent hover:bg-deep-purple/50 transition-all text-sm"><i
class="fas fa-users mr-2"></i>Activities</a>
<a href="#reviews"
class="block px-4 py-2 hover:text-accent hover:bg-deep-purple/50 transition-all text-sm"><i
class="fas fa-star mr-2"></i>Reviews</a>
<a href="#gallery"
class="block px-4 py-2 hover:text-accent hover:bg-deep-purple/50 transition-all text-sm"><i
class="fas fa-images mr-2"></i>Gallery</a>
</div>
</div>
<a href="#contact"
class="hover:text-accent transition-all hover:scale-110 block md:inline py-3 md:py-0 font-semibold relative group">
Contact
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-accent group-hover:w-full transition-all duration-300"></span>
</a>
</div>
</div>
</nav>
<!-- Hero Section with Interactive Elements -->
<section id="home" class="min-h-screen flex items-center relative overflow-hidden pt-16">
<!-- Animated Background -->
<div class="absolute w-full h-full">
<div class="absolute top-1/4 left-1/3 w-64 h-64 rounded-full bg-light-purple/30 blur-3xl animate-float">
</div>
<div class="absolute bottom-1/4 right-1/3 w-80 h-80 rounded-full bg-accent/20 blur-3xl animate-float"
style="animation-delay: 1s;"></div>
<div class="absolute top-1/2 left-1/4 w-40 h-40 rounded-full bg-accent/10 blur-2xl animate-float"
style="animation-delay: 2s;"></div>
</div>
<!-- Particles Effect -->
<div class="absolute inset-0" id="particles"></div>
<div class="container mx-auto px-6 z-10 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 animate-slide-up">
<div class="text-accent font-semibold mb-2 tracking-widest uppercase text-sm animate-fade-in">Welcome to
my portfolio</div>
<h1 class="text-5xl md:text-7xl font-bold mb-4 animate-fade-in" style="animation-delay: 0.2s;">
Hello! I am <br>
<span class="gradient-text font-orbitron">Zahid Hasan</span>
</h1>
<h2 class="text-3xl md:text-4xl font-semibold mb-6 animate-fade-in" style="animation-delay: 0.4s;">
<span class="text-accent"><</span>Embedded Systems Developer<span
class="text-accent">/></span>
</h2>
<p class="text-lg mb-8 max-w-lg leading-relaxed animate-fade-in" style="animation-delay: 0.6s;">
I design and develop intelligent embedded systems that bridge hardware and software,
creating innovative solutions for complex technical challenges.
</p>
<div class="flex flex-wrap gap-4 animate-fade-in" style="animation-delay: 0.8s;">
<a href="#contact"
class="bg-accent hover:bg-accent/80 text-white px-8 py-4 rounded-lg transition-all hover:scale-105 hover:shadow-lg hover:shadow-accent/50 font-semibold">
<i class="fas fa-envelope mr-2"></i>Get in Touch
</a>
<a href="#projects"
class="border-2 border-accent text-accent hover:bg-accent hover:text-white px-8 py-4 rounded-lg transition-all hover:scale-105 font-semibold">
<i class="fas fa-code mr-2"></i>View Projects
</a>
</div>
<!-- Stats -->
<div class="grid grid-cols-3 gap-6 mt-12 animate-fade-in" style="animation-delay: 1s;">
<div class="text-center">
<div class="text-3xl font-bold text-accent">2+</div>
<div class="text-sm text-gray-400">Years Experience</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-accent">15+</div>
<div class="text-sm text-gray-400">Projects Done</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-accent">10+</div>
<div class="text-sm text-gray-400">Technologies</div>
</div>
</div>
</div>
<div class="md:w-1/2 relative animate-scale-in" style="animation-delay: 0.5s;">
<div class="relative w-80 h-80 mx-auto">
<!-- Rotating Border -->
<div class="absolute inset-0 rounded-full bg-gradient-to-r from-accent via-light-purple to-accent animate-spin"
style="animation-duration: 8s;"></div>
<div class="absolute inset-2 rounded-full bg-deep-purple"></div>
<!-- Pulsing Glow -->
<div class="absolute inset-0 rounded-full bg-accent/20 animate-glow"></div>
<!-- Profile Image -->
<img src="/photos/zahid.jpg" alt="Zahid Hasan - Embedded Systems Developer"
class="absolute inset-3 rounded-full object-cover z-10 w-[calc(100%-24px)] h-[calc(100%-24px)] hover:scale-105 transition-transform duration-300">
<!-- Floating Icons -->
<div
class="absolute -top-4 -right-4 bg-accent/90 w-16 h-16 rounded-full flex items-center justify-center animate-float shadow-lg">
<i class="fas fa-microchip text-2xl"></i>
</div>
<div class="absolute -bottom-4 -left-4 bg-light-purple/90 w-16 h-16 rounded-full flex items-center justify-center animate-float shadow-lg"
style="animation-delay: 1s;">
<i class="fas fa-code text-2xl"></i>
</div>
<div class="absolute top-1/2 -right-8 bg-mid-purple/90 w-14 h-14 rounded-full flex items-center justify-center animate-float shadow-lg"
style="animation-delay: 1.5s;">
<i class="fas fa-wifi text-xl"></i>
</div>
</div>
</div>
</div>
<!-- Scroll Indicator -->
<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 animate-bounce">
<a href="#about" class="flex flex-col items-center text-accent hover:text-white transition-colors">
<span class="text-sm mb-2">Scroll Down</span>
<i class="fas fa-chevron-down text-xl"></i>
</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-mid-purple/50 relative overflow-hidden">
<div class="absolute inset-0 opacity-10">
<div class="absolute top-0 left-0 w-full h-1 bg-gradient-to-r from-transparent via-accent to-transparent">
</div>
</div>
<div class="container mx-auto px-6">
<div class="text-center mb-16 reveal">
<div class="text-accent font-semibold mb-2 tracking-widest uppercase text-sm">Who I Am</div>
<h2
class="text-5xl md:text-6xl font-bold mb-4 font-orbitron bg-gradient-to-r from-accent via-light-purple to-accent bg-clip-text text-transparent">
About Me</h2>
<div class="w-24 h-1 bg-gradient-to-r from-transparent via-accent to-transparent mx-auto mb-4"></div>
</div>
<div class="flex flex-col md:flex-row items-center gap-12">
<div class="md:w-1/2 reveal">
<h3 class="text-3xl font-semibold mb-6 text-accent">I'm an Embedded Systems Developer</h3>
<p class="mb-4 text-lg leading-relaxed">
With <strong class="text-accent">2 years of experience</strong> in embedded systems development,
I specialize in creating
efficient and reliable firmware & hardware for microcontrollers and IoT devices.
</p>
<p class="mb-6 text-lg leading-relaxed">
I bridge the gap between hardware and software, designing systems that optimize performance
while meeting strict power and resource constraints.
</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mt-8">
<div
class="bg-deep-purple/50 p-6 rounded-lg border border-accent/20 hover:border-accent transition-all card-hover">
<h4 class="text-accent font-semibold mb-4 text-xl flex items-center">
<i class="fas fa-code mr-2"></i> Skills
</h4>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check text-accent mr-2"></i> Embedded
C/C++</li>
<li class="flex items-center"><i class="fas fa-check text-accent mr-2"></i> Firmware
Development</li>
<li class="flex items-center"><i class="fas fa-check text-accent mr-2"></i>
Analog/Digital Electronics</li>
<li class="flex items-center"><i class="fas fa-check text-accent mr-2"></i> PCB Design
</li>
</ul>
</div>
<div
class="bg-deep-purple/50 p-6 rounded-lg border border-accent/20 hover:border-accent transition-all card-hover">
<h4 class="text-accent font-semibold mb-4 text-xl flex items-center">
<i class="fas fa-tools mr-2"></i> Tools
</h4>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check text-accent mr-2"></i> ARM/AVR
Microcontrollers</li>
<li class="flex items-center"><i class="fas fa-check text-accent mr-2"></i> FreeRTOS
</li>
<li class="flex items-center"><i class="fas fa-check text-accent mr-2"></i> JTAG/SWD
Debugging</li>
<li class="flex items-center"><i class="fas fa-check text-accent mr-2"></i>
Oscilloscopes & Logic Analyzers</li>
</ul>
</div>
</div>
</div>
<div class="md:w-1/2 reveal">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="bg-deep-purple/70 p-8 rounded-xl border border-accent/20 card-hover group">
<div class="text-accent text-4xl mb-4 skill-icon">
<i class="fas fa-microchip"></i>
</div>
<h4 class="font-semibold text-xl mb-3 group-hover:text-accent transition-colors">Firmware
Development</h4>
<p class="text-gray-300">Creating efficient, reliable code for microcontrollers</p>
</div>
<div class="bg-deep-purple/70 p-8 rounded-xl border border-accent/20 card-hover group">
<div class="text-accent text-4xl mb-4 skill-icon">
<i class="fas fa-wifi"></i>
</div>
<h4 class="font-semibold text-xl mb-3 group-hover:text-accent transition-colors">IoT
Solutions</h4>
<p class="text-gray-300">Building connected devices with optimized power consumption</p>
</div>
<div class="bg-deep-purple/70 p-8 rounded-xl border border-accent/20 card-hover group">
<div class="text-accent text-4xl mb-4 skill-icon">
<i class="fas fa-code"></i>
</div>
<h4 class="font-semibold text-xl mb-3 group-hover:text-accent transition-colors">Protocol
Solutions</h4>
<p class="text-gray-300">Interfacing communication protocols for specialized applications
</p>
</div>
<div class="bg-deep-purple/70 p-8 rounded-xl border border-accent/20 card-hover group">
<div class="text-accent text-4xl mb-4 skill-icon">
<i class="fas fa-cogs"></i>
</div>
<h4 class="font-semibold text-xl mb-3 group-hover:text-accent transition-colors">Hardware
Integration</h4>
<p class="text-gray-300">Interfacing with sensors, actuators and complex hardware systems
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Work Experience -->
<section id="experience" class="py-20 relative overflow-hidden">
<div class="container mx-auto px-6">
<div class="text-center mb-16 reveal">
<div class="text-accent font-semibold mb-2 tracking-widest uppercase text-sm">My Journey</div>
<h2
class="text-5xl md:text-6xl font-bold mb-4 font-orbitron bg-gradient-to-r from-accent via-light-purple to-accent bg-clip-text text-transparent">
Work Experience</h2>
<div class="w-24 h-1 bg-gradient-to-r from-transparent via-accent to-transparent mx-auto mb-4"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Experience Cards -->
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 rounded-xl overflow-hidden group card-hover border border-accent/20 reveal">
<div class="p-8">
<div class="flex items-center mb-6">
<div
class="w-16 h-16 bg-accent/20 rounded-xl flex items-center justify-center mr-4 group-hover:bg-accent/40 transition-all">
<i class="fas fa-microchip text-accent text-2xl"></i>
</div>
<div>
<h3 class="text-2xl font-semibold group-hover:text-accent transition-colors">Embedded
Engineer</h3>
<p class="text-gray-400 font-semibold">GizanTech</p>
</div>
</div>
<p class="mb-6 text-gray-300 leading-relaxed">Firmware development for smart home IoT devices
using ESP32 microcontrollers with focus on power optimization</p>
<div class="flex flex-wrap gap-2 mb-6">
<span
class="bg-deep-purple/80 px-4 py-2 rounded-full text-sm border border-accent/30 hover:border-accent transition-colors">ARM</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-full text-sm border border-accent/30 hover:border-accent transition-colors">FreeRTOS</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-full text-sm border border-accent/30 hover:border-accent transition-colors">BLE</span>
</div>
<a href="#"
class="text-accent group-hover:text-white inline-flex items-center font-semibold hover:translate-x-2 transition-transform">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 rounded-xl overflow-hidden group card-hover border border-accent/20 reveal">
<div class="p-8">
<div class="flex items-center mb-6">
<div
class="w-16 h-16 bg-accent/20 rounded-xl flex items-center justify-center mr-4 group-hover:bg-accent/40 transition-all">
<i class="fas fa-robot text-accent text-2xl"></i>
</div>
<div>
<h3 class="text-2xl font-semibold group-hover:text-accent transition-colors">Embedded
Systems Developer</h3>
<p class="text-gray-400 font-semibold">Robotics Solutions Ltd.</p>
</div>
</div>
<p class="mb-6 text-gray-300 leading-relaxed">Designed real-time control systems for autonomous
robotics using C++ and RTOS architecture</p>
<div class="flex flex-wrap gap-2 mb-6">
<span
class="bg-deep-purple/80 px-4 py-2 rounded-full text-sm border border-accent/30 hover:border-accent transition-colors">C++</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-full text-sm border border-accent/30 hover:border-accent transition-colors">RTOS</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-full text-sm border border-accent/30 hover:border-accent transition-colors">CAN</span>
</div>
<a href="#"
class="text-accent group-hover:text-white inline-flex items-center font-semibold hover:translate-x-2 transition-transform">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 rounded-xl overflow-hidden group card-hover border border-accent/20 reveal">
<div class="p-8">
<div class="flex items-center mb-6">
<div
class="w-16 h-16 bg-accent/20 rounded-xl flex items-center justify-center mr-4 group-hover:bg-accent/40 transition-all">
<i class="fas fa-heartbeat text-accent text-2xl"></i>
</div>
<div>
<h3 class="text-2xl font-semibold group-hover:text-accent transition-colors">Firmware
Engineer</h3>
<p class="text-gray-400 font-semibold">MedTech Innovations</p>
</div>
</div>
<p class="mb-6 text-gray-300 leading-relaxed">Developed firmware for medical monitoring devices
with strict safety requirements and compliance standards</p>
<div class="flex flex-wrap gap-2 mb-6">
<span
class="bg-deep-purple/80 px-4 py-2 rounded-full text-sm border border-accent/30 hover:border-accent transition-colors">C</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-full text-sm border border-accent/30 hover:border-accent transition-colors">FDA</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-full text-sm border border-accent/30 hover:border-accent transition-colors">ISO13485</span>
</div>
<a href="#"
class="text-accent group-hover:text-white inline-flex items-center font-semibold hover:translate-x-2 transition-transform">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 rounded-xl overflow-hidden group card-hover border border-accent/20 reveal">
<div class="p-8">
<div class="flex items-center mb-6">
<div
class="w-16 h-16 bg-accent/20 rounded-xl flex items-center justify-center mr-4 group-hover:bg-accent/40 transition-all">
<i class="fas fa-satellite text-accent text-2xl"></i>
</div>
<div>
<h3 class="text-2xl font-semibold group-hover:text-accent transition-colors">IoT Systems
Engineer</h3>
<p class="text-gray-400 font-semibold">ConnectedTech</p>
</div>
</div>
<p class="mb-6 text-gray-300 leading-relaxed">Built low-power wireless sensor networks for
industrial monitoring applications using LoRaWAN</p>
<div class="flex flex-wrap gap-2 mb-6">
<span
class="bg-deep-purple/80 px-4 py-2 rounded-full text-sm border border-accent/30 hover:border-accent transition-colors">LoRaWAN</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-full text-sm border border-accent/30 hover:border-accent transition-colors">ESP32</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-full text-sm border border-accent/30 hover:border-accent transition-colors">MQTT</span>
</div>
<a href="#"
class="text-accent group-hover:text-white inline-flex items-center font-semibold hover:translate-x-2 transition-transform">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Featured Projects Section -->
<section id="projects"
class="py-20 bg-gradient-to-b from-deep-purple via-mid-purple/50 to-deep-purple relative overflow-hidden">
<div class="absolute inset-0 opacity-10">
<div class="absolute top-0 left-1/2 w-96 h-96 rounded-full bg-accent/30 blur-3xl animate-float"></div>
<div class="absolute bottom-0 right-1/4 w-96 h-96 rounded-full bg-light-purple/30 blur-3xl animate-float"
style="animation-delay: 1.5s;"></div>
</div>
<div class="container mx-auto px-6 relative z-10">
<div class="text-center mb-16 reveal">
<div class="text-accent font-semibold mb-2 tracking-widest uppercase text-sm">What I've Built</div>
<h2
class="text-5xl md:text-6xl font-bold mb-4 font-orbitron bg-gradient-to-r from-accent via-light-purple to-accent bg-clip-text text-transparent">
Featured Projects</h2>
<div class="w-24 h-1 bg-gradient-to-r from-transparent via-accent to-transparent mx-auto mb-6"></div>
<p class="max-w-2xl mx-auto text-gray-300 text-lg leading-relaxed"></p>
</div>
<!-- Project 1 -->
<div class="flex flex-col md:flex-row mb-20 items-center gap-12 reveal">
<div class="md:w-1/2">
<div class="mb-4">
<span
class="inline-block bg-gradient-to-r from-accent/20 to-accent/10 text-accent px-4 py-2 rounded-full text-sm font-semibold border border-accent/30 hover:border-accent transition-all">IoT
Solution</span>
</div>
<h3
class="text-4xl md:text-5xl font-bold mb-4 font-orbitron text-transparent bg-gradient-to-r from-white to-gray-200 bg-clip-text">
Smart Energy Monitor</h3>
<p class="mb-6 text-lg text-gray-300 leading-relaxed">
A low-power embedded system that monitors and optimizes energy consumption in homes and
buildings. Features real-time power measurement, data logging, and wireless connectivity.
</p>
<div class="mb-8">
<h4 class="text-accent font-semibold mb-3 text-lg">Technologies Used:</h4>
<div class="flex flex-wrap gap-3">
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">STM32</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">FreeRTOS</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">BLE</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">Power
Management</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">Embedded
C</span>
</div>
</div>
<div class="flex gap-4">
<a href="#"
class="inline-flex items-center text-accent hover:text-white font-semibold hover:translate-x-2 transition-all">
<i class="fas fa-code mr-2"></i> View Code
</a>
<a href="#"
class="inline-flex items-center text-accent hover:text-white font-semibold hover:translate-x-2 transition-all">
<i class="fas fa-external-link-alt mr-2"></i> Live Demo
</a>
</div>
</div>
<div class="md:w-1/2">
<div class="relative group">
<div
class="absolute -inset-4 bg-gradient-to-r from-accent to-light-purple rounded-2xl blur-2xl opacity-60 group-hover:opacity-100 transition-opacity duration-500">
</div>
<div
class="relative bg-gradient-to-br from-blue-500/20 to-purple-500/20 p-3 rounded-2xl border border-accent/20 group-hover:border-accent/50 transition-all">
<img src="/photos/eng.jpg"
alt="Smart Energy Monitor IoT project - Real-time power consumption tracking embedded system"
class="rounded-xl w-full hover:scale-110 transition-transform duration-500 shadow-lg">
</div>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="flex flex-col md:flex-row-reverse mb-20 items-center gap-12 reveal">
<div class="md:w-1/2">
<div class="mb-4">
<span
class="inline-block bg-gradient-to-r from-light-purple/20 to-accent/10 text-accent px-4 py-2 rounded-full text-sm font-semibold border border-light-purple/30 hover:border-light-purple transition-all">Sensor
Network</span>
</div>
<h3
class="text-4xl md:text-5xl font-bold mb-4 font-orbitron text-transparent bg-gradient-to-r from-white to-gray-200 bg-clip-text">
Autonomous Sensor Network</h3>
<p class="mb-6 text-lg text-gray-300 leading-relaxed">
A distributed network of self-configuring sensors for environmental monitoring with
long battery life and robust mesh networking capabilities.
</p>
<div class="mb-8">
<h4 class="text-accent font-semibold mb-3 text-lg">Technologies Used:</h4>
<div class="flex flex-wrap gap-3">
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">ESP32</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">LoRaWAN</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">I2C
Sensors</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">Solar
Harvesting</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">C++</span>
</div>
</div>
<div class="flex gap-4">
<a href="#"
class="inline-flex items-center text-accent hover:text-white font-semibold hover:translate-x-2 transition-all">
<i class="fas fa-code mr-2"></i> View Code
</a>
<a href="#"
class="inline-flex items-center text-accent hover:text-white font-semibold hover:translate-x-2 transition-all">
<i class="fas fa-external-link-alt mr-2"></i> Live Demo
</a>
</div>
</div>
<div class="md:w-1/2">
<div class="relative group">
<div
class="absolute -inset-4 bg-gradient-to-r from-light-purple to-accent rounded-2xl blur-2xl opacity-60 group-hover:opacity-100 transition-opacity duration-500">
</div>
<div
class="relative bg-gradient-to-br from-purple-500/20 to-blue-500/20 p-3 rounded-2xl border border-light-purple/20 group-hover:border-light-purple/50 transition-all">
<img src="/photos/gateway.png"
alt="Autonomous Sensor Network gateway with wireless communication module"
class="rounded-xl w-full hover:scale-110 transition-transform duration-500 shadow-lg">
</div>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="flex flex-col md:flex-row items-center gap-12 reveal">
<div class="md:w-1/2">
<div class="mb-4">
<span
class="inline-block bg-gradient-to-r from-accent/20 to-light-purple/10 text-accent px-4 py-2 rounded-full text-sm font-semibold border border-accent/30 hover:border-accent transition-all">Industrial
Control</span>
</div>
<h3
class="text-4xl md:text-5xl font-bold mb-4 font-orbitron text-transparent bg-gradient-to-r from-white to-gray-200 bg-clip-text">
Real-time Motor Controller</h3>
<p class="mb-6 text-lg text-gray-300 leading-relaxed">
High-precision motor control system for industrial automation with advanced
feedback algorithms and safety features.
</p>
<div class="mb-8">
<h4 class="text-accent font-semibold mb-3 text-lg">Technologies Used:</h4>
<div class="flex flex-wrap gap-3">
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">ARM
Cortex-M4</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">DSP</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">CAN
Bus</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">Control
Theory</span>
<span
class="bg-deep-purple/80 px-4 py-2 rounded-lg text-sm border border-accent/30 hover:border-accent hover:scale-105 transition-all">C</span>
</div>
</div>
<div class="flex gap-4">
<a href="#"
class="inline-flex items-center text-accent hover:text-white font-semibold hover:translate-x-2 transition-all">
<i class="fas fa-code mr-2"></i> View Code
</a>
<a href="#"
class="inline-flex items-center text-accent hover:text-white font-semibold hover:translate-x-2 transition-all">
<i class="fas fa-external-link-alt mr-2"></i> Live Demo
</a>
</div>
</div>
<div class="md:w-1/2">
<div class="relative group">
<div
class="absolute -inset-4 bg-gradient-to-r from-accent to-light-purple rounded-2xl blur-2xl opacity-60 group-hover:opacity-100 transition-opacity duration-500">
</div>
<div
class="relative bg-gradient-to-br from-blue-500/20 to-purple-500/20 p-3 rounded-2xl border border-accent/20 group-hover:border-accent/50 transition-all">
<img src="/photos/agritech.png"
alt="Real-time Motor Controller firmware with precision speed control for agricultural automation"
class="rounded-xl w-full hover:scale-110 transition-transform duration-500 shadow-lg">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20 relative overflow-hidden">
<div class="container mx-auto px-6">
<div class="container mx-auto px-6 relative z-10">
<div class="text-center mb-16 reveal">
<div class="text-accent font-semibold mb-2 tracking-widest uppercase text-sm">My Expertise</div>
<h2
class="text-5xl md:text-6xl font-bold mb-4 font-orbitron bg-gradient-to-r from-accent via-light-purple to-accent bg-clip-text text-transparent">
Technical Skills</h2>
<div class="w-24 h-1 bg-gradient-to-r from-transparent via-accent to-transparent mx-auto mb-6">
</div>
<p class="max-w-2xl mx-auto text-gray-300 text-lg leading-relaxed"></p>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-6">
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 p-8 rounded-xl text-center card-hover border border-accent/20 reveal">
<div class="text-5xl mb-4 text-accent skill-icon"><i class="fas fa-microchip"></i></div>
<h3 class="font-semibold text-lg">Embedded C/C++</h3>
</div>
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 p-8 rounded-xl text-center card-hover border border-accent/20 reveal">
<div class="text-5xl mb-4 text-accent skill-icon"><i class="fas fa-cogs"></i></div>
<h3 class="font-semibold text-lg">RTOS</h3>
</div>
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 p-8 rounded-xl text-center card-hover border border-accent/20 reveal">
<div class="text-5xl mb-4 text-accent skill-icon"><i class="fas fa-wifi"></i></div>
<h3 class="font-semibold text-lg">Wireless Protocols</h3>
</div>
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 p-8 rounded-xl text-center card-hover border border-accent/20 reveal">
<div class="text-5xl mb-4 text-accent skill-icon"><i class="fas fa-bolt"></i></div>
<h3 class="font-semibold text-lg">Low Power Design</h3>
</div>
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 p-8 rounded-xl text-center card-hover border border-accent/20 reveal">
<div class="text-5xl mb-4 text-accent skill-icon"><i class="fas fa-project-diagram"></i></div>
<h3 class="font-semibold text-lg">Digital Comms</h3>
</div>
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 p-8 rounded-xl text-center card-hover border border-accent/20 reveal">
<div class="text-5xl mb-4 text-accent skill-icon"><i class="fas fa-microphone-alt"></i></div>
<h3 class="font-semibold text-lg">Sensor Integration</h3>
</div>
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 p-8 rounded-xl text-center card-hover border border-accent/20 reveal">
<div class="text-5xl mb-4 text-accent skill-icon"><i class="fas fa-memory"></i></div>
<h3 class="font-semibold text-lg">MCU Architecture</h3>
</div>
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 p-8 rounded-xl text-center card-hover border border-accent/20 reveal">
<div class="text-5xl mb-4 text-accent skill-icon"><i class="fas fa-shield-alt"></i></div>
<h3 class="font-semibold text-lg">Security</h3>
</div>
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 p-8 rounded-xl text-center card-hover border border-accent/20 reveal">
<div class="text-5xl mb-4 text-accent skill-icon"><i class="fas fa-bug"></i></div>
<h3 class="font-semibold text-lg">Debugging</h3>
</div>
<div
class="bg-gradient-to-br from-mid-purple/40 to-deep-purple/40 p-8 rounded-xl text-center card-hover border border-accent/20 reveal">
<div class="text-5xl mb-4 text-accent skill-icon"><i class="fas fa-network-wired"></i></div>
<h3 class="font-semibold text-lg">Protocols</h3>
</div>
</div>
</div>
</section>
<!-- Education Section -->
<section id="education"
class="py-20 bg-gradient-to-b from-deep-purple via-mid-purple/50 to-deep-purple relative overflow-hidden">
<div class="absolute inset-0 opacity-10">
<div class="absolute top-0 right-1/3 w-96 h-96 rounded-full bg-accent/30 blur-3xl animate-float"></div>
<div class="absolute bottom-0 left-1/4 w-96 h-96 rounded-full bg-light-purple/30 blur-3xl animate-float"
style="animation-delay: 1.5s;"></div>
</div>
<div class="container mx-auto px-6 relative z-10">
<div class="text-center mb-16 reveal">
<div class="text-accent font-semibold mb-2 tracking-widest uppercase text-sm">Academic Foundation</div>