-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
648 lines (588 loc) · 34.8 KB
/
Copy pathindex.html
File metadata and controls
648 lines (588 loc) · 34.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Ahmad Hassan — DevOps & Cloud Engineer</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css">
<style>
:root {
--bg: #02040a;
--card-bg: rgba(20, 25, 40, 0.95);
--accent: #00bfff;
--accent-glow: rgba(0, 191, 255, 0.5);
}
body {
font-family: 'Inter', ui-sans-serif;
background: var(--bg);
color: #e8f2ff;
overflow-x: hidden;
}
/* Preloader */
#preloader {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: #02040a; z-index: 9999;
display: flex; justify-content: center; align-items: center;
transition: opacity 0.5s ease;
}
.loader {
width: 48px; height: 48px; border: 5px solid #FFF;
border-bottom-color: var(--accent); border-radius: 50%;
display: inline-block; animation: rotation 1s linear infinite;
}
@keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.text-glow { text-shadow: 0 0 10px rgba(0, 191, 255, 0.5); }
.gradient-text {
background: linear-gradient(135deg, #fff 30%, #00bfff 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section { max-width: 1200px; margin: auto; padding: 80px 20px; }
/* Glass Card */
.glass-3d {
background: var(--card-bg);
backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
transition: all 0.3s ease;
}
.glass-3d:hover {
transform: translateY(-5px);
border-color: var(--accent);
box-shadow: 0 10px 40px -10px var(--accent-glow);
}
/* --- FIXED CERT CARD --- */
.cert-card {
display: flex; align-items: center; gap: 20px; padding: 15px 25px;
width: 100%; min-height: 80px; /* Reduced height for compactness */
}
.cert-card i, .cert-card img {
font-size: 2rem; width: 40px; text-align: center; flex-shrink: 0;
}
/* --- FIXED TREE --- */
.tree-container { position: relative; padding: 20px 0; margin-top: 30px; }
.tree-line {
position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
background: linear-gradient(to bottom, transparent, #2563eb, #00bfff, #2563eb, transparent);
transform: translateX(-50%); border-radius: 2px;
box-shadow: 0 0 15px var(--accent-glow);
}
.tree-node {
position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
width: 16px; height: 16px; background: #00bfff; border: 3px solid #02040a;
border-radius: 50%; z-index: 10; box-shadow: 0 0 10px #00bfff;
}
@media (max-width: 768px) {
.tree-line { left: 20px; } .tree-node { left: 20px; }
.tree-row { justify-content: flex-start !important; padding-left: 60px !important; }
.tree-left, .tree-right { width: 100% !important; text-align: left !important; padding: 0 !important; }
.cert-card { flex-direction: row !important; }
.text-right { text-align: left !important; }
.flex-row-reverse { flex-direction: row !important; }
}
/* Skill Tags */
.skill-tag {
background: rgba(0, 191, 255, 0.1); border: 1px solid rgba(0, 191, 255, 0.3);
color: #e8f2ff; padding: 8px 16px; border-radius: 8px; font-size: 0.9rem;
transition: all 0.3s; display: flex; align-items: center; gap: 8px;
}
.skill-tag:hover { background: rgba(0, 191, 255, 0.2); transform: translateY(-2px); border-color: var(--accent); }
/* Slider */
.slider-container { overflow: hidden; white-space: nowrap; padding: 40px 0; background: #050a14; }
.slider-track { display: inline-flex; animation: scroll 40s linear infinite; }
.slider-track i { font-size: 60px; margin: 0 35px; transition: 0.3s; }
.slider-track i:hover { transform: scale(1.2); filter: drop-shadow(0 0 15px var(--accent)); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
</style>
</head>
<body class="antialiased selection:bg-cyan-500 selection:text-white">
<div id="preloader">
<div class="flex flex-col items-center gap-4">
<span class="loader"></span>
<p class="text-cyan-400 font-bold tracking-widest animate-pulse">LOADING...</p>
</div>
</div>
<button id="backToTop" onclick="scrollToTop()" class="fixed bottom-8 right-8 z-50 bg-blue-600 p-4 rounded-full shadow-lg hover:scale-110 transition hidden text-white">
<i class="fas fa-arrow-up"></i>
</button>
<nav class="fixed w-full top-0 left-0 z-40 bg-[#02040a]/90 backdrop-blur-lg border-b border-white/10" id="navbar">
<div class="max-w-7xl mx-auto flex justify-between items-center h-20 px-6">
<a href="#" class="flex items-center space-x-3 group">
<div class="w-10 h-10 rounded-lg bg-gradient-to-br from-blue-600 to-cyan-400 flex items-center justify-center text-white font-bold text-lg shadow-lg">AH</div>
<span class="text-xl font-bold text-white group-hover:text-cyan-400 transition-colors">Ahmad Hassan</span>
</a>
<div class="hidden md:flex space-x-8 text-sm font-medium text-slate-300">
<a href="#about" class="hover:text-cyan-400 transition">About</a>
<a href="#skills" class="hover:text-cyan-400 transition">Skills</a>
<a href="#projects" class="hover:text-cyan-400 transition">Projects</a>
<a href="#experience" class="hover:text-cyan-400 transition">Experience</a>
<a href="#certificates" class="hover:text-cyan-400 transition">Certifications</a>
<a href="#contact" class="hover:text-cyan-400 transition">Contact</a>
</div>
<button id="menuToggle" class="md:hidden text-2xl text-cyan-400"><i class="fas fa-bars"></i></button>
</div>
<div id="mobileMenu" class="hidden absolute top-20 left-0 w-full bg-[#02040a] border-b border-white/10 flex flex-col items-center space-y-6 py-8 text-slate-300 shadow-2xl">
<a href="#about" class="hover:text-cyan-400" onclick="toggleMenu()">About</a>
<a href="#skills" class="hover:text-cyan-400" onclick="toggleMenu()">Skills</a>
<a href="#projects" class="hover:text-cyan-400" onclick="toggleMenu()">Projects</a>
<a href="#experience" class="hover:text-cyan-400" onclick="toggleMenu()">Experience</a>
<a href="#certificates" class="hover:text-cyan-400" onclick="toggleMenu()">Certifications</a>
<a href="#contact" class="hover:text-cyan-400" onclick="toggleMenu()">Contact</a>
</div>
</nav>
<header class="h-screen flex flex-col justify-center items-center text-center relative overflow-hidden" id="home">
<div class="absolute inset-0 z-0">
<div class="absolute inset-0 bg-[url('./DevOps_cloud_tech_background_2ba050a7-T6lhRs8Q.png')] bg-cover bg-center"></div>
<div class="absolute inset-0 bg-black/60"></div>
<div class="absolute inset-0 bg-gradient-to-t from-[#02040a] via-transparent to-[#02040a]/80"></div>
</div>
<div class="relative z-10 max-w-5xl mx-auto px-4 mt-10" data-aos="zoom-out" data-aos-duration="1200">
<div class="inline-block px-4 py-2 rounded-full border border-cyan-500/30 bg-cyan-500/10 backdrop-blur-md mb-6 animate-bounce">
<span class="text-cyan-400 font-semibold text-sm">🚀 OPEN TO WORK</span>
</div>
<h1 class="text-6xl md:text-8xl font-black mb-6 text-white drop-shadow-2xl">
AHMAD <span class="gradient-text text-glow">HASSAN</span>
</h1>
<p class="text-slate-200 text-lg md:text-xl mb-8 max-w-2xl mx-auto font-light leading-relaxed">
Results-oriented <strong>DevOps & Cloud Engineer</strong> with 2+ years of experience architecting secure infrastructure on <strong>AWS & Azure</strong>. Proven track record of reducing deployment times by 60%.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-6">
<a href="#projects" class="bg-blue-600 hover:bg-blue-500 text-white px-8 py-3 rounded-xl font-bold shadow-[0_0_20px_rgba(37,99,235,0.5)] transition hover:scale-105">View Projects</a>
<a href="Ahmad Hassan Resume.pdf" download class="border border-white/20 bg-white/5 text-white px-8 py-3 rounded-xl font-bold hover:bg-white/10 hover:border-cyan-400 transition hover:scale-105">Download Resume</a>
</div>
</div>
</header>
<section class="border-y border-white/5 bg-[#050a14]">
<div class="slider-container">
<div class="slider-track">
<i class="devicon-amazonwebservices-plain-wordmark colored"></i>
<i class="devicon-googlecloud-plain colored"></i>
<i class="devicon-azure-plain colored"></i>
<i class="devicon-docker-plain colored"></i>
<i class="devicon-kubernetes-plain colored"></i>
<i class="devicon-terraform-plain colored"></i>
<i class="devicon-ansible-plain colored"></i>
<i class="devicon-jenkins-plain colored"></i>
<i class="devicon-gitlab-plain colored"></i>
<i class="devicon-python-plain colored"></i>
<i class="devicon-linux-plain colored"></i>
<i class="devicon-prometheus-plain colored"></i>
<i class="devicon-grafana-plain colored"></i>
<i class="devicon-amazonwebservices-plain-wordmark colored"></i>
<i class="devicon-googlecloud-plain colored"></i>
<i class="devicon-azure-plain colored"></i>
<i class="devicon-docker-plain colored"></i>
<i class="devicon-kubernetes-plain colored"></i>
</div>
</div>
</section>
<section id="about" class="section" data-aos="fade-up">
<div class="text-center mb-12">
<h2 class="text-5xl font-bold gradient-text mb-4 text-glow">About Me</h2>
<div class="h-1 w-24 bg-blue-600 mx-auto rounded-full shadow-[0_0_10px_#2563eb]"></div>
</div>
<div class="glass-3d p-10 max-w-5xl mx-auto text-center relative overflow-hidden">
<p class="text-slate-200 text-xl leading-loose mb-12 font-light">
I’m a <span class="text-cyan-400 font-bold">DevOps Engineer</span> passionate about <strong>DevSecOps</strong>, <strong>Kubernetes orchestration</strong>, and <strong>self-healing systems</strong>. I specialize in automating secure workloads across AWS, Azure, and GCP.
</p>
<div class="grid md:grid-cols-4 sm:grid-cols-2 gap-6">
<div class="bg-[#0f1525] p-6 rounded-2xl border border-slate-700/50 hover:border-cyan-500/50 transition-all group">
<i class="fas fa-bolt text-4xl text-yellow-400 mb-4"></i>
<h3 class="text-3xl font-bold text-white mb-1">2+</h3>
<p class="text-slate-400 text-sm font-semibold">Years Exp.</p>
</div>
<div class="bg-[#0f1525] p-6 rounded-2xl border border-slate-700/50 hover:border-blue-500/50 transition-all group">
<i class="fas fa-code-branch text-4xl text-blue-400 mb-4"></i>
<h3 class="text-3xl font-bold text-white mb-1">15+</h3>
<p class="text-slate-400 text-sm font-semibold">Projects</p>
</div>
<div class="bg-[#0f1525] p-6 rounded-2xl border border-slate-700/50 hover:border-green-500/50 transition-all group">
<i class="fas fa-certificate text-4xl text-green-400 mb-4"></i>
<h3 class="text-3xl font-bold text-white mb-1">15+</h3>
<p class="text-slate-400 text-sm font-semibold">Certifications</p>
</div>
<div class="bg-[#0f1525] p-6 rounded-2xl border border-slate-700/50 hover:border-purple-500/50 transition-all group">
<i class="fas fa-users text-4xl text-purple-400 mb-4"></i>
<h3 class="text-3xl font-bold text-white mb-1">3</h3>
<p class="text-slate-400 text-sm font-semibold">Teams Led</p>
</div>
</div>
</div>
</section>
<section id="skills" class="section" data-aos="fade-up">
<div class="text-center mb-12">
<h2 class="text-4xl font-bold gradient-text mb-4 text-glow">Technical Proficiency</h2>
<div class="h-1 w-24 bg-blue-600 mx-auto rounded-full"></div>
</div>
<div class="grid md:grid-cols-2 gap-8">
<div class="glass-3d p-8">
<h3 class="text-2xl font-bold text-white mb-6 flex items-center gap-3"><i class="fas fa-cloud text-blue-400"></i> Cloud & IaC</h3>
<div class="flex flex-wrap gap-3">
<span class="skill-tag"><i class="devicon-amazonwebservices-plain"></i> AWS (EC2, EKS, Lambda, S3)</span>
<span class="skill-tag"><i class="devicon-azure-plain"></i> Azure</span>
<span class="skill-tag"><i class="devicon-googlecloud-plain"></i> GCP</span>
<span class="skill-tag"><i class="devicon-terraform-plain"></i> Terraform</span>
<span class="skill-tag"><i class="devicon-ansible-plain"></i> Ansible</span>
<span class="skill-tag"><i class="fas fa-box"></i> Packer</span>
</div>
</div>
<div class="glass-3d p-8">
<h3 class="text-2xl font-bold text-white mb-6 flex items-center gap-3"><i class="fas fa-cogs text-orange-400"></i> DevOps & Containers</h3>
<div class="flex flex-wrap gap-3">
<span class="skill-tag"><i class="devicon-docker-plain"></i> Docker</span>
<span class="skill-tag"><i class="devicon-kubernetes-plain"></i> Kubernetes</span>
<span class="skill-tag"><i class="fas fa-dharmachakra"></i> Helm</span>
<span class="skill-tag"><i class="devicon-argocd-plain"></i> ArgoCD</span>
<span class="skill-tag"><i class="devicon-jenkins-plain"></i> Jenkins</span>
<span class="skill-tag"><i class="devicon-githubactions-plain"></i> GitHub Actions</span>
<span class="skill-tag"><i class="devicon-gitlab-plain"></i> GitLab CI</span>
</div>
</div>
<div class="glass-3d p-8">
<h3 class="text-2xl font-bold text-white mb-6 flex items-center gap-3"><i class="fas fa-chart-line text-green-400"></i> Monitoring & Security</h3>
<div class="flex flex-wrap gap-3">
<span class="skill-tag"><i class="devicon-prometheus-plain"></i> Prometheus</span>
<span class="skill-tag"><i class="devicon-grafana-plain"></i> Grafana</span>
<span class="skill-tag"><i class="fas fa-search"></i> ELK Stack</span>
<span class="skill-tag"><i class="fas fa-eye"></i> AWS CloudWatch</span>
<span class="skill-tag"><i class="fas fa-shield-alt"></i> SonarQube</span>
</div>
</div>
<div class="glass-3d p-8">
<h3 class="text-2xl font-bold text-white mb-6 flex items-center gap-3"><i class="fas fa-terminal text-yellow-400"></i> Scripting & OS</h3>
<div class="flex flex-wrap gap-3">
<span class="skill-tag"><i class="devicon-python-plain"></i> Python</span>
<span class="skill-tag"><i class="devicon-bash-plain"></i> Bash</span>
<span class="skill-tag"><i class="fas fa-terminal"></i> PowerShell</span>
<span class="skill-tag"><i class="fas fa-file-code"></i> YAML</span>
<span class="skill-tag"><i class="devicon-linux-plain"></i> Linux (Ubuntu/CentOS)</span>
</div>
</div>
</div>
</section>
<section id="projects" class="section" data-aos="fade-up">
<h2 class="text-4xl font-bold text-center mb-16 gradient-text text-glow">Key Projects</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="glass-3d p-6 group cursor-pointer relative overflow-hidden">
<div class="absolute top-0 right-0 w-20 h-20 bg-blue-500/10 rounded-bl-full transition-all group-hover:bg-blue-500/20"></div>
<div class="flex justify-between items-start mb-4 relative z-10">
<div class="p-3 bg-blue-500/20 rounded-lg"><i class="fas fa-robot text-3xl text-blue-400"></i></div>
<a href="https://github.com/AhmadProjects-git/Autonomous-SelfHealing-Infrastructure" target="_blank" class="text-slate-400 hover:text-white"><i class="fas fa-external-link-alt text-xl"></i></a>
</div>
<h3 class="text-xl font-bold mb-3 text-white group-hover:text-cyan-400 transition-colors">Autonomous Self-Healing Infra</h3>
<p class="text-slate-300 text-sm mb-6 leading-relaxed">
Built an intelligent system that monitors health using Prometheus and triggers auto-remediation scripts (Ansible/Python) to fix faults automatically without human intervention.
</p>
<div class="flex flex-wrap gap-2 mt-auto">
<span class="px-2 py-1 text-xs bg-blue-900/50 rounded border border-blue-700/50">Terraform</span>
<span class="px-2 py-1 text-xs bg-blue-900/50 rounded border border-blue-700/50">Ansible</span>
<span class="px-2 py-1 text-xs bg-blue-900/50 rounded border border-blue-700/50">Python</span>
</div>
</div>
<div class="glass-3d p-6 group cursor-pointer relative overflow-hidden">
<div class="absolute top-0 right-0 w-20 h-20 bg-green-500/10 rounded-bl-full transition-all group-hover:bg-green-500/20"></div>
<div class="flex justify-between items-start mb-4 relative z-10">
<div class="p-3 bg-green-500/20 rounded-lg"><i class="fas fa-server text-3xl text-green-400"></i></div>
<a href="https://github.com/AhmadProjects-git/ThreeTierAppDeployment-EKS" target="_blank" class="text-slate-400 hover:text-white"><i class="fas fa-external-link-alt text-xl"></i></a>
</div>
<h3 class="text-xl font-bold mb-3 text-white group-hover:text-green-400 transition-colors">3-Tier App on AWS EKS</h3>
<p class="text-slate-300 text-sm mb-6 leading-relaxed">
Deployed a scalable web app using Terraform for VPC/EKS provisioning and Helm charts for microservices. Configured ALB Ingress for traffic management.
</p>
<div class="flex flex-wrap gap-2 mt-auto">
<span class="px-2 py-1 text-xs bg-green-900/50 rounded border border-green-700/50">AWS EKS</span>
<span class="px-2 py-1 text-xs bg-green-900/50 rounded border border-green-700/50">Helm</span>
<span class="px-2 py-1 text-xs bg-green-900/50 rounded border border-green-700/50">Terraform</span>
</div>
</div>
<div class="glass-3d p-6 group cursor-pointer relative overflow-hidden">
<div class="absolute top-0 right-0 w-20 h-20 bg-purple-500/10 rounded-bl-full transition-all group-hover:bg-purple-500/20"></div>
<div class="flex justify-between items-start mb-4 relative z-10">
<div class="p-3 bg-purple-500/20 rounded-lg"><i class="fas fa-sync text-3xl text-purple-400"></i></div>
<a href="#" class="text-slate-400 hover:text-white"><i class="fas fa-external-link-alt text-xl"></i></a>
</div>
<h3 class="text-xl font-bold mb-3 text-white group-hover:text-purple-400 transition-colors">Microservices CI/CD Pipeline</h3>
<p class="text-slate-300 text-sm mb-6 leading-relaxed">
End-to-end pipeline deploying containerized Node.js services to Kubernetes using GitHub Actions and ArgoCD for GitOps deployment strategy.
</p>
<div class="flex flex-wrap gap-2 mt-auto">
<span class="px-2 py-1 text-xs bg-purple-900/50 rounded border border-purple-700/50">GitHub Actions</span>
<span class="px-2 py-1 text-xs bg-purple-900/50 rounded border border-purple-700/50">ArgoCD</span>
<span class="px-2 py-1 text-xs bg-purple-900/50 rounded border border-purple-700/50">Docker</span>
</div>
</div>
</div>
</section>
<section id="experience" class="section" data-aos="fade-up">
<h2 class="text-4xl font-bold text-center mb-16 gradient-text text-glow">Professional Experience</h2>
<div class="tree-container max-w-5xl mx-auto">
<div class="tree-line"></div>
<div class="flex justify-end mb-12 relative w-full tree-row">
<div class="tree-node bg-cyan-500"></div>
<div class="w-1/2 pl-10 tree-right" data-aos="fade-left">
<div class="glass-3d p-6 relative border-l-4 border-cyan-500">
<div class="flex justify-between items-center mb-2">
<h3 class="text-xl font-bold text-white">Associate Cloud Engineer</h3>
<span class="text-xs bg-cyan-500/20 text-cyan-300 px-3 py-1 rounded-full border border-cyan-500/30">Current</span>
</div>
<p class="text-cyan-400 font-semibold mb-2"><i class="fas fa-building mr-2"></i>CommPro Technologies Inc</p>
<p class="text-slate-400 text-sm mb-4"><i class="far fa-calendar-alt mr-2"></i>Feb 2025 – Present</p>
<ul class="list-disc list-outside ml-4 text-slate-300 text-sm space-y-2">
<li>Orchestrated Kubernetes (EKS) clusters & CI/CD pipelines (Jenkins/GitHub Actions).</li>
<li>Reduced release cycles by 60% while optimizing costs.</li>
<li>Architected Disaster Recovery (DR) solutions ensuring strict RTO/RPO compliance.</li>
</ul>
</div>
</div>
</div>
<div class="flex justify-start mb-12 relative w-full tree-row">
<div class="tree-node bg-purple-500"></div>
<div class="w-1/2 pr-10 text-right tree-left" data-aos="fade-right">
<div class="glass-3d p-6 relative border-r-4 border-purple-500">
<div class="flex flex-row-reverse justify-between items-center mb-2">
<h3 class="text-xl font-bold text-white">Cloud Researcher & DevOps</h3>
</div>
<p class="text-purple-400 font-semibold mb-2"><i class="fas fa-laptop-code mr-2"></i>Freelance Projects</p>
<p class="text-slate-400 text-sm mb-4"><i class="far fa-calendar-alt mr-2"></i>Jan 2024 – Jan 2025</p>
<ul class="list-disc list-outside ml-4 text-slate-300 text-sm space-y-2 text-right rtl" dir="rtl">
<li>Engineered Self-Healing Cloud Infrastructure using Terraform and Prometheus.</li>
<li>Enabled automated fault recovery without human intervention.</li>
<li>Developed Python automation scripts for data processing.</li>
</ul>
</div>
</div>
</div>
<div class="flex justify-end mb-12 relative w-full tree-row">
<div class="tree-node bg-slate-500"></div>
<div class="w-1/2 pl-10 tree-right" data-aos="fade-left">
<div class="glass-3d p-6 relative border-l-4 border-slate-500">
<div class="flex justify-between items-center mb-2">
<h3 class="text-xl font-bold text-white">DevOps Engineer Intern</h3>
</div>
<p class="text-slate-400 font-semibold mb-2"><i class="fas fa-building mr-2"></i>Corvit Systems</p>
<p class="text-slate-500 text-sm mb-4"><i class="far fa-calendar-alt mr-2"></i>Jul 2022 – Dec 2023</p>
<ul class="list-disc list-outside ml-4 text-slate-300 text-sm space-y-2">
<li>Automated provisioning of 20+ servers (100% IaC) using Terraform & Ansible.</li>
<li>Integrated SonarQube for quality assurance.</li>
<li>Implemented infrastructure monitoring (Prometheus/Grafana).</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="certificates" class="section" data-aos="fade-up">
<div class="text-center mb-10">
<h2 class="text-5xl font-bold gradient-text mb-4 text-glow">Licenses & Certifications</h2>
<div class="h-1 w-24 bg-blue-600 mx-auto rounded-full shadow-[0_0_10px_#2563eb]"></div>
</div>
<div class="tree-container max-w-5xl mx-auto">
<div class="tree-line"></div>
<div class="flex justify-end mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-red-500"></div>
<div class="w-1/2 pl-12 tree-right" data-aos="fade-left">
<div class="glass-3d cert-card hover:border-red-500">
<i class="fas fa-server text-red-500"></i>
<div><h3 class="font-bold text-white text-lg">DevOps Foundations</h3><p class="text-sm text-slate-400">CompTIA • Jan 2026</p></div>
</div>
</div>
</div>
<div class="flex justify-start mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-blue-500"></div>
<div class="w-1/2 pr-12 tree-left text-right" data-aos="fade-right">
<div class="glass-3d cert-card flex-row-reverse hover:border-blue-500">
<i class="fab fa-docker text-blue-500"></i>
<div><h3 class="font-bold text-white text-lg">Docker Compose</h3><p class="text-sm text-slate-400">LinkedIn • Jan 2026</p></div>
</div>
</div>
</div>
<div class="flex justify-end mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-orange-500"></div>
<div class="w-1/2 pl-12 tree-right" data-aos="fade-left">
<div class="glass-3d cert-card hover:border-orange-500">
<i class="fab fa-aws text-orange-500"></i>
<div><h3 class="font-bold text-white text-lg">AWS CloudFormation</h3><p class="text-sm text-slate-400">LinkedIn • Dec 2025</p></div>
</div>
</div>
</div>
<div class="flex justify-start mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-orange-500"></div>
<div class="w-1/2 pr-12 tree-left text-right" data-aos="fade-right">
<div class="glass-3d cert-card flex-row-reverse hover:border-orange-500">
<i class="fab fa-aws text-orange-500"></i>
<div><h3 class="font-bold text-white text-lg">AWS Cloud Practitioner</h3><p class="text-sm text-slate-400">AWS Training • Dec 2025</p></div>
</div>
</div>
</div>
<div class="flex justify-end mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-blue-400"></div>
<div class="w-1/2 pl-12 tree-right" data-aos="fade-left">
<div class="glass-3d cert-card hover:border-blue-400">
<i class="fas fa-shield-alt text-blue-400"></i>
<div><h3 class="font-bold text-white text-lg">App Security DevSecOps</h3><p class="text-sm text-slate-400">LinkedIn • Dec 2025</p></div>
</div>
</div>
</div>
<div class="flex justify-start mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-blue-600"></div>
<div class="w-1/2 pr-12 tree-left text-right" data-aos="fade-right">
<div class="glass-3d cert-card flex-row-reverse hover:border-blue-600">
<i class="fab fa-docker text-blue-600"></i>
<div><h3 class="font-bold text-white text-lg">Docker: First Project</h3><p class="text-sm text-slate-400">LinkedIn • Dec 2025</p></div>
</div>
</div>
</div>
<div class="flex justify-end mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-yellow-400"></div>
<div class="w-1/2 pl-12 tree-right" data-aos="fade-left">
<div class="glass-3d cert-card hover:border-yellow-400">
<i class="fab fa-python text-yellow-400"></i>
<div><h3 class="font-bold text-white text-lg">Python Fundamentals</h3><p class="text-sm text-slate-400">LinkedIn • Dec 2025</p></div>
</div>
</div>
</div>
<div class="flex justify-start mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-orange-500"></div>
<div class="w-1/2 pr-12 tree-left text-right" data-aos="fade-right">
<div class="glass-3d cert-card flex-row-reverse hover:border-orange-500">
<i class="fas fa-dharmachakra text-orange-500"></i>
<div><h3 class="font-bold text-white text-lg">Kubernetes on AWS</h3><p class="text-sm text-slate-400">LinkedIn • Dec 2025</p></div>
</div>
</div>
</div>
<div class="flex justify-end mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-blue-500"></div>
<div class="w-1/2 pl-12 tree-right" data-aos="fade-left">
<div class="glass-3d cert-card hover:border-blue-500">
<i class="fab fa-google text-blue-500"></i>
<div><h3 class="font-bold text-white text-lg">Generative AI (Vertex)</h3><p class="text-sm text-slate-400">Google Cloud • Nov 2025</p></div>
</div>
</div>
</div>
<div class="flex justify-start mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-orange-500"></div>
<div class="w-1/2 pr-12 tree-left text-right" data-aos="fade-right">
<div class="glass-3d cert-card flex-row-reverse hover:border-orange-500">
<i class="fab fa-aws text-orange-500"></i>
<div><h3 class="font-bold text-white text-lg">AWS Certified Cloud</h3><p class="text-sm text-slate-400">AWS • Oct 2025</p></div>
</div>
</div>
</div>
<div class="flex justify-end mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-green-500"></div>
<div class="w-1/2 pl-12 tree-right" data-aos="fade-left">
<div class="glass-3d cert-card hover:border-green-500">
<i class="fas fa-graduation-cap text-green-500"></i>
<div><h3 class="font-bold text-white text-lg">AWS Academy Grad</h3><p class="text-sm text-slate-400">AWS • Jun 2025</p></div>
</div>
</div>
</div>
<div class="flex justify-start mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-orange-400"></div>
<div class="w-1/2 pr-12 tree-left text-right" data-aos="fade-right">
<div class="glass-3d cert-card flex-row-reverse hover:border-orange-400">
<i class="fas fa-network-wired text-orange-400"></i>
<div><h3 class="font-bold text-white text-lg">Elastic Load Balancing</h3><p class="text-sm text-slate-400">AWS • May 2025</p></div>
</div>
</div>
</div>
<div class="flex justify-end mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-purple-500"></div>
<div class="w-1/2 pl-12 tree-right" data-aos="fade-left">
<div class="glass-3d cert-card hover:border-purple-500">
<i class="fas fa-terminal text-purple-500"></i>
<div><h3 class="font-bold text-white text-lg">DevOps Expert</h3><p class="text-sm text-slate-400">Corvit • Oct 2023</p></div>
</div>
</div>
</div>
<div class="flex justify-start mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-yellow-500"></div>
<div class="w-1/2 pr-12 tree-left text-right" data-aos="fade-right">
<div class="glass-3d cert-card flex-row-reverse hover:border-yellow-500">
<i class="fab fa-linux text-yellow-500"></i>
<div><h3 class="font-bold text-white text-lg">Linux Administrator</h3><p class="text-sm text-slate-400">Great Learning • Feb 2023</p></div>
</div>
</div>
</div>
<div class="flex justify-end mb-4 relative w-full tree-row items-center">
<div class="tree-node bg-cyan-500"></div>
<div class="w-1/2 pl-12 tree-right" data-aos="fade-left">
<div class="glass-3d cert-card hover:border-cyan-500">
<i class="fas fa-shield-alt text-cyan-500"></i>
<div><h3 class="font-bold text-white text-lg">Cyber Security</h3><p class="text-sm text-slate-400">Cisco • Aug 2022</p></div>
</div>
</div>
</div>
</div>
</section>
<section id="education" class="section text-center" data-aos="zoom-in">
<h2 class="text-4xl font-bold mb-10 gradient-text text-glow">Education</h2>
<div class="glass-3d max-w-3xl mx-auto p-8 text-left hover:border-cyan-500/50 transition-colors">
<div class="flex items-center space-x-5 mb-6">
<div class="w-16 h-16 rounded-2xl bg-gradient-to-br from-blue-700 to-cyan-500 flex items-center justify-center shadow-lg text-3xl shrink-0">
<i class="fas fa-graduation-cap text-white"></i>
</div>
<div>
<h3 class="text-2xl font-bold text-white">Bachelor of Science in Computer Science</h3>
<p class="text-cyan-400 font-medium">National College of Business & E-Commerce, Lahore</p>
</div>
</div>
<div class="flex flex-wrap gap-4 mb-6">
<span class="bg-blue-600/20 text-blue-300 px-4 py-1.5 rounded-full border border-blue-600/30 text-sm font-semibold">
CGPA: 3.8 / 4.0
</span>
<span class="bg-green-600/20 text-green-300 px-4 py-1.5 rounded-full border border-green-600/30 text-sm font-semibold">
Completed: Dec 2025
</span>
</div>
<h4 class="text-slate-300 font-semibold mb-3 border-b border-white/10 pb-2 inline-block">Key Modules</h4>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-slate-800 text-slate-300 px-3 py-1 rounded border border-slate-700">Cloud Computing</span>
<span class="text-xs bg-slate-800 text-slate-300 px-3 py-1 rounded border border-slate-700">Distributed Systems</span>
<span class="text-xs bg-slate-800 text-slate-300 px-3 py-1 rounded border border-slate-700">Network Security</span>
<span class="text-xs bg-slate-800 text-slate-300 px-3 py-1 rounded border border-slate-700">Data Structures</span>
</div>
</div>
</section>
<footer class="bg-[#02040a] border-t border-slate-800/60 pt-16 pb-8 relative overflow-hidden" id="contact">
<div class="absolute top-0 left-1/2 -translate-x-1/2 w-2/3 h-1 bg-gradient-to-r from-transparent via-blue-500/50 to-transparent blur-md"></div>
<div class="max-w-7xl mx-auto px-6">
<div class="grid md:grid-cols-4 gap-12 mb-12 text-center md:text-left">
<div class="col-span-1 md:col-span-2">
<a href="#" class="inline-block text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-cyan-300 mb-4">Ahmad Hassan</a>
<p class="text-slate-400 text-sm">Empowering businesses with resilient cloud infrastructure, automated CI/CD pipelines, and secure DevOps strategies.</p>
</div>
<div>
<h4 class="text-white font-semibold mb-4">Connect</h4>
<div class="flex justify-center md:justify-start gap-4">
<a href="https://www.linkedin.com/in/ahmad-offical786/" class="w-10 h-10 rounded-full bg-slate-900 border border-slate-700 flex items-center justify-center text-slate-400 hover:text-white hover:bg-blue-600 transition"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/AhmadProjects-git" class="w-10 h-10 rounded-full bg-slate-900 border border-slate-700 flex items-center justify-center text-slate-400 hover:text-white hover:bg-slate-700 transition"><i class="fab fa-github"></i></a>
<a href="mailto:ahmadhassanofficala@gmail.com" class="w-10 h-10 rounded-full bg-slate-900 border border-slate-700 flex items-center justify-center text-slate-400 hover:text-white hover:bg-red-600 transition"><i class="fas fa-envelope"></i></a>
</div>
</div>
</div>
<div class="border-t border-slate-800/60 my-8"></div>
<p class="text-center text-slate-500 text-sm">© 2026 Ahmad Hassan. All Rights Reserved.</p>
</div>
</footer>
<script>
AOS.init({ duration: 800, once: true });
window.addEventListener('load', () => {
document.getElementById('preloader').style.opacity = '0';
setTimeout(() => { document.getElementById('preloader').style.display = 'none'; }, 500);
});
const menuToggle = document.getElementById('menuToggle');
const mobileMenu = document.getElementById('mobileMenu');
menuToggle.addEventListener('click', () => { mobileMenu.classList.toggle('hidden'); });
window.addEventListener('scroll', () => {
const btn = document.getElementById('backToTop');
if (window.scrollY > 300) btn.classList.remove('hidden'); else btn.classList.add('hidden');
});
function scrollToTop() { window.scrollTo({ top: 0, behavior: 'smooth' }); }
</script>
</body>
</html>