-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1206 lines (995 loc) · 57.6 KB
/
index.html
File metadata and controls
1206 lines (995 loc) · 57.6 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" class="overflow-x-hidden">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Search Console -->
<meta name="google-site-verification" content="tMOCDPz1aszvwqMo5mVBUOde2v-leUCdNNf0w1BldIw" />
<!-- SEO -->
<title>DevOps Engineer in Patna | Freelance DevOps Engineer India – Shahe Alam</title>
<meta name="description"
content="DevOps engineer in Patna offering freelance DevOps services across India. Expert in CI/CD pipelines, Jenkins automation, Docker containerization, AWS EC2 cloud deployments, and Linux infrastructure. Hire the best DevOps engineer in Patna for scalable and secure systems.">
<meta name="keywords" content="devops engineer in patna,freelance devops engineer patna,hire devops engineer in patna,devops engineer india,ci cd engineer patna">
<meta name="author" content="Shahe Alam">
<link rel="canonical" href="https://shahealamit.github.io/">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<!-- Open Graph -->
<meta property="og:title" content="DevOps Engineer | CI/CD, Jenkins, Docker, AWS">
<meta property="og:description"
content="DevOps Engineer focused on CI/CD pipelines, Jenkins, Docker, AWS EC2, and Linux deployments.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://shahealamit.github.io/">
<meta property="og:image" content="https://shahealamit.github.io/images/about.jpg">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="DevOps Engineer | CI/CD, Jenkins, Docker, AWS">
<meta name="twitter:description"
content="DevOps Engineer working on CI/CD automation, Docker, AWS EC2, and Linux infrastructure.">
<meta name="twitter:image" content="https://shahealamit.github.io/images/about.jpg">
<!-- Schema (ONLY ONE – CLEAN) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Shahe Alam",
"jobTitle": "DevOps Engineer",
"url": "https://shahealamit.github.io/",
"address": {
"@type": "PostalAddress",
"addressLocality": "Patna",
"addressRegion": "Bihar",
"addressCountry": "India"
},
"sameAs": [
"https://www.linkedin.com/in/md-shahe-alam-63a439315/",
"https://github.com/shahealamit"
]
}
</script>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Fira+Code:wght@400;500&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Fira+Code:wght@400;500&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-slate-950 text-slate-300">
<!-- SEO Content (Hidden) -->
<div class="sr-only">
<h1>DevOps Engineer in Patna</h1>
<p>
I am a professional DevOps engineer in Patna providing freelance DevOps services to startups and
enterprises.
If you are looking to hire the best DevOps in Patna or a freelance DevOps engineer in India,
I specialize in CI/CD pipelines, Jenkins, Docker, AWS cloud deployments, and Linux automation.
</p>
</div>
<nav
class="fixed top-0 w-full z-50 bg-slate-950/80 backdrop-blur-md border-b border-slate-800 transition-all duration-300">
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
<!-- LOGO + BRAND -->
<a href="/" class="flex items-center gap-3 group">
<img
src="logo.png"
alt="Shahe Alam DevOps Engineer in Patna"
class="h-9 w-auto"
>
<div class="leading-tight hidden sm:block">
<span
class="block text-white font-bold tracking-wide group-hover:text-teal-400 transition-colors">
Shahe Alam
</span>
<span class="text-[10px] text-slate-400 uppercase tracking-widest">
DevOps Engineer
</span>
</div>
</a>
<!-- DESKTOP MENU -->
<div class="hidden md:flex space-x-8 text-sm font-medium items-center">
<a href="/#home" class="hover:text-teal-400 transition-colors">Home</a>
<a href="/#about" class="hover:text-teal-400 transition-colors">About</a>
<a href="/#skills" class="hover:text-teal-400 transition-colors">Skills</a>
<a href="/#resume" class="hover:text-teal-400 transition-colors">Journey</a>
<a href="/#services" class="hover:text-teal-400 transition-colors"> Services</a>
<a href="/#projects" class="hover:text-teal-400 transition-colors">Projects</a>
<a href="/hire-devops-engineer.html"
class="px-5 py-2 border border-teal-500 text-teal-400 rounded-full
hover:bg-teal-500 hover:text-white transition-all">
Let's Talk
</a>
</div>
<!-- MOBILE BUTTON -->
<button id="mobile-btn" class="md:hidden text-xl text-white">
<i class="fas fa-bars"></i>
</button>
</div>
<!-- MOBILE MENU -->
<div id="mobile-menu"
class="hidden md:hidden bg-slate-900 border-t border-slate-700 absolute w-full left-0">
<div class="flex flex-col p-4 space-y-4 text-center">
<a href="/#home" class="block hover:text-teal-400">Home</a>
<a href="/#about" class="block hover:text-teal-400">About</a>
<a href="/#resume" class="block hover:text-teal-400">Journey</a>
<a href="/#services" class="block hover:text-teal-400">Services</a>
<a href="/#projects" class="block hover:text-teal-400">Projects</a>
<a href="/hire-devops-engineer.html" class="block text-teal-400 font-bold">Contact Me</a>
</div>
</div>
</nav>
<!-- Hero -->
<section id="home" class="min-h-screen md:h-[85vh] flex items-center pt-28 md:pt-24 relative overflow-hidden">
<!-- Background Image -->
<div class="absolute inset-0 -z-20">
<img
src="hero-bg.png"
alt="DevOps Engineer in Patna background"
class="absolute inset-0 w-full h-full object-cover"
>
<div class="absolute inset-0 bg-slate-950/85"></div>
</div>
<!-- Soft background glow -->
<div class="absolute top-10 left-10 w-72 h-72 bg-teal-500/10 rounded-full blur-[120px] -z-10"></div>
<div class="absolute bottom-10 right-10 w-72 h-72 bg-blue-500/10 rounded-full blur-[120px] -z-10"></div>
<div class="container mx-auto px-6 grid lg:grid-cols-2 gap-12 items-center relative z-10">
<!-- LEFT CONTENT -->
<div data-aos="fade-right" data-aos-duration="900">
<!-- Availability badge -->
<div class="inline-block px-4 py-1 mb-6 text-xs font-semibold tracking-wide text-teal-400 uppercase
bg-teal-500/10 rounded-full border border-teal-500/20">
Available for DevOps & Freelance Projects
</div>
<!-- H1 -->
<h1 class="text-4xl md:text-5xl font-bold text-white mb-3 leading-tight">
DevOps Engineer in Patna
</h1>
<!-- SEO SUPPORT LINE (hidden) -->
<p class="sr-only">
Hire a DevOps engineer in Patna for freelance and remote DevOps services.
Expertise in CI/CD pipelines, Jenkins automation, Docker containerization,
AWS cloud deployments, and Linux infrastructure.
</p>
<!-- H2 -->
<h2 class="text-2xl md:text-3xl font-semibold text-teal-400 mb-6">
Shahe Alam — DevOps & Cloud Engineer
</h2>
<!-- Description -->
<p class="text-slate-300 text-lg mb-8 max-w-xl leading-relaxed">
Building and managing <strong>CI/CD pipelines</strong>,
automating <strong>cloud infrastructure</strong>, and deploying
<strong>containerized applications</strong> using
<strong>AWS, Docker, Jenkins, and Linux</strong> for startups
and growing teams.
</p>
<!-- CTA -->
<div class="flex flex-col md:flex-row gap-4">
<a href="#contact" class="px-6 py-3 rounded-full bg-teal-500 text-slate-950 font-semibold
hover:bg-teal-400 transition-all">
Hire Me
</a>
<a href="#projects" class="px-6 py-3 rounded-full border border-slate-600 text-slate-300
hover:border-teal-400 hover:text-teal-400 transition-all">
View Projects
</a>
</div>
</div>
<!-- RIGHT VISUAL -->
<div class="flex justify-center items-center" data-aos="zoom-in" data-aos-duration="1200">
<div class="solar-system relative">
<div class="absolute z-10 w-32 h-32 rounded-full border-4 border-slate-800
shadow-[0_0_40px_rgba(20,184,166,0.5)] overflow-hidden bg-slate-900">
<img src="about.jpg" alt="Shahe Alam DevOps Engineer" class="w-full h-full object-cover">
</div>
<div class="orbit orbit-1">
<div class="planet-container" style="transform: translate(110px, 0);">
<div class="planet-icon"><i class="fab fa-docker"></i></div>
</div>
</div>
<div class="orbit orbit-2">
<div class="planet-container" style="transform: translate(0, 170px);">
<div class="planet-icon"><i class="fab fa-aws"></i></div>
</div>
<div class="planet-container" style="transform: translate(170px, 0);">
<div class="planet-icon"><i class="fab fa-jenkins"></i></div>
</div>
</div>
<div class="orbit orbit-3">
<div class="planet-container" style="transform: translate(-230px, 0);">
<div class="planet-icon"><i class="fas fa-server"></i></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- about -->
<section id="about" class="py-24 bg-slate-900/50 relative">
<div class="container mx-auto px-4 md:px-6">
<div class="grid md:grid-cols-2 gap-8 md:gap-16 items-center">
<!-- Animation - Shows second on mobile (order-2), first on desktop (md:order-1) -->
<div class="flex justify-center h-[300px] md:h-[400px] items-center order-2 md:order-1"
data-aos="fade-right">
<div class="nexus-wrapper">
<div class="nexus-bg-container" id="four-way-bg"></div>
<div class="nexus-core"><i class="fas fa-shield-alt"></i></div>
<div class="nexus-orbit">
<div class="orbit-spoke" style="transform: rotate(0deg);"></div>
<div class="orbit-spoke" style="transform: rotate(72deg);"></div>
<div class="orbit-spoke" style="transform: rotate(144deg);"></div>
<div class="orbit-spoke" style="transform: rotate(216deg);"></div>
<div class="orbit-spoke" style="transform: rotate(288deg);"></div>
<div class="node-holder" style="transform: translate(140px, 0);">
<div class="tech-node node-bug"><i class="fas fa-server"></i></div>
</div>
<div class="node-holder" style="transform: translate(43px, 133px);">
<div class="tech-node node-test"><i class="fas fa-code-branch"></i></div>
</div>
<div class="node-holder" style="transform: translate(-113px, 82px);">
<div class="tech-node node-devops"><i class="fas fa-cloud"></i></div>
</div>
<div class="node-holder" style="transform: translate(-113px, -82px);">
<div class="tech-node node-lang"><i class="fab fa-docker"></i></div>
</div>
<div class="node-holder" style="transform: translate(43px, -133px);">
<div class="tech-node node-tech"><i class="fab fa-aws"></i></div>
</div>
</div>
</div>
</div>
<!-- Text - Shows first on mobile (order-1), second on desktop (md:order-2) -->
<div class="order-1 md:order-2" data-aos="fade-left">
<h2 class="text-3xl font-bold text-white mb-6">
About <span class="text-teal-400">Me</span>
</h2>
<p class="text-slate-400 mb-6 leading-relaxed text-lg">
<strong>DevOps Engineer</strong> with hands-on experience in
<strong>CI/CD pipeline automation</strong> and
<strong>cloud infrastructure deployments</strong> for
scalable, production-ready applications.
</p>
<p class="text-slate-400 mb-6 leading-relaxed">
Strong expertise in <strong>Jenkins, Docker, AWS EC2, GitHub, and Linux</strong>,
focusing on automated deployments, containerized applications,
infrastructure reliability, and faster release cycles.
Experienced in supporting stable environments across
development, staging, and production.
</p>
<p class="text-slate-400 mb-6 leading-relaxed">
As a freelance DevOps engineer in Patna, I work with startups and businesses across India.
Companies looking to hire the best DevOps Engineers in India rely on my expertise in CI/CD
automation,
cloud infrastructure, Dockerized deployments, and production-ready DevOps practices.
</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div
class="bg-slate-800 p-5 rounded-2xl border border-slate-700 text-center hover:border-teal-500/50 transition-colors">
<h3 class="text-3xl font-bold text-white">1.6+</h3>
<p class="text-xs text-teal-400 uppercase tracking-wide mt-2">
Years DevOps Experience
</p>
</div>
<div
class="bg-slate-800 p-5 rounded-2xl border border-slate-700 text-center hover:border-teal-500/50 transition-colors">
<h3 class="text-3xl font-bold text-white">120+</h3>
<p class="text-xs text-teal-400 uppercase tracking-wide mt-2">
Builds & Deployments Supported
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skill -->
<section id="skills" class="py-24 relative overflow-hidden bg-slate-950">
<div
class="absolute inset-0 bg-[linear-gradient(to_right,#80808012_1px,transparent_1px),linear-gradient(to_bottom,#80808012_1px,transparent_1px)] bg-[size:24px_24px]">
</div>
<div class="absolute top-0 left-0 w-96 h-96 bg-teal-500/20 rounded-full blur-[100px] animate-pulse"></div>
<div
class="absolute bottom-0 right-0 w-96 h-96 bg-purple-500/10 rounded-full blur-[100px] animate-pulse delay-1000">
</div>
<div class="container mx-auto px-6 relative z-10">
<div class="text-center mb-20" data-aos="fade-up">
<h2 class="text-4xl md:text-5xl font-bold text-white mb-4">
DevOps
<span
class="text-transparent bg-clip-text bg-gradient-to-r from-teal-400 via-blue-500 to-purple-500 animate-gradient-x">
Expertise
</span>
</h2>
<div class="w-24 h-1 bg-gradient-to-r from-teal-400 to-purple-600 mx-auto rounded-full"></div>
</div>
<div class="grid md:grid-cols-3 gap-8 perspective-1000">
<!-- DevOps & CI/CD -->
<div class="relative group" data-aos="fade-up">
<div
class="absolute -inset-0.5 bg-gradient-to-r from-teal-500 to-blue-600 rounded-2xl blur opacity-20 group-hover:opacity-100 transition duration-500 group-hover:duration-200">
</div>
<div
class="relative bg-slate-900 border border-slate-800 p-8 rounded-2xl h-full flex flex-col transform transition-all duration-300 group-hover:-translate-y-2 group-hover:shadow-2xl">
<div
class="w-16 h-16 bg-gradient-to-br from-teal-500/20 to-blue-500/20 rounded-xl flex items-center justify-center text-teal-400 mb-6 text-3xl group-hover:scale-110 group-hover:rotate-3 transition-transform duration-300 border border-teal-500/20">
<i class="fas fa-server"></i>
</div>
<h3 class="text-2xl font-bold text-white mb-2">CI/CD & Automation</h3>
<p class="text-slate-400 text-sm mb-6">
Automated build, test, and deployment pipelines.
</p>
<div class="flex flex-wrap gap-2 mt-auto">
<span
class="px-3 py-1 text-xs font-medium text-teal-300 bg-teal-900/30 rounded-md border border-teal-500/30">Jenkins</span>
<span
class="px-3 py-1 text-xs font-medium text-teal-300 bg-teal-900/30 rounded-md border border-teal-500/30">CI/CD
Pipelines</span>
<span
class="px-3 py-1 text-xs font-medium text-teal-300 bg-teal-900/30 rounded-md border border-teal-500/30">GitHub</span>
<span
class="px-3 py-1 text-xs font-medium text-teal-300 bg-teal-900/30 rounded-md border border-teal-500/30">Automation</span>
</div>
</div>
</div>
<!-- Cloud & Containerization -->
<div class="relative group" data-aos="fade-up" data-aos-delay="100">
<div
class="absolute -inset-0.5 bg-gradient-to-r from-purple-500 to-pink-600 rounded-2xl blur opacity-20 group-hover:opacity-100 transition duration-500 group-hover:duration-200">
</div>
<div
class="relative bg-slate-900 border border-slate-800 p-8 rounded-2xl h-full flex flex-col transform transition-all duration-300 group-hover:-translate-y-2 group-hover:shadow-2xl">
<div
class="w-16 h-16 bg-gradient-to-br from-purple-500/20 to-pink-500/20 rounded-xl flex items-center justify-center text-purple-400 mb-6 text-3xl group-hover:scale-110 group-hover:-rotate-3 transition-transform duration-300 border border-purple-500/20">
<i class="fas fa-cloud"></i>
</div>
<h3 class="text-2xl font-bold text-white mb-2">Cloud & Containers</h3>
<p class="text-slate-400 text-sm mb-6">
Scalable cloud deployments and containerized apps.
</p>
<div class="flex flex-wrap gap-2 mt-auto">
<span
class="px-3 py-1 text-xs font-medium text-purple-300 bg-purple-900/30 rounded-md border border-purple-500/30">AWS
EC2</span>
<span
class="px-3 py-1 text-xs font-medium text-purple-300 bg-purple-900/30 rounded-md border border-purple-500/30">Docker</span>
<span
class="px-3 py-1 text-xs font-medium text-purple-300 bg-purple-900/30 rounded-md border border-purple-500/30">Linux</span>
<span
class="px-3 py-1 text-xs font-medium text-purple-300 bg-purple-900/30 rounded-md border border-purple-500/30">Cloud
Deployment</span>
</div>
</div>
</div>
<!-- Scripting & Build Tools -->
<div class="relative group" data-aos="fade-up" data-aos-delay="200">
<div
class="absolute -inset-0.5 bg-gradient-to-r from-blue-500 to-cyan-400 rounded-2xl blur opacity-20 group-hover:opacity-100 transition duration-500 group-hover:duration-200">
</div>
<div
class="relative bg-slate-900 border border-slate-800 p-8 rounded-2xl h-full flex flex-col transform transition-all duration-300 group-hover:-translate-y-2 group-hover:shadow-2xl">
<div
class="w-16 h-16 bg-gradient-to-br from-blue-500/20 to-cyan-500/20 rounded-xl flex items-center justify-center text-blue-400 mb-6 text-3xl group-hover:scale-110 group-hover:rotate-6 transition-transform duration-300 border border-blue-500/20">
<i class="fas fa-code"></i>
</div>
<h3 class="text-2xl font-bold text-white mb-2">Scripting & Build</h3>
<p class="text-slate-400 text-sm mb-6">
Build tools and scripting for automation.
</p>
<div class="flex flex-wrap gap-2 mt-auto">
<span
class="px-3 py-1 text-xs font-medium text-blue-300 bg-blue-900/30 rounded-md border border-blue-500/30">Shell
Scripting</span>
<span
class="px-3 py-1 text-xs font-medium text-blue-300 bg-blue-900/30 rounded-md border border-blue-500/30">Maven</span>
<span
class="px-3 py-1 text-xs font-medium text-blue-300 bg-blue-900/30 rounded-md border border-blue-500/30">Git</span>
<span
class="px-3 py-1 text-xs font-medium text-blue-300 bg-blue-900/30 rounded-md border border-blue-500/30">Linux
CLI</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- resume -->
<section id="resume" class="py-24 bg-slate-900/50">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold text-center text-white mb-16" data-aos="fade-up">
My <span class="text-teal-400">Journey</span>
</h2>
<div class="grid lg:grid-cols-2 gap-12">
<!-- Education -->
<div data-aos="fade-right">
<h3 class="text-2xl font-bold text-white mb-8 flex items-center gap-3">
<i class="fas fa-graduation-cap text-teal-400"></i> Education
</h3>
<div class="relative pl-8 border-l border-slate-800 space-y-10">
<div class="relative group">
<span
class="absolute -left-[37px] top-1 w-4 h-4 bg-teal-500 rounded-full border-4 border-slate-950"></span>
<div
class="bg-slate-900 p-6 rounded-2xl border border-slate-800 hover:border-teal-500/30 transition-all shadow-lg">
<span
class="text-xs font-bold text-teal-400 bg-teal-500/10 px-2 py-1 rounded inline-block mb-2">
2021 - 2024
</span>
<h4 class="text-lg font-bold text-white">
MCA (Master of Computer Applications)
</h4>
<p class="text-slate-400 text-sm mt-1">
JIS College of Engineering
</p>
</div>
</div>
<div class="relative group">
<span
class="absolute -left-[37px] top-1 w-4 h-4 bg-teal-500 rounded-full border-4 border-slate-950"></span>
<div
class="bg-slate-900 p-6 rounded-2xl border border-slate-800 hover:border-teal-500/30 transition-all shadow-lg">
<span
class="text-xs font-bold text-teal-400 bg-teal-500/10 px-2 py-1 rounded inline-block mb-2">
2017 - 2020
</span>
<h4 class="text-lg font-bold text-white">
BCA (Bachelor of Computer Applications)
</h4>
<p class="text-slate-400 text-sm mt-1">
MMHAP University
</p>
</div>
</div>
</div>
</div>
<!-- Experience -->
<div data-aos="fade-left">
<h3 class="text-2xl font-bold text-white mb-8 flex items-center gap-3">
<i class="fas fa-briefcase text-teal-400"></i> Experience
</h3>
<div class="relative pl-8 border-l border-slate-800 space-y-10">
<div class="relative group">
<span
class="absolute -left-[37px] top-1 w-4 h-4 bg-teal-500 rounded-full border-4 border-slate-950"></span>
<div
class="bg-slate-900 p-6 rounded-2xl border border-slate-800 hover:border-teal-500/30 transition-all shadow-lg">
<span
class="text-xs font-bold text-teal-400 bg-teal-500/10 px-2 py-1 rounded inline-block mb-2">
Jul 2024 – Present
</span>
<h4 class="text-lg font-bold text-white">
DevOps Engineer
</h4>
<p class="text-slate-400 text-sm mt-1 mb-3">
Redn Technologies – Patna, Bihar
</p>
<ul class="list-disc ml-4 text-slate-500 text-xs space-y-2">
<li>Supported CI/CD pipelines using Jenkins and GitHub.</li>
<li>Built and deployed Dockerized applications on AWS EC2.</li>
<li>Assisted in release automation, build monitoring, and troubleshooting.</li>
<li>Performed post-deployment validation to ensure application stability.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ================= SERVICES ================= -->
<section id="services" class="py-24 relative bg-slate-950 overflow-hidden">
<!-- Background Glow -->
<div class="absolute top-0 left-1/2 -translate-x-1/2 w-full h-full pointer-events-none">
<div class="absolute top-[-10%] left-[-10%] w-[40%] h-[40%] bg-teal-500/10 blur-[120px] rounded-full"></div>
<div class="absolute bottom-[-10%] right-[-10%] w-[40%] h-[40%] bg-purple-500/10 blur-[120px] rounded-full"></div>
</div>
<div class="max-w-6xl mx-auto px-6 relative z-10">
<!-- Heading -->
<div class="text-center mb-16">
<h2 class="text-4xl md:text-6xl font-extrabold text-white mb-6 tracking-tight">
What I
<span class="bg-gradient-to-r from-teal-400 to-blue-500 bg-clip-text text-transparent">
Offer
</span>
</h2>
<p class="text-slate-400 text-lg max-w-2xl mx-auto leading-relaxed">
Production-ready DevOps services focused on automation, security,
scalability, and faster releases.
</p>
</div>
<!-- Services Grid -->
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- CI/CD -->
<div class="group bg-slate-900/40 backdrop-blur-md border border-slate-800/60 rounded-3xl p-8
hover:border-teal-500/50 transition-all duration-300 hover:-translate-y-2
hover:shadow-[0_20px_40px_-15px_rgba(20,184,166,0.3)]">
<h3 class="text-xl font-bold text-white mb-4">CI/CD Pipelines</h3>
<p class="text-slate-400 text-sm mb-6">
Automated build and test pipelines that help teams release faster with reliability.
</p>
<ul class="text-[13px] text-slate-300 space-y-3 mb-6">
<li>• Jenkins & GitHub Actions</li>
<li>• Testing & Validation</li>
</ul>
<a href="/jenkins-ci-cd.html"
class="text-teal-400 font-bold text-xs uppercase tracking-widest">
Explore CI/CD →
</a>
</div>
<!-- AWS -->
<div class="group bg-slate-900/40 backdrop-blur-md border border-slate-800/60 rounded-3xl p-8
hover:border-blue-500/50 transition-all duration-300 hover:-translate-y-2
hover:shadow-[0_20px_40px_-15px_rgba(59,130,246,0.3)]">
<h3 class="text-xl font-bold text-white mb-4">AWS Cloud</h3>
<p class="text-slate-400 text-sm mb-6">
Scalable and cost-optimized AWS infrastructure for production workloads.
</p>
<ul class="text-[13px] text-slate-300 space-y-3 mb-6">
<li>• EC2, S3, RDS & IAM</li>
<li>• VPC & Network Security</li>
</ul>
<a href="/aws-devops-engineer.html"
class="text-blue-400 font-bold text-xs uppercase tracking-widest">
Explore AWS →
</a>
</div>
<!-- Docker -->
<div class="group bg-slate-900/40 backdrop-blur-md border border-slate-800/60 rounded-3xl p-8
hover:border-purple-500/50 transition-all duration-300 hover:-translate-y-2
hover:shadow-[0_20px_40px_-15px_rgba(168,85,247,0.3)]">
<h3 class="text-xl font-bold text-white mb-4">Docker Support</h3>
<p class="text-slate-400 text-sm mb-6">
Containerized deployments for consistent environments across stages.
</p>
<ul class="text-[13px] text-slate-300 space-y-3 mb-6">
<li>• Docker & Compose</li>
<li>• Container Optimization</li>
</ul>
<a href="/docker-containerization.html"
class="text-purple-400 font-bold text-xs uppercase tracking-widest">
Explore Docker →
</a>
</div>
<!-- Linux -->
<div class="group bg-slate-900/40 backdrop-blur-md border border-slate-800/60 rounded-3xl p-8
hover:border-emerald-500/50 transition-all duration-300 hover:-translate-y-2
hover:shadow-[0_20px_40px_-15px_rgba(16,185,129,0.3)]">
<h3 class="text-xl font-bold text-white mb-4">Linux Automation</h3>
<p class="text-slate-400 text-sm mb-6">
Automated server management, monitoring, and security hardening.
</p>
<ul class="text-[13px] text-slate-300 space-y-3 mb-6">
<li>• Bash & Shell Scripting</li>
<li>• Security & Hardening</li>
</ul>
<a href="/linux-cloud-automation.html"
class="text-emerald-400 font-bold text-xs uppercase tracking-widest">
Explore Linux →
</a>
</div>
</div>
<!-- CTA -->
<div class="mt-12 text-center">
<p class="text-slate-400 mb-4 text-lg">
Need any of these services for your project?
</p>
<a href="/hire-devops-engineer.html"
class="inline-flex items-center gap-2 px-10 py-4 rounded-full
bg-teal-500 text-slate-900 font-bold text-lg
hover:bg-teal-400 transition hover:scale-105
shadow-[0_0_25px_rgba(20,184,166,0.4)]">
Hire Me →
</a>
</div>
</div>
</section>
<!-- certificate -->
<section id="certifications" class="py-24 relative overflow-hidden bg-slate-950">
<!-- Grid Background -->
<div class="absolute inset-0 bg-[linear-gradient(to_right,#80808012_1px,transparent_1px),linear-gradient(to_bottom,#80808012_1px,transparent_1px)] bg-[size:24px_24px]"></div>
<div class="container mx-auto px-6 relative z-10">
<h2 class="text-4xl font-bold text-center text-white mb-16" data-aos="fade-up">
Certifications &
<span class="text-transparent bg-clip-text bg-gradient-to-r from-teal-400 to-blue-500">
Licenses
</span>
</h2>
<div class="grid md:grid-cols-2 gap-10 max-w-5xl mx-auto">
<!-- Certification 01 -->
<div class="group relative" data-aos="fade-up">
<div
class="absolute -inset-0.5 bg-gradient-to-r from-teal-500 to-emerald-500 rounded-2xl blur opacity-25 group-hover:opacity-100 transition duration-500">
</div>
<div
class="relative bg-slate-900 border border-slate-800 p-8 rounded-2xl h-full flex flex-col hover:-translate-y-1 transition-transform duration-300">
<div class="flex justify-between items-start mb-6">
<div
class="w-14 h-14 bg-teal-500/10 rounded-xl flex items-center justify-center border border-teal-500/20 group-hover:bg-teal-500/20 transition-all duration-300">
<i class="fas fa-infinity text-2xl text-teal-400 group-hover:scale-110 transition-transform"></i>
</div>
<span
class="px-3 py-1 text-xs font-semibold text-teal-300 bg-teal-900/30 rounded-full border border-teal-500/20">
2026
</span>
</div>
<h3 class="text-xl font-bold text-white mb-3 group-hover:text-teal-200 transition-colors">
DevOps Fundamentals – CI/CD with AWS, Docker, Ansible & Jenkins
</h3>
<p class="text-slate-400 text-sm mb-6 leading-relaxed">
Comprehensive DevOps certification covering end-to-end CI/CD pipelines,
infrastructure automation, containerization, and cloud deployment practices.
</p>
<div class="mt-auto flex items-center gap-2 pt-4 border-t border-slate-800">
<i class="fas fa-certificate text-slate-500 text-sm"></i>
<span class="text-sm text-slate-400">Udemy</span>
</div>
</div>
</div>
<!-- Certification 02 -->
<div class="group relative" data-aos="fade-up" data-aos-delay="100">
<div
class="absolute -inset-0.5 bg-gradient-to-r from-blue-500 to-indigo-500 rounded-2xl blur opacity-25 group-hover:opacity-100 transition duration-500">
</div>
<div
class="relative bg-slate-900 border border-slate-800 p-8 rounded-2xl h-full flex flex-col hover:-translate-y-1 transition-transform duration-300">
<div class="flex justify-between items-start mb-6">
<div
class="w-14 h-14 bg-blue-500/10 rounded-xl flex items-center justify-center border border-blue-500/20 group-hover:bg-blue-500/20 transition-all duration-300">
<i class="fab fa-microsoft text-2xl text-blue-400 group-hover:scale-110 transition-transform"></i>
</div>
<span
class="px-3 py-1 text-xs font-semibold text-blue-300 bg-blue-900/30 rounded-full border border-blue-500/20">
2026
</span>
</div>
<h3 class="text-xl font-bold text-white mb-3 group-hover:text-blue-200 transition-colors">
Azure DevOps Crash Course – Build CI/CD Release Pipelines
</h3>
<p class="text-slate-400 text-sm mb-6 leading-relaxed">
Hands-on training focused on Azure DevOps services, CI/CD pipelines,
release management, and automated deployments.
</p>
<div class="mt-auto flex items-center gap-2 pt-4 border-t border-slate-800">
<i class="fas fa-certificate text-slate-500 text-sm"></i>
<span class="text-sm text-slate-400">Udemy</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- projects -->
<section id="projects" class="py-28 bg-slate-950 relative overflow-hidden">
<div class="container mx-auto px-6 relative z-10">
<h2 class="text-4xl md:text-5xl font-bold text-center text-white mb-28">
DevOps <span class="text-teal-400">Projects</span>
</h2>
<div class="flex flex-col gap-28">
<!-- PROJECT 01 -->
<div class="group grid md:grid-cols-2 gap-14 items-center">
<div class="relative rounded-2xl overflow-hidden border border-slate-800 shadow-2xl group-hover:border-teal-500/60 transition">
<img src="project6.jpg" class="w-full h-80 md:h-96 object-cover group-hover:scale-110 transition duration-700">
</div>
<div>
<h3 class="text-3xl md:text-4xl font-bold text-white mb-4 group-hover:text-teal-400 transition">
CI/CD Pipeline Automation
</h3>
<p class="text-slate-400 mb-3">
<strong class="text-slate-200">Problem:</strong>
Manual deployments caused delays, errors, and inconsistent releases.
</p>
<ul class="space-y-2 text-slate-300 mb-4">
<li>✔ Built Jenkins CI/CD pipeline integrated with GitHub</li>
<li>✔ Dockerized applications for consistent builds</li>
<li>✔ Automated deployment on AWS EC2</li>
<li>✔ Implemented rollback & post-deployment checks</li>
</ul>
<div class="flex flex-wrap gap-3 mb-4">
<span class="px-4 py-2 text-sm bg-slate-900 border border-slate-700 rounded-full">Jenkins</span>
<span class="px-4 py-2 text-sm bg-slate-900 border border-slate-700 rounded-full">Docker</span>
<span class="px-4 py-2 text-sm bg-slate-900 border border-slate-700 rounded-full">AWS EC2</span>
<span class="px-4 py-2 text-sm bg-slate-900 border border-slate-700 rounded-full">GitHub</span>
</div>
<p class="text-slate-400 mb-6">
<strong class="text-slate-200">Result:</strong>
Deployment time reduced and release reliability significantly improved.
</p>
<div class="flex gap-4">
<a href="https://github.com/shahealamit" target="_blank"
class="px-6 py-2 rounded-full bg-teal-500 text-slate-900 font-semibold hover:bg-teal-400 transition">
GitHub
</a>
</div>
</div>
</div>
<!-- PROJECT 02 -->
<div class="group grid md:grid-cols-2 gap-14 items-center">
<div class="order-2 md:order-1 text-right md:text-left">
<h3 class="text-3xl md:text-4xl font-bold text-white mb-4 group-hover:text-blue-400 transition">
Corporate Application Deployment
</h3>
<p class="text-slate-400 mb-3">
<strong class="text-slate-200">Problem:</strong>
Enterprise systems required zero-downtime and controlled releases.
</p>
<ul class="space-y-2 text-slate-300 mb-4">
<li>✔ Managed deployments across dev, staging & production</li>
<li>✔ Validated backend services post-deployment</li>
<li>✔ Monitored applications during release windows</li>
</ul>
<div class="flex flex-wrap gap-3 mb-4 justify-end md:justify-start">
<span class="px-4 py-2 text-sm bg-slate-900 border border-slate-700 rounded-full">Linux</span>
<span class="px-4 py-2 text-sm bg-slate-900 border border-slate-700 rounded-full">Monitoring</span>
<span class="px-4 py-2 text-sm bg-slate-900 border border-slate-700 rounded-full">Release Mgmt</span>
</div>
<p class="text-slate-400 mb-6">
<strong class="text-slate-200">Result:</strong>
Stable enterprise releases with reduced post-deployment issues.
</p>
<a href="https://github.com/shahealamit" target="_blank"
class="px-6 py-2 rounded-full bg-blue-500 text-slate-900 font-semibold hover:bg-blue-400 transition">
GitHub
</a>
</div>
<div class="order-1 md:order-2 relative rounded-2xl overflow-hidden border border-slate-800 shadow-2xl group-hover:border-blue-500/60 transition">
<img src="project1.jpg" class="w-full h-80 md:h-96 object-cover group-hover:scale-110 transition duration-700">
</div>
</div>
<!-- PROJECT 03 -->
<div class="group grid md:grid-cols-2 gap-14 items-center">
<div class="relative rounded-2xl overflow-hidden border border-slate-800 shadow-2xl group-hover:border-indigo-500/60 transition">
<img src="project2.jpg" class="w-full h-80 md:h-96 object-cover group-hover:scale-110 transition duration-700">
</div>
<div>
<h3 class="text-3xl md:text-4xl font-bold text-white mb-4 group-hover:text-indigo-400 transition">
E-Commerce Cloud Deployment
</h3>
<p class="text-slate-400 mb-3">
<strong class="text-slate-200">Problem:</strong>
High-traffic e-commerce app required scalable and reliable infrastructure.
</p>
<ul class="space-y-2 text-slate-300 mb-4">
<li>✔ Deployed application on cloud infrastructure</li>
<li>✔ Ensured high availability during peak traffic</li>
<li>✔ Managed environment configuration</li>
</ul>
<p class="text-slate-400 mb-6">
<strong class="text-slate-200">Result:</strong>
Improved uptime and stable customer experience.
</p>
<a href="https://github.com/shahealamit" target="_blank"
class="px-6 py-2 rounded-full bg-indigo-500 text-slate-900 font-semibold hover:bg-indigo-400 transition">
GitHub
</a>
</div>
</div>
<!-- PROJECT 04 -->
<div class="group grid md:grid-cols-2 gap-14 items-center">
<div class="order-2 md:order-1 text-right md:text-left">
<h3 class="text-3xl md:text-4xl font-bold text-white mb-4 group-hover:text-purple-400 transition">
Government Portal Infrastructure Support
</h3>
<p class="text-slate-400 mb-3">
<strong class="text-slate-200">Problem:</strong>
Government services demanded secure and highly reliable production systems.
</p>
<ul class="space-y-2 text-slate-300 mb-4">
<li>✔ Supported secure production deployments</li>
<li>✔ Maintained backend data integrity</li>
<li>✔ Ensured high availability operations</li>
</ul>
<p class="text-slate-400 mb-6">
<strong class="text-slate-200">Result:</strong>
Stable and secure public-facing services.
</p>
<a href="https://github.com/shahealamit" target="_blank"
class="px-6 py-2 rounded-full bg-purple-500 text-slate-900 font-semibold hover:bg-purple-400 transition">
GitHub
</a>
</div>
<div class="order-1 md:order-2 relative rounded-2xl overflow-hidden border border-slate-800 shadow-2xl group-hover:border-purple-500/60 transition">
<img src="project3.jpg" class="w-full h-80 md:h-96 object-cover group-hover:scale-110 transition duration-700">
</div>
</div>
<!-- PROJECT 05 -->
<div class="group grid md:grid-cols-2 gap-14 items-center">
<div class="relative rounded-2xl overflow-hidden border border-slate-800 shadow-2xl group-hover:border-pink-500/60 transition">
<img src="project4.jpg" class="w-full h-80 md:h-96 object-cover group-hover:scale-110 transition duration-700">
</div>
<div>
<h3 class="text-3xl md:text-4xl font-bold text-white mb-4 group-hover:text-pink-400 transition">
Community Platform Deployment
</h3>
<p class="text-slate-400 mb-3">
<strong class="text-slate-200">Problem:</strong>
Community platform needed uninterrupted access and stable backend systems.
</p>
<ul class="space-y-2 text-slate-300 mb-4">
<li>✔ Managed deployments and upgrades</li>
<li>✔ Ensured service availability</li>
<li>✔ Monitored server-side operations</li>
</ul>
<p class="text-slate-400 mb-6">
<strong class="text-slate-200">Result:</strong>
Reliable platform with minimal downtime.
</p>
<a href="https://github.com/shahealamit" target="_blank"
class="px-6 py-2 rounded-full bg-pink-500 text-slate-900 font-semibold hover:bg-pink-400 transition">
GitHub
</a>
</div>
</div>
<!-- PROJECT 06 -->
<div class="group grid md:grid-cols-2 gap-14 items-center">
<div class="order-2 md:order-1 text-right md:text-left">
<h3 class="text-3xl md:text-4xl font-bold text-white mb-4 group-hover:text-amber-400 transition">
Multi-Environment Release Support
</h3>
<p class="text-slate-400 mb-3">
<strong class="text-slate-200">Problem:</strong>