-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
498 lines (468 loc) · 36.4 KB
/
Copy pathindex.html
File metadata and controls
498 lines (468 loc) · 36.4 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Syed Badrudduja - Developer Portfolio</title>
<link rel="icon" type="image/png" href="images/favicon1.png">
<link href="dist/output.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@400;500;700;800&display=swap" rel="stylesheet" />
<!-- extra.css loads after the Swiper CDN stylesheet so its --swiper-theme-color
override always wins regardless of Swiper's own .swiper defaults. -->
<link href="extra.css" rel="stylesheet" />
<style>
.referral-item {
transition: opacity 0.7s ease-in-out;
opacity: 0;
}
.referral-item.is-active {
opacity: 1;
}
</style>
</head>
<body class="antialiased">
<a href="#about" class="skip-link">Skip to main content</a>
<header class="bg-gray-900/80 backdrop-blur-sm fixed top-0 left-0 right-0 z-50">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<a href="#" class="text-2xl font-bold text-white">SB.</a>
<nav class="hidden md:flex space-x-8" aria-label="Main navigation">
<a href="#about" class="nav-link text-gray-300">About</a>
<a href="#projects"
class="nav-link text-gray-300">Projects</a>
<a href="#contact"
class="nav-link text-gray-300">Contact</a>
</nav>
<button id="mobile-menu-button" class="md:hidden text-gray-300 focus:outline-none p-3 -mr-3" aria-label="Toggle navigation menu" aria-expanded="false" aria-controls="mobile-menu">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
</div>
</div>
<div id="mobile-menu" class="hidden md:hidden">
<a href="#about" class="nav-link block py-2 px-4 text-sm text-gray-300 hover:bg-gray-700">About</a>
<a href="#projects" class="nav-link block py-2 px-4 text-sm text-gray-300 hover:bg-gray-700">Projects</a>
<a href="#contact" class="nav-link block py-2 px-4 text-sm text-gray-300 hover:bg-gray-700">Contact</a>
</div>
</header>
<section id="home" class="relative min-h-screen flex items-center justify-center text-center overflow-hidden">
<canvas id="three-canvas" class="absolute top-0 left-0 w-full h-full"></canvas>
<div id="project-labels"></div>
<div class="relative z-10 container mx-auto px-6">
<h1 class="mb-4 text-center animate-on-scroll">
<span id="name-heading" class="text-5xl md:text-7xl font-black hero-name leading-normal"></span><span
class="typing-cursor"></span>
</h1>
<p class="text-xl md:text-2xl text-muted-warm mb-6 animate-on-scroll" style="--delay: 0.2s">
A Forward AI Deployment Engineer specializing in automation,
CI/CD, and intelligent systems that scale.
</p>
<p class="hero-meta mb-8 animate-on-scroll" style="--delay: 0.3s">
<span class="num">8</span> shipped projects<span class="sep">·</span><span class="num">5+</span> years in AI deployment & QA automation
</p>
<a href="#projects" id="view-work-button"
class="btn-primary animate-on-scroll"
style="--delay: 0.4s">
View My Work
</a>
<div class="mt-8 flex justify-center space-x-6 animate-on-scroll" style="--delay: 0.6s">
<a href="https://github.com/SyButter" target="_blank" rel="noopener noreferrer" aria-label="Visit Syed's GitHub profile"
class="nav-link text-gray-400">
<svg class="w-8 h-8" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path fill-rule="evenodd"
d="M12 2C6.477 2 2 6.477 2 12c0 4.418 2.865 8.165 6.839 9.49.5.092.682-.217.682-.482 0-.237-.009-.868-.014-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.031-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.378.203 2.398.1 2.651.64.7 1.03 1.595 1.03 2.688 0 3.848-2.338 4.695-4.566 4.943.359.308.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.001 10.001 0 0022 12c0-5.523-4.477-10-10-10z"
clip-rule="evenodd" />
</svg>
</a>
<a href="https://linkedin.com/in/sbadrudduja" target="_blank" rel="noopener noreferrer" aria-label="Visit Syed's LinkedIn profile"
class="nav-link text-gray-400">
<svg class="w-8 h-8" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path fill-rule="evenodd"
d="M16.338 16.338H13.67V12.16c0-.995-.017-2.277-1.387-2.277-1.39 0-1.601 1.086-1.601 2.206v4.248H8.014v-8.59h2.559v1.174h.037c.356-.675 1.227-1.387 2.526-1.387 2.703 0 3.203 1.778 3.203 4.092v4.711zM5.005 6.575a1.548 1.548 0 11-.003-3.096 1.548 1.548 0 01.003 3.096zm-1.337 9.763H6.34v-8.59H3.667v8.59zM17.668 1H6.328C3.965 1 2 2.985 2 5.355v13.29C2 21.015 3.965 23 6.328 23h11.34C20.035 23 22 21.015 22 18.645V5.355C22 2.985 20.035 1 17.668 1z"
clip-rule="evenodd" />
</svg>
</a>
</div>
</div>
</section>
<section id="about" tabindex="-1" class="py-20 animate-on-scroll">
<div class="container mx-auto px-6">
<h2 class="section-title">About Me</h2>
<div class="flex flex-col md:flex-row items-center gap-12 mb-12">
<div class="text-lg text-gray-300">
<p class="mb-4">
Hello! I’m Syed, a Forward AI Deployment Engineer and Software Development Engineer in Test with hands-on experience
in automation, forecasting, and data-driven intelligence. I build and ship AI-powered systems end-to-end — from
designing machine learning pipelines and forecasting models to deploying them into production environments that
deliver real business impact. I specialize in AI deployment using tools like Prophet, OpenAI, Python, and n8n
to solve real-world challenges in education, healthcare, and resource allocation.
</p>
<p class="mb-6">
With a strong foundation in QA automation (Cypress, Selenium, Playwright, AWS-based testing) and deep expertise
in AI/ML frameworks (pandas, NumPy, scikit-learn, PyTorch), I bridge the gap between intelligent systems and
production-ready software. I thrive at the intersection of automation, machine learning, and forward-thinking
AI deployment — engineering scalable, elegant solutions that make a measurable impact.
</p>
<div class="mt-4 flex flex-col sm:flex-row gap-4">
<a href="https://flowcv.com/resume/rfjse59hqb" target="_blank" rel="noopener noreferrer"
class="btn-primary text-center">
View My Resume
</a>
</div>
</div>
</div>
<div class="mt-4">
<h3 class="text-2xl font-bold text-white mb-6">My Skills</h3>
<div class="skill-group">
<div class="skill-group-label">Languages</div>
<div class="flex flex-wrap gap-2">
<span class="skill-badge">JavaScript</span>
<span class="skill-badge">Python</span>
<span class="skill-badge">C#</span>
<span class="skill-badge">Java</span>
<span class="skill-badge">SQL</span>
</div>
</div>
<div class="skill-group">
<div class="skill-group-label">QA & Automation</div>
<div class="flex flex-wrap gap-2">
<span class="skill-badge">Cypress</span>
<span class="skill-badge">Selenium</span>
<span class="skill-badge">Playwright</span>
<span class="skill-badge">Jenkins</span>
</div>
</div>
<div class="skill-group">
<div class="skill-group-label">AI & ML</div>
<div class="flex flex-wrap gap-2">
<span class="skill-badge">Prophet</span>
<span class="skill-badge">OpenAI</span>
<span class="skill-badge">Pandas</span>
<span class="skill-badge">NumPy</span>
<span class="skill-badge">scikit-learn</span>
<span class="skill-badge">PyTorch</span>
<span class="skill-badge">n8n</span>
</div>
</div>
<div class="skill-group">
<div class="skill-group-label">Infra & Tools</div>
<div class="flex flex-wrap gap-2">
<span class="skill-badge">Docker</span>
<span class="skill-badge">Git</span>
<span class="skill-badge">AWS</span>
</div>
</div>
</div>
</div>
</section>
<section id="referrals" class="py-16 animate-on-scroll">
<div class="container mx-auto px-6 text-center">
<h2 class="section-title">Referrals</h2>
<div id="referral-carousel" class="relative max-w-3xl mx-auto min-h-[350px]" aria-live="polite" aria-atomic="true">
</div>
</div>
</section>
<section id="projects" class="py-20 bg-gray-900 opacity-0 animate-on-scroll">
<div class="container mx-auto px-6">
<h2 class="section-title">My Projects</h2>
<div class="swiper project-swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="project-card-wrapper" data-project-name="openGBW">
<div class="project-card-inner">
<div class="project-card-front">
<img src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22600%22%20height%3D%22400%22%20viewBox%3D%220%200%20600%20400%22%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22%23161820%22%2F%3E%0A%3Cdefs%3E%3Cpattern%20id%3D%22dots%22%20width%3D%2228%22%20height%3D%2228%22%20patternUnits%3D%22userSpaceOnUse%22%3E%3Ccircle%20cx%3D%222%22%20cy%3D%222%22%20r%3D%221.4%22%20fill%3D%22%23FF8A33%22%20opacity%3D%220.16%22%2F%3E%3C%2Fpattern%3E%3C%2Fdefs%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22url(%23dots)%22%2F%3E%0A%3Crect%20x%3D%220.5%22%20y%3D%220.5%22%20width%3D%22599%22%20height%3D%22399%22%20fill%3D%22none%22%20stroke%3D%22%23FF8A33%22%20stroke-opacity%3D%220.3%22%20stroke-width%3D%221%22%2F%3E%0A%3Ccircle%20cx%3D%22300%22%20cy%3D%22200%22%20r%3D%2270%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20fill%3D%22none%22%2F%3E%0A%3Ccircle%20cx%3D%22300%22%20cy%3D%22200%22%20r%3D%224%22%20fill%3D%22%23FF8A33%22%2F%3E%0A%3Cline%20x1%3D%22300%22%20y1%3D%22200%22%20x2%3D%22300%22%20y2%3D%22145%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%2F%3E%0A%3Cline%20x1%3D%22300%22%20y1%3D%22200%22%20x2%3D%22338%22%20y2%3D%22217%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%2F%3E%0A%3Cline%20x1%3D%22300%22%20y1%3D%22128%22%20x2%3D%22300%22%20y2%3D%22116%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%222%22%2F%3E%0A%3Cline%20x1%3D%22372%22%20y1%3D%22200%22%20x2%3D%22384%22%20y2%3D%22200%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%222%22%2F%3E%0A%3Cline%20x1%3D%22300%22%20y1%3D%22272%22%20x2%3D%22300%22%20y2%3D%22284%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%222%22%2F%3E%0A%3Cline%20x1%3D%22228%22%20y1%3D%22200%22%20x2%3D%22216%22%20y2%3D%22200%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E" alt="openGBW Project" class="w-full h-56 object-cover" />
<div class="p-6 flex flex-col flex-grow justify-between">
<div>
<span class="project-category-badge">Hardware</span>
<h3 class="text-2xl font-bold text-white mb-2">openGBW - Grind by Weight</h3>
<p class="text-gray-400 text-sm">An open-source 3D printed base turning a timed coffee grinder into a precision weight-based grinder with ESP32.</p>
</div>
<span class="link-accent font-semibold text-sm mt-4">Hover for tech • Click to open →</span>
</div>
</div>
<div class="project-card-back">
<h3 class="text-xl font-bold text-white mb-3">openGBW</h3>
<p class="text-gray-400 text-sm mb-5">Precision weight-based coffee grinding with a custom ESP32 microcontroller and open-source 3D-printed hardware.</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="tech-badge">C++</span>
<span class="tech-badge">ESP32</span>
<span class="tech-badge">PlatformIO</span>
<span class="tech-badge">3D Printing</span>
</div>
<span class="link-accent font-semibold text-sm">Click to view details →</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card-wrapper" data-project-name="Enrollment App">
<div class="project-card-inner">
<div class="project-card-front">
<img src="images/enrollmentapp.png" alt="Enrollment Forecasting App" loading="lazy" class="w-full h-56 object-cover" />
<div class="p-6 flex flex-col flex-grow justify-between">
<div>
<span class="project-category-badge ai">AI / ML</span>
<h3 class="text-2xl font-bold text-white mb-2">Enrollment Forecasting App</h3>
<p class="text-gray-400 text-sm">A full-stack web app forecasting student enrollment for public schools with Python, Flask, Prophet, and Chart.js.</p>
</div>
<span class="link-accent font-semibold text-sm mt-4">Hover for tech • Click to open →</span>
</div>
</div>
<div class="project-card-back">
<h3 class="text-xl font-bold text-white mb-3">Enrollment Forecasting App</h3>
<p class="text-gray-400 text-sm mb-5">ML-powered time-series forecasting of school enrollment with interactive visualizations and a REST API backend.</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="tech-badge">Python</span>
<span class="tech-badge">Flask</span>
<span class="tech-badge">Prophet</span>
<span class="tech-badge">Chart.js</span>
</div>
<span class="link-accent font-semibold text-sm">Click to view details →</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card-wrapper" data-project-name="RasPi Adhan">
<div class="project-card-inner">
<div class="project-card-front">
<img src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22600%22%20height%3D%22400%22%20viewBox%3D%220%200%20600%20400%22%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22%23161820%22%2F%3E%0A%3Cdefs%3E%3Cpattern%20id%3D%22dots%22%20width%3D%2228%22%20height%3D%2228%22%20patternUnits%3D%22userSpaceOnUse%22%3E%3Ccircle%20cx%3D%222%22%20cy%3D%222%22%20r%3D%221.4%22%20fill%3D%22%23FF8A33%22%20opacity%3D%220.16%22%2F%3E%3C%2Fpattern%3E%3C%2Fdefs%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22url(%23dots)%22%2F%3E%0A%3Crect%20x%3D%220.5%22%20y%3D%220.5%22%20width%3D%22599%22%20height%3D%22399%22%20fill%3D%22none%22%20stroke%3D%22%23FF8A33%22%20stroke-opacity%3D%220.3%22%20stroke-width%3D%221%22%2F%3E%0A%3Ccircle%20cx%3D%22255%22%20cy%3D%22235%22%20r%3D%226%22%20fill%3D%22%23FF8A33%22%2F%3E%0A%3Cpath%20d%3D%22M%20278%20235%20A%2038%2038%200%200%201%20278%20197%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M%20296%20250%20A%2062%2062%200%200%201%20296%20182%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%220.65%22%2F%3E%0A%3Cpath%20d%3D%22M%20314%20265%20A%2086%2086%200%200%201%20314%20167%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%220.4%22%2F%3E%0A%3C%2Fsvg%3E" alt="Raspberry Pi Adhan Player" class="w-full h-56 object-cover" />
<div class="p-6 flex flex-col flex-grow justify-between">
<div>
<span class="project-category-badge">Automation</span>
<h3 class="text-2xl font-bold text-white mb-2">Raspberry Pi Adhan Player</h3>
<p class="text-gray-400 text-sm">A Raspberry Pi system that auto-plays the Adhan by fetching daily prayer times from an API via Python script.</p>
</div>
<span class="link-accent font-semibold text-sm mt-4">Hover for tech • Click to open →</span>
</div>
</div>
<div class="project-card-back">
<h3 class="text-xl font-bold text-white mb-3">RasPi Adhan Player</h3>
<p class="text-gray-400 text-sm mb-5">Reliable set-and-forget Adhan scheduler using systemd and cron for homes and community spaces.</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="tech-badge">Python</span>
<span class="tech-badge">Raspberry Pi</span>
<span class="tech-badge">Systemd</span>
<span class="tech-badge">REST APIs</span>
</div>
<span class="link-accent font-semibold text-sm">Click to view details →</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card-wrapper" data-project-name="AVAT">
<div class="project-card-inner">
<div class="project-card-front">
<img src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22600%22%20height%3D%22400%22%20viewBox%3D%220%200%20600%20400%22%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22%23161820%22%2F%3E%0A%3Cdefs%3E%3Cpattern%20id%3D%22dots%22%20width%3D%2228%22%20height%3D%2228%22%20patternUnits%3D%22userSpaceOnUse%22%3E%3Ccircle%20cx%3D%222%22%20cy%3D%222%22%20r%3D%221.4%22%20fill%3D%22%23FF8A33%22%20opacity%3D%220.16%22%2F%3E%3C%2Fpattern%3E%3C%2Fdefs%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22url(%23dots)%22%2F%3E%0A%3Crect%20x%3D%220.5%22%20y%3D%220.5%22%20width%3D%22599%22%20height%3D%22399%22%20fill%3D%22none%22%20stroke%3D%22%23FF8A33%22%20stroke-opacity%3D%220.3%22%20stroke-width%3D%221%22%2F%3E%0A%3Ccircle%20cx%3D%22300%22%20cy%3D%22200%22%20r%3D%2275%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%220.45%22%2F%3E%0A%3Ccircle%20cx%3D%22300%22%20cy%3D%22200%22%20r%3D%2250%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%220.65%22%2F%3E%0A%3Ccircle%20cx%3D%22300%22%20cy%3D%22200%22%20r%3D%2225%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%222%22%20fill%3D%22none%22%2F%3E%0A%3Cline%20x1%3D%22300%22%20y1%3D%22200%22%20x2%3D%22300%22%20y2%3D%22125%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%2F%3E%0A%3Ccircle%20cx%3D%22344%22%20cy%3D%22158%22%20r%3D%224%22%20fill%3D%22%23FF8A33%22%2F%3E%0A%3Ccircle%20cx%3D%22248%22%20cy%3D%22228%22%20r%3D%224%22%20fill%3D%22%23FF8A33%22%2F%3E%0A%3C%2Fsvg%3E" alt="Automated Vulnerability Assessment Tool" class="w-full h-56 object-cover" />
<div class="p-6 flex flex-col flex-grow justify-between">
<div>
<span class="project-category-badge">Security</span>
<h3 class="text-2xl font-bold text-white mb-2">Automated Vulnerability Assessment Tool</h3>
<p class="text-gray-400 text-sm">A Python security scanner orchestrating Nmap and OpenVAS for nightly checks with real-time Slack alerts.</p>
</div>
<span class="link-accent font-semibold text-sm mt-4">Hover for tech • Click to open →</span>
</div>
</div>
<div class="project-card-back">
<h3 class="text-xl font-bold text-white mb-3">A.V.A.T</h3>
<p class="text-gray-400 text-sm mb-5">Automated nightly vulnerability scanning pipeline with unified reporting and instant Slack alerting.</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="tech-badge">Python</span>
<span class="tech-badge">Nmap</span>
<span class="tech-badge">OpenVAS</span>
<span class="tech-badge">Slack API</span>
</div>
<span class="link-accent font-semibold text-sm">Click to view details →</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card-wrapper" data-project-name="FIT">
<div class="project-card-inner">
<div class="project-card-front">
<img src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22600%22%20height%3D%22400%22%20viewBox%3D%220%200%20600%20400%22%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22%23161820%22%2F%3E%0A%3Cdefs%3E%3Cpattern%20id%3D%22dots%22%20width%3D%2228%22%20height%3D%2228%22%20patternUnits%3D%22userSpaceOnUse%22%3E%3Ccircle%20cx%3D%222%22%20cy%3D%222%22%20r%3D%221.4%22%20fill%3D%22%23FF8A33%22%20opacity%3D%220.16%22%2F%3E%3C%2Fpattern%3E%3C%2Fdefs%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22url(%23dots)%22%2F%3E%0A%3Crect%20x%3D%220.5%22%20y%3D%220.5%22%20width%3D%22599%22%20height%3D%22399%22%20fill%3D%22none%22%20stroke%3D%22%23FF8A33%22%20stroke-opacity%3D%220.3%22%20stroke-width%3D%221%22%2F%3E%0A%3Crect%20x%3D%22248%22%20y%3D%22174%22%20width%3D%2262%22%20height%3D%2252%22%20rx%3D%2226%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%224%22%20fill%3D%22none%22%2F%3E%0A%3Crect%20x%3D%22300%22%20y%3D%22174%22%20width%3D%2262%22%20height%3D%2252%22%20rx%3D%2226%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%224%22%20fill%3D%22none%22%2F%3E%0A%3C%2Fsvg%3E" alt="Blockchain-Based File Integrity Tracker" class="w-full h-56 object-cover" />
<div class="p-6 flex flex-col flex-grow justify-between">
<div>
<span class="project-category-badge">Web3</span>
<h3 class="text-2xl font-bold text-white mb-2">Blockchain-Based File Integrity Tracker</h3>
<p class="text-gray-400 text-sm">A Solidity smart contract and React/Web3.js UI to log and verify file integrity on the Ethereum testnet.</p>
</div>
<span class="link-accent font-semibold text-sm mt-4">Hover for tech • Click to open →</span>
</div>
</div>
<div class="project-card-back">
<h3 class="text-xl font-bold text-white mb-3">F.I.T</h3>
<p class="text-gray-400 text-sm mb-5">Tamper-proof, decentralized file integrity verification on Ethereum with a React/Web3 frontend.</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="tech-badge">Solidity</span>
<span class="tech-badge">React</span>
<span class="tech-badge">Web3.js</span>
<span class="tech-badge">Ethereum</span>
</div>
<span class="link-accent font-semibold text-sm">Click to view details →</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card-wrapper" data-project-name="AI Forecast Pipeline">
<div class="project-card-inner">
<div class="project-card-front">
<img src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22600%22%20height%3D%22400%22%20viewBox%3D%220%200%20600%20400%22%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22%23161820%22%2F%3E%0A%3Cdefs%3E%3Cpattern%20id%3D%22dots%22%20width%3D%2228%22%20height%3D%2228%22%20patternUnits%3D%22userSpaceOnUse%22%3E%3Ccircle%20cx%3D%222%22%20cy%3D%222%22%20r%3D%221.4%22%20fill%3D%22%23FF8A33%22%20opacity%3D%220.16%22%2F%3E%3C%2Fpattern%3E%3C%2Fdefs%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22url(%23dots)%22%2F%3E%0A%3Crect%20x%3D%220.5%22%20y%3D%220.5%22%20width%3D%22599%22%20height%3D%22399%22%20fill%3D%22none%22%20stroke%3D%22%23FF8A33%22%20stroke-opacity%3D%220.3%22%20stroke-width%3D%221%22%2F%3E%0A%3Cpolyline%20points%3D%22228%2C252%20264%2C222%20300%2C236%20336%2C190%20372%2C206%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpolyline%20points%3D%22372%2C206%20406%2C168%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20fill%3D%22none%22%20stroke-dasharray%3D%226%207%22%20stroke-linecap%3D%22round%22%2F%3E%0A%3Ccircle%20cx%3D%22372%22%20cy%3D%22206%22%20r%3D%224.5%22%20fill%3D%22%23FF8A33%22%2F%3E%0A%3C%2Fsvg%3E" alt="AI Forecast Intelligence Pipeline" class="w-full h-56 object-cover" />
<div class="p-6 flex flex-col flex-grow justify-between">
<div>
<span class="project-category-badge ai">AI / ML</span>
<h3 class="text-2xl font-bold text-white mb-2">AI Forecast Intelligence Pipeline</h3>
<p class="text-gray-400 text-sm">An end-to-end pipeline combining Prophet time-series forecasting with OpenAI to generate human-readable decision recommendations.</p>
</div>
<span class="link-accent font-semibold text-sm mt-4">Hover for tech • Click to open →</span>
</div>
</div>
<div class="project-card-back">
<h3 class="text-xl font-bold text-white mb-3">AI Forecast Intelligence Pipeline</h3>
<p class="text-gray-400 text-sm mb-5">Raw data in, actionable AI-generated insights out — bridging ML forecasts and natural language reporting.</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="tech-badge">Python</span>
<span class="tech-badge">Prophet</span>
<span class="tech-badge">OpenAI API</span>
<span class="tech-badge">Pandas</span>
<span class="tech-badge">Flask</span>
</div>
<span class="link-accent font-semibold text-sm">Click to view details →</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card-wrapper" data-project-name="n8n AI Engine">
<div class="project-card-inner">
<div class="project-card-front">
<img src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22600%22%20height%3D%22400%22%20viewBox%3D%220%200%20600%20400%22%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22%23161820%22%2F%3E%0A%3Cdefs%3E%3Cpattern%20id%3D%22dots%22%20width%3D%2228%22%20height%3D%2228%22%20patternUnits%3D%22userSpaceOnUse%22%3E%3Ccircle%20cx%3D%222%22%20cy%3D%222%22%20r%3D%221.4%22%20fill%3D%22%23FF8A33%22%20opacity%3D%220.16%22%2F%3E%3C%2Fpattern%3E%3C%2Fdefs%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22url(%23dots)%22%2F%3E%0A%3Crect%20x%3D%220.5%22%20y%3D%220.5%22%20width%3D%22599%22%20height%3D%22399%22%20fill%3D%22none%22%20stroke%3D%22%23FF8A33%22%20stroke-opacity%3D%220.3%22%20stroke-width%3D%221%22%2F%3E%0A%3Cpolyline%20points%3D%22228%2C252%20264%2C222%20300%2C236%20336%2C190%20372%2C206%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpolyline%20points%3D%22372%2C206%20406%2C168%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20fill%3D%22none%22%20stroke-dasharray%3D%226%207%22%20stroke-linecap%3D%22round%22%2F%3E%0A%3Ccircle%20cx%3D%22372%22%20cy%3D%22206%22%20r%3D%224.5%22%20fill%3D%22%23FF8A33%22%2F%3E%0A%3C%2Fsvg%3E" alt="n8n AI Automation Engine" class="w-full h-56 object-cover" />
<div class="p-6 flex flex-col flex-grow justify-between">
<div>
<span class="project-category-badge ai">AI Automation</span>
<h3 class="text-2xl font-bold text-white mb-2">n8n AI Automation Engine</h3>
<p class="text-gray-400 text-sm">A low-code automation platform wiring data sources, ML inference, and LLM summarisation into zero-touch reporting workflows.</p>
</div>
<span class="link-accent font-semibold text-sm mt-4">Hover for tech • Click to open →</span>
</div>
</div>
<div class="project-card-back">
<h3 class="text-xl font-bold text-white mb-3">n8n AI Automation Engine</h3>
<p class="text-gray-400 text-sm mb-5">Ingests data from APIs and spreadsheets, runs ML models, and delivers AI-written summaries to Slack or email — fully automated.</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="tech-badge">n8n</span>
<span class="tech-badge">OpenAI API</span>
<span class="tech-badge">Python</span>
<span class="tech-badge">REST APIs</span>
<span class="tech-badge">Slack API</span>
</div>
<span class="link-accent font-semibold text-sm">Click to view details →</span>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="project-card-wrapper" data-project-name="Healthcare Forecaster">
<div class="project-card-inner">
<div class="project-card-front">
<img src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22600%22%20height%3D%22400%22%20viewBox%3D%220%200%20600%20400%22%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22%23161820%22%2F%3E%0A%3Cdefs%3E%3Cpattern%20id%3D%22dots%22%20width%3D%2228%22%20height%3D%2228%22%20patternUnits%3D%22userSpaceOnUse%22%3E%3Ccircle%20cx%3D%222%22%20cy%3D%222%22%20r%3D%221.4%22%20fill%3D%22%23FF8A33%22%20opacity%3D%220.16%22%2F%3E%3C%2Fpattern%3E%3C%2Fdefs%3E%0A%3Crect%20width%3D%22600%22%20height%3D%22400%22%20fill%3D%22url(%23dots)%22%2F%3E%0A%3Crect%20x%3D%220.5%22%20y%3D%220.5%22%20width%3D%22599%22%20height%3D%22399%22%20fill%3D%22none%22%20stroke%3D%22%23FF8A33%22%20stroke-opacity%3D%220.3%22%20stroke-width%3D%221%22%2F%3E%0A%3Cpolyline%20points%3D%22228%2C252%20264%2C222%20300%2C236%20336%2C190%20372%2C206%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpolyline%20points%3D%22372%2C206%20406%2C168%22%20stroke%3D%22%23FF8A33%22%20stroke-width%3D%223%22%20fill%3D%22none%22%20stroke-dasharray%3D%226%207%22%20stroke-linecap%3D%22round%22%2F%3E%0A%3Ccircle%20cx%3D%22372%22%20cy%3D%22206%22%20r%3D%224.5%22%20fill%3D%22%23FF8A33%22%2F%3E%0A%3C%2Fsvg%3E" alt="Healthcare Demand Forecaster" class="w-full h-56 object-cover" />
<div class="p-6 flex flex-col flex-grow justify-between">
<div>
<span class="project-category-badge ai">AI / ML</span>
<h3 class="text-2xl font-bold text-white mb-2">Healthcare Demand Forecaster</h3>
<p class="text-gray-400 text-sm">A scikit-learn + Prophet model predicting healthcare resource demand, with OpenAI generating plain-language allocation recommendations.</p>
</div>
<span class="link-accent font-semibold text-sm mt-4">Hover for tech • Click to open →</span>
</div>
</div>
<div class="project-card-back">
<h3 class="text-xl font-bold text-white mb-3">Healthcare Demand Forecaster</h3>
<p class="text-gray-400 text-sm mb-5">Predicts patient volume and resource needs weeks ahead, then converts model output into clear, actionable guidance for staff.</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="tech-badge">Python</span>
<span class="tech-badge">scikit-learn</span>
<span class="tech-badge">Prophet</span>
<span class="tech-badge">OpenAI API</span>
<span class="tech-badge">Pandas</span>
</div>
<span class="link-accent font-semibold text-sm">Click to view details →</span>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</div>
</div>
</section>
<section id="contact" class="py-16 animate-on-scroll">
<div class="container mx-auto px-6 text-center">
<h2 class="section-title">Get In Touch</h2>
<p class="text-lg text-gray-400 max-w-2xl mx-auto mb-10">
I'm currently available for new opportunities — whether it's AI deployment, automation pipelines, or QA engineering.
Have a project in mind or want to connect? Let's talk.
</p>
<a href="mailto:syed.badrudduja@protonmail.com"
class="btn-primary mb-12">
Say Hello →
</a>
<div class="flex justify-center gap-4 mt-4 flex-wrap">
<a href="https://github.com/SyButter" target="_blank"
class="nav-link contact-pill">GitHub</a>
<a href="https://linkedin.com/in/sbadrudduja" target="_blank"
class="nav-link contact-pill">LinkedIn</a>
<a href="https://flowcv.com/resume/rfjse59hqb" target="_blank" rel="noopener noreferrer"
class="nav-link contact-pill">Resume</a>
</div>
</div>
</section>
<footer class="bg-gray-900 text-center py-6">
<div class="container mx-auto px-6">
<p class="text-gray-500">
© 2026 Syed Badrudduja. All Rights Reserved.
</p>
</div>
</footer>
<div id="project-modal-backdrop" class="hidden" role="dialog" aria-modal="true" aria-labelledby="modal-title">
<div id="project-modal-content">
<button id="modal-close-button" class="close-button" aria-label="Close project details">×</button>
<img id="modal-image" src="" alt="Project Image" />
<div class="modal-text-content">
<h3 id="modal-title"></h3>
<p id="modal-description"></p>
<div class="mt-6">
<h4 class="text-xl font-bold text-white mb-2">Technology Stack</h4>
<div id="modal-tech-stack" class="flex flex-wrap gap-2">
</div>
</div>
<div class="mt-6">
<h4 class="text-xl font-bold text-white mb-2">Key Features</h4>
<ul id="modal-features" class="list-disc list-inside space-y-2 text-gray-300">
</ul>
</div>
<div class="mt-6">
<h4 class="text-xl font-bold text-white mb-2">Project Challenges</h4>
<p id="modal-challenges" class="text-gray-400 italic"></p>
</div>
<div class="mt-8"> <a id="modal-link" href="#" target="_blank" class="btn-primary">
View on GitHub →
</a>
</div>
</div>
</div>
</div>
<script type="module" src="js/main.js?v=3"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
</body>
</html>