-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1288 lines (939 loc) · 48.3 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>
<!--[if IE 8 ]><html class="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Portfolio Hassan Zaib Jadoon</title>
<meta name="description" content="Welcome to the portfolio of Hassan Zaib Jadoon. Explore my projects, skills, and experience. Contact me to discuss collaborations and opportunities.">
<meta name="author" content="Hassan Zaib Jadoon">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/vendor.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body id="top">
<!-- header
================================================== -->
<header>
<div class="row">
<div class="top-bar">
<a class="menu-toggle" href="#"><span>Menu</span></a>
<div class="logo">
<a href="ind"></a>
</div>
<nav id="main-nav-wrap">
<ul class="main-navigation">
<li class="current"><a class="smoothscroll" href="#intro" title="">Home</a></li>
<li><a class="smoothscroll" href="#about" title="">About</a></li>
<li><a class="smoothscroll" href="#resume" title="">Resume</a></li>
<li><a class="smoothscroll" href="#portfolio" title="">Blog</a></li>
<li><a class="smoothscroll" href="#services" title="">Services</a></li>
<li><a class="smoothscroll" href="#contact" title="">Contact</a></li>
</ul>
</nav>
</div> <!-- /top-bar -->
</div> <!-- /row -->
</header> <!-- /header -->
<!-- intro section
================================================== -->
<section id="intro">
<div class="intro-overlay"></div>
<div class="intro-content">
<div class="row">
<div class="col-twelve">
<h5>Hello, Professional</h5>
<h1>I'm Hassan Zaib.</h1>
<p class="intro-position">
<span></span>
<span> Undergraduate Researcher</span>
<span></span>
</p>
<a class="button stroke smoothscroll" href="#about" title="">Explore More</a>
</div>
</div>
</div> <!-- /intro-content -->
<ul class="intro-social">
<li><a href="https://www.facebook.com/HassanZaibJadoon2004"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/techspirator"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/hassanzaibjadoon/"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://github.com/hzjadoon"><i class="fa fa-github"></i></a></li>
<li><a href="https://www.instagram.com/hzjadoon.official/"><i class="fa fa-instagram"></i></a></li>
</ul> <!-- /intro-social -->
</section> <!-- /intro -->
<!-- about section
================================================== -->
<section id="about">
<div class="row section-intro">
<div class="col-twelve">
<h5 style="color: red;">About</h5>
<h1 style="color: blue;">Let me introduce myself.</h1>
<div class="intro-info">
<img src="images/profile-pic.jpg" alt="Profile Picture">
<p class="lead">Proud Havelian native, Proficient in C++, Python, HTML, and CSS. Aspiring undergraduate researcher at Secured Iot Devices Lab, contributing to groundbreaking work in the field. </p>
</div>
</div>
</div> <!-- /section-intro -->
<div class="row about-content">
<div class="col-six tab-full">
<h3>Profile</h3>
<p>
Enthusiastic researcher, community builder, and versatile writer with a flair for declamation and poetry. Proficient in project and program management,
leveraging two years of experience to drive initiatives from inception to fruition. Committed to fostering collaboration, innovation, and positive change
within diverse communities through effective leadership and strategic execution. </p>
<ul class="info-list">
<li>
<strong>Full Name:</strong>
<span>Hassan Zaib Jadoon</span>
</li>
<li>
<strong>Birth Date:</strong>
<span>March 31, 2004</span>
</li>
<li>
<strong>Job:</strong>
<span>Undergraduate Researcher</span>
</li>
<li>
<strong>Linkedin:</strong>
<span>https://www.linkedin.com/in/hassanzaibjadoon/</span>
</li>
<li>
<strong>Email:</strong>
<span>[email protected]</span>
</li>
</ul> <!-- /info-list -->
</div>
<div class="col-six tab-full">
<h3>Skills</h3>
<p>• Effective Communication</p>
<p>• Content Writing</p>
<p>• Leadership</p>
<p>• Problem Solving</p>
<ul class="skill-bars">
<li>
<div class="progress percent80"><span>80%</span></div>
<strong>HTML5</strong>
</li>
<li>
<div class="progress percent40"><span>40%</span></div>
<strong>CSS</strong>
</li>
<li>
<div class="progress percent60"><span>60%</span></div>
<strong>C++</strong>
</li>
<li>
<div class="progress percent55"><span>55%</span></div>
<strong>Python</strong>
</li>
<li>
<div class="progress percent85"><span>86%</span></div>
<strong>Microsoft Office</strong>
</li>
</ul> <!-- /skill-bars -->
</div>
</div>
<div class="row button-section">
<div class="col-twelve">
<a href="https://mail.google.com/mail/?view=cm&fs=1&[email protected]" title="Hire Me" class="button stroke">Hire Me</a>
<a href="https://stdntpartners-my.sharepoint.com/:b:/g/personal/hassanzaib_jadoon_studentambassadors_com/ETw8U2lmG9tNmDT4eXoGQnMB0LcaBzxL21YLxvekDGuF0Q?e=e6lZS8" title="Download CV" class="button button-primary">Download CV</a>
</div>
</div>
</section> <!-- /process-->
<!-- resume Section
================================================== -->
<section id="resume" class="grey-section">
<div class="row section-intro">
<div class="col-twelve">
<h5 style="color: red;">Resume</h5>
<h1 style="color: blue;">More of my credentials.</h1>
<p class="lead">
Take a closer look at my journey. Scroll down to uncover more.</p>
</div>
</div> <!-- /section-intro-->
<div class="row resume-timeline">
<div class="col-twelve resume-header">
<h2>Work & Volunteer Experience</h2>
</div> <!-- /resume-header -->
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Undergraduate Researcher</h3>
<p>July 2023 - Present</p>
</div>
<div class="timeline-content">
<h4>Secured Iot Devices Lab</h4>
<ul>
<li>Joining the SID Lab during my semester break was an amazing decision.</li>
<li>From the very first day of learning until now, my experience has been truly unforgettable.</li>
<li>At the SID Lab, I've had the chance to explore, learn, and grow in ways I never imagined.</li>
<li>Engaging in innovative projects and collaborating with talented individuals has been incredibly rewarding.</li>
<li>The SID Lab has been more than just a place to work; it's been a community where I've found support and inspiration.</li>
</ul>
<h5>Skills:</h5>
<p>Project management, Research skills, Team collaboration, Innovation, Technical Writing</p>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Campus Ambassador</h3>
<p>November 2023 - Present</p>
</div>
<div class="timeline-content">
<h4>The Order of pen</h4>
<ul>
<li>As a Campus Ambassador for The Order Of Pen, I lead a team to organize literary events on campus.</li>
<li>Together, we arrange writing workshops, poetry readings, and storytelling sessions.</li>
<li>We collaborate with students to promote creative expression and literary appreciation.</li>
<li>Also working in Headquarters team to manages, Host, Different Events and Seminars in the city of Flowerrs</li>
</ul>
<h5>Skills:</h5>
<p>Creative expression, Event organization, Community engagement, Leadership</p>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Microsoft Learn Student Ambassador</h3>
<p>November 2023 - Present</p>
</div>
<div class="timeline-content">
<h4>Microsoft</h4>
<ul>
<li>As a Microsoft Learn Student Ambassador, I promote digital literacy and technological innovation among peers.</li>
<li>I organize workshops, events, and campaigns to empower students with Microsoft technologies and resources.</li>
<li>Leveraging the Microsoft Learn platform, I foster a community of learning and collaboration among students.</li>
<li>I serve as a liaison between Microsoft and students, facilitating access to educational opportunities and mentorship programs.</li>
</ul>
<h5>Skills:</h5>
<p>Technical proficiency in Microsoft technologies, Community Building, Community Engagement, Event Planning, Event Organization,Effective Communication & Presentation Skills</p>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Campus Director & Junior Graphic Designer</h3>
<p>August 2023 - Present</p>
</div>
<div class="timeline-content">
<h4>Youth International Conclave</h4>
<ul>
<li>Managed logistics and encouraged teamwork for the Youth International Conclave, ensuring seamless operations.</li>
<li>Improved communication among students, faculty, and sponsors to boost participation and engagement.</li>
<li>Introduced innovative approaches and leadership to meet Conclave goals and tackle challenges effectively.</li>
</ul>
<h5>Skills:</h5>
<p>Event management, Leadership, Collaboration, Communication</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Coordinator</h3>
<p>November 2023 - Present</p>
</div>
<div class="timeline-content">
<h4>Literary & Debating Society UET Peshawar</h4>
<ul>
<li>Planned and led various literary and debating events, encouraging active participation and thoughtful discussions.</li>
<li>Supported new member recruitment and training efforts, building a welcoming and diverse community within LDS.</li>
<li>Improved LDS visibility by collaborating with partners and implementing creative promotion methods.</li>
</ul>
<h5>Skills:</h5>
<p>Public speaking, Debate, Event organization, Leadership</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Volunteer</h3>
<p>August 2023 - Present</p>
</div>
<div class="timeline-content">
<h4>Google Developers Group Peshawar</h4>
<ul>
<li>Volunteering for GDG Peshawar, I helped organize two major events: IO Extended 2023 and Devfest 2023.</li>
<li>Through these experiences, I improved my management skills and expanded my network.</li>
<li>Meeting industry experts and collaborating with fellow volunteers enriched my journey.</li>
<li>Being part of GDG Peshawar has been rewarding, contributing to events that inspire developers and foster innovation.</li>
</ul>
<h5>Skills:</h5>
<p>Digital literacy, Event organization, Community building, Communication</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Founder</h3>
<p>March 2023</p>
</div>
<div class="timeline-content">
<h4>Coding Prodigy Community</h4>
<p>As a Paksitani, serving my nation is key.
With a focus on Pakistani students' tech dreams, along with my colleagues Hamza and Okasha, we initiated CPC (Coding Prodigy Community).<br>
CPC, a vibrant group of skilled coders and innovators, fosters creativity nationwide.
Welcoming all volunteers and explorers in the world of computers."
</p>
<h5>Skills:</h5>
<p>Critical Thinking, Non-Profit Organizations, Community building, Mentorship, Critical Thinking, Problem Solving</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Core Team Member</h3>
<p>December 2023 - Present</p>
</div>
<div class="timeline-content">
<h4>Hazara Students Society</h4>
<p>
My culture and history shape who I am, passed down by my ancestors. I hold their wisdom dear. It's a story of resilience, and I stand with the Hazara community to keep our heritage alive.<br>
Promoted our culture through managing different engaging & Cultural events.
</p>
<h5>Skills:</h5>
<p>Cultural and social awareness, Teamwork, Advocacy</p>
</div>
</div> <!-- /timeline-block -->
</div> <!-- /timeline-wrap -->
</div> <!-- /col-twelve -->
</div> <!-- /resume-timeline -->
<div class="row resume-timeline">
<div class="col-twelve resume-header">
<h2>Education</h2>
</div> <!-- /resume-header -->
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Computer System Engineering</h3>
<p>October 2022 - Present</p>
</div>
<div class="timeline-content">
<h4>University Of Engineering & Technology, Peshawar</h4>
<p>
Currently in my fourth semester, I'm pursuing a degree in Computer Systems Engineering. Through rigorous coursework, I've gained expertise in digital logic design, programming, Circuit Systems. My studies fuel my passion for leveraging technology to solve complex challenges. </p>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Islamic Courses</h3>
<p>November 2023 - Present</p>
</div>
<div class="timeline-content">
<h4>Al-Burhan</h4>
<ul>
<li>First Semester.</li>
<li> Enrolled in courses focusing on ethics, profile building, and the development of a pure Muslim character.</li>
<li> Seeking knowledge in Arabic Language, Fiqh, Tafseer e Quran, and Fiqah to deepen understanding and strengthen religious principles.</li>
</ul>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Intermediate</h3>
<p>May 2020 - August 2022</p>
</div>
<div class="timeline-content">
<h4>The HallarK School & College, Havelian</h4>
<ul>
<li>Achieved Grade: A+</li>
<li>Served as Proctorial Board Member, Eid-e-Millad Organizer, District & University Debater, and Speaker, fostering leadership and communication skills.</li>
<li>Represented the college in district-level debates and prestigious university events, contributing to intellectual discourse and community engagement.</li>
</ul>
</div>
</div> <!-- /timeline-block -->
</div> <!-- /timeline-wrap -->
</div> <!-- /col-twelve -->
</div> <!-- /resume-timeline -->
</section> <!-- /features -->
<!-- Portfolio Section
================================================== -->
<section id="portfolio">
<div class="row section-intro">
<div class="col-twelve">
<h5 style="color: red;">Blog</h5>
<h1 style="color: blue;">Check Out Some of My Blogs </h1>
<p class="lead">Here are some of my past Event pictures, Debates, and Other Stuff</p>
</div>
</div> <!-- /section-intro-->
<div class="row portfolio-content">
<div class="col-twelve">
<!-- portfolio-wrapper -->
<div id="folio-wrapper" class="block-1-2 block-mob-full stack">
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/Art.jpg" alt="Art & Book Exhibition">
<a href="#modal-01" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Art Exhibition</h3>
<span class="folio-types">
Food Manager
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/desvfest.png" alt="Devfest 2023">
<a href="#modal-02" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Devfest 2023</h3>
<span class="folio-types">
Volunteer
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/Welcome.jpg"alt="Fresh Faces Mixer Night">
<a href="#modal-03" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Fresh Faces Mixer</h3>
<span class="folio-types">
Program Manager
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/Ceremony1.jpg" alt="Education Transformation Agreement Signing Ceremony & Launch of Imagine Cup 2023">
<a href="#modal-04" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Education Transformation Agreement Signing Ceremony & Launch of Imagine Cup 2023</h3>
<span class="folio-types">
Attendee
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/Toop.jpg" alt="Host, Open Mic Night">
<a href="#modal-05" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Open Mic Night II</h3>
<span class="folio-types">
Host
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/Extended.JPG" alt="Google I/O Extended">
<a href="#modal-06" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Google I/O Extended 2023</h3>
<span class="folio-types">
Volunteer
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/Hazara.jpg" alt="Organizer, Hazara Student Night">
<a href="#modal-07" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Hazara Student Night</h3>
<span class="folio-types">
Organizer
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/SID.jpg" alt="Exploring Nature along Colleagues">
<a href="#modal-08" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Lab Trip</h3>
<span class="folio-types">
Tourist
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/Ignite.jpg" alt="Ignite 23">
<a href="#modal-09" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Ignite Fest 2023</h3>
<span class="folio-types">
Organizer
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- modal popups - begin
============================================================= -->
<div id="modal-01" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/Art2.jpg" alt="Book Exhibition" />
</div>
<div class="description-box">
<h4>Books Exhibition</h4>
<p>I take on the role of Food Organizer for Peshawar's biggest Books & Art Exhibition. It's an exciting opportunity to create a fantastic dining experience that perfectly complements the vibrant atmosphere of the event. </p>
<div class="categories">Management</div>
</div>
<div class="link-box">
<a href="https://theorderofpen.com/category/art-and-book-exhibition/">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-01 -->
<div id="modal-02" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/devefest2.jpg" alt="Devfest 2023, Me along other Volunteers" />
</div>
<div class="description-box">
<h4>Devfest Peshawar 2023</h4>
<p>In August 2023, I embarked on an exciting journey with GDG Peshawar, volunteering for Google I/O Extended Peshawar. It was an unforgettable experience, filled with energy and excitement. Transitioning to DevFest2023, I dove into the heart of the event, welcoming attendees alongside a passionate team of volunteers. It was a moment of reunion with old friends and the forging of new connections, marking a memorable chapter in our vibrant tech community's story in Peshawar..</p>
<div class="categories">Volunteer</div>
</div>
<div class="link-box">
<a href="https://gdg.community.dev/events/details/google-gdg-peshawar-presents-devfest-peshawar-2023/">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-02 -->
<div id="modal-03" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/Welcome1.jpg" alt="Fresh Faces Mixer Night" />
</div>
<div class="description-box">
<h4>Fresh Faces Mixer</h4>
<p>Recently, at the dawn of January 9, alongside a group of enthusiastic volunteers from Batch 24, organized a memorable event known as the Fresh Faces Mixer, continuing a beloved tradition of DCSE. This mixer served as a warm welcome to newcomers, providing an opportunity to mingle, connect, and embark on their journey within the DCSE family. With vibrant music, engaging games, and an electric atmosphere, the mixer set the stage for lasting friendships and unforgettable memories. It was a joyous occasion, marking the beginning of a new academic year filled with promise and camaraderie.</p>
<div class="categories">Manager</div>
</div>
<div class="link-box">
<a href="https://www.facebook.com/events/296599579573757/?ti=ls">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-03 -->
<div id="modal-04" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/Ceremony.jpg" alt="Education Transformation Agreement Signing Ceremony & Launch of Imagine Cup 2023" />
</div>
<div class="description-box">
<h4>DCSE Family at "Education Transformation Agreement Signing Ceremony & Launch of Imagine Cup 2023"</h4>
<p>Amidst the vibrant ambiance of the recent Imagine Cup signing ceremony held at HEC Islamabad, our Computer System family embarked on a thrilling journey. It was a momentous occasion, marked by connections, conversations, and a shared sense of innovation. As we joined together at this event, we were reminded of the power of collaboration and the boundless possibilities that lie ahead. Let's cherish these moments and continue to explore the pathways of innovation and growth.</p>
<div class="categories">Attendee</div>
</div>
<div class="link-box">
<a href="https://edutv.hec.gov.pk/">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-04 -->
<div id="modal-05" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/Toop1.JPG" alt="Along with M. Nouman Saleem and My Team Mates on Open Mic Night" />
</div>
<div class="description-box">
<h4>Along with M. Nouman Saleem, Saad Amjad Khan & Ihzaz Khan</h4>
<p>Recently, I had the honor of managing and hosting Open Mic Night II, a delightful evening filled with talent and creativity. It was an incredible experience to plan, organize, and host such an event, and I'm grateful for the opportunity. The appreciation received from the Founder of TOOP and my fellow hosts, Sundas and Syed Asif, further bolstered my confidence. Managing and hosting simultaneously was a new challenge, made possible by the dedication and support of my dear volunteers, Ihzaz and Saad Amjad Khan. Their time and efforts truly made the event a success, and I look forward to many more memorable experiences ahead.</p>
<div class="categories">Host</div>
</div>
<div class="link-box">
<a href="https://www.instagram.com/p/C15CB2_sEal/?img_index=1">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-05 -->
<div id="modal-06" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/Extended%202.JPG" alt="I/O Extended 2023" />
</div>
<div class="description-box">
<h4>Google I/O Extended 2023</h4>
<p>فرازؔ ظلم ہے اتنی خود اعتمادی بھی<br>
کہ رات بھی تھی اندھیری چراغ بھی نہ لیا <br>
Confidence is my outfit of the day, every day<br>
From Designing the Event Card to Wearing It. Everything is great.</p>
<div class="categories">Volunteer</div>
</div>
<div class="link-box">
<a href="https://gdg.community.dev/events/details/google-gdg-peshawar-presents-google-io-extended-peshawar/">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-06 -->
<div id="modal-07" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/Hazara.jpg" alt="Hazara Students Night 2023" />
</div>
<div class="description-box">
<h4>Hazara Students Night</h4>
<p>
Hazara Students Night: An evening of Connections, Enjoyment, Cultural Fragrances and In that Fragrances me sitting along few of my College Mates, Mahaz Abdullah Akhwanzada, Nasir, Awais, Shaheer-ul-Hassan and Nabeel.
</p>
<div class="categories">Volunteer</div>
</div>
<div class="link-box">
<a href="https://www.facebook.com/photo/?fbid=691775352964168&set=pcb.691775852964118">Explore Facebook Page</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-07 -->
<div id="modal-08" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/Sid.jpg" alt="Lab Trip" />
</div>
<div class="description-box">
<h4>Trip with Secured IOT Devices Lab Team</h4>
<p>
Spending an amazing day with the brilliant minds of SID - Secured IoT Devices Lab - UET Peshawar. After an adventure-filled day, we indulged in a scrumptious meal and sipped on delightful tea, making unforgettable memories together. 🌄
Thanks to Everyone for precious time.
</p>
<div class="categories">Tourist</div>
</div>
<div class="link-box">
<a href="https://www.linkedin.com/company/sid-secured-iot-devices-lab-uet-peshawar/mycompany/">SID Lab Linkedin Page</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-08 -->
<div id="modal-09" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/ignite.jpg" alt="Ignite 2023" />
</div>
<div class="description-box">
<h4>Ignite 2023</h4>
<p>
#memory from the Ignition event of Computer Society UET Peshawar Chapter.
Leading the Highest participated module of Ignite fest in which more than 40 participants will participate and Umar Niazi is the Hero of that module.
</p>
<div class="categories">Organizer</div>
</div>
<div class="link-box">
<a href="https://www.facebook.com/computersocietyuetp">Computer Society Fb Page</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-09 -->
<!-- modal popups - end
============================================================= -->
</div> <!-- /portfolio-wrapper -->
</div> <!-- /twelve -->
</div> <!-- /portfolio-content -->
</section> <!-- /portfolio -->
<!-- services Section
================================================== -->
<section id="services">
<div class="overlay"></div>
<div class="row section-intro">
<div class="col-twelve">
<h5>Services</h5>
<h1>What Can I Do For You or Community?</h1>
<p class="lead">Here are the some services, regarding my past Work and Voluteer Experinces, which I am Offering, Reach me for any of Services.</p>
</div>
</div> <!-- /section-intro -->
<div class="row services-content">
<div id="owl-slider" class="owl-carousel services-list">
<div class="service">
<span class="icon"><i class="fa fa-code"></i></span>
<div class="service-content">
<h3>Technical Training and Workshops:</h3>
<p class="desc">Empowering individuals with technical skills is at the core of my mission. Leveraging my expertise in C++, Python, HTML, and CSS, I offer comprehensive technical training sessions and workshops tailored to diverse audiences. Whether you're a beginner or an experienced professional, I provide hands-on learning experiences to help you master the tools of the trade.
</p>
</div>
</div> <!-- /service -->
<div class="service">
<span class="icon"><i class="fa fa-pencil"></i></span>
<div class="service-content">
<h3>Content Creation and Writing Services:</h3>
<p class="desc">Crafting compelling content that resonates with audiences is my forte. With a keen eye for detail and a flair for storytelling, I specialize in creating engaging and informative content for websites, blogs, social media platforms, and promotional materials. Whether you need captivating copywriting or SEO-optimized content, I deliver content that captivates and inspires.
</p>
</div>
</div> <!-- /service -->
<div class="service">
<span class="icon"><i class="fa fa-calendar"></i></span>
<div class="service-content">
<h3>Event Management and Coordination:</h3>
<p class="desc">As an experienced event manager and coordinator, I specialize in planning, organizing, and executing a wide range of events, including workshops, seminars, conferences, and cultural gatherings. From conceptualization to post-event evaluation, I ensure seamless operations and unforgettable experiences for attendees.
</p>
</div>
</div> <!-- /service -->
<div class="service">
<span class="icon"><i class="fa fa-users"></i></span>
<div class="service-content">
<h3>Community Building and Engagement:</h3>
<p class="desc">Building vibrant and engaged communities is my passion. With a keen understanding of community dynamics and effective engagement strategies, I help organizations foster meaningful connections, promote collaboration, and drive collective impact. From online forums to offline gatherings, I cultivate inclusive spaces where members thrive.
</p>
</div>
</div> <!-- /service -->
<div class="service">
<span class="icon"><i class="fa fa-graduation-cap"></i></span>
<div class="service-content">
<h3>Educational and Mentorship Programs:</h3>
<p class="desc">Guiding aspiring students and professionals on their academic and career journeys is a privilege. Through personalized mentorship programs and educational initiatives, I offer support, guidance, and resources to help individuals achieve their goals. From academic excellence to professional development, I'm committed to empowering others to reach their fullest potential.
</p>
</div>
</div> <!-- /service -->
<div class="service">
<span class="icon"><i class="icon-chat"></i></span>
<div class="service-content">