-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1032 lines (896 loc) · 60.6 KB
/
index.html
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 content="width=device-width, initial-scale=1.0" name="viewport">
<title>HAMZA MANNAI iPortfolio - Index</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/spider-web43.png" rel="icon">
<link href="assets/img/spider-web43.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: iPortfolio - v3.10.0
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Mobile nav toggle button ======= -->
<i class="bi bi-list mobile-nav-toggle d-xl-none"></i>
<!-- ======= Header ======= -->
<header id="header">
<div class="d-flex flex-column">
<div class="profile">
<img src="assets/img/profile-img1.jpg" alt="" class="img-fluid rounded-circle" >
<h1 class="text-light"><a href="index.html">HAMZA MANNAI</a></h1>
<div class="social-links mt-3 text-center">
<a href="https://twitter.com/HamzaMannai3" target="_blank" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="https://www.facebook.com/hamza.mannai.3154"target="_blank" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="https://www.instagram.com/hamza.mannai12/?igshid=YmMyMTA2M2Y=" target="_blank" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="https://www.linkedin.com/in/hamza-mannai-3b0036193/" target="_blank" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
<nav id="navbar" class="nav-menu navbar">
<ul>
<li><a href="#hero" class="nav-link scrollto active"><i class="bx bx-home"></i> <span>Home</span></a></li>
<li><a href="#about" class="nav-link scrollto"><i class="bx bx-user"></i> <span>About</span></a></li>
<li><a href="#resume" class="nav-link scrollto"><i class="bx bx-file-blank"></i> <span>Resume</span></a></li>
<li><a href="#portfolio" class="nav-link scrollto"><i class="bx bx-book-content"></i> <span>Portfolio</span></a></li>
<li><a href="#services" class="nav-link scrollto"><i class="bx bx-server"></i> <span>Services</span></a></li>
<li><a href="#contact" class="nav-link scrollto"><i class="bx bx-envelope"></i> <span>Contact</span></a></li>
</ul>
</nav><!-- .nav-menu -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center align-items-center">
<div class="hero-container" data-aos="fade-in">
<h1>HAMZA MANNAI</h1>
<p>I'm a <span class="typed" data-typed-items="Software Developer , Soft Skills Trainer, Robot Programmer , Video Game Developer "></span></p>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="section-title">
<h2>About</h2>
<p>I am a Tunisian student who is passionate about building robots, electronics, electrotechnics, and automation.
I am also a video game developer, robot programmer, software developer, and soft skills trainer.</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right">
<img src="assets/img/profile-img.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Robot Programmer & Software Developer.</h3>
<p class="fst-italic">
Multifaceted Technologist: Electronics Enthusiast, Video Game Developer, Robot Programmer, and Soft Skills Trainer
</p>
<div class="row">
<div class="col-lg-6">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Birthday:</strong> <span>3 September 2002</span></li>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Website:</strong>
<a href="https://hamzamannai.me" target="_blank">
<span>hamzamannai.me</span>
</a>
</li>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Phone:</strong>
<a href="tel:+21627553586">
<span>+216 27 553 586</span>
</a>
</li>
<li><i class="bi bi-chevron-right"></i> <strong>City:</strong> <span>Sousse, TUN</span></li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Age:</strong> <span>21</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Degree:</strong> <span style="font-size: 90%;">Bachelor of Science in Electronics, Electrotechnics, and Automation</span>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Email:</strong>
<a href="mailto:mannaihamza2021@gmail.com">
<span>mannaihamza2021@gmail.com</span>
</a>
</li>
<li><i class="bi bi-chevron-right"></i> <strong>Freelance:</strong> <span>Available</span></li>
</ul>
</div>
</div>
<p>
Hey there, I'm Hamza Mannai, currently pursuing a Bachelor's degree in Electronics, Electrotechnics, and Automation (Licence Électronique, Électrotechnique et Automatique) at issat kairouan in Tunisia
I have a deep passion for video game development and building robots. As the president of the robotic club <a href="https://www.facebook.com/Technomaker.tn" target="_blank">"Techno-maker issat kairouan". </a> I actively engage in technological exploration and innovation.
</p>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Facts Section ======= -->
<section id="facts" class="facts">
<div class="container">
<div class="section-title">
<h2>Facts</h2>
<p>I have a proven track record of success in my field. I have consistently demonstrated the ability to exceed expectations, both in terms of project performance and client satisfaction.
I possess a unique combination of technical expertise and creative problem-solving skills that have allowed me to deliver innovative solutions to complex challenges. <br>
I am a team player who thrives in fast-paced, deadline-driven environments and I am able to adapt to new technologies and methodologies quickly. <br>
My portfolio showcases a variety of projects that demonstrate my skills and experience. I am passionate about my work and committed to delivering the highest quality results to my clients.</p>
</div>
<div class="row no-gutters">
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up">
<div class="count-box">
<i class="bi bi-emoji-smile"></i>
<span data-purecounter-start="0" data-purecounter-end="232" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Happy Clients</strong></p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up" data-aos-delay="100">
<div class="count-box">
<i class="bi bi-journal-richtext"></i>
<span data-purecounter-start="0" data-purecounter-end="21" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Projects</strong> </p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="count-box">
<i class="bi bi-headset"></i>
<span data-purecounter-start="0" data-purecounter-end="253" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Hours Of Support</strong></p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="count-box">
<i class="bi bi-people"></i>
<span data-purecounter-start="0" data-purecounter-end="32" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Hard Workers</strong></p>
</div>
</div>
</div>
</div>
</section><!-- End Facts Section -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills section-bg">
<div class="container">
<div class="section-title">
<h2>Skills</h2>
<p> I love to solve problems.Whether it's finding the most elegant way to write a line of code or figuring out which chord fits best into a progression.
I love the challenge of finding a way and discovering solutions, Maybe that's why I love writing and the satisfaction that comes from finding just the right word; or why I study psychology and rationality in my spare time to figure out how people
think. As long as there's a problem to solve or a challenge to puzzle over, it's bound to be something I love. <br>With a proven track record in robot programming and multiple wins in prestigious robot competitions,
I bring a unique perspective to problem-solving. If you're in search of a proactive problem-solver and creative thinker,
I might be an ideal addition to your team. Feel free to explore my resume or delve into my skills to gain a comprehensive view of my journey.</p>
</div>
<div class="row skills-content">
<div class="col-lg-6" data-aos="fade-up">
<div class="progress">
<span class="skill">arduino <i class="val">100%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">c <i class="val">95%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">c++ <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">MYSQL <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">HTML <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<div class="progress">
<span class="skill">javascript <i class="val">50%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill"> Python <i class="val">60%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">unreal engine development <i class="val">50%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Java <i class="val">30%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">SolidWorks <i class="val">40%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Skills Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container">
<div class="section-title">
<h2>Resume</h2>
<p>I am a passionate and ambitious individual with a love for building robots, developing video games, and exploring the endless possibilities of technology. <br>
As a Tunisian student pursuing a Bachelor of Science in Electronics, Electrotechnics, and Automation, I am committed to pushing the boundaries of innovation
and using my skills to create cutting-edge solutions. With a background as a software developer, I am adept at crafting seamless user experiences and bringing captivating ideas to life. <br>
I am proud to have achieved success in several prestigious robot competitions. In AVRIL 2023, I won the first prize in the Tunisian-Algerian student festival, securing victory in the line follower challenge with my remarkable robot spider at ISSAT Kairouan.
In MARS 2023, I emerged as the champion in the FC ROBOT V1 competition, excelling in both the all-terrain challenge and the line follower category at ISETCOM.<br>
Furthermore, in AVRIL 2022, my talents earned me the fourth place in the ULT Robots line follower challenge, 6th edition. Additionally, I achieved victory in the IoT and Machine Learning/AI Makeathon, known as <a href="https://nrw-5-0-makeathon.devpost.com" target="_blank">
<span>the International Robots Weekend</span>
</a>, held on Jun 24 – 25, 2023, at INSAT. <br>
In the realm of video game development, I am also an accomplished creator. I achieved 1st place in the Development Best Video Game category with UN4 at Netinfo. Notably, this event took place in May 2022 at ISSAT Kairouan with the presence of the American Corner Ambassador, <a href="https://www.facebook.com/forrest.pcv" target="_blank">
<span>Mr. Forrest</span>
</a>, adding further prestige to the achievement. <br>
Beyond my technical prowess, I am also a dedicated soft skills trainer, guiding teams to enhance communication and collaboration. Whether it's designing captivating video games or implementing automation systems, my goal is to revolutionize the world through technology and creativity.</p>
</div>
<div class="row">
<div class="col-lg-6" data-aos="fade-up">
<h3 class="resume-title">Sumary</h3>
<div class="resume-item pb-0">
<h4>HAMZA MANNAI</h4>
<p><em>I am a Bachelor of Science student in Electronics, Electrotechnics, and Automation, deeply passionate about building robots.
Additionally, I possess expertise in video game development and robot programming. My commitment to technology goes beyond technical skills;
I also excel as a soft skills trainer, promoting effective communication and collaboration.</em></p>
<h2>Languages</h2>
<ul>
<li><strong>Arabic:</strong> Native</li>
<li><strong>English:</strong> Fluent</li>
<li><strong>French:</strong> Conversational</li>
<li><strong>German:</strong> Basic (A1.2)</li>
</ul>
</div>
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<h4>Bachelor's Degree in Electronics, Electrotechnics, and Automation</h4>
<h5>2022 - 2025</h5>
<p><em>ISSAT Kairouan, Kairouan, TUN</em></p>
<p>I'm currently studying a Bachelor's Degree in Electronics, Electrotechnics, and Automation (EEA) at ISSAT Kairouan. This enriching experience has expanded my knowledge and skills in cutting-edge technologies.</p>
</div>
<div class="resume-item">
<h4>UNREAL ENGINE DEVELOPMENT BOOTCAMP</h4>
<h5>January 2022</h5>
<p><em><a href="https://www.3dnetinfo.com/en" target="_blank">NetInfo </a>,issat kairouan.</em></p>
<p>Participated in an intensive Unreal Engine development bootcamp organized by NetInfo at issat kairouan.
Acquired in-depth knowledge and hands-on experience in utilizing Unreal Engine for game development and interactive experiences.
Explored various aspects of 3D graphics and interactive design, enhancing skills in game creation and development.</p>
</div>
<div class="resume-item">
<h4>Professional Integration Program & Soft Skills Trainer</h4>
<h5>March 2022</h5>
<p><em>Iberostar Selection Diar El Andalous</em></p>
<p>I participated in the <a href="https://www.facebook.com/permalink.php?story_fbid=pfbid02rXsY1jbZqh8SXMEUSYR2H6fKxbWowguuy4JwK74geyvuJYXfX7p9e6QYBarZBEiUl&id=100064605075098" target="_blank">"From Student to Student" </a> program by the <a href="https://www.facebook.com/permalink.php?story_fbid=pfbid02rXsY1jbZqh8SXMEUSYR2H6fKxbWowguuy4JwK74geyvuJYXfX7p9e6QYBarZBEiUl&id=100064605075098" target="_blank">Ministry of Higher Education and Scientific Research, </a>
collaborating with 4C Competence Certification and Career Centers and Konrad Adenauer Stiftung.
The program equipped me with communication and integration skills,
and I later became a soft skills trainer at my university,
empowering fellow students with essential interpersonal and professional abilities.
This journey heightened my dedication to fostering growth in the academic and vocational spheres</p>
</div>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item">
<h4>Electronics, Electrotechnics, and Automation in Maintenance Management Intern</h4>
<h5>Summer 2023</h5>
<p><em>Mzali GSM, Monastir, TN </em></p>
<ul>
<li>Collaborated with a cross-functional team of technicians in the exploration of electronics, electrotechnics, and automation techniques within the field of maintenance management.</li>
<li>Strengthened my passion for electronics and electrotechnics, inspiring a continued pursuit of innovative solutions in the field </li>
<li>Engaged with professionals who provided mentorship, fostering a deeper understanding of real-world industry practices</li>
<li>This experience solidified my career aspirations and provided a foundation for future endeavors in the realm of electronics and automation.</li>
</ul>
</div>
<div class="resume-item">
<h4></h4>
<h5></h5>
<p><em></em></p>
<!--
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
-->
</div>
</div>
</div>
</div>
</section><!-- End Resume Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio section-bg">
<div class="container">
<div class="section-title">
<h2>Portfolio</h2>
<p>Dive into my Portfolio for a Glimpse into my Coding Odyssey, Robotics Exploration, and Forward-Thinking Development Skills.</p>
</div>
<div class="row" data-aos="fade-up">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-Certificates">Certificates</li>
<li data-filter=".filter-Robotics">Robotics</li>
<li data-filter=".filter-Projects">Projects</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/4C1.png" class="img-fluid" alt="softskills certificate">
<div class="portfolio-links">
<a href="assets/img/portfolio/4C1.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Professional integration for students by the student"><i class="bx bx-zoom-in"></i></a>
<a href="portfolio-details1.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Projects">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/WEBSITE.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/WEBSITE.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Empowering Robotics Team Members with Web Development Skills"><i class="bx bx-zoom-in"></i></a>
<a href="portfolio-details2.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/Become a Software Developer.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/Become a Software Developer.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Become a Software Developer"><i class="bx bx-zoom-in"></i></a>
<a href="portfolio-details3.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Robotics">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/ISAAT FESTIVAL2.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/ISAAT FESTIVAL2.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="I won the first prize in the Tunisian-Algerian student festival Autonomy Robotics Challenge🏆🥇❤️❤️"><i class="bx bx-zoom-in"></i></a>
<a href="portfolio-details4.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/netinfo1.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/netinfo.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="UNREAL ENGINE DEVELOPMENT BOOTCAMP"><i class="bx bx-zoom-in"></i></a>
<a href="#" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Projects">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/4C-project.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/4C-project.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Professional Integration For & By Students"><i class="bx bx-zoom-in"></i></a>
<a href="portfolio-details1.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/thanks.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/thanks.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Certificate of Appreciation: Outstanding Contribution to the Tunisian-Algerian Festival"><i class="bx bx-zoom-in"></i></a>
<a href="portfolio-details4.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Robotics">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/NRW.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/NRW.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="National Robotic Weekend 5.0 , Celebrating My 4th Place Victory at INSAT"><i class="bx bx-zoom-in"></i></a>
<a href="portfolio-details5.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Projects">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/JOTI6JOTA.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/JOTI6JOTA.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="I take pride in my role as a contributor to the success of this event. I had the opportunity to provide guidance to the scouts, explaining how to create robots. With the knowledge I shared, they crafted their robots, leading to an exciting robot competition among the finest scouts in Tunisia. ☺️"><i class="bx bx-zoom-in"></i></a>
<a href="portfolio-details6.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/Isaat-festival-certivicate.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/Isaat-festival-certivicate.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Become a Software Developer"><i class="bx bx-zoom-in"></i></a>
<a href="portfolio-details4.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Robotics">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/my-robot.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/my-robot.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="my first line follower spider"><i class="bx bx-zoom-in"></i></a>
<a href="#" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Projects">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/game-jam2.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/game-jam2.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Forging Worlds in Game Jams: Crafting Our Video Game Map"><i class="bx bx-zoom-in"></i></a>
<a href="portfolio-details2.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/ISAM.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/ISAM.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="My Journey in the ISIMM Robotics Competition"><i class="bx bx-zoom-in"></i></a>
<a href="#" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Robotics">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/ult1.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/ult1.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Celebrating My 4th Place Victory at ULT ROBOT"><i class="bx bx-zoom-in"></i></a>
<a href="#" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Projects">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/hermonieaid.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/hermonieaid.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="hermonieaid PROJECT"><i class="bx bx-zoom-in"></i></a>
<a href="https://devpost.com/software/hermoniaid" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/TECHNO-ARDUNO-1.jpg" class="img-fluid" alt="arduino certificate">
<div class="portfolio-links">
<a href="assets/img/portfolio/TECHNO-ARDUNO-1.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Arduino Mastery: Unleashing Creativity in our Club's Workshop 2021"><i class="bx bx-zoom-in"></i></a>
<a href="#" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/ULT.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/ULT.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Achieving Excellence: 4th Place in the Ult Robot Competition"><i class="bx bx-zoom-in"></i></a>
<a href="#" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Projects">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/GAME2.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/GAME2.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="I'm happy to share the game we made in under 48 hours as a submission for wholesome game jam 202"><i class="bx bx-zoom-in"></i></a>
<a href="https://www.linkedin.com/posts/hamza-mannai_team-society-enrealengine4-activity-6911887568074592256-FOnz?utm_source=share&utm_medium=member_desktop" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/competion-interne.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/competion-interne.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Recognition for Excellence at the Internal Robotics Competition with Alhyat FM Coverage"><i class="bx bx-zoom-in"></i></a>
<a href="https://fb.watch/mPilbvhGZ_/" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/FC-robot.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/FC-robot.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="1st Place Winner: FC Robot Competition, ISITCOM University"><i class="bx bx-zoom-in"></i></a>
<a href="#" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/isim2.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/isim2.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Participant: ISIMM Robot Competition v2, ISIMM University"><i class="bx bx-zoom-in"></i></a>
<a href="#" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/LIONI.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/LIONI.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Academic Excellence Recognized by LEONI: 2020/2021 Achievement"><i class="bx bx-zoom-in"></i></a>
<a href="#" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/SQL Programming-1.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/SQL Programming-1.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Just finished the course “Learning SQL Programming”"><i class="bx bx-zoom-in"></i></a>
<a href="https://www.linkedin.com/learning/certificates/a2423f4ee3c07ef2dd08d3e609a9a02db8bce20ca984acf413d3d5f81e6f06d1" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/Web Security-1.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/Web Security-1.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Just finished the course “Programming Foundations: Web Security” by Kevin Skoglund!”"><i class="bx bx-zoom-in"></i></a>
<a href="https://www.linkedin.com/learning/certificates/8fe5af8592fd1e105507f6e01fbd8f833af5ba36a3f7cae78d6b35130b04701c" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/Learning C-1.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/Learning C-1.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Just finished the course “Learning C#” by Joe Marini!"><i class="bx bx-zoom-in"></i></a>
<a href="https://www.linkedin.com/learning/certificates/b22ae9f53f6b5efafa39dae0c61aac3603f16e1bdafb8e0999efef3727d8f227" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/Learning Java-1.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/Learning Java-1.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Just finished the course “Learning Java” by Kathryn Hodge"><i class="bx bx-zoom-in"></i></a>
<a href="https://www.linkedin.com/learning/certificates/0d240e2677f6348c1458be4eab84e985554e5f2e7e9a73e3391344ee5651e51b" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/Python-1.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/Python-1.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Just finished the course “Learning Python” by Joe Marini"><i class="bx bx-zoom-in"></i></a>
<a href="https://www.linkedin.com/learning/certificates/49dc71cd95a3ab314c383a4291d4600bab42b2ee5f4abfd222ef1106c7245ee6" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/JavaScript Essential Training-1.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/JavaScript Essential Training-1.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Just finished the course “JavaScript Essential Training” by Morten Rand-Hendriksen!"><i class="bx bx-zoom-in"></i></a>
<a href="https://www.linkedin.com/learning/certificates/f63039cbb8d2e89a74e0f33134432cfa2b229516946e058bff44de611d9b469c" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/CSS.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/CSS.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Just finished the course “Just finished the course “CSS Essential Training” by Christina Truong"><i class="bx bx-zoom-in"></i></a>
<a href="https://www.linkedin.com/learning/certificates/33fef79548c95cffcddbff32906a217fdd8cb6bb0e78c542684de058491dd74a" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/HTML Essential Training.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/HTML Essential Training.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Just finished the course “HTML Essential Training” by Jen Simmons!"><i class="bx bx-zoom-in"></i></a>
<a href="https://www.linkedin.com/learning/certificates/33fef79548c95cffcddbff32906a217fdd8cb6bb0e78c542684de058491dd74a" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/Web Development Full Stack and Front End-1.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/Web Development Full Stack and Front End-1.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Just finished the course “Succeeding in Web Development: Full Stack and Front End” by Ray Villalobos"><i class="bx bx-zoom-in"></i></a>
<a href="https://www.linkedin.com/learning/certificates/3076314ba9799effbe1610be18b4dee70bb557fb790ab081b188df84e7479e3b" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/Programming Foundations Databases-1.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/Programming Foundations Databases-1.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Just finished the course “Programming Foundations: Databases” by Scott Simpson!"><i class="bx bx-zoom-in"></i></a>
<a href="https://www.linkedin.com/learning/certificates/ea93e418013def68e4058714c30e47d03892f3633626dc3e82eeb92d3681d3bb" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-Certificates">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/Programming Foundations Fundamentals-1.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/Programming Foundations Fundamentals-1.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Just finished the course “Programming Foundations: Fundamentals” by Annyce Davis"><i class="bx bx-zoom-in"></i></a>
<a href="https://www.linkedin.com/learning/certificates/160c7f40911ba89736ae1b269d77a89b2ca4185d4f1ec140338114080e965abf" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title">
<h2>Services</h2>
<p>From coding intelligent robots to creating immersive gaming worlds, I turn ideas into reality with innovation and expertise.</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up">
<div class="icon"><i class="bi bi-code-slash"></i></div>
<h4 class="title"><a href="">Custom Software Development</a></h4>
<p class="description">I craft personalized software solutions tailored to your requirements.
Be it advanced robot programming or captivating video games, I transform your ideas into digital marvels.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="100">
<div class="icon"><i class="bi bi-robot"></i></div>
<h4 class="title"><a href="">Robot Programming</a></h4>
<p class="description">I bring your robotic visions to life with functional precision.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="200">
<div class="icon"><i class="bi bi-controller"></i></div>
<h4 class="title"><a href="">Video Game Development</a></h4>
<p class="description"> I create unreal engine 5 games that entertain and leave a lasting impact.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="bi bi-tools"></i></div>
<h4 class="title"><a href="">Comprehensive Tech Solutions</a></h4>
<p class="description">Beyond software, I possess expertise in repairing various electronic devices. Whether it's fixing iPhones,
addressing computer software and hardware issues, or tackling a range of electronic challenges, I ensure your devices stay in optimal condition.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="400">
<div class="icon"><i class="bi bi-lightbulb"></i></div>
<h4 class="title"><a href="">Innovation Redefined</a></h4>
<p class="description">Thriving on pushing limits, I constantly stay at technology's cutting edge.
Expect ingenious ideas, innovative solutions, and a commitment to converting challenges into opportunities.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="500">
<div class="icon"><i class="bi bi-shop"></i></div>
<h4 class="title"><a href="">E-commerce Websites</a></h4>
<p class="description">Seamlessly melding design and functionality,
I specialize in developing dynamic e-commerce platforms. Your online store will be a captivating and efficient marketplace that drives results.</p>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials section-bg">
<div class="container">
<div class="section-title">
<h2>Testimonials</h2>
<p>Discover the impact of my work through the words of those who matter most – my clients and friends . Welcome to the 'Voices of Success' testimonial section, where real experiences meet the power of collaboration</p>
</div>
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
In the world of game development and electronics, Hamza stands out as a versatile and highly talented individual. His dual expertise in both fields is a testament to his commitment to continuous learning and growth.
As a fellow enthusiast of both gaming and electronics, I've had the pleasure of engaging in many insightful conversations with Hamza. His passion for these subjects is contagious, and his willingness to share his knowledge and insights is a true mark of his character
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<a href="https://www.linkedin.com/in/lokman-touil-50ab90261/" target="_blank">
<img src="assets/img/testimonials/loki.jpg" class="testimonial-img" alt="">
<h3>Lokman Touil</h3>
<h4>game & ar developer</h4>
</a>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="100">
<p class="bigger-text">
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Hamza is really good person to work with he has a very great communication skills and he’s a good team player .
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<a href="https://www.instagram.com/moart.1/" target="_blank">
<img src="assets/img/testimonials/aziz.png" class="testimonial-img" alt="">
<h3>Aziz Tahenti</h3>
<h4>Freelancer</h4>
</a>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="200">
<div class="testimonial-content">
<div class="testimonial-text">
<p class="truncated">
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I would like to express my sincere appreciation and highlight the exceptional skills of my student, Hamza Mannai. <br>His expertise in game development and electronics, particularly in the field of electronics, has been truly remarkable.
Throughout his time as a student, Hamza has consistently demonstrated and exhibited a deep understanding and passion for these subjects, often going above and beyond in his projects and assignments. His proficiency in game development...<!-- Shortened testimonial content -->
<!-- Shortened testimonial content -->
<a class="read-more-link">Read More</a>
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<p class="full-content hidden">
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I would like to express my sincere appreciation and highlight the exceptional skills of my student, Hamza Mannai.
<br>His expertise in game development and electronics, particularly in the field of electronics, has been truly remarkable.
Throughout his time as a student, Hamza has consistently demonstrated and exhibited a deep understanding and passion for these subjects, often going above and beyond in his projects and assignments. His proficiency in game development has resulted in the creation of captivating and immersive gaming experiences, showcasing his innovative thinking and dedication to the craft.
Additionally, his prowess in electronics has been evident in his ability to design and implement intricate electronic systems with precision and creativity.
Hamza's commitment to learning and his remarkable aptitude in both game development and electronics make him a standout student with a promising future in these fields <!-- Full testimonial content -->
<a class="read-less-link">Read Less</a>
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
<a href="https://www.researchgate.net/profile/A-Naifar" target="_blank">
<img src="assets/img/testimonials/amine2.png" class="testimonial-img" alt="">
<h3>Amine Naifar</h3>
<h4>Doctor of Physics</h4>
</a>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="100">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Hamza is the person I have collaborated with on numerous successful projects. He consistently proves himself to be a competent and dependable professional. In the realms of game development, Hamza truly shines as an exceptionally versatile and highly skilled individual. His ability to excel in both of these domains reflects his unwavering dedication to ongoing learning and personal growth. Moreover, his work spans across many different programming languages, showcasing his ambitious and innovative approach to problem-solving
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<a href="https://www.artstation.com/mah_di" target="_blank">
<img src="assets/img/testimonials/mahdi.jpg" class="testimonial-img" alt="">
<h3>Mahdi Belhaj</h3>
<h4>2d & 3d video game designer</h4>
</a>
</div>
</div><!-- End testimonial item
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="400">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Quis quorum aliqua sint quem legam fore sunt eram irure aliqua veniam tempor noster veniam enim culpa labore duis sunt culpa nulla illum cillum fugiat legam esse veniam culpa fore nisi cillum quid.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="">
<h3>John Larson</h3>
<h4>Entrepreneur</h4>
</div>
</div> -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title">
<h2>Contact</h2>
<p>Let's Connect and Create Together , If you're ready to embark on a journey of innovation, growth, and success, I'd be thrilled to hear from you.</p>
</div>
<div class="row" data-aos="fade-in">
<div class="col-lg-5 d-flex align-items-stretch">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>Ksibat Sousse,Sousse, TUN</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<a href="mailto:mannaihamza2021@gmail.com">
<p>mannaihamza2021@gmail.com</p>
</a>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<a href="tel:+21627553586">
<p>+216 27 553 586</p>
</a>
</div>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d25894.404777148022!2d10.587593212015573!3d35.78027424501617!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x13020aa64fca8d8f%3A0x5547e436bcbe71a6!2sZaouit-Ksibat%20-%20Thrayett!5e0!3m2!1sfr!2stn!4v1693158108021!5m2!1sfr!2stn" frameborder="0" style="border:0; width: 100%; height: 290px;" allowfullscreen></iframe>
</div>
</div>
<div class="col-lg-7 mt-5 mt-lg-0 d-flex align-items-stretch">
<form action="forms/contact.php" method="post" role="form" class="php-email-form">
<div class="row">
<div class="form-group col-md-6">
<label for="name">Your Name</label>
<input type="text" name="name" class="form-control" id="name" required>
</div>
<div class="form-group col-md-6">
<label for="name">Your Email</label>
<input type="email" class="form-control" name="email" id="email" required>
</div>
</div>
<div class="form-group">
<label for="name">Subject</label>
<input type="text" class="form-control" name="subject" id="subject" required>
</div>
<div class="form-group">
<label for="name">Message</label>
<textarea class="form-control" name="message" rows="10" required></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your message has been sent. Thank you!</div>
</div>
<div class="text-center"><button type="submit">Send Message</button></div>
</form>
</div>
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">