-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1351 lines (1245 loc) Β· 57 KB
/
Copy pathindex.html
File metadata and controls
1351 lines (1245 loc) Β· 57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hashim Khan - iOS Developer CV</title>
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="icon" type="image/png" href="favicon.png">
<style>
:root {
--bg-primary: #0D0D0D;
--bg-secondary: #1A1A1A;
--accent-blue: #4EA8DE;
--accent-blue-hover: #3B82F6;
--text-primary: #E0E0E0;
--text-secondary: #A0A0A0;
--glass-bg: rgba(255, 255, 255, 0.05);
--glass-border: rgba(255, 255, 255, 0.1);
}
/* Light mode variables */
.light-mode {
--bg-primary: #FFFFFF;
--bg-secondary: #F8F9FA;
--text-primary: #1A1A1A;
--text-secondary: #6B7280;
--glass-bg: rgba(0, 0, 0, 0.05);
--glass-border: rgba(0, 0, 0, 0.1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
color: var(--text-primary);
overflow-x: hidden;
line-height: 1.6;
letter-spacing: 0.025em;
transition: all 0.3s ease;
}
/* Glassmorphism effect */
.glass {
background: var(--glass-bg);
backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 16px;
}
/* Sidebar with improved design */
.sidebar {
background: linear-gradient(180deg, rgba(78, 168, 222, 0.1) 0%, var(--bg-secondary) 100%);
backdrop-filter: blur(20px);
width: 320px;
min-height: 100vh;
position: fixed;
left: 0;
top: 0;
padding: 2.5rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
border-right: 1px solid var(--glass-border);
z-index: 10;
transition: all 0.3s ease;
}
.main-content {
margin-left: 320px;
padding: 3rem;
background: transparent;
min-height: 100vh;
position: relative;
z-index: 5;
max-width: 1400px;
}
/* Profile image with glow effect */
.profile-pic-sidebar {
width: 140px;
height: 140px;
border-radius: 50%;
object-fit: cover;
border: 4px solid var(--accent-blue);
box-shadow: 0 0 30px rgba(78, 168, 222, 0.3);
transition: all 0.3s ease;
}
.profile-pic-sidebar:hover {
box-shadow: 0 0 40px rgba(78, 168, 222, 0.5);
transform: scale(1.05);
}
.profile-pic-main {
width: 220px;
height: 220px;
border-radius: 50%;
object-fit: cover;
border: 6px solid var(--accent-blue);
box-shadow: 0 0 40px rgba(78, 168, 222, 0.4);
transition: all 0.3s ease;
}
.profile-pic-main:hover {
box-shadow: 0 0 50px rgba(78, 168, 222, 0.6);
transform: scale(1.02);
}
/* Modern button design */
.download-button {
background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-hover) 100%);
color: white;
padding: 1rem 2rem;
border-radius: 50px;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s ease;
border: none;
cursor: pointer;
box-shadow: 0 4px 15px rgba(78, 168, 222, 0.3);
position: relative;
overflow: hidden;
}
.download-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.download-button:hover::before {
left: 100%;
}
.download-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(78, 168, 222, 0.4);
}
.contact-button {
background: transparent;
color: var(--accent-blue);
border: 2px solid var(--accent-blue);
padding: 1rem 2rem;
border-radius: 50px;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s ease;
cursor: pointer;
position: relative;
overflow: hidden;
}
.contact-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: var(--accent-blue);
transition: left 0.3s ease;
z-index: -1;
}
.contact-button:hover::before {
left: 0;
}
.contact-button:hover {
color: white;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(78, 168, 222, 0.3);
}
/* Social icons with improved hover */
.social-icon {
color: var(--text-secondary);
transition: all 0.3s ease;
font-size: 1.2rem;
}
.social-icon:hover {
color: var(--accent-blue);
transform: translateY(-2px);
}
/* Typography improvements */
.section-title {
color: var(--accent-blue);
font-weight: 700;
font-size: 2.5rem;
margin-bottom: 1.5rem;
letter-spacing: -0.02em;
}
.card {
background: var(--glass-bg);
backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 20px;
padding: 2rem;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
height: 100%;
}
.card:hover {
transform: translateY(-5px) scale(1.02);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
border-color: rgba(78, 168, 222, 0.3);
}
/* Service cards with uniform height */
.service-card {
height: 280px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
/* Navigation sidebar */
.nav-sidebar {
position: fixed;
right: 1.5rem;
top: 50%;
transform: translateY(-50%);
background: var(--glass-bg);
backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 40px;
padding: 1rem 0.75rem;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
z-index: 10;
display: flex;
flex-direction: column;
gap: 1rem;
}
.nav-sidebar-item {
display: block;
padding: 0.5rem;
color: var(--text-secondary);
transition: all 0.3s ease;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
}
.nav-sidebar-item:hover, .nav-sidebar-item.active {
color: var(--accent-blue);
background: rgba(78, 168, 222, 0.1);
transform: scale(1.1);
}
/* Contact info spacing */
.contact-info {
display: flex;
flex-direction: column;
gap: 0.75rem;
align-items: center;
}
.contact-info p {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
color: var(--text-secondary);
}
/* Form inputs with glassmorphism */
.form-input {
background: var(--glass-bg);
backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 12px;
padding: 1rem 1.5rem;
color: var(--text-primary);
transition: all 0.3s ease;
}
.form-input:focus {
outline: none;
border-color: var(--accent-blue);
box-shadow: 0 0 20px rgba(78, 168, 222, 0.2);
}
/* Dark mode toggle */
.theme-toggle {
position: fixed;
top: 2rem;
right: 2rem;
background: var(--glass-bg);
backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 50px;
padding: 0.75rem;
cursor: pointer;
transition: all 0.3s ease;
z-index: 20;
}
.theme-toggle:hover {
transform: scale(1.1);
}
/* Responsive design improvements */
@media (max-width: 1024px) {
.sidebar {
width: 280px;
padding: 2rem;
}
.main-content {
margin-left: 280px;
padding: 2rem;
}
}
@media (max-width: 768px) {
body {
flex-direction: column;
align-items: center;
}
.sidebar {
width: 100%;
height: auto;
position: relative;
border-right: none;
border-bottom: 1px solid var(--glass-border);
padding: 1rem;
min-height: auto;
display: flex;
flex-direction: column;
align-items: center;
}
.main-content {
margin-left: 0;
padding: 1rem;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.nav-sidebar {
display: none;
}
.profile-pic-sidebar {
width: 120px;
height: 120px;
}
.section-title {
font-size: 1.8rem;
}
.download-button, .contact-button {
padding: 0.75rem 1.5rem;
font-size: 0.9rem;
width: 100%;
max-width: 200px;
}
.card {
padding: 1.5rem;
}
.service-card {
height: auto;
min-height: 200px;
}
.contact-info p {
font-size: 0.9rem;
text-align: center;
}
.theme-toggle {
top: 1rem;
right: 1rem;
padding: 0.5rem;
}
.theme-toggle i {
font-size: 1rem;
}
.contact-info {
width: 100%;
max-width: 300px;
display: flex;
flex-direction: column;
align-items: center;
}
.sidebar h1, .sidebar p {
text-align: center;
}
.social-icon {
font-size: 1.2rem;
}
.flex.space-x-6 {
justify-content: center;
}
}
@media (max-width: 480px) {
.sidebar {
padding: 0.75rem;
align-items: center;
}
.main-content {
padding: 0.75rem;
align-items: center;
}
.section-title {
font-size: 1.5rem;
}
.profile-pic-sidebar {
width: 100px;
height: 100px;
}
.download-button, .contact-button {
padding: 0.5rem 1rem;
font-size: 0.85rem;
max-width: 180px;
}
.card {
padding: 1rem;
}
.contact-info p {
font-size: 0.8rem;
}
.social-icon {
font-size: 1.1rem;
}
.flex.space-x-6 {
justify-content: center;
}
.sidebar h1, .sidebar p {
text-align: center;
}
.theme-toggle {
top: 0.5rem;
right: 0.5rem;
padding: 0.4rem;
}
.theme-toggle i {
font-size: 0.9rem;
}
}
@media (max-width: 360px) {
.sidebar {
padding: 0.5rem;
align-items: center;
}
.main-content {
padding: 0.5rem;
align-items: center;
}
.section-title {
font-size: 1.3rem;
}
.profile-pic-sidebar {
width: 80px;
height: 80px;
}
.download-button, .contact-button {
padding: 0.4rem 0.8rem;
font-size: 0.8rem;
max-width: 160px;
}
.card {
padding: 0.75rem;
}
.contact-info p {
font-size: 0.75rem;
}
.social-icon {
font-size: 1rem;
}
.flex.space-x-6 {
justify-content: center;
}
.sidebar h1, .sidebar p {
text-align: center;
}
}
/* Utility classes */
.hidden {
display: none;
}
/* Animation classes */
.fade-in {
animation: fadeIn 0.8s ease-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.slide-in-left {
animation: slideInLeft 0.8s ease-out;
}
@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
/* Profile Modal Animation */
@keyframes scaleIn {
from { transform: scale(0.7); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}
.animate-scale-in {
animation: scaleIn 0.4s cubic-bezier(0.4,0,0.2,1);
}
.profile-pic-modal {
width: min(90vw, 90vh, 600px);
height: min(90vw, 90vh, 600px);
border-radius: 50%;
object-fit: cover;
box-shadow: 0 0 60px rgba(78, 168, 222, 0.5), 0 8px 32px rgba(0,0,0,0.2);
border: 8px solid var(--accent-blue);
background: var(--bg-secondary);
display: block;
}
</style>
</head>
<body class="flex">
<!-- Dark Mode Toggle -->
<div class="theme-toggle" id="themeToggle">
<i class="fas fa-moon text-xl"></i>
</div>
<!-- Left Sidebar -->
<aside class="sidebar slide-in-left">
<div class="flex flex-col items-center">
<div class="relative mb-6">
<img src="self.jpeg" alt="Hashim Khan" class="profile-pic-sidebar" id="profilePicSidebar" style="cursor:pointer;">
</div>
<h1 class="text-3xl font-bold mb-2 tracking-tight" style="color: var(--text-primary);">Hashim Khan</h1>
<p class="text-lg mb-6 font-medium" style="color: var(--text-secondary);">iOS App Developer</p>
<div class="flex space-x-6 mb-8">
<a href="https://www.linkedin.com/in/hashim-khan-953180175/" target="_blank" class="social-icon" title="LinkedIn">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://github.com/Hashim1999164" target="_blank" class="social-icon" title="GitHub">
<i class="fab fa-github"></i>
</a>
</div>
<div class="contact-info mb-8">
<p class="cursor-pointer hover:text-accent-blue transition-colors duration-300" onclick="openWhatsApp()">
<i class="fas fa-phone-alt"></i> +923145201562
</p>
<p class="cursor-pointer hover:text-accent-blue transition-colors duration-300" onclick="openEmail()">
<i class="fas fa-envelope"></i> sardarhashim30@gmail.com
</p>
<p class="cursor-pointer hover:text-accent-blue transition-colors duration-300" onclick="openLocation()">
<i class="fas fa-map-marker-alt"></i> Rawalpindi, Pakistan
</p>
</div>
<button class="download-button w-full mb-6" onclick="downloadCV()">Download CV</button>
</div>
<div id="profileVisitsContainer" class="w-full flex justify-center mb-2" style="display:none;">
<span class="text-xs text-gray-400">Profile visits: <span id="profileVisitsCount">0</span></span>
</div>
<p class="text-gray-500 text-sm" id="copyrightText">© <span id="currentYear"></span> All rights reserved.</p>
</aside>
<!-- Main Content -->
<main class="main-content flex-grow">
<!-- Summary Section -->
<section id="summary" class="mb-16 fade-in">
<div class="flex flex-col items-center w-full">
<div class="w-full flex flex-col items-center">
<p class="text-accent-blue font-semibold mb-3 text-lg text-center">iOS App Developer</p>
<h2 class="text-6xl font-bold mb-6 tracking-tight text-center" style="color: var(--text-primary);">Hashim Khan</h2>
<p class="text-gray-300 leading-relaxed mb-8 text-lg text-center" style="max-width: 700px;">
I am a passionate iOS Developer with over 3 years of experience specializing in iOS application development. I excel in Swift, Clean Swift Architecture, and building enterprise-level iOS applications. My expertise includes banking applications, performance optimization, and App Store deployment. I also have backend development experience to support full-stack iOS solutions. I thrive in Agile environments and enjoy collaborating with cross-functional teams to deliver high-quality, scalable iOS applications.
</p>
<div class="flex space-x-6 mb-8 justify-center">
<button class="contact-button" onclick="scrollToContact()">Contact</button>
</div>
</div>
<!-- Key Highlights -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 w-full">
<div class="card text-center">
<div class="text-4xl mb-4">π¦</div>
<h4 class="text-xl font-semibold text-white mb-2">Banking Apps</h4>
<p class="text-gray-400">10+ enterprise banking applications developed for production use</p>
</div>
<div class="card text-center">
<div class="text-4xl mb-4">π±</div>
<h4 class="text-xl font-semibold text-white mb-2">App Store</h4>
<p class="text-gray-400">Multiple apps successfully published on the App Store</p>
</div>
<div class="card text-center">
<div class="text-4xl mb-4">β‘</div>
<h4 class="text-xl font-semibold text-white mb-2">Performance</h4>
<p class="text-gray-400">Optimized apps for smooth performance and excellent user experience</p>
</div>
</div>
</div>
</section>
<!-- What I Do Section -->
<section id="services" class="mb-16 fade-in">
<h3 class="section-title">What I Do</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="card service-card">
<i class="fab fa-apple text-6xl text-accent-blue mb-6"></i>
<h4 class="text-2xl font-semibold mb-4">iOS Development</h4>
<p class="text-gray-400">Leading and developing enterprise-level iOS applications using Swift, Clean Swift Architecture, and modern iOS frameworks. Specializing in banking apps, performance optimization, and App Store deployment.</p>
</div>
<div class="card service-card">
<i class="fas fa-server text-6xl text-accent-blue mb-6"></i>
<h4 class="text-2xl font-semibold mb-4">Backend Development</h4>
<p class="text-gray-400">Supporting iOS applications with Node.js backend development, API integration, and database management to ensure seamless full-stack solutions.</p>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="mb-16 fade-in">
<h3 class="section-title">Experience</h3>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div>
<h4 class="text-2xl font-semibold mb-6">Professional Roles</h4>
<div class="space-y-8">
<div class="card">
<p class="text-accent-blue text-sm mb-2 font-medium">03/2024 - Present</p>
<h5 class="text-2xl font-semibold text-white mb-2">Senior Software Engineer (iOS)</h5>
<p class="text-gray-400 mb-4">Aion Digital, Manama, Bahrain (Remote)</p>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Lead iOS development for enterprise-level banking applications using Swift and Clean Swift Architecture</li>
<li>Optimize app performance and resolve complex technical issues to ensure smooth user experience</li>
<li>Collaborate with UI/UX designers and backend developers to implement seamless integrations</li>
<li>Establish and maintain coding standards and best practices across the development team</li>
<li>Manage app store releases, TestFlight distributions, and CI/CD pipeline implementations</li>
<li>Mentor junior developers and conduct code reviews to maintain code quality</li>
</ul>
</div>
<div class="card">
<p class="text-accent-blue text-sm mb-2 font-medium">05/2022 - 03/2024</p>
<h5 class="text-2xl font-semibold text-white mb-2">Jr. iOS Developer</h5>
<p class="text-gray-400 mb-4">Aion Digital, Manama, Bahrain (Remote)</p>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Developed and maintained large-scale banking applications for iOS platform</li>
<li>Implemented Clean Swift Architecture patterns to ensure code maintainability and scalability</li>
<li>Participated in Agile/Scrum development processes and delivered features on schedule</li>
<li>Developed new features, performed bug fixes, and conducted thorough testing</li>
<li>Managed app distribution through TestFlight, App Store, and Microsoft App Center</li>
<li>Provided technical support and resolved user-reported issues promptly</li>
<li>Gained experience with Android development using Kotlin for cross-platform understanding</li>
</ul>
</div>
<div class="card">
<p class="text-accent-blue text-sm mb-2 font-medium">09/2021 - 04/2022</p>
<h5 class="text-2xl font-semibold text-white mb-2">iOS Developer Intern</h5>
<p class="text-gray-400 mb-4">Mercurial Mind, Islamabad, Pakistan</p>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Developed iOS applications and SDKs using Swift and Objective-C</li>
<li>Collaborated in both individual and team-based development environments</li>
<li>Participated in daily Scrum standups and provided regular progress updates</li>
<li>Published multiple iOS applications to the App Store following Apple guidelines</li>
<li>Created and published iOS SDKs on Cocoapods for third-party integrations</li>
<li>Implemented MVC and MVVM architectural patterns for clean, maintainable code</li>
<li>Gained additional experience with Node.js backend development and Android development</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="mb-16 fade-in">
<h3 class="section-title">My Skills</h3>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
<div class="card">
<h4 class="text-2xl font-semibold text-white mb-6">iOS Development</h4>
<ul class="list-disc list-inside text-gray-300 space-y-3 text-lg">
<li>Swift & Objective-C</li>
<li>Clean Swift Architecture & MVVM</li>
<li>UIKit, SwiftUI & Core Data</li>
<li>CocoaPods, Swift Package Manager</li>
<li>App Store Connect & TestFlight</li>
<li>Core Animation & Auto Layout</li>
</ul>
</div>
<div class="card">
<h4 class="text-2xl font-semibold text-white mb-6">Backend & Tools</h4>
<ul class="list-disc list-inside text-gray-300 space-y-3 text-lg">
<li>Node.js & Express.js</li>
<li>RESTful APIs & GraphQL</li>
<li>MongoDB, PostgreSQL & SQLite</li>
<li>Agile/Scrum & JIRA</li>
<li>Git, GitHub & CI/CD</li>
<li>Unit Testing & XCTest</li>
</ul>
</div>
<div class="card">
<h4 class="text-2xl font-semibold text-white mb-6">Additional Skills</h4>
<ul class="list-disc list-inside text-gray-300 space-y-3 text-lg">
<li>Firebase & Push Notifications</li>
<li>Security & App Store Guidelines</li>
<li>Performance Optimization</li>
<li>Code Review & Mentoring</li>
<li>Problem Solving & Debugging</li>
<li>Android Development (Kotlin)</li>
</ul>
</div>
</div>
</section>
<!-- Preferences Section -->
<section id="preferences" class="mb-16 fade-in">
<h3 class="section-title">Career Preferences</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="card">
<div class="flex items-center mb-4">
<div class="text-3xl mr-4">π</div>
<h4 class="text-xl font-semibold text-white">Open to Relocation</h4>
</div>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Willing to relocate for exciting opportunities</li>
<li>Open to remote work with occasional office visits</li>
<li>Ready to relocate within 2-4 weeks notice</li>
<li>Comfortable with international assignments</li>
</ul>
</div>
<div class="card">
<div class="flex items-center mb-4">
<div class="text-3xl mr-4">πΌ</div>
<h4 class="text-xl font-semibold text-white">Job Preferences</h4>
</div>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Senior iOS Developer roles</li>
<li>Fintech and banking applications</li>
<li>Startups and established companies</li>
<li>Full-time positions preferred</li>
<li>Competitive salary and benefits</li>
<li>Opportunities for growth and learning</li>
</ul>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="mb-16 fade-in">
<h3 class="section-title">ποΈ iOS Projects Portfolio</h3>
<p class="text-gray-400 mb-8 text-center text-lg">Projects completed during my corporate career</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- VisionBank Mobile -->
<div class="card">
<div class="flex items-center justify-between mb-4">
<h4 class="text-xl font-semibold text-white">ποΈ VisionBank Mobile</h4>
<a href="https://apps.apple.com/ru/app/vision-bank-mobile-app/id6503427436?l=en-GB" target="_blank" class="bg-blue-600 text-white px-3 py-1 rounded text-sm hover:bg-blue-700 transition-colors">
App Store
</a>
</div>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Modern mobile banking application</li>
<li>Secure transaction processing</li>
<li>Biometric authentication</li>
<li>Real-time balance updates</li>
</ul>
</div>
<!-- FriendiPay Oman -->
<div class="card">
<div class="flex items-center justify-between mb-4">
<h4 class="text-xl font-semibold text-white">π³ FriendiPay Oman</h4>
<a href="https://apps.apple.com/us/app/friendi-pay-oman/id6738409222?uo=2" target="_blank" class="bg-blue-600 text-white px-3 py-1 rounded text-sm hover:bg-blue-700 transition-colors">
App Store
</a>
</div>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Digital mobile wallet</li>
<li>Social payment features</li>
<li>Secure onboarding flow</li>
<li>QR code payments</li>
</ul>
</div>
<!-- KFH Jazeel Banking -->
<div class="card">
<div class="flex items-center justify-between mb-4">
<h4 class="text-xl font-semibold text-white">π¦ KFH Jazeel Banking</h4>
<a href="https://apps.apple.com/tj/app/kfh-jazeel-banking/id1369601727" target="_blank" class="bg-blue-600 text-white px-3 py-1 rounded text-sm hover:bg-blue-700 transition-colors">
App Store
</a>
</div>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Retail banking app</li>
<li>Clean Swift architecture</li>
<li>Real-time transactions</li>
<li>Production deployment</li>
</ul>
</div>
<!-- KFHB Corporate -->
<div class="card">
<div class="flex items-center justify-between mb-4">
<h4 class="text-xl font-semibold text-white">π’ KFHB Corporate</h4>
<a href="https://apps.apple.com/tj/app/kfhb-corporate/id1560148757" target="_blank" class="bg-blue-600 text-white px-3 py-1 rounded text-sm hover:bg-blue-700 transition-colors">
App Store
</a>
</div>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Corporate banking solution</li>
<li>Multi-level approvals</li>
<li>Trade finance features</li>
<li>Secure document sharing</li>
</ul>
</div>
<!-- JS Bank Bahrain -->
<div class="card">
<div class="flex items-center justify-between mb-4">
<h4 class="text-xl font-semibold text-white">π JS Bank Bahrain</h4>
<a href="https://apps.apple.com/us/app/js-bahrain/id6741843878" target="_blank" class="bg-blue-600 text-white px-3 py-1 rounded text-sm hover:bg-blue-700 transition-colors">
App Store
</a>
</div>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Corporate banking app</li>
<li>Trade finance features</li>
<li>Risk management tools</li>
<li>Regulatory compliance</li>
</ul>
</div>
<!-- MySmile App -->
<div class="card">
<div class="flex items-center justify-between mb-4">
<h4 class="text-xl font-semibold text-white">π MySmile App</h4>
<a href="https://apps.apple.com/ng/app/mysmile-app/id1514500366" target="_blank" class="bg-blue-600 text-white px-3 py-1 rounded text-sm hover:bg-blue-700 transition-colors">
App Store
</a>
</div>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Social networking app</li>
<li>MVC architecture</li>
<li>REST API integration</li>
<li>App Store published</li>
</ul>
</div>
<!-- KFH Kuwait Retail -->
<div class="card">
<h4 class="text-xl font-semibold text-white mb-4">π¦ KFH Kuwait Retail</h4>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Retail banking application</li>
<li>Business requirements analysis</li>
<li>Clean Swift/Objective-C code</li>
<li>Unit and integration testing</li>
</ul>
</div>
<!-- KFH Kuwait Corporate -->
<div class="card">
<h4 class="text-xl font-semibold text-white mb-4">π’ KFH Kuwait Corporate</h4>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Corporate banking application</li>
<li>UX/UI collaboration</li>
<li>Cross-functional teamwork</li>
<li>Performance optimization</li>
</ul>
</div>
<!-- Boubyan Bank SDK -->
<div class="card">
<h4 class="text-xl font-semibold text-white mb-4">π¦ Boubyan Bank Onboarding SDK</h4>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Onboarding SDK</li>
<li>Biometric authentication</li>
<li>iOS version compatibility</li>
<li>Performance optimization</li>
</ul>
</div>
<!-- VerifApp SDK -->
<div class="card">
<h4 class="text-xl font-semibold text-white mb-4">π± VerifApp SDK</h4>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Phone number verification</li>
<li>SMS code validation</li>
<li>Modular architecture</li>
<li>Published on CocoaPods</li>
</ul>
</div>
</div>
</section>
<!-- Education Section (moved here) -->
<section id="education" class="mb-16 fade-in">
<h3 class="section-title">Education</h3>
<div>
<div class="card">
<p class="text-accent-blue text-sm mb-2 font-medium">09/2017 - 08/2021</p>
<h5 class="text-xl font-semibold text-white mb-2">Bachelors in Information Technology</h5>
<p class="text-gray-400 mb-2">Arid Agriculture University, Rawalpindi, Pakistan</p>
<p class="text-gray-400 text-sm">CGPA: 3.06/4.00</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="mb-16 fade-in">
<h3 class="section-title">Contact Me</h3>
<div class="card p-10">
<form id="contactForm" action="https://formspree.io/f/xwpbggej" method="POST">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-8">
<div>
<label for="name" class="block text-gray-300 text-sm font-bold mb-3">Name</label>
<input type="text" id="name" name="name" class="form-input w-full" placeholder="Your Name" required>
</div>
<div>
<label for="email" class="block text-gray-300 text-sm font-bold mb-3">Email</label>
<input type="email" id="email" name="email" class="form-input w-full" placeholder="Your Email" required>
</div>
</div>
<div class="mb-8">
<label for="subject" class="block text-gray-300 text-sm font-bold mb-3">Subject</label>
<input type="text" id="subject" name="subject" class="form-input w-full" placeholder="Subject" required>
</div>
<div class="mb-8">
<label for="message" class="block text-gray-300 text-sm font-bold mb-3">Message</label>
<textarea id="message" name="message" rows="6" class="form-input w-full" placeholder="Your Message" required></textarea>
</div>
<button type="submit" class="download-button" id="submitBtn">
<span id="submitText">Send Message</span>
<span id="submitLoading" class="hidden">Sending...</span>
</button>
</form>
</div>
</section>
<!-- Success Banner -->
<div id="successBanner" class="fixed top-4 right-4 bg-green-500 text-white px-6 py-4 rounded-lg shadow-lg transform translate-x-full transition-transform duration-300 z-50">
<div class="flex items-center space-x-3">
<i class="fas fa-check-circle text-xl"></i>
<span>Message sent successfully! I'll get back to you soon.</span>
</div>
</div>
</main>
<!-- Right Navigation Sidebar -->
<nav class="nav-sidebar">
<a href="#summary" class="nav-sidebar-item active" title="Summary"><i class="fas fa-user text-xl"></i></a>
<a href="#services" class="nav-sidebar-item" title="Services"><i class="fas fa-briefcase text-xl"></i></a>
<a href="#experience" class="nav-sidebar-item" title="Experience"><i class="fas fa-history text-xl"></i></a>
<a href="#skills" class="nav-sidebar-item" title="Skills"><i class="fas fa-cogs text-xl"></i></a>
<a href="#preferences" class="nav-sidebar-item" title="Preferences"><i class="fas fa-heart text-xl"></i></a>
<a href="#projects" class="nav-sidebar-item" title="Projects"><i class="fas fa-code text-xl"></i></a>
<a href="#education" class="nav-sidebar-item" title="Education"><i class="fas fa-graduation-cap text-xl"></i></a>
<a href="#contact" class="nav-sidebar-item" title="Contact"><i class="fas fa-envelope text-xl"></i></a>
</nav>
<!-- Profile Fullscreen Modal -->
<div id="profileModal" class="fixed inset-0 bg-black bg-opacity-80 flex items-center justify-center z-50 hidden transition-opacity duration-300" style="opacity:0;">
<button id="closeProfileModal" class="absolute top-6 left-6 bg-white bg-opacity-80 rounded-full p-2 shadow-lg focus:outline-none">
<i class="fas fa-times text-xl text-gray-800"></i>
</button>
<img src="self.jpeg" alt="Hashim Khan" class="profile-pic-modal animate-scale-in" style="">
</div>
<!-- Access Log Modal -->