-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1390 lines (1250 loc) · 74.2 KB
/
index.html
File metadata and controls
1390 lines (1250 loc) · 74.2 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, maximum-scale=1, user-scalable=no, viewport-fit=cover">
<!-- Primary Meta Tags -->
<title>shnwazdev | Senior Software Engineer | Full-Stack & Cloud Expert</title>
<meta name="title" content="shnwazdev | Senior Software Engineer | Full-Stack & Cloud Expert">
<meta name="description" content="Based in Bihar and originally from Muzaffarpur, Bihar, I'm shnwaz dev: Senior Software Engineer, Website Developer, and UI/UX Designer focused on distributed systems, data pipelines, cloud technologies, and full-stack development.">
<meta name="keywords" content="shnwazdev, shnwaz dev, Website Developer, UI UX Designer, Senior Software Engineer, Bihar, Muzaffarpur, Full-Stack Developer, Cloud Engineer, Microservices, Node.js, React, Python, Distributed Systems, Data Pipelines, Bihar">
<meta name="author" content="shnwazdev">
<meta name="robots" content="index, follow, noarchive, nosnippet, noimageindex">
<meta name="language" content="English">
<meta name="referrer" content="same-origin">
<!-- Geo Tags -->
<meta name="geo.region" content="DE-BY">
<meta name="geo.placename" content="Bihar">
<meta name="geo.position" content="48.1351;11.5820">
<!-- Social preview meta intentionally minimized to avoid image previews in link sharing -->
<!-- Explicit social preview override to prevent auto screenshot thumbnails -->
<meta property="og:type" content="website">
<meta property="og:title" content="shnwazdev">
<meta property="og:description" content="Senior Software Engineer.">
<meta property="og:url" content="https://shnwazdeveloper.github.io/">
<meta property="og:image" content="https://shnwazdeveloper.github.io/image/blank-social.png?v=2">
<meta property="og:image:width" content="1">
<meta property="og:image:height" content="1">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="shnwazdev">
<meta name="twitter:description" content="Senior Software Engineer.">
<meta name="twitter:image" content="https://shnwazdeveloper.github.io/image/blank-social.png?v=2">
<!-- Canonical URL -->
<link rel="canonical" href="https://shnwazdeveloper.github.io/">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<!-- Preconnect to external domains -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://cdnjs.cloudflare.com">
<!-- Preload critical resources -->
<link rel="preload" href="neo-styles.css" as="style">
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Space+Mono:wght@400;700&family=Caveat:wght@400;700&display=swap" as="style">
<!-- Stylesheets -->
<link rel="stylesheet" href="neo-styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" media="print" onload="this.media='all'">
<noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"></noscript>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Space+Mono:wght@400;700&family=Caveat:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css">
<!-- External JavaScript -->
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<!-- Structured Data / JSON-LD -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "shnwazdev",
"url": "https://shnwazdeveloper.github.io/",
"jobTitle": "Senior Software Engineer",
"worksFor": {
"@type": "Organization",
"name": "shnwaz dev"
},
"address": {
"@type": "PostalAddress",
"addressLocality": "Bihar",
"addressRegion": "Bavaria",
"addressCountry": "Bihar"
},
"alumniOf": {
"@type": "EducationalOrganization",
"name": "Self-Learning & Project-Based Education"
},
"knowsAbout": ["Software Engineering", "Website Development", "UI/UX Design", "Full-Stack Development", "Cloud Computing", "Distributed Systems", "Data Pipelines", "Microservices", "Node.js", "React", "Python", "Docker", "Kubernetes"],
"sameAs": [
"https://github.com/shnwazdeveloper",
"https://www.linkedin.com/in/shnwazdev/",
"https://shnwazdeveloper.github.io/"
]
}
</script>
</head>
<body class="protected-site">
<!-- Awwwards Ribbon -->
<div id="awwwards" style="position: fixed; z-index: 999; top: 30%; right: -3px; transform: translateY(-50%) scale(0.7); transform-origin: right center;">
<a href="https://shnwazdeveloper.github.io/" target="_blank" style="display: block; text-decoration: none;">
<svg width="53.08" height="171.358" style="display: block; filter: drop-shadow(-5px 5px 0 #000);">
<rect x="0" y="0" width="53.08" height="171.358" fill="#ffd93d" stroke="#000" stroke-width="3"/>
<g fill="#000">
<path d="M20.048 153.585v-2.002l6.752-3.757h-6.752v-1.9h10.23v2.002l-6.752 3.757h6.752v1.9zM29.899 142.382a3.317 3.317 0 0 1-1.359 1.293c-.575.297-1.223.446-1.944.446-.721 0-1.369-.149-1.944-.446a3.317 3.317 0 0 1-1.359-1.293c-.331-.564-.497-1.232-.497-2.003 0-.769.166-1.437.497-2.002a3.332 3.332 0 0 1 1.359-1.294c.575-.297 1.224-.445 1.944-.445.722 0 1.369.148 1.944.445a3.326 3.326 0 0 1 1.359 1.294c.33.565.496 1.233.496 2.002.001.77-.166 1.438-.496 2.003m-1.703-3.348c-.435-.331-.967-.497-1.601-.497s-1.167.166-1.601.497c-.434.332-.65.78-.65 1.345s.217 1.014.65 1.346c.434.33.967.496 1.601.496s1.166-.166 1.601-.496c.434-.332.649-.78.649-1.346.001-.565-.215-1.013-.649-1.345M22.912 134.996v-1.812h1.185c-.43-.283-.752-.593-.973-.929-.219-.336-.329-.732-.329-1.19 0-.479.127-.902.38-1.272.254-.37.635-.633 1.141-.79-.478-.262-.851-.591-1.118-.985a2.221 2.221 0 0 1-.402-1.265c0-.682.2-1.218.599-1.607.4-.391.957-.585 1.668-.585h5.218v1.812H25.37c-.682 0-1.023.303-1.023.907 0 .467.264.85.789 1.146.527.299 1.286.446 2.28.446h2.865v1.813H25.37c-.682 0-1.023.303-1.023.906 0 .468.275.851.826 1.147.551.298 1.352.446 2.404.446h2.704v1.812h-7.369zM21.626 122.457c-.225.224-.502.336-.833.336s-.608-.112-.833-.336a1.128 1.128 0 0 1-.336-.833c0-.331.111-.609.336-.833.225-.225.502-.336.833-.336s.608.111.833.336c.225.224.337.502.337.833 0 .332-.112.608-.337.833m1.286-1.739h7.366v1.813h-7.366v-1.813zM22.912 118.668v-1.812h1.185a3.348 3.348 0 0 1-.951-1.009 2.434 2.434 0 0 1-.351-1.272c0-.681.19-1.229.57-1.644.38-.414.931-.621 1.651-.621h5.263v1.812h-4.722c-.418 0-.727.096-.92.285-.195.19-.293.447-.293.769 0 .302.116.58.351.833.233.254.577.458 1.03.613.453.156.992.234 1.615.234h2.938v1.812h-7.366zM29.833 109.129a3.33 3.33 0 0 1-1.432 1.169 4.535 4.535 0 0 1-1.805.373 4.537 4.537 0 0 1-1.807-.373c-.579-.248-1.057-.638-1.432-1.169s-.563-1.196-.563-1.995c0-.771.183-1.413.549-1.93a3.28 3.28 0 0 1 1.382-1.141 4.221 4.221 0 0 1 1.709-.364h.746v5.071c.447-.02.838-.183 1.168-.49.332-.307.498-.724.498-1.248 0-.41-.093-.754-.277-1.031-.186-.278-.473-.529-.863-.753l.542-1.462c.69.303 1.224.724 1.592 1.265.371.541.556 1.235.556 2.083 0 .799-.188 1.464-.563 1.995m-4.085-3.574c-.41.088-.746.261-1.009.52-.262.258-.395.61-.395 1.06 0 .428.137.784.409 1.067.272.282.604.458.994.525v-3.172zM29.833 100.878c-.375.531-.852.921-1.432 1.169a4.552 4.552 0 0 1-3.612 0c-.579-.248-1.057-.638-1.432-1.169s-.563-1.196-.563-1.995c0-.77.183-1.412.549-1.93a3.278 3.278 0 0 1 1.382-1.14 4.222 4.222 0 0 1 1.709-.365h.746v5.072a1.794 1.794 0 0 0 1.168-.49c.332-.307.498-.724.498-1.249 0-.41-.093-.753-.277-1.031-.186-.277-.473-.528-.863-.753l.542-1.462c.69.302 1.224.724 1.592 1.265.371.541.556 1.234.556 2.083 0 .799-.188 1.464-.563 1.995m-4.085-3.573c-.41.088-.746.261-1.009.519-.262.258-.395.611-.395 1.06 0 .429.137.784.409 1.067.272.282.604.458.994.526v-3.172zM35.481 16.926l-4.782 14.969h-3.266l-2.584-9.682-2.584 9.682h-3.268l-4.781-14.969h3.713l2.673 10.276 2.524-10.276h3.445l2.524 10.276 2.674-10.276zM37.979 27.083c1.426 0 2.495 1.068 2.495 2.495 0 1.425-1.069 2.495-2.495 2.495-1.425 0-2.495-1.07-2.495-2.495-.001-1.427 1.07-2.495 2.495-2.495"></path>
</g>
</svg>
</a>
</div>
<!-- Loading Screen -->
<div class="loader-overlay">
<div class="loader-shapes">
<div class="loader-shape-svg loader-shape-1">
<svg width="80" height="80" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="6" y="6" width="88" height="88" rx="8" fill="#66d9ef" stroke="#000" stroke-width="4"/>
<rect x="3" y="3" width="88" height="88" rx="8" fill="#66d9ef" stroke="#000" stroke-width="4"/>
<path d="M35 40 L20 50 L35 60" stroke="#000" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M65 40 L80 50 L65 60" stroke="#000" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="55" y1="35" x2="45" y2="65" stroke="#000" stroke-width="5" stroke-linecap="round"/>
</svg>
</div>
<div class="loader-shape-svg loader-shape-2">
<svg width="80" height="80" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="6" y="6" width="88" height="88" rx="8" fill="#ffd93d" stroke="#000" stroke-width="4"/>
<rect x="3" y="3" width="88" height="88" rx="8" fill="#ffd93d" stroke="#000" stroke-width="4"/>
<path d="M25 35 L40 50 L25 65" stroke="#000" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="50" y1="65" x2="75" y2="65" stroke="#000" stroke-width="5" stroke-linecap="round"/>
</svg>
</div>
<div class="loader-shape-svg loader-shape-3">
<svg width="80" height="80" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="6" y="6" width="88" height="88" rx="8" fill="#a8e6cf" stroke="#000" stroke-width="4"/>
<rect x="3" y="3" width="88" height="88" rx="8" fill="#a8e6cf" stroke="#000" stroke-width="4"/>
<rect x="20" y="20" width="60" height="60" rx="3" fill="#ffd93d" stroke="#000" stroke-width="4"/>
<rect x="30" y="20" width="40" height="20" fill="#66d9ef" stroke="#000" stroke-width="3"/>
<rect x="35" y="55" width="30" height="15" rx="2" fill="#000"/>
<circle cx="50" cy="35" r="3" fill="#000"/>
</svg>
</div>
</div>
<div class="loader-wrapper">
<div class="loader-letter">S</div>
<div class="loader-letter">D</div>
</div>
<div class="loader-progress-bar">
<div class="loader-progress-fill"></div>
</div>
</div>
<div class="page-wrapper">
<div class="progress-bar-container">
<div class="progress-bar-fill"></div>
<div class="progress-checkpoints">
<div class="checkpoint" data-section="hero">
<div class="checkpoint-dot"></div>
<span class="checkpoint-label">Home</span>
</div>
<div class="checkpoint" data-section="about">
<div class="checkpoint-dot"></div>
<span class="checkpoint-label">About</span>
</div>
<div class="checkpoint" data-section="experience">
<div class="checkpoint-dot"></div>
<span class="checkpoint-label">Journey</span>
</div>
<div class="checkpoint" data-section="skills">
<div class="checkpoint-dot"></div>
<span class="checkpoint-label">Skills</span>
</div>
<div class="checkpoint" data-section="contact">
<div class="checkpoint-dot"></div>
<span class="checkpoint-label">Contact</span>
</div>
</div>
</div>
<nav class="navbar">
<div class="nav-content">
<a href="#" class="nav-brand">SD</a>
<div class="nav-right">
<a href="#hero" class="nav-link">Home</a>
<a href="#about" class="nav-link">About</a>
<a href="#experience" class="nav-link">Journey</a>
<a href="#skills" class="nav-link">Skills</a>
<a href="https://outertuneee.vercel.app/" target="_blank" class="nav-lazyfire" title="OuterTuneee">
<img src="image/lazyfire-logo.svg" alt="OuterTuneee" class="lazyfire-logo" width="28" height="28">
<span class="nav-lazyfire-text">OuterTuneee</span>
</a>
<a href="https://github.com/shnwazdeveloper/shnwaz" target="_blank" class="nav-lazyfire nav-hypergrep" title="shnwaz Repo">
<span class="nav-lazyfire-text">shnwaz Repo</span>
</a>
<a href="#contact" class="nav-cta">Get in Touch!</a>
<button id="theme-toggle" class="theme-toggle-nav" aria-label="Toggle theme">
<i class="fas fa-moon"></i>
</button>
</div>
</div>
</nav>
<section class="hero" id="hero">
<div class="hero-content">
<div class="hero-left">
<p class="hero-greeting" id="hero-greeting">Hi there!</p>
<h1 class="hero-name">I'm shnwazdev.</h1>
<p class="hero-description">
Based in Bihar and originally from Muzaffarpur, Bihar, I'm shnwaz dev: a Senior Software Engineer, Website Developer, and UI/UX Designer. I love to work with distributed systems, data pipelines, cloud technologies, microservices, full-stack development, and building cool stuff.
</p>
<div class="hero-social">
<a href="https://github.com/shnwazdeveloper" target="_blank" class="social-btn">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/shnwazdev/" target="_blank" class="social-btn">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://instagram.com/sexyshnwaz" target="_blank" class="social-btn">
<i class="fab fa-instagram"></i>
</a>
</div>
<div class="hero-cta-container">
<div class="coffee-cta-wrapper">
<div class="coffee-arrow">
<span class="coffee-arrow-text">Buy me a coffee</span>
<img src="image/arrow.png" alt="arrow" class="coffee-arrow-img" width="140" height="140">
</div>
<a href="https://github.com/shnwazdeveloper" target="_blank" class="btn-coffee">
<img src="image/caffe-icon.gif" alt="Coffee" class="coffee-icon-img" width="52" height="52">
</a>
</div>
<a href="#contact" class="btn-cta">Get in Touch!</a>
</div>
</div>
<div class="hero-right">
<div class="hero-image-wrapper">
<div class="tape-sticker"></div>
<img src="image/avatar-gpt.png" alt="shnwazdev" class="hero-photo" width="400" height="400" fetchpriority="high">
<div class="deco-code">
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="6" y="6" width="88" height="88" rx="8" fill="#66d9ef" stroke="#000" stroke-width="4"/>
<rect x="3" y="3" width="88" height="88" rx="8" fill="#66d9ef" stroke="#000" stroke-width="4"/>
<path d="M35 40 L20 50 L35 60" stroke="#000" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M65 40 L80 50 L65 60" stroke="#000" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="55" y1="35" x2="45" y2="65" stroke="#000" stroke-width="5" stroke-linecap="round"/>
</svg>
</div>
<div class="deco-terminal">
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="6" y="6" width="88" height="88" rx="8" fill="#ffd93d" stroke="#000" stroke-width="4"/>
<rect x="3" y="3" width="88" height="88" rx="8" fill="#ffd93d" stroke="#000" stroke-width="4"/>
<path d="M25 35 L40 50 L25 65" stroke="#000" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="50" y1="65" x2="75" y2="65" stroke="#000" stroke-width="5" stroke-linecap="round"/>
</svg>
</div>
<div class="deco-floppy">
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="6" y="6" width="88" height="88" rx="8" fill="#a8e6cf" stroke="#000" stroke-width="4"/>
<rect x="3" y="3" width="88" height="88" rx="8" fill="#a8e6cf" stroke="#000" stroke-width="4"/>
<rect x="20" y="20" width="60" height="60" rx="3" fill="#ffd93d" stroke="#000" stroke-width="4"/>
<rect x="30" y="20" width="40" height="20" fill="#66d9ef" stroke="#000" stroke-width="3"/>
<rect x="35" y="55" width="30" height="15" rx="2" fill="#000"/>
<circle cx="50" cy="35" r="3" fill="#000"/>
</svg>
</div>
<div class="deco-label">Full-Stack Ninja</div>
</div>
</div>
</div>
<div class="tech-badges">
<span class="tech-badge"><i class="fab fa-node-js"></i> Node.js</span>
<span class="tech-badge"><i class="fab fa-react"></i> React</span>
<span class="tech-badge"><i class="fab fa-python"></i> Python</span>
<span class="tech-badge"><i class="fab fa-js"></i> JavaScript</span>
<span class="tech-badge"><i class="fab fa-html5"></i> HTML</span>
<span class="tech-badge"><i class="fab fa-css3"></i> TypeScript</span>
<span class="tech-badge"><i class="fab fa-google"></i> Google Cloud</span>
<span class="tech-badge"><i class="fab fa-docker"></i> Docker</span>
</div>
</section>
<div class="paper-tear paper-tear-top">
<svg width="100%" height="30" viewBox="0 0 1440 30" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0,0 L0,15 Q10,5 20,15 T40,15 Q50,5 60,15 T80,15 Q90,20 100,15 T120,15 Q130,10 140,15 T160,15 Q170,5 180,15 T200,15 Q210,20 220,15 T240,15 Q250,8 260,15 T280,15 Q290,18 300,15 T320,15 Q330,5 340,15 T360,15 Q370,12 380,15 T400,15 Q410,20 420,15 T440,15 Q450,6 460,15 T480,15 Q490,16 500,15 T520,15 Q530,8 540,15 T560,15 Q570,20 580,15 T600,15 Q610,10 620,15 T640,15 Q650,5 660,15 T680,15 Q690,18 700,15 T720,15 Q730,12 740,15 T760,15 Q770,7 780,15 T800,15 Q810,20 820,15 T840,15 Q850,9 860,15 T880,15 Q890,14 900,15 T920,15 Q930,6 940,15 T960,15 Q970,19 980,15 T1000,15 Q1010,11 1020,15 T1040,15 Q1050,5 1060,15 T1080,15 Q1090,17 1100,15 T1120,15 Q1130,8 1140,15 T1160,15 Q1170,13 1180,15 T1200,15 Q1210,20 1220,15 T1240,15 Q1250,7 1260,15 T1280,15 Q1290,16 1300,15 T1320,15 Q1330,10 1340,15 T1360,15 Q1370,5 1380,15 T1400,15 Q1410,18 1420,15 T1440,15 L1440,0 Z"
fill="#ffffff" stroke="none"/>
<path d="M0,30 L0,15 Q10,5 20,15 T40,15 Q50,5 60,15 T80,15 Q90,20 100,15 T120,15 Q130,10 140,15 T160,15 Q170,5 180,15 T200,15 Q210,20 220,15 T240,15 Q250,8 260,15 T280,15 Q290,18 300,15 T320,15 Q330,5 340,15 T360,15 Q370,12 380,15 T400,15 Q410,20 420,15 T440,15 Q450,6 460,15 T480,15 Q490,16 500,15 T520,15 Q530,8 540,15 T560,15 Q570,20 580,15 T600,15 Q610,10 620,15 T640,15 Q650,5 660,15 T680,15 Q690,18 700,15 T720,15 Q730,12 740,15 T760,15 Q770,7 780,15 T800,15 Q810,20 820,15 T840,15 Q850,9 860,15 T880,15 Q890,14 900,15 T920,15 Q930,6 940,15 T960,15 Q970,19 980,15 T1000,15 Q1010,11 1020,15 T1040,15 Q1050,5 1060,15 T1080,15 Q1090,17 1100,15 T1120,15 Q1130,8 1140,15 T1160,15 Q1170,13 1180,15 T1200,15 Q1210,20 1220,15 T1240,15 Q1250,7 1260,15 T1280,15 Q1290,16 1300,15 T1320,15 Q1330,10 1340,15 T1360,15 Q1370,5 1380,15 T1400,15 Q1410,18 1420,15 T1440,15 L1440,30 Z"
fill="#d0d0d0" stroke="none"/>
<path d="M0,15 Q10,5 20,15 T40,15 Q50,5 60,15 T80,15 Q90,20 100,15 T120,15 Q130,10 140,15 T160,15 Q170,5 180,15 T200,15 Q210,20 220,15 T240,15 Q250,8 260,15 T280,15 Q290,18 300,15 T320,15 Q330,5 340,15 T360,15 Q370,12 380,15 T400,15 Q410,20 420,15 T440,15 Q450,6 460,15 T480,15 Q490,16 500,15 T520,15 Q530,8 540,15 T560,15 Q570,20 580,15 T600,15 Q610,10 620,15 T640,15 Q650,5 660,15 T680,15 Q690,18 700,15 T720,15 Q730,12 740,15 T760,15 Q770,7 780,15 T800,15 Q810,20 820,15 T840,15 Q850,9 860,15 T880,15 Q890,14 900,15 T920,15 Q930,6 940,15 T960,15 Q970,19 980,15 T1000,15 Q1010,11 1020,15 T1040,15 Q1050,5 1060,15 T1080,15 Q1090,17 1100,15 T1120,15 Q1130,8 1140,15 T1160,15 Q1170,13 1180,15 T1200,15 Q1210,20 1220,15 T1240,15 Q1250,7 1260,15 T1280,15 Q1290,16 1300,15 T1320,15 Q1330,10 1340,15 T1360,15 Q1370,5 1380,15 T1400,15 Q1410,18 1420,15 T1440,15"
fill="none" stroke="var(--border)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="page-gap"></div>
<div class="paper-tear paper-tear-bottom">
<svg width="100%" height="30" viewBox="0 0 1440 30" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0,0 L0,15 Q10,5 20,15 T40,15 Q50,5 60,15 T80,15 Q90,20 100,15 T120,15 Q130,10 140,15 T160,15 Q170,5 180,15 T200,15 Q210,20 220,15 T240,15 Q250,8 260,15 T280,15 Q290,18 300,15 T320,15 Q330,5 340,15 T360,15 Q370,12 380,15 T400,15 Q410,20 420,15 T440,15 Q450,6 460,15 T480,15 Q490,16 500,15 T520,15 Q530,8 540,15 T560,15 Q570,20 580,15 T600,15 Q610,10 620,15 T640,15 Q650,5 660,15 T680,15 Q690,18 700,15 T720,15 Q730,12 740,15 T760,15 Q770,7 780,15 T800,15 Q810,20 820,15 T840,15 Q850,9 860,15 T880,15 Q890,14 900,15 T920,15 Q930,6 940,15 T960,15 Q970,19 980,15 T1000,15 Q1010,11 1020,15 T1040,15 Q1050,5 1060,15 T1080,15 Q1090,17 1100,15 T1120,15 Q1130,8 1140,15 T1160,15 Q1170,13 1180,15 T1200,15 Q1210,20 1220,15 T1240,15 Q1250,7 1260,15 T1280,15 Q1290,16 1300,15 T1320,15 Q1330,10 1340,15 T1360,15 Q1370,5 1380,15 T1400,15 Q1410,18 1420,15 T1440,15 L1440,0 Z"
fill="#d0d0d0" stroke="none"/>
<path d="M0,30 L0,15 Q10,5 20,15 T40,15 Q50,5 60,15 T80,15 Q90,20 100,15 T120,15 Q130,10 140,15 T160,15 Q170,5 180,15 T200,15 Q210,20 220,15 T240,15 Q250,8 260,15 T280,15 Q290,18 300,15 T320,15 Q330,5 340,15 T360,15 Q370,12 380,15 T400,15 Q410,20 420,15 T440,15 Q450,6 460,15 T480,15 Q490,16 500,15 T520,15 Q530,8 540,15 T560,15 Q570,20 580,15 T600,15 Q610,10 620,15 T640,15 Q650,5 660,15 T680,15 Q690,18 700,15 T720,15 Q730,12 740,15 T760,15 Q770,7 780,15 T800,15 Q810,20 820,15 T840,15 Q850,9 860,15 T880,15 Q890,14 900,15 T920,15 Q930,6 940,15 T960,15 Q970,19 980,15 T1000,15 Q1010,11 1020,15 T1040,15 Q1050,5 1060,15 T1080,15 Q1090,17 1100,15 T1120,15 Q1130,8 1140,15 T1160,15 Q1170,13 1180,15 T1200,15 Q1210,20 1220,15 T1240,15 Q1250,7 1260,15 T1280,15 Q1290,16 1300,15 T1320,15 Q1330,10 1340,15 T1360,15 Q1370,5 1380,15 T1400,15 Q1410,18 1420,15 T1440,15 L1440,30 Z"
fill="#ffffff" stroke="none"/>
<path d="M0,15 Q10,5 20,15 T40,15 Q50,5 60,15 T80,15 Q90,20 100,15 T120,15 Q130,10 140,15 T160,15 Q170,5 180,15 T200,15 Q210,20 220,15 T240,15 Q250,8 260,15 T280,15 Q290,18 300,15 T320,15 Q330,5 340,15 T360,15 Q370,12 380,15 T400,15 Q410,20 420,15 T440,15 Q450,6 460,15 T480,15 Q490,16 500,15 T520,15 Q530,8 540,15 T560,15 Q570,20 580,15 T600,15 Q610,10 620,15 T640,15 Q650,5 660,15 T680,15 Q690,18 700,15 T720,15 Q730,12 740,15 T760,15 Q770,7 780,15 T800,15 Q810,20 820,15 T840,15 Q850,9 860,15 T880,15 Q890,14 900,15 T920,15 Q930,6 940,15 T960,15 Q970,19 980,15 T1000,15 Q1010,11 1020,15 T1040,15 Q1050,5 1060,15 T1080,15 Q1090,17 1100,15 T1120,15 Q1130,8 1140,15 T1160,15 Q1170,13 1180,15 T1200,15 Q1210,20 1220,15 T1240,15 Q1250,7 1260,15 T1280,15 Q1290,16 1300,15 T1320,15 Q1330,10 1340,15 T1360,15 Q1370,5 1380,15 T1400,15 Q1410,18 1420,15 T1440,15"
fill="none" stroke="var(--border)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="tear-tape-sticker"></div>
<div class="container">
<section class="section" id="about">
<h2 class="section-title">ABOUT</h2>
<div class="card">
<p class="text">
I'm <span class="highlight highlight-yellow">shnwaz dev</span>, originally from <span class="highlight highlight-pink">Muzaffarpur, Bihar</span> and currently based in Bihar.
I work as a <span class="highlight highlight-cyan">Senior Software Engineer</span> and build scalable digital products from idea to production.
</p>
<p class="text">
My core focus is <span class="highlight highlight-green">Website Development</span>, <span class="highlight highlight-yellow">UI/UX Design</span>, and modern <span class="highlight highlight-cyan">full-stack engineering</span>.
I enjoy creating clean user experiences and robust backend systems that work reliably at scale.
</p>
<p class="text">
I love working on <span class="highlight highlight-pink">distributed systems</span>, <span class="highlight highlight-green">data pipelines</span>, and <span class="highlight highlight-yellow">cloud technologies</span>,
while continuously learning and building cool things.
</p>
</div>
</section>
<section class="section journey-section" id="experience">
<h2 class="section-title-center">My Journey</h2>
<div class="journey-container">
<div class="journey-timeline">
<h3 class="timeline-header">Journey Timeline</h3>
<div class="timeline-list">
<div class="timeline-item-flat" id="exp-1" data-country="Muzaffarpur, Bihar">
<div class="timeline-dot"></div>
<div class="timeline-content-flat">
<h4 class="timeline-title">Shnwaz Dev - Website Development Journey</h4>
<p class="timeline-date">Muzaffarpur, Bihar</p>
<p class="timeline-description">
Started building websites and practical digital solutions with a focus on clean structure, responsive layouts, and user-first design.
</p>
<p class="timeline-location"><i class="fas fa-map-marker-alt"></i> Muzaffarpur, Bihar, India</p>
</div>
</div>
<div class="timeline-item-flat" id="exp-2" data-country="Patna, Bihar">
<div class="timeline-dot"></div>
<div class="timeline-content-flat">
<h4 class="timeline-title">UI/UX Designer & Frontend Builder</h4>
<p class="timeline-date">Patna, Bihar</p>
<p class="timeline-description">
Designed intuitive interfaces and improved user journeys through modern UI patterns, wireframes, and thoughtful interaction design.
</p>
<p class="timeline-location"><i class="fas fa-map-marker-alt"></i> Patna, Bihar, India</p>
</div>
</div>
<div class="timeline-item-flat" id="exp-3" data-country="Darbhanga, Bihar">
<div class="timeline-dot"></div>
<div class="timeline-content-flat">
<h4 class="timeline-title">Full-Stack & Cloud Projects</h4>
<p class="timeline-date">Darbhanga / Samastipur, Bihar</p>
<p class="timeline-description">
Built end-to-end products with APIs, databases, and deployment workflows while sharpening cloud and performance engineering practices.
</p>
<p class="timeline-location"><i class="fas fa-map-marker-alt"></i> Darbhanga & Samastipur, Bihar, India</p>
</div>
</div>
<div class="timeline-item-flat" id="exp-4" data-country="Bihar">
<div class="timeline-dot"></div>
<div class="timeline-content-flat">
<h4 class="timeline-title">Senior Software Engineer - Global Work</h4>
<p class="timeline-date">Bihar</p>
<p class="timeline-description">
Expanding from Bihar roots to global collaboration, building distributed systems, data pipelines, and cloud-native products.
</p>
<p class="timeline-location"><i class="fas fa-map-marker-alt"></i> Bihar</p>
</div>
</div>
</div>
</div>
<div class="journey-map-container">
<div id="journey-map"></div>
<svg class="map-overlay-lines" xmlns="http://www.w3.org/2000/svg">
<defs>
<pattern id="grid" width="80" height="80" patternUnits="userSpaceOnUse">
<path d="M 80 0 L 0 0 0 80" fill="none" stroke="#000" stroke-width="2" opacity="0.8"/>
</pattern>
<pattern id="scratches" width="200" height="200" patternUnits="userSpaceOnUse">
<line x1="10" y1="20" x2="60" y2="25" stroke="#000" stroke-width="2" opacity="0.7"/>
<line x1="100" y1="50" x2="180" y2="48" stroke="#000" stroke-width="1.5" opacity="0.6"/>
<line x1="30" y1="120" x2="90" y2="115" stroke="#000" stroke-width="2" opacity="0.7"/>
<line x1="140" y1="160" x2="195" y2="165" stroke="#000" stroke-width="1.5" opacity="0.6"/>
<line x1="5" y1="180" x2="45" y2="175" stroke="#000" stroke-width="1.5" opacity="0.6"/>
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#grid)"/>
<rect width="100%" height="100%" fill="url(#scratches)"/>
</svg>
<img src="image/pirat.png" alt="Pirate" class="map-pirate-overlay" width="200" height="200" loading="lazy">
</div>
</div>
</section>
<section class="section" id="skills">
<h2 class="section-title">SKILLS</h2>
<div class="skills-grid-modern">
<div class="skill-box">
<div class="skill-box-header">
<i class="fab fa-react skill-icon-large"></i>
<h3 class="skill-box-title">Frontend</h3>
</div>
<div class="tech-tags">
<span class="tag"><i class="fab fa-react"></i> React.js</span>
<span class="tag"><i class="fas fa-database"></i> Redux</span>
<span class="tag"><i class="fas fa-database"></i> MobX</span>
<span class="tag"><i class="fab fa-angular"></i> Angular</span>
<span class="tag"><i class="fab fa-bootstrap"></i> Bootstrap</span>
<span class="tag"><i class="fas fa-palette"></i> Material-UI</span>
<span class="tag"><i class="fas fa-mobile-alt"></i> React Native</span>
<span class="tag"><i class="fas fa-mobile"></i> Ionic</span>
</div>
</div>
<div class="skill-box">
<div class="skill-box-header">
<i class="fas fa-code skill-icon-large"></i>
<h3 class="skill-box-title">Languages</h3>
</div>
<div class="tech-tags">
<span class="tag"><i class="fab fa-js"></i> JavaScript</span>
<span class="tag"><i class="fab fa-js"></i> TypeScript</span>
<span class="tag"><i class="fab fa-python"></i> Python</span>
<span class="tag"><i class="fab fa-java"></i> Java</span>
<span class="tag"><i class="fas fa-code"></i> Kotlin</span>
<span class="tag"><i class="fas fa-database"></i> SQL</span>
<span class="tag"><i class="fab fa-html5"></i> HTML</span>
<span class="tag"><i class="fab fa-css3"></i> CSS</span>
</div>
</div>
<div class="skill-box">
<div class="skill-box-header">
<i class="fab fa-node skill-icon-large"></i>
<h3 class="skill-box-title">Backend</h3>
</div>
<div class="tech-tags">
<span class="tag"><i class="fab fa-node-js"></i> Node.js</span>
<span class="tag"><i class="fas fa-server"></i> Express.js</span>
<span class="tag"><i class="fas fa-server"></i> Hapi</span>
<span class="tag"><i class="fas fa-fire"></i> Firebase</span>
<span class="tag"><i class="fas fa-bolt"></i> Cloud Functions</span>
<span class="tag"><i class="fab fa-aws"></i> AWS Lambda</span>
<span class="tag"><i class="fas fa-cube"></i> AWS S3</span>
<span class="tag"><i class="fas fa-network-wired"></i> NGINX</span>
</div>
</div>
<div class="skill-box">
<div class="skill-box-header">
<i class="fas fa-cloud skill-icon-large"></i>
<h3 class="skill-box-title">Cloud & DevOps</h3>
</div>
<div class="tech-tags">
<span class="tag"><i class="fab fa-google"></i> Google Cloud</span>
<span class="tag"><i class="fab fa-aws"></i> AWS</span>
<span class="tag"><i class="fab fa-microsoft"></i> Azure</span>
<span class="tag"><i class="fab fa-docker"></i> Docker</span>
<span class="tag"><i class="fas fa-dharmachakra"></i> Kubernetes</span>
<span class="tag"><i class="fas fa-code-branch"></i> Terraform</span>
<span class="tag"><i class="fas fa-play"></i> Cloud Run</span>
</div>
</div>
<div class="skill-box">
<div class="skill-box-header">
<i class="fas fa-database skill-icon-large"></i>
<h3 class="skill-box-title">Databases</h3>
</div>
<div class="tech-tags">
<span class="tag"><i class="fas fa-leaf"></i> MongoDB</span>
<span class="tag"><i class="fas fa-fire"></i> Firestore</span>
<span class="tag"><i class="fas fa-database"></i> RethinkDB</span>
<span class="tag"><i class="fas fa-memory"></i> Redis</span>
<span class="tag"><i class="fas fa-elephant"></i> PostgreSQL</span>
<span class="tag"><i class="fas fa-server"></i> SQL Server</span>
<span class="tag"><i class="fab fa-google"></i> BigQuery</span>
</div>
</div>
<div class="skill-box">
<div class="skill-box-header">
<i class="fas fa-tools skill-icon-large"></i>
<h3 class="skill-box-title">Tools & More</h3>
</div>
<div class="tech-tags">
<span class="tag"><i class="fab fa-git-alt"></i> Git</span>
<span class="tag"><i class="fas fa-search"></i> Elasticsearch</span>
<span class="tag"><i class="fas fa-project-diagram"></i> GraphQL</span>
<span class="tag"><i class="fas fa-chart-line"></i> pandas</span>
<span class="tag"><i class="fas fa-vial"></i> Jest</span>
<span class="tag"><i class="fas fa-vial"></i> Cypress</span>
<span class="tag"><i class="fas fa-tasks"></i> Jira</span>
<span class="tag"><i class="fas fa-code"></i> VSCode</span>
</div>
</div>
<div class="skill-box highlight-box">
<div class="skill-box-header">
<i class="fas fa-sitemap skill-icon-large"></i>
<h3 class="skill-box-title">Architecture</h3>
</div>
<div class="tech-tags">
<span class="tag"><i class="fas fa-cubes"></i> Microservices</span>
<span class="tag"><i class="fas fa-cloud"></i> SaaS</span>
<span class="tag"><i class="fas fa-exchange-alt"></i> Pub/Sub</span>
<span class="tag"><i class="fas fa-route"></i> Routing Slip</span>
<span class="tag"><i class="fas fa-inbox"></i> Dead Letter Queues</span>
</div>
</div>
<div class="skill-box highlight-box">
<div class="skill-box-header">
<i class="fas fa-users-cog skill-icon-large"></i>
<h3 class="skill-box-title">Methodologies</h3>
</div>
<div class="tech-tags">
<span class="tag"><i class="fas fa-sync-alt"></i> Agile</span>
<span class="tag"><i class="fas fa-users"></i> Scrum</span>
<span class="tag"><i class="fas fa-code-branch"></i> CI/CD</span>
<span class="tag"><i class="fas fa-vial"></i> TDD</span>
</div>
</div>
</div>
</section>
<section class="section section-compact" id="projects">
<div class="creator-showcase">
<p class="creator-label">Creator of Projects</p>
<div class="creator-projects-grid">
<div class="creator-item">
<a href="https://outertuneee.vercel.app/" target="_blank" class="creator-project">
<img src="image/lazyfire-logo.svg" alt="OuterTuneee" class="creator-logo" width="80" height="80">
<span class="creator-name">OuterTuneee</span>
</a>
<p class="creator-tagline">Music streaming and discovery app experience.</p>
<a href="https://outertuneee.vercel.app/" target="_blank" class="creator-github"><i class="fas fa-external-link-alt"></i> Check it out</a>
</div>
<div class="creator-item">
<a href="https://github.com/shnwazdeveloper/shnwaz" target="_blank" class="creator-project">
<span class="creator-name" style="font-size: 2.1rem;">shnwaz Repo</span>
</a>
<p class="creator-tagline">Source code for this portfolio website repository.</p>
<a href="https://github.com/shnwazdeveloper/shnwaz" target="_blank" class="creator-github"><i class="fab fa-github"></i> Open Repository</a>
</div>
</div>
</div>
</section>
<section class="section education-languages-section">
<div class="education-languages-grid">
<div class="education-column">
<h2 class="section-title">EDUCATION</h2>
<div class="card education-card">
<div class="education-header">
<div>
<h3 class="education-title">Self-Driven Learning in Software & Design</h3>
<p class="education-school">Continuous practice through real projects</p>
</div>
<span class="badge">Ongoing</span>
</div>
<p class="education-location"><i class="fas fa-map-marker-alt"></i> Muzaffarpur, Bihar, India</p>
</div>
</div>
<div class="languages-column">
<h2 class="section-title">LANGUAGES</h2>
<div class="card languages-card">
<div class="language-item">
<span class="language-name-inline">Hindi</span>
<div class="language-stars">
<span class="star filled"></span>
<span class="star filled"></span>
<span class="star filled"></span>
</div>
</div>
<div class="language-item">
<span class="language-name-inline">English</span>
<div class="language-stars">
<span class="star filled"></span>
<span class="star filled"></span>
<span class="star filled"></span>
</div>
</div>
<div class="language-item">
<span class="language-name-inline">Bhojpuri</span>
<div class="language-stars">
<span class="star filled"></span>
<span class="star"></span>
<span class="star"></span>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="contact">
<h2 class="section-title">GET IN TOUCH</h2>
<div class="contact-container-compact">
<p class="contact-intro">Let's build something amazing together</p>
<div class="contact-grid">
<a href="https://www.linkedin.com/in/shnwazdev/" target="_blank" class="contact-card">
<i class="fab fa-linkedin"></i>
<span>LinkedIn</span>
</a>
<a href="https://github.com/shnwazdeveloper" target="_blank" class="contact-card">
<i class="fab fa-github"></i>
<span>GitHub</span>
</a>
<a href="https://shnwazdeveloper.github.io/" target="_blank" class="contact-card">
<i class="fas fa-globe"></i>
<span>Website</span>
</a>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-compact">
<div class="footer-main">
<div class="footer-brand-compact">
<strong>SHNWAZDEV</strong>
<span>Senior Software Engineer</span>
</div>
<div class="footer-nav-compact">
<a href="#hero">Home</a>
<a href="#about">About</a>
<a href="#experience">Experience</a>
<a href="#skills">Skills</a>
</div>
<div class="footer-social-compact">
<a href="https://github.com/shnwazdeveloper" target="_blank" title="GitHub">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/shnwazdev/" target="_blank" title="LinkedIn">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://shnwazdeveloper.github.io/" target="_blank" title="Website">
<i class="fas fa-globe"></i>
</a>
</div>
</div>
<div class="footer-bottom-compact">
<span>© 2026 shnwazdev</span>
<a href="terminal.html" class="footer-terminal-link-compact">
<i class="fas fa-terminal"></i> Terminal
</a>
</div>
</div>
</footer>
</div>
</div>
<script>
// Always start at top of page on reload
if ('scrollRestoration' in history) {
history.scrollRestoration = 'manual';
}
window.scrollTo(0, 0);
// Loading Screen
window.addEventListener('load', () => {
const loader = document.querySelector('.loader-overlay');
setTimeout(() => {
loader.classList.add('hidden');
}, 1200); // Hide after 1.2 seconds
});
// Hero Photo Tilt on Scroll
let photoTilted = false;
const heroPhoto = document.querySelector('.hero-photo');
window.addEventListener('scroll', () => {
if (!photoTilted && window.scrollY > 5) {
heroPhoto.classList.add('tilted');
photoTilted = true;
}
});
// Hero Photo Hover - Reset to starting position
heroPhoto.addEventListener('mouseenter', () => {
heroPhoto.classList.remove('tilted');
});
heroPhoto.addEventListener('mouseleave', () => {
if (photoTilted) {
heroPhoto.classList.add('tilted');
}
});
// Falling SVG - Only terminal (top-right)
let terminalFallen = false;
const decoTerminal = document.querySelector('.deco-terminal');
const heroContent = document.querySelector('.hero-content');
function calculateFallDistance() {
const heroContentRect = heroContent.getBoundingClientRect();
const heroContentBottom = heroContentRect.bottom;
const terminalRect = decoTerminal.getBoundingClientRect();
const terminalFall = Math.max(0, heroContentBottom - terminalRect.bottom - 50);
decoTerminal.style.setProperty('--fall-distance', `${terminalFall}px`);
}
calculateFallDistance();
window.addEventListener('resize', calculateFallDistance);
window.addEventListener('scroll', () => {
if (!terminalFallen && window.scrollY > 5) {
decoTerminal.classList.add('falling');
terminalFallen = true;
}
});
// Paper Tear Gap Parallax Effect
const pageGap = document.querySelector('.page-gap');
const paperTearBottom = document.querySelector('.paper-tear-bottom');
const paperTearBottomBgGray = document.querySelector('.paper-tear-bottom svg path[fill="#d0d0d0"]');
const paperTearBottomBgWhite = document.querySelector('.paper-tear-bottom svg path[fill="#ffffff"]');
const tearTapeSticker = document.querySelector('.tear-tape-sticker');
const minGapHeight = -30;
function updateTapePosition() {
if (paperTearBottom && tearTapeSticker) {
const rect = paperTearBottom.getBoundingClientRect();
tearTapeSticker.style.setProperty('--tape-position', `${rect.top}px`);
}
}
function updateGapParallax() {
if (!pageGap || !paperTearBottom) return;
const isMobile = window.innerWidth <= 768;
// Skip animation on mobile
if (isMobile) return;
const scrollY = window.scrollY;
const initialGapHeight = 300;
const scrollStart = 100;
const scrollRange = 200;
const stickerDelay = 30;
const stickerStart = scrollStart + scrollRange + stickerDelay;
const stickerRange = 60;
updateTapePosition();
if (scrollY <= scrollStart) {
pageGap.style.setProperty('height', initialGapHeight + 'px', 'important');
paperTearBottom.style.setProperty('margin-top', '0px', 'important');
if (paperTearBottomBgGray) paperTearBottomBgGray.style.opacity = '1';
if (tearTapeSticker) {
tearTapeSticker.style.transform = 'rotate(-8deg) translateY(-40px) translateZ(30px) rotateX(35deg)';
tearTapeSticker.style.opacity = '0';
}
} else if (scrollY >= scrollStart && scrollY <= scrollStart + scrollRange) {
const progress = (scrollY - scrollStart) / scrollRange;
const currentHeight = initialGapHeight - (initialGapHeight - minGapHeight) * progress;
if (currentHeight >= 0) {
pageGap.style.setProperty('height', currentHeight + 'px', 'important');
paperTearBottom.style.setProperty('margin-top', '0px', 'important');
if (paperTearBottomBgGray) paperTearBottomBgGray.style.opacity = '1';
if (tearTapeSticker) {
tearTapeSticker.style.transform = 'rotate(-8deg) translateY(-100px) translateZ(50px) rotateX(45deg)';
tearTapeSticker.style.opacity = '0';
}
} else {
// Negative margin starts - fade background
pageGap.style.setProperty('height', '0px', 'important');
paperTearBottom.style.setProperty('margin-top', currentHeight + 'px', 'important');
// Fade based on negative margin progress
const negativePart = Math.abs(minGapHeight);
const negativeProgress = Math.abs(currentHeight) / negativePart;
const opacity = 1 - negativeProgress;
if (paperTearBottomBgGray) paperTearBottomBgGray.style.opacity = opacity;
if (tearTapeSticker) {
tearTapeSticker.style.transform = 'rotate(-8deg) translateY(-100px) translateZ(50px) rotateX(45deg)';
tearTapeSticker.style.opacity = '0';
}
}
} else if (scrollY > stickerStart && scrollY < stickerStart + stickerRange) {
// Sticker animation in progress
pageGap.style.setProperty('height', '0px', 'important');
paperTearBottom.style.setProperty('margin-top', minGapHeight + 'px', 'important');
if (paperTearBottomBgGray) paperTearBottomBgGray.style.opacity = '0';
if (tearTapeSticker) {
const stickerProgress = (scrollY - stickerStart) / stickerRange;
// Interpolate transform values based on progress
const translateY = -40 + (40 * stickerProgress);
const translateZ = 30 - (30 * stickerProgress);
const rotateX = 35 - (35 * stickerProgress);
const opacityVal = Math.min(1, Math.max(0, (stickerProgress - 0.35) * 1.54));
tearTapeSticker.style.transform = `rotate(-8deg) translateY(${translateY}px) translateZ(${translateZ}px) rotateX(${rotateX}deg)`;
tearTapeSticker.style.opacity = opacityVal;
}
} else if (scrollY >= stickerStart + stickerRange) {
// Sticker fully stuck
pageGap.style.setProperty('height', '0px', 'important');
paperTearBottom.style.setProperty('margin-top', minGapHeight + 'px', 'important');
if (paperTearBottomBgGray) paperTearBottomBgGray.style.opacity = '0';
if (tearTapeSticker) {
tearTapeSticker.style.transform = 'rotate(-8deg) translateY(0px) translateZ(0px) rotateX(0deg)';
tearTapeSticker.style.opacity = '1';
}
} else {
// Between gap close and sticker start
pageGap.style.setProperty('height', '0px', 'important');
paperTearBottom.style.setProperty('margin-top', minGapHeight + 'px', 'important');
if (paperTearBottomBgGray) paperTearBottomBgGray.style.opacity = '0';
if (tearTapeSticker) {
tearTapeSticker.style.transform = 'rotate(-8deg) translateY(-40px) translateZ(30px) rotateX(35deg)';
tearTapeSticker.style.opacity = '0';
}
}
}
window.addEventListener('scroll', updateGapParallax);
window.addEventListener('resize', updateGapParallax);
// Initialize all animations with current scroll position
requestAnimationFrame(() => {
updateGapParallax();
});
// Highlight Parallax Effect
const highlights = document.querySelectorAll('.highlight');
const highlightData = new Map();
highlights.forEach((highlight, index) => {
const direction = index % 2 === 0 ? 'left' : 'right';
highlight.setAttribute('data-direction', direction);
highlightData.set(highlight, {
hasStarted: false,
startScroll: 0,
duration: 100,
direction: direction
});
});
function updateHighlights() {
const scrollY = window.scrollY;
const windowHeight = window.innerHeight;
highlights.forEach(highlight => {
const rect = highlight.getBoundingClientRect();
const elementTop = rect.top + scrollY;
const data = highlightData.get(highlight);
// Start highlighting when element is near top of viewport
const triggerPoint = scrollY + windowHeight * 0.8;
if (!data.hasStarted && triggerPoint >= elementTop) {
data.hasStarted = true;
data.startScroll = scrollY;
}
if (data.hasStarted) {
const progress = Math.min(1, Math.max(0, (scrollY - data.startScroll) / data.duration));
highlight.style.setProperty('--highlight-progress', `${progress * 100}%`);
}
// Reset when scrolling back up past element
if (data.hasStarted && scrollY < data.startScroll - 50) {
data.hasStarted = false;
highlight.style.setProperty('--highlight-progress', '0%');
}
});
}
window.addEventListener('scroll', updateHighlights);
requestAnimationFrame(() => {
updateHighlights();
});
// Language Stars Parallax Effect
const languageItems = document.querySelectorAll('.language-item');
const languageStarsData = new Map();
languageItems.forEach(item => {
const stars = item.querySelectorAll('.language-stars .star');
languageStarsData.set(item, {
hasStarted: false,
startScroll: 0,
stars: stars,
starDelay: 50
});
});
function updateLanguageStars() {
const scrollY = window.scrollY;
const windowHeight = window.innerHeight;
languageItems.forEach(item => {
const rect = item.getBoundingClientRect();
const elementTop = rect.top + scrollY;
const data = languageStarsData.get(item);
const triggerPoint = scrollY + windowHeight * 0.8;
if (!data.hasStarted && triggerPoint >= elementTop) {
data.hasStarted = true;
data.startScroll = scrollY;
}
if (data.hasStarted) {
const scrollProgress = scrollY - data.startScroll;
data.stars.forEach((star, index) => {
const starTrigger = index * data.starDelay;
if (scrollProgress >= starTrigger) {
star.classList.add('visible');
}
});
}
});
}
window.addEventListener('scroll', updateLanguageStars);
requestAnimationFrame(() => {
updateLanguageStars();
});
// Journey timeline/map stable layout
const journeyTimeline = document.querySelector('.journey-timeline');
const journeyTimelineBack = document.querySelector('.journey-timeline-back');
function syncJourneyPanels() {
if (!journeyTimeline) return;
if (window.innerWidth >= 769) {
journeyTimeline.style.zIndex = '2';
if (journeyTimelineBack) journeyTimelineBack.style.zIndex = '1';
journeyTimeline.style.overflowY = 'auto';
} else {
journeyTimeline.style.zIndex = '';
if (journeyTimelineBack) journeyTimelineBack.style.zIndex = '';
journeyTimeline.style.overflowY = '';
}
}
window.addEventListener('resize', syncJourneyPanels);
requestAnimationFrame(syncJourneyPanels);
// Theme Toggle
const themeToggle = document.getElementById('theme-toggle');
const body = document.body;
const icon = themeToggle.querySelector('i');
const currentTheme = localStorage.getItem('theme') || 'light';
body.setAttribute('data-theme', currentTheme);
updateIcon(currentTheme);
themeToggle.addEventListener('click', () => {
const theme = body.getAttribute('data-theme');
const newTheme = theme === 'light' ? 'dark' : 'light';
body.setAttribute('data-theme', newTheme);
localStorage.setItem('theme', newTheme);
updateIcon(newTheme);
});
function updateIcon(theme) {
if (theme === 'dark') {
icon.classList.remove('fa-moon');
icon.classList.add('fa-sun');
} else {
icon.classList.remove('fa-sun');
icon.classList.add('fa-moon');
}
}
// Smooth Scroll for Navigation
document.querySelectorAll('.nav-link').forEach(link => {
link.addEventListener('click', (e) => {
e.preventDefault();
const targetId = link.getAttribute('href');
const targetSection = document.querySelector(targetId);
if (targetSection) {
targetSection.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
});
});
// Smart Navbar Scroll
const navbar = document.querySelector('.navbar');
let lastScroll = 0;
window.addEventListener('scroll', () => {
const currentScroll = window.pageYOffset;
// Smart hide/show navbar
if (currentScroll > lastScroll && currentScroll > 100) {
// Scrolling down & past threshold - hide navbar
navbar.classList.add('navbar-hidden');
} else if (currentScroll < lastScroll) {