-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1437 lines (1315 loc) · 77.8 KB
/
index.html
File metadata and controls
1437 lines (1315 loc) · 77.8 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, shrink-to-fit=no">
<!-- Title & Primary Meta -->
<title>Awais Nawaz (UfaqTech) | Developer & UI/UX Designer</title>
<meta name="description" content="Portfolio of Awais Nawaz (UfaqTech) — developer and UI/UX designer skilled in JavaScript, React, and Python. Explore projects, design work, and collaborations.">
<meta name="author" content="Awais Nawaz">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://ufaqtech.github.io/" />
<meta name="p:domain_verify" content="c1fa36b0c3183df1f2fde56615166562"/>
<!-- Open Graph / Facebook / WhatsApp -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://ufaqtech.github.io/">
<meta property="og:title" content="Awais Nawaz (UfaqTech) | Developer & UI/UX Designer">
<meta property="og:description" content="Explore Awais Nawaz's portfolio—expert in JavaScript, React, Python, and UI/UX design. View projects and contact for collaboration.">
<meta property="og:image" content="https://ufaqtech.github.io/assets/images/portfolio.jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Awais Nawaz UfaqTech Developer Portfolio Preview">
<meta property="og:site_name" content="Awais Nawaz Portfolio">
<meta property="og:locale" content="en_US">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://ufaqtech.github.io/">
<meta name="twitter:title" content="Awais Nawaz (UfaqTech) | Developer & UI/UX Designer">
<meta name="twitter:description" content="Check out Awais Nawaz's GitHub portfolio. Skilled in JavaScript, React, Python, and modern UI/UX design.">
<meta name="twitter:image" content="https://ufaqtech.github.io/assets/images/portfolio.jpg">
<meta name="twitter:creator" content="@Ufaq_Tech">
<!-- JSON-LD Schema Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Awais Nawaz",
"alternateName": "UfaqTech",
"url": "https://ufaqtech.github.io/",
"image": "https://ufaqtech.github.io/assets/images/portfolio.jpg",
"jobTitle": "Developer & UI/UX Designer",
"worksFor": {
"@type": "Organization",
"name": "UfaqTech"
},
"sameAs": [
"https://github.com/UfaqTech",
"https://www.linkedin.com/in/awais-nawaz",
"https://twitter.com/Ufaq_Tech"
],
"description": "Awais Nawaz (UfaqTech) is a developer and UI/UX designer with expertise in JavaScript, React, Python, and modern web technologies."
}
</script>
<!-- Favicon -->
<link rel="icon" href="assets/images/header1.png" type="image/png">
<!-- Font Icons -->
<link rel="stylesheet" href="vendors/themify-icons/css/themify-icons.css">
<link rel="stylesheet" href="vendors/themify-icons/css/all.min.css">
<!--earth three cnd js-->
<!-- Stylesheets -->
<link rel="stylesheet" href="assets/css/Awais.css">
<link rel="stylesheet" href="assets/css/img.css">
<!-- Bootstrap CSS -->
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="40" id="home">
<a href="#projects" class="btn bg-danger btn-component" data-spy="affix" data-offset-top="800"><i class="ti-shift-left-alt"></i> Work Intro</a>
<div id="notification-container"></div>
<header class="header">
<!-- Flex container for image + text -->
<div class="container header-flex">
<!-- 3D Animation Canvas Background -->
<div id="glob"></div>
<canvas id="earthCanvas"></canvas>
<!-- Text and Social Section -->
<div class="header-text ">
<!-- Social Icons -->
<ul class="social-icons">
<li><a class="social-link facebook" href="https://facebook.com/xtylish.awais.9862" target="_blank"><i class="fab fa-facebook-f"></i></a></li>
<li><a class="social-link x-twitter" href="https://x.com/Ufaq_Tech" target="_blank"><i class="fab fa-x-twitter"></i></a></li>
<li><a class="social-link linkedin" href="https://linkedin.com/in/awais-nawaz-52b643315" target="_blank"><i class="fab fa-linkedin-in"></i></a></li>
<li><a class="social-link github" href="https://github.com/UfaqTech" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a class="social-link instagram" href="https://instagram.com/xtylish.awais.9862" target="_blank"><i class="fab fa-instagram"></i></a></li>
<li><a class="social-link tiktok" href="https://www.tiktok.com/@talash_e__khudi" target="_blank"><i class="fab fa-tiktok"></i></a></li>
<li><a class="social-link email" href="mailto:mawais03415942806@gmail.com" target="_blank"><i class="fas fa-envelope"></i></a></li>
<li><a class="social-link telegram" href="https://t.me/UfaqTech" target="_blank"><i class="fab fa-telegram-plane"></i></a></li>
<li><a class="social-link whatsapp" href="https://whatsapp.com/channel/0029VaDLtSi2phHOBp9XyN03" target="_blank"><i class="fab fa-whatsapp"></i></a></li>
</ul>
<!-- Intro Content -->
<div class="header-content">
<h4 class="header-subtitle">Hello, I am</h4>
<h1 class="header-title ">Awais Nawaz</h1>
<h6 class="header-mono">Pro Developer | UI & UX Designer</h6>
<button class="btn btn-primary btn-rounded" onclick="window.print()">
<i class="ti-printer pr-2"></i>Print Resume
</button>
</div>
</div>
</div>
</header>
<nav class="navbar sticky-top navbar-expand-lg navbar-light bg-white" data-spy="affix" data-offset-top="510">
<div class="container">
<button class="navbar-toggler ml-auto" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse mt-sm-20 navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a href="#home" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#resume" class="nav-link">Resume</a>
</li>
</ul>
<ul class="navbar-nav brand">
<img src="assets/images/avatar.jpg" alt="" class="brand-img">
<li class="brand-txt">
<h5 class="brand-title">Awais Nawaz</h5>
<div class="brand-subtitle">Pro Developer | UI & UX Designer</div>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="#projects" class="nav-link">Projects</a>
</li>
<li class="nav-item">
<a href="#blog" class="nav-link">Blog</a>
</li>
<li class="nav-item last-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid">
<div id="about" class="row about-section">
<div class="col-lg-4 about-card">
<h3 class="font-weight-light">Who am I ?</h3>
<span class="line mb-5"></span>
<h5 class="mb-3">A Web Designer / Developer Located In Pakistan</h5>
<p class="mt-20"> I delivered seamless digital solutions,resolved technical challenges,and
maintained clean code practices to drive project success and stakeholder satisfaction.</p>
<button class="btn btn-outline-dark " ><i class="ti-download pr-2" ></i><a href="assets/images/Awais’s resume.pdf">Download My CV</a></button>
</div>
<div class="col-lg-4 about-card">
<h3 class="font-weight-light">Personal Info</h3>
<span class="line mb-5"></span>
<ul class="mt40 info list-unstyled">
<li><span>Birthdate</span> : 01/01/2006</li>
<li><span>Email</span> : mawais034159428062gmail.com</li>
<li><span>Phone</span> : + (92) 3415942806</li>
<li><span>Skype</span> : Awais Nawaz </li>
<li><span>Address</span> : muzaffarghar , punjab , pakistan</li>
</ul>
<ul class="social-icons">
<li><a class="social-link facebook" href="https://facebook.com/xtylish.awais.9862" target="_blank"><i class="fab fa-facebook-f"></i></a></li>
<li><a class="social-link x-twitter" href="https://x.com/Ufaq_Tech" target="_blank"><i class="fab fa-x-twitter"></i></a></li>
<li><a class="social-link linkedin" href="https://linkedin.com/in/awais-nawaz-52b643315" target="_blank"><i class="fab fa-linkedin-in"></i></a></li>
<li><a class="social-link github" href="https://github.com/UfaqTech" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a class="social-link instagram" href="https://instagram.com/xtylish.awais.9862" target="_blank"><i class="fab fa-instagram"></i></a></li>
<li><a class="social-link tiktok" href="https://www.tiktok.com/@talash_e__khudi" target="_blank"><i class="fab fa-tiktok"></i></a></li>
<li><a class="social-link email" href="mailto:mawais03415942806@gmail.com" target="_blank"><i class="fas fa-envelope"></i></a></li>
<li><a class="social-link telegram" href="https://t.me/UfaqTech" target="_blank"><i class="fab fa-telegram-plane"></i></a></li>
<li><a class="social-link whatsapp" href="https://whatsapp.com/channel/0029VaDLtSi2phHOBp9XyN03" target="_blank"><i class="fab fa-whatsapp"></i></a></li>
</ul>
</div>
<div class="col-lg-4 about-card">
<h3 class="font-weight-light">My Expertise</h3>
<span class="line mb-5"></span>
<div class="row">
<div class="col-1 text-danger pt-1"><i class="ti-widget icon-lg"></i></div>
<div class="col-10 ml-auto mr-3">
<h6>UX Design</h6>
<p class="subtitle">UX design focuses on creating seamless and intuitive experiences for users. By prioritizing accessibility,
usability, and aesthetics, designers enhance user interactions with digital products. The goal is to ensure
efficiency while maintaining an engaging and user-friendly experience.</p>
<hr>
</div>
</div>
<div class="row">
<div class="col-1 text-danger pt-1"><i class="ti-paint-bucket icon-lg"></i></div>
<div class="col-10 ml-auto mr-3">
<h6>Web Development</h6>
<p class="subtitle">As a Web Developer at Freelance BWP Software House in Bahawalpur,
I optimized website performance, ensuring faster load times, responsiveness, and scalability.
I aligned development strategies with client objectives, prioritizing user experience and functionality</p>
<hr>
</div>
</div>
<div class="row">
<div class="col-1 text-danger pt-1"><i class="ti-stats-up icon-lg"></i></div>
<div class="col-10 ml-auto mr-3">
<h6>Digital Marketing</h6>
<p class="subtitle">In today's fast-paced digital world, businesses harness the power of online marketing to expand their reach.
Utilizing strategies like SEO, content marketing, and social media engagement, brands create valuable connections
with their audiences. Data-driven decisions enhance efficiency, ensuring optimized campaigns that drive success.</p>
<hr>
</div>
</div>
</div>
</div>
</div>
<!--Resume Section-->
<section class="section" id="resume">
<div class="container">
<h2 class="mb-5"><span class="text-danger">My</span> Resume</h2>
<div class="row">
<div class="col-md-6 col-lg-4">
<div class="card">
<div class="card-header">
<div class="mt-2">
<h4>Expertise</h4>
<span class="line"></span>
</div>
</div>
<div class="card-body">
<h6 class="title text-danger">2023 - Present</h6>
<P><strong>Technical Skills</strong></P>
<ul class="subtitle">
<li>Proficiency in programming languages like HTML, CSS, JavaScript, Python, etc.</li>
<li>Experience with frameworks like React, Angular, Vue.js for web development.</li>
<li>Backend expertise in Node.js, Django, Flask, or PHP.</li>
<li>Database management (SQL, NoSQL, Firebase).</li>
<li>API development (RESTful APIs, GraphQL).</li>
<li>Cloud & DevOps (AWS, Docker, CI/CD).</li>
</ul>
<hr>
<h6 class="title text-danger">2024 - 2025</h6>
<P><strong>UX/UI & Design Expertise</strong></P>
<ul class="subtitle">
<li>Wireframing & Prototyping (Figma, Adobe Illustrator, Canva).</li>
<li>User-centered design & research strategies.</li>
<li>Accessibility & usability best practices (WCAG guidelines).</li>
<li>Responsive & interactive design principles.</li>
<li>Design systems & style guides for consistency.</li>
<li>Cross-platform design (web, mobile, desktop).</li>
</ul>
<hr>
<h6 class="title text-danger">2023 - Present</h6>
<P><strong>Soft Skills</strong></P>
<ul class="subtitle">
<li>Problem-solving & critical thinking.</li>
<li>Collaboration & teamwork with developers/designers.</li>
<li>Effective communication with clients and stakeholders.</li>
<li>Project management & time efficiency.</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="card">
<div class="card-header">
<div class="mt-2">
<h4>Education</h4>
<span class="line"></span>
</div>
</div>
<div class="card-body">
<h6 class="title text-danger">2023 - Present</h6>
<P>BS, Information Technology</P>
<P class="subtitle">The Islamia University of Bahawalpur.</P>
<hr>
<h6 class="title text-danger">2022 - 2023</h6>
<P>Higher College Degree</P>
<P class="subtitle">FSC Pre Medical at Govt higher secondary college Mahmoodkot.</P>
<hr>
<h6 class="title text-danger">2020 - 2021</h6>
<P>High School Degree</P>
<P class="subtitle">Matric at Govt high School Downa</P>
<hr>
<!-- Certifications inside same card -->
<h4 class="mt-3">Certifications</h4>
<h6 class="title text-danger">2025</h6>
<P>BS in Information Technology (2 years)</P>
<P class="subtitle">Issued by IUB</P>
<hr>
<h6 class="title text-danger">2026</h6>
<P>Meta Certified Digital Marketing Associate</P>
<P class="subtitle">Verified via Credly</P>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<div class="card-header">
<div class="pull-left">
<h4 class="mt-2">Skills</h4>
<span class="line"></span>
</div>
</div>
<div class="card-body pb-2">
<h6>HTML & CSS</h6>
<div class="progress mb-3">
<div class="progress-bar bg-danger" role="progressbar" style="width: 97%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h6>JavaScript</h6>
<div class="progress mb-3">
<div class="progress-bar bg-danger" role="progressbar" style="width: 85%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h6>Python</h6>
<div class="progress mb-3">
<div class="progress-bar bg-danger" role="progressbar" style="width: 70%" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h6>SQL</h6>
<div class="progress mb-3">
<div class="progress-bar bg-danger" role="progressbar" style="width: 60%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h6>React</h6>
<div class="progress mb-3">
<div class="progress-bar bg-danger" role="progressbar" style="width: 50%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h6>Java</h6>
<div class="progress mb-3">
<div class="progress-bar bg-danger" role="progressbar" style="width: 50%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<div class="pull-left">
<h4 class="mt-2">Languages</h4>
<span class="line"></span>
</div>
</div>
<div class="card-body pb-2">
<h6>Urdu</h6>
<div class="progress mb-3">
<div class="progress-bar bg-danger" role="progressbar" style="width: 90%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h6>English</h6>
<div class="progress mb-3">
<div class="progress-bar bg-danger" role="progressbar" style="width: 80%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h6>Arabic</h6>
<div class="progress mb-3">
<div class="progress-bar bg-danger" role="progressbar" style="width: 67%" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section bg-dark text-center">
<div class="container">
<div class="row text-center">
<div class="col-md-6 col-lg-3">
<div class="row ">
<div class="col-5 text-right text-light border-right py-3">
<div class="m-auto"><i class="ti-alarm-clock icon-xl"></i></div>
</div>
<div class="col-7 text-left py-3">
<h1 class="text-danger font-weight-bold font40">24</h1>
<p class="text-light mb-1">Hours Worked</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="row">
<div class="col-5 text-right text-light border-right py-3">
<div class="m-auto"><i class="ti-layers-alt icon-xl"></i></div>
</div>
<div class="col-7 text-left py-3">
<h1 class="text-danger font-weight-bold font40">50+</h1>
<p class="text-light mb-1">Project Finished</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="row">
<div class="col-5 text-right text-light border-right py-3">
<div class="m-auto"><i class="ti-face-smile icon-xl"></i></div>
</div>
<div class="col-7 text-left py-3">
<h1 class="text-danger font-weight-bold font40">1K+</h1>
<p class="text-light mb-1">Happy Clients</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="row">
<div class="col-5 text-right text-light border-right py-3">
<div class="m-auto"><i class="ti-heart-broken icon-xl"></i></div>
</div>
<div class="col-7 text-left py-3">
<h1 class="text-danger font-weight-bold font40">99.9%</h1>
<p class="text-light mb-1">Broken Heart</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="service">
<div class="container">
<h2 class="mb-5 pb-4"><span class="text-danger">My</span> Services</h2>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-settings text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">Web Development</h5>
<p class="subtitle">
Crafting dynamic, responsive, and high-performance websites using modern technologies. Expertise in front-end and back-end development to bring ideas to life.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-paint-bucket text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">UI/UX Design</h5>
<p class="subtitle">
Creating intuitive, user-friendly, and aesthetically pleasing designs that enhance the user experience. Focus on accessibility and interactive design principles.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-cloud-up text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">Cloud & DevOps</h5>
<p class="subtitle">
Implementing scalable and secure cloud solutions. Expertise in AWS, Azure, Docker, and CI/CD pipelines to ensure smooth deployment and optimization.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-bar-chart text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">SEO & Performance Optimization</h5>
<p class="subtitle">
Enhancing website visibility with SEO best practices and improving performance through efficient coding, caching, and fast-loading techniques.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-lock text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">Security & Maintenance</h5>
<p class="subtitle">
Providing security measures, regular updates, and ongoing maintenance to ensure your website remains protected, functional, and up-to-date.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-light-bulb text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">Custom Web Solutions</h5>
<p class="subtitle">
Providing tailor-made web solutions that align with your business needs. Whether it’s an e-commerce platform, dynamic web application, or a personalized website, I craft scalable and high-quality digital experiences.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-shopping-cart text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">E-Commerce Development</h5>
<p class="subtitle">
Building secure and scalable e-commerce platforms with seamless payment integration, product management, and user-friendly interfaces to drive sales and customer satisfaction.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-mobile text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">Mobile App Development</h5>
<p class="subtitle">
Designing and developing cross-platform and native mobile applications with smooth user experience, performance optimization, and seamless backend integration.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-video-camera text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">Multimedia & Branding</h5>
<p class="subtitle">
Providing branding solutions, including logo design, marketing assets, animations, and multimedia content creation to enhance your digital presence and brand identity.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-desktop text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">Custom Web Applications</h5>
<p class="subtitle">
Developing tailored web applications that meet unique business requirements, ensuring seamless functionality, scalability, and modern tech integration.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-pencil-alt text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">Content Management Solutions</h5>
<p class="subtitle">
Implementing and customizing content management systems (CMS) like WordPress, Joomla, or custom-built solutions to make website management effortless.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-announcement text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">Digital Marketing & Branding</h5>
<p class="subtitle">
Offering marketing strategies, branding designs, and social media optimization to enhance your online presence and engagement with your target audience.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-clipboard text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">Data Entry & Lead Generation</h5>
<p class="subtitle">
Providing efficient data entry solutions and strategic lead generation services to help businesses optimize workflow, enhance productivity, and drive customer acquisition.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-brush text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">Logo Design & Adobe Editing</h5>
<p class="subtitle">
Crafting professional and unique logo designs using Adobe tools. Expert in branding, visual identity creation, and high-quality graphic editing for businesses and individuals.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card mb-5">
<div class="card-header has-icon">
<i class="ti-share text-danger" aria-hidden="true"></i>
</div>
<div class="card-body px-4 py-3">
<h5 class="mb-3 card-title text-dark">Social Media Promotion & Fiverr Gigs</h5>
<p class="subtitle">
Driving brand awareness and engagement through social media marketing strategies. Offering Fiverr gig optimization to help freelancers attract more clients and scale their services.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section bg-custom-gray" id="price">
<div class="container">
<h1 class="mb-5"><span class="text-danger">Packs</span> Pricing</h1>
<div class="row carousel align-items-center">
<div class="col-md-6 col-lg-3">
<div class="price-card text-center mb-4 pointer-hover animate__animated animate__fadeInUp">
<h3 class="price-card-title">Free</h3>
<div class="price-card-cost">
<sup class="fas fa-dollar-sign"></sup>
<span class="num">0</span>
<span class="date">/mo</span>
</div>
<ul class="list">
<li class="list-item">3 <span class="text-muted">Projects</span></li>
<li class="list-item">500MB <span class="text-muted">Storage</span></li>
<li class="list-item"><span class="text-muted">No Domain</span></li>
<li class="list-item">1 <span class="text-muted">User</span></li>
</ul>
<button class="btn btn-primary btn-rounded w-lg subscribe-btn" data-plan="Free">Subscribe</button>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="price-card text-center mb-4 pointer-hover animate__animated animate__fadeInUp">
<h3 class="price-card-title">Basic</h3>
<div class="price-card-cost">
<sup class="fas fa-dollar-sign"></sup>
<span class="num">15</span>
<span class="date">/mo</span>
</div>
<ul class="list">
<li class="list-item">20 <span class="text-muted">Projects</span></li>
<li class="list-item">5GB <span class="text-muted">Storage</span></li>
<li class="list-item">1 <span class="text-muted">Domain</span></li>
<li class="list-item">3 <span class="text-muted">Users</span></li>
</ul>
<button class="btn btn-primary btn-rounded w-lg subscribe-btn" data-plan="Basic">Subscribe</button>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="price-card text-center price-card-requried mb-4 pointer-hover animate__animated animate__fadeInUp">
<h3 class="price-card-title">Exclusive</h3>
<div class="price-card-cost">
<sup class="fas fa-dollar-sign"></sup>
<span class="num">39</span>
<span class="date">/mo</span>
</div>
<ul class="list">
<li class="list-item">100 <span class="text-muted">Projects</span></li>
<li class="list-item">25GB <span class="text-muted">Storage</span></li>
<li class="list-item">3 <span class="text-muted">Domains</span></li>
<li class="list-item">10 <span class="text-muted">Users</span></li>
</ul>
<button class="btn btn-primary btn-rounded w-lg subscribe-btn" data-plan="Exclusive">Subscribe</button>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="price-card text-center mb-4 pointer-hover animate__animated animate__fadeInUp">
<h3 class="price-card-title">Pro</h3>
<div class="price-card-cost">
<sup class="fas fa-dollar-sign"></sup>
<span class="num">99</span>
<span class="date">/mo</span>
</div>
<ul class="list">
<li class="list-item">Unlimited <span class="text-muted">Projects</span></li>
<li class="list-item">500GB <span class="text-muted">Storage</span></li>
<li class="list-item">10 <span class="text-muted">Domains</span></li>
<li class="list-item">Unlimited <span class="text-muted">Users</span></li>
</ul>
<button class="btn btn-primary btn-rounded w-lg subscribe-btn" data-plan="Pro">Subscribe</button>
</div>
</div>
</div>
</div>
</section>
<div class="modal fade" id="subscriptionModal" tabindex="-1" role="dialog" aria-labelledby="subscriptionModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content min-vw-50">
<div class="modal-header">
<h5 class="modal-title" id="subscriptionModalLabel">Subscribe to <span id="planName" class="text-primary"></span> Plan</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<form id="subscriptionForm" class="min-vw-50">
<div class="modal-body">
<div class="form-group">
<label for="subscriberName">Name</label>
<input type="text" class="form-control" id="subscriberName" name="name" required placeholder="Your Full Name">
</div>
<div class="form-group">
<label for="subscriberEmail">Email</label>
<input type="email" class="form-control" id="subscriberEmail" name="email" required placeholder="your.email@example.com">
</div>
<div class="form-group">
<label for="paymentMethod">Choose Payment Method</label>
<select class="form-control" id="paymentMethod" name="payment" required>
<option value="">Select or search for a payment method</option>
<option value="credit">Credit/Debit Card</option>
<option value="paypal">PayPal</option>
<option value="stripe">Stripe</option>
<option value="googlepay">Google Pay</option>
<option value="applepay">Apple Pay</option>
<option value="klarna">Klarna (Pay in installments)</option>
<option value="afterpay">Afterpay (4 interest-free payments)</option>
<option value="affirm">Affirm (Flexible payment plans)</option>
<option value="venmo">Venmo</option>
<option value="zelle">Zelle (Instant bank transfer)</option>
<option value="ideal">iDEAL (Dutch bank transfer)</option>
<option value="sepa">SEPA Direct Debit (Eurozone bank transfer)</option>
<option value="giropay">Giropay (German bank transfer)</option>
<option value="eps">EPS (Austrian online bank transfer)</option>
<option value="mybank">MyBank (Italian online bank transfer)</option>
<option value="p24">Przelewy24 (Polish online bank transfer)</option>
<option value="sofort">Sofort (European direct payment)</option>
<option value="alipay">Alipay (Chinese mobile payment)</option>
<option value="wechatpay">WeChat Pay (Chinese mobile payment)</option>
<option value="unionpay">UnionPay (Chinese card network)</option>
<option value="bitcoin">Bitcoin (BTC)</option>
<option value="ethereum">Ethereum (ETH)</option>
<option value="usdt">USDT (Tether ERC20)</option>
<option value="litecoin">Litecoin (LTC)</option>
<option value="bank">Bank Transfer (General)</option>
</select>
</div>
<div id="paymentDetails" class="payment-card-view mt-3 mb-2 animate__animated animate__fadeIn" style="display:none;">
<div class="payment-card-header d-flex align-items-center">
<i id="paymentCardIcon" class="payment-icon mr-2"></i>
<h6 id="paymentCardTitle" class="mb-0"></h6>
</div>
<div id="paymentCardBody" class="payment-card-body">
</div>
</div>
<input type="hidden" name="plan" id="selectedPlan">
<div id="subscriptionSuccess" class="alert alert-success mt-2 animate__animated" style="display:none;">
<i class="fas fa-check-circle"></i> Subscription successful!
</div>
<div id="subscriptionError" class="alert alert-danger mt-2 animate__animated" style="display:none;">
<i class="fas fa-exclamation-circle"></i> Something went wrong. Please try again.
</div>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-primary btn-rounded w-lg animate__animated animate__pulse">Subscribe Now <i class="fas fa-arrow-right ml-1"></i></button>
</div>
</form>
</div>
</div>
</div>
<section class="section bg-secondary py-5">
<div class="container text-center">
<h2 class="text-light mb-5 font-weight-normal">I Am Available For FreeLance</h2>
<button class="btn bg-primary w-lg" onclick="document.getElementById('contact').scrollIntoView({ behavior: 'smooth' });">Hire me</button>
</div>
</section>
<!-- projects Section -->
<section class="section bg-custom-gray" id="projects">
<div class="container">
<h1 class="mb-5">
<span class="text-danger">Latest </span> projects
</h1>
<div class="projects">
<!-- Filters -->
<div class="filters text-center mb-4">
<a href="#" data-filter=".new" class="btn active">
New
</a>
<a href="#" data-filter=".web" class="btn">
Web
</a>
<a href="#" data-filter=".advertising" class="btn">
Advertising
</a>
<a href="#" data-filter=".branding" class="btn">
Branding
</a>
</div>
<!-- projects Grid -->
<div class="row projects-container">
<!-- projects Item 1: Web New -->
<div class="project-items col-md-6 col-lg-4 web new">
<div class="projects-item shadow rounded overflow-hidden mb-4">
<img src="assets/images/portfolio.jpg" class="img-fluid" alt="Web Project">
</div>
<div class="content-holder p-3">
<h6 class="title mb-1">
<i class="ti-world text-primary"></i> WEB
</h6>
<p class="subtitle small" style="font-size: 0.9rem; line-height: 1.6;">
💼 <strong>Professional IT Portfolio:</strong> A modern, responsive website that highlights your expertise with a downloadable CV, detailed tech projects, and client testimonials.<br>
🧠 <strong>Showcase:</strong> Dynamic applications, code samples, and case studies that demonstrate your problem-solving and programming skills.<br>
📬 <strong>Contact:</strong> Includes a sleek contact form for seamless communication—plus a transparent pricing section to help clients choose the right service package.
</p>
<div class="d-flex gap-2 mt-3">
<a href="#" class="btn btn-sm btn-outline-primary">
<i class="ti-eye"></i> Preview
</a>
<a href="https://github.com/UfaqTech" class="btn btn-sm btn-primary">
<i class="ti-download"></i> Source Code
</a>
</div>
</div>
</div>
<!-- projects Item 2: Web New -->
<div class="project-items col-md-6 col-lg-4 web new">
<div class="projects-item shadow rounded overflow-hidden mb-4">
<img src="assets/images/uth_frame-work.jpg" class="img-fluid" alt="Web Project">
</div>
<div class="content-holder p-3">
<h6 class="title mb-1"><i class="ti-world text-primary"></i> WEB</h6>
<p class="subtitle" style="font-size: 0.9rem; line-height: 1.6;">
⚡ <strong>UTH — UfaqTech Hacking Toolkit:</strong> A cutting-edge cybersecurity suite featuring smart automation, penetration testing modules, and real-time threat analysis.<br>
🔍 <strong>Built for ethical hackers and security enthusiasts:</strong> UTH empowers secure digital exploration with intuitive tools and optimized performance.
</p>
<div class="d-flex gap-2 mt-3">
<a href="pages/uth_faramework/index.html" class="btn btn-sm btn-outline-primary">
<i class="ti-eye"></i> Preview
</a>
<a href="#" class="btn btn-sm btn-primary" onclick="return showBeautifulAlert();" >
<i class="ti-download"></i> Source Code
</a>
</div>
</div>
</div>
<!-- projects Item 3: Advertising New -->
<div class="project-items col-md-6 col-lg-4 advertising new">
<div class="projects-item shadow rounded overflow-hidden mb-4">
<img src="assets/images/version1.jpg" class="img-fluid" alt="Advertising Project">
</div>
<div class="content-holder p-3">
<h6 class="title mb-1"><i class="ti-announcement text-danger"></i> Advertising</h6>
<p class="subtitle small">
Social media ad campaign dashboard with analytics integration.
</p>
<div class="d-flex gap-2 mt-3">
<a href="pages/homepage_1.html" class="btn btn-sm btn-outline-primary">
<i class="ti-eye"></i> Preview
</a>
<a href="#" class="btn btn-sm btn-primary" onclick="return showBeautifulAlert();">
<i class="ti-download"></i> Source Code
</a>
</div>
</div>
</div>
<!-- projects Item 4: Web -->
<div class="project-items col-md-6 col-lg-4 web new">
<div class="projects-item shadow rounded overflow-hidden mb-4">
<img src="assets/images/font-web.jpg" class="img-fluid" alt="Web Project">
</div>
<div class="content-holder p-3">
<h6 class="title mb-1"><i class="ti-world text-primary"></i> WEB</h6>
<p class="subtitle small">
✨ Discover your perfect typeface with just a click—simple, sleek font generation made effortless.
🎨 Design meets function: customize and preview beautiful fonts instantly for any project.
</p>
<div class="d-flex gap-2 mt-3">
<a href="pages/Gen_font/font.html" class="btn btn-sm btn-outline-primary">
<i class="ti-eye"></i> Preview
</a>
<a href="#" class="btn btn-sm btn-primary" onclick="return showBeautifulAlert();">
<i class="ti-download"></i> Source Code
</a>
</div>
</div>
</div>
<!-- projects Item 5: Advertising -->
<div class="project-items col-md-6 col-lg-4 advertising new">
<div class="projects-item shadow rounded overflow-hidden mb-4">
<img src="assets/images/Version-2.jpg" class="img-fluid" alt="Advertising Project">
</div>
<div class="content-holder p-3">
<h6 class="title mb-1"><i class="ti-announcement text-danger"></i> Advertising</h6>
<p class="subtitle small">
Campaign-based digital strategy platform built for conversions.
</p>
<div class="d-flex gap-2 mt-3">
<a href="pages/homepage_2.html" class="btn btn-sm btn-outline-primary" >
<i class="ti-eye"></i> Preview
</a>
<a href="#" class="btn btn-sm btn-primary" onclick="return showBeautifulAlert();">
<i class="ti-download"></i> Source Code
</a>
</div>
</div>
</div>
<!-- projects Item 6: Web New -->
<div class="project-items col-md-6 col-lg-4 web new">
<div class="projects-item shadow rounded overflow-hidden mb-4">
<img src="assets/images/uth-dashboard.jpg" class="img-fluid" alt="Web Project">
</div>
<div class="content-holder p-3">
<h6 class="title mb-1"><i class="ti-world text-primary"></i> WEB</h6>
<p class="subtitle">
A fully responsive web app with interactive UI and scalable backend.
</p>
<div class="d-flex gap-2 mt-3">
<a href="pages/UTH/UHT.Html" class="btn btn-sm btn-outline-primary">
<i class="ti-eye"></i> Preview
</a>
<a href="#" class="btn btn-sm btn-primary" onclick="return showBeautifulAlert();">
<i class="ti-download"></i> Source Code
</a>
</div>
</div>
</div>
<!-- projects Item 7: Advertising New -->
<div class="project-items col-md-6 col-lg-4 advertising new">
<div class="projects-item shadow rounded overflow-hidden mb-4">
<img src="assets/images/version-3.jpg" class="img-fluid" alt="Advertising Project">
</div>
<div class="content-holder p-3">
<h6 class="title mb-1"><i class="ti-announcement text-danger"></i> Advertising</h6>
<p class="subtitle small">
Interactive ad builder for real-time campaign previews.
</p>
<div class="d-flex gap-2 mt-3">
<a href="pages/homepage_3.html" class="btn btn-sm btn-outline-primary">
<i class="ti-eye"></i> Preview
</a>
<a href="#" class="btn btn-sm btn-primary" onclick="return showBeautifulAlert();">
<i class="ti-download"></i> Source Code
</a>
</div>
</div>
</div>
<!-- projects Item 8: Advertising New -->
<div class="project-items col-md-6 col-lg-4 advertising ">
<div class="projects-item shadow rounded overflow-hidden mb-4">
<img src="assets/images/dashboard.jpg" class="img-fluid" alt="Advertising Project">
</div>
<div class="content-holder p-3">
<h6 class="title mb-1"><i class="ti-announcement text-danger"></i> Advertising</h6>
<p class="subtitle small">
Analytics dashboard for tracking ad performance metrics.
</p>
<div class="d-flex gap-2 mt-3">
<a href="pages/dashboard.html" class="btn btn-sm btn-outline-primary" >
<i class="ti-eye"></i> Preview
</a>
<a href="#" class="btn btn-sm btn-primary" onclick="return showBeautifulAlert();">
<i class="ti-download"></i> Source Code
</a>
</div>
</div>