-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
434 lines (410 loc) · 28.2 KB
/
Copy pathindex.html
File metadata and controls
434 lines (410 loc) · 28.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Rahul Roy — Software Engineer</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet"/>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0a0a0f; --bg2: #111118; --bg3: #1a1a24;
--border: rgba(255,255,255,0.07);
--accent: #7c6af7; --accent2: #5eead4; --accent3: #f472b6;
--text: #e2e8f0; --muted: #64748b; --card: rgba(255,255,255,0.03);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
/* NAV */
nav { position: fixed; top: 0; width: 100%; z-index: 100; padding: 1.25rem 2rem; display: flex; justify-content: space-between; align-items: center; background: rgba(10,10,15,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-logo { font-family: 'JetBrains Mono', monospace; font-size: 1.1rem; font-weight: 500; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; letter-spacing: 0.02em; }
.nav-links a:hover { color: var(--text); }
/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 6rem 2rem 4rem; position: relative; overflow: hidden; }
.hero-glow { position: absolute; top: 20%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(124,106,247,0.13) 0%, transparent 70%); pointer-events: none; }
.hero-glow2 { position: absolute; bottom: 10%; right: 10%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(94,234,212,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-content { text-align: center; max-width: 800px; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(124,106,247,0.1); border: 1px solid rgba(124,106,247,0.3); color: var(--accent); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em; margin-bottom: 1.75rem; text-transform: uppercase; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)} }
.hero h1 { font-size: clamp(2.8rem,8vw,5.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.gradient-text { background: linear-gradient(135deg, #fff 0%, var(--accent) 50%, var(--accent2) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: clamp(1rem,2.5vw,1.4rem); font-weight: 400; color: var(--muted); margin-bottom: 1.25rem; letter-spacing: -0.01em; }
.hero p.desc { font-size: 1.1rem; color: var(--muted); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { padding: .85rem 2rem; border-radius: 12px; font-size: .95rem; font-weight: 600; background: linear-gradient(135deg,var(--accent),#5b4ee8); color: #fff; text-decoration: none; border: none; cursor: pointer; transition: transform .2s,box-shadow .2s; box-shadow: 0 4px 24px rgba(124,106,247,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,106,247,.5); }
.btn-outline { padding: .85rem 2rem; border-radius: 12px; font-size: .95rem; font-weight: 600; background: transparent; color: var(--text); border: 1px solid var(--border); text-decoration: none; cursor: pointer; transition: background .2s,border-color .2s; }
.btn-outline:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.2); }
.hero-socials { display: flex; gap: 1rem; justify-content: center; margin-top: 3rem; }
.social-link { display: flex; align-items: center; gap: .5rem; color: var(--muted); text-decoration: none; font-size: .85rem; font-weight: 500; transition: color .2s; }
.social-link:hover { color: var(--accent2); }
.social-link svg { width: 18px; height: 18px; }
/* SECTIONS */
section { padding: 6rem 2rem; position: relative; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-family: 'JetBrains Mono', monospace; font-size: .75rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.section-title { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 1rem; }
.section-sub { color: var(--muted); max-width: 480px; line-height: 1.7; }
/* ABOUT */
#about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-avatar-wrap { display: flex; justify-content: center; }
.about-avatar { width: 220px; height: 220px; border-radius: 32px; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 5.5rem; position: relative; box-shadow: 0 0 80px rgba(124,106,247,.25); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.25rem; text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; background: linear-gradient(135deg,var(--accent),var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: .8rem; color: var(--muted); margin-top: .25rem; }
/* SKILLS */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.skill-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 1.75rem; transition: border-color .2s,transform .2s; }
.skill-card:hover { border-color: rgba(124,106,247,.4); transform: translateY(-4px); }
.skill-icon { font-size: 2rem; margin-bottom: 1rem; }
.skill-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.skill-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag { font-size: .75rem; font-weight: 500; padding: .3rem .75rem; border-radius: 100px; background: rgba(124,106,247,.1); color: var(--accent); border: 1px solid rgba(124,106,247,.2); font-family: 'JetBrains Mono', monospace; }
.tag.green { background: rgba(94,234,212,.1); color: var(--accent2); border-color: rgba(94,234,212,.2); }
.tag.pink { background: rgba(244,114,182,.1); color: var(--accent3); border-color: rgba(244,114,182,.2); }
/* EXPERIENCE */
#experience { background: var(--bg2); }
.timeline { margin-top: 3rem; position: relative; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom,var(--accent),transparent); }
.timeline-item { padding-left: 60px; margin-bottom: 3rem; position: relative; }
.timeline-dot { position: absolute; left: 12px; top: 4px; width: 17px; height: 17px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg2); box-shadow: 0 0 12px rgba(124,106,247,.6); }
.timeline-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 1.75rem; transition: border-color .2s; }
.timeline-card:hover { border-color: rgba(124,106,247,.4); }
.timeline-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: .5rem; margin-bottom: .25rem; }
.timeline-role { font-size: 1.1rem; font-weight: 700; }
.timeline-period { font-family: 'JetBrains Mono', monospace; font-size: .75rem; color: var(--accent); background: rgba(124,106,247,.1); padding: .3rem .75rem; border-radius: 100px; }
.timeline-company { color: var(--accent2); font-weight: 600; font-size: .9rem; margin-bottom: 1rem; }
.timeline-card ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.timeline-card li { color: var(--muted); font-size: .9rem; padding-left: 1.25rem; position: relative; line-height: 1.6; }
.timeline-card li::before { content: '▹'; position: absolute; left: 0; color: var(--accent); font-size: .75rem; top: 2px; }
/* PROJECTS */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.project-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: border-color .2s,transform .2s; display: flex; flex-direction: column; gap: 1rem; }
.project-card:hover { border-color: rgba(94,234,212,.4); transform: translateY(-4px); }
.project-top { display: flex; justify-content: space-between; align-items: flex-start; }
.project-icon { font-size: 2.2rem; }
.project-links { display: flex; gap: .5rem; }
.project-link { color: var(--muted); text-decoration: none; font-size: .8rem; font-weight: 500; padding: .3rem .75rem; border: 1px solid var(--border); border-radius: 8px; transition: color .2s,border-color .2s; }
.project-link:hover { color: var(--accent2); border-color: var(--accent2); }
.project-card h3 { font-size: 1.1rem; font-weight: 700; }
.project-card p { color: var(--muted); font-size: .9rem; line-height: 1.6; flex: 1; }
.project-stack { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
/* ACHIEVEMENTS */
#achievements { background: var(--bg2); }
.achievements-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.achievement-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 1.75rem; text-align: center; transition: border-color .2s,transform .2s; }
.achievement-card:hover { border-color: rgba(244,114,182,.4); transform: translateY(-4px); }
.achievement-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.achievement-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.achievement-card p { color: var(--muted); font-size: .875rem; line-height: 1.5; }
/* CONTACT */
.contact-wrapper { max-width: 640px; margin: 3rem auto 0; text-align: center; }
.contact-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.contact-link { display: flex; align-items: center; gap: .6rem; padding: .85rem 1.5rem; border-radius: 14px; border: 1px solid var(--border); text-decoration: none; color: var(--text); font-size: .9rem; font-weight: 500; transition: all .2s; background: var(--card); }
.contact-link:hover { background: rgba(124,106,247,.1); border-color: rgba(124,106,247,.4); color: var(--accent); }
.contact-link svg { width: 18px; height: 18px; flex-shrink: 0; }
/* FOOTER */
footer { text-align: center; padding: 2.5rem; color: var(--muted); font-size: .82rem; border-top: 1px solid var(--border); font-family: 'JetBrains Mono', monospace; }
/* RESPONSIVE */
@media (max-width: 768px) {
.about-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
.about-avatar-wrap { order: -1; }
nav { padding: 1rem 1.25rem; }
.nav-links { gap: 1rem; }
.timeline::before { left: 10px; }
.timeline-item { padding-left: 40px; }
.timeline-dot { left: 2px; }
}
/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
</style>
</head>
<body>
<nav>
<div class="nav-logo">rahul.roy()</div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- HERO -->
<section class="hero">
<div class="hero-glow"></div>
<div class="hero-glow2"></div>
<div class="hero-content">
<div class="hero-badge"><span class="dot"></span> Open to opportunities</div>
<h1><span class="gradient-text">Rahul Roy</span></h1>
<div class="hero-subtitle">Software Engineer · Backend & Fullstack · AI Enthusiast</div>
<p class="desc">Building scalable backend systems, RESTful APIs, and experimenting with Generative AI & Agentic workflows. Based in Hyderabad, India.</p>
<div class="hero-ctas">
<a href="#projects" class="btn-primary">View My Work</a>
<a href="#contact" class="btn-outline">Get In Touch</a>
</div>
<div class="hero-socials">
<a href="https://github.com/RahulRoy22" target="_blank" class="social-link">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.477 2 2 6.477 2 12c0 4.42 2.865 8.17 6.839 9.49.5.092.682-.217.682-.482 0-.237-.008-.866-.013-1.7-2.782.604-3.369-1.34-3.369-1.34-.454-1.156-1.11-1.463-1.11-1.463-.908-.62.069-.608.069-.608 1.003.07 1.531 1.03 1.531 1.03.892 1.529 2.341 1.087 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.11-4.555-4.943 0-1.091.39-1.984 1.029-2.683-.103-.253-.446-1.27.098-2.647 0 0 .84-.269 2.75 1.025A9.578 9.578 0 0112 6.836c.85.004 1.705.114 2.504.336 1.909-1.294 2.747-1.025 2.747-1.025.546 1.377.203 2.394.1 2.647.64.699 1.028 1.592 1.028 2.683 0 3.842-2.339 4.687-4.566 4.935.359.309.678.919.678 1.852 0 1.336-.012 2.415-.012 2.741 0 .267.18.578.688.48C19.138 20.167 22 16.418 22 12c0-5.523-4.477-10-10-10z"/></svg>
GitHub
</a>
<a href="https://www.linkedin.com/in/rahul-roy-53b4621a8" target="_blank" class="social-link">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>
LinkedIn
</a>
<a href="https://leetcode.com/u/coderroyrahul/" target="_blank" class="social-link">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M13.483 0a1.374 1.374 0 00-.961.438L7.116 6.226l-3.854 4.126a5.266 5.266 0 00-1.209 2.104 5.35 5.35 0 00-.125.513 5.527 5.527 0 00.062 2.362 5.83 5.83 0 00.349 1.017 5.938 5.938 0 001.271 1.818l4.277 4.193.039.038c2.248 2.165 5.852 2.133 8.063-.074l2.396-2.392c.54-.54.54-1.414.003-1.955a1.378 1.378 0 00-1.951-.003l-2.396 2.392a3.021 3.021 0 01-4.205.038l-.02-.019-4.276-4.193c-.652-.64-.972-1.469-.948-2.263a2.68 2.68 0 01.066-.523 2.545 2.545 0 01.619-1.164L9.13 8.114c1.058-1.134 3.204-1.27 4.43-.278l3.501 2.831c.593.48 1.461.387 1.94-.207a1.384 1.384 0 00-.207-1.943l-3.5-2.831c-.8-.647-1.766-1.045-2.774-1.202l2.015-2.158A1.384 1.384 0 0013.483 0zm-2.866 12.815a1.38 1.38 0 00-1.38 1.382 1.38 1.38 0 001.38 1.382H20.79a1.38 1.38 0 001.38-1.382 1.38 1.38 0 00-1.38-1.382z"/></svg>
LeetCode
</a>
</div>
</div>
</section>
<!-- ABOUT -->
<section id="about">
<div class="container">
<div class="about-grid">
<div class="fade-up">
<div class="section-label">// about me</div>
<h2 class="section-title">Passionate about building things that scale</h2>
<p style="color:var(--muted);line-height:1.8;margin-bottom:1.5rem;">
I'm a Software Engineer with 1.5 years of experience in backend and fullstack engineering.
I specialize in building RESTful APIs and microservices with Python and Node.js, and I'm
deeply interested in applying Generative AI to real-world problems.
</p>
<p style="color:var(--muted);line-height:1.8;">
I hold a B.Tech in Electronics & Communication Engineering from Chandigarh Engineering College
and enjoy competitive programming on LeetCode. Off-screen, I'm a Taekwondo Black Belt and
Silver Medalist at State Championships.
</p>
<div class="about-stats">
<div class="stat-card"><div class="stat-num">1.5+</div><div class="stat-label">Years Experience</div></div>
<div class="stat-card"><div class="stat-num">2</div><div class="stat-label">Companies</div></div>
<div class="stat-card"><div class="stat-num">5+</div><div class="stat-label">Tech Stacks</div></div>
<div class="stat-card"><div class="stat-num">🥋</div><div class="stat-label">Black Belt 1st Dan</div></div>
</div>
</div>
<div class="about-avatar-wrap fade-up">
<div class="about-avatar">👨💻</div>
</div>
</div>
</div>
</section>
<!-- SKILLS -->
<section id="skills">
<div class="container">
<div class="fade-up">
<div class="section-label">// technical skills</div>
<h2 class="section-title">What I work with</h2>
</div>
<div class="skills-grid">
<div class="skill-card fade-up">
<div class="skill-icon">🐍</div>
<h3>Languages</h3>
<div class="skill-tags">
<span class="tag">Python</span><span class="tag">JavaScript</span><span class="tag">TypeScript</span>
<span class="tag">Node.js</span><span class="tag">Java</span><span class="tag">C++</span><span class="tag">HTML/CSS</span>
</div>
</div>
<div class="skill-card fade-up">
<div class="skill-icon">⚙️</div>
<h3>Backend & Databases</h3>
<div class="skill-tags">
<span class="tag green">RESTful APIs</span><span class="tag green">Microservices</span>
<span class="tag green">MongoDB</span><span class="tag green">MySQL</span><span class="tag green">PostgreSQL</span>
</div>
</div>
<div class="skill-card fade-up">
<div class="skill-icon">☁️</div>
<h3>Cloud & DevOps</h3>
<div class="skill-tags">
<span class="tag pink">Azure</span><span class="tag pink">AWS</span><span class="tag pink">Docker</span>
<span class="tag pink">GitHub Actions</span><span class="tag pink">Jenkins</span><span class="tag pink">Git</span>
</div>
</div>
<div class="skill-card fade-up">
<div class="skill-icon">🤖</div>
<h3>AI & Emerging Tech</h3>
<div class="skill-tags">
<span class="tag">Generative AI</span><span class="tag">LLMs</span>
<span class="tag">AI Agents</span><span class="tag">MCP</span><span class="tag">Agentic Workflows</span>
</div>
</div>
</div>
</div>
</section>
<!-- EXPERIENCE -->
<section id="experience">
<div class="container">
<div class="fade-up">
<div class="section-label">// work experience</div>
<h2 class="section-title">Where I've worked</h2>
</div>
<div class="timeline">
<div class="timeline-item fade-up">
<div class="timeline-dot"></div>
<div class="timeline-card">
<div class="timeline-header">
<span class="timeline-role">Software Apprentice — Backend Engineering</span>
<span class="timeline-period">Jan 2025 – Jan 2026</span>
</div>
<div class="timeline-company">Bosch Global Software Technologies (BGSW) · Hyderabad, India</div>
<ul>
<li>Developed and maintained scalable backend web applications using Python and cloud-based APIs for critical engineering operations.</li>
<li>Collaborated with cross-functional Scrum teams in Agile sprints, contributing to rapid prototyping and sprint planning.</li>
<li>Designed and integrated RESTful APIs ensuring secure, efficient data flow across multi-tier architectures.</li>
<li>Leveraged Git and CI/CD pipelines (Jenkins, GitHub Actions) to ship production-ready code following best practices.</li>
</ul>
</div>
</div>
<div class="timeline-item fade-up">
<div class="timeline-dot"></div>
<div class="timeline-card">
<div class="timeline-header">
<span class="timeline-role">Full Stack Engineer Intern</span>
<span class="timeline-period">Jan 2023 – Jul 2023</span>
</div>
<div class="timeline-company">Future Finders · Mohali, India</div>
<ul>
<li>Engineered responsive web applications with Node.js, JavaScript, HTML, and CSS.</li>
<li>Collaborated with UI/UX designers to integrate frontend components with backend services.</li>
<li>Managed database operations in MongoDB and relational systems, optimizing queries for high performance.</li>
<li>Refactored legacy code into modern microservices, improving maintainability and scalability.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- PROJECTS -->
<section id="projects">
<div class="container">
<div class="fade-up">
<div class="section-label">// projects</div>
<h2 class="section-title">Things I've built</h2>
</div>
<div class="projects-grid">
<div class="project-card fade-up">
<div class="project-top">
<div class="project-icon">✈️</div>
<div class="project-links"><a href="https://github.com/RahulRoy22/Intelligent-Flight-Disruption-Communicator" target="_blank" class="project-link">GitHub ↗</a></div>
</div>
<h3>Intelligent Flight Disruption Communicator</h3>
<p>A RAG-powered API that translates complex aviation weather data (METAR) into passenger-friendly alerts. Integrates real-time flight tracking, weather APIs, and vector search to generate AI-driven disruption explanations.</p>
<div class="project-stack">
<span class="tag">Python</span>
<span class="tag">FastAPI</span>
<span class="tag">ChromaDB</span>
<span class="tag">Groq (Llama 3.3)</span>
<span class="tag">RAG Pipeline</span>
<span class="tag">Vector Searchs</span>
</div>
</div>
<div class="project-card fade-up">
<div class="project-top">
<div class="project-icon">📊</div>
<div class="project-links"><a href="https://github.com/RahulRoy22/developer-velocity-dashboard" target="_blank" class="project-link">GitHub ↗</a></div>
</div>
<h3>Developer Velocity Dashboard</h3>
<p>A dashboard to track and visualize developer productivity metrics, helping engineering teams measure velocity, identify bottlenecks, and improve delivery throughput across sprints.</p>
<div class="project-stack">
<span class="tag">Angular</span>
<span class="tag green">TypeScript</span>
<span class="tag green">Firebase</span>
<span class="tag green">Chart.js</span>
<span class="tag green">RxJS</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ACHIEVEMENTS -->
<section id="achievements">
<div class="container">
<div class="fade-up">
<div class="section-label">// achievements</div>
<h2 class="section-title">Beyond the code</h2>
</div>
<div class="achievements-grid">
<div class="achievement-card fade-up">
<div class="achievement-icon">⚔️</div>
<h3>Taekwondo Black Belt</h3>
<p>1st Dan Black Belt and Silver Medalist at State Championships — discipline, focus, and perseverance.</p>
</div>
<div class="achievement-card fade-up">
<div class="achievement-icon">💻</div>
<h3>Competitive Programmer</h3>
<p>Active problem solver on LeetCode, consistently sharpening Data Structures & Algorithms skills.</p>
</div>
<div class="achievement-card fade-up">
<div class="achievement-icon">🎓</div>
<h3>B.Tech — ECE</h3>
<p>Bachelor of Technology in Electronics & Communication Engineering from Chandigarh Engineering College (2019–2023).</p>
</div>
<div class="achievement-card fade-up">
<div class="achievement-icon">🌐</div>
<h3>Multilingual</h3>
<p>Fluent in English, native in Hindi & Assamese, elementary Bengali — communicates across diverse teams.</p>
</div>
</div>
</div>
</section>
<!-- CONTACT -->
<section id="contact">
<div class="container">
<div class="contact-wrapper fade-up">
<div class="section-label">// contact</div>
<h2 class="section-title">Let's connect</h2>
<p class="section-sub" style="margin:0 auto;text-align:center;">
Open to new opportunities, collaborations, or just a friendly chat about tech and AI.
</p>
<div class="contact-links">
<a href="mailto:coderroyrahul@gmail.com" class="contact-link">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="m22 7-8.97 5.7a1.94 1.94 0 01-2.06 0L2 7"/></svg>
coderroyrahul@gmail.com
</a>
<a href="https://github.com/RahulRoy22" target="_blank" class="contact-link">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.477 2 2 6.477 2 12c0 4.42 2.865 8.17 6.839 9.49.5.092.682-.217.682-.482 0-.237-.008-.866-.013-1.7-2.782.604-3.369-1.34-3.369-1.34-.454-1.156-1.11-1.463-1.11-1.463-.908-.62.069-.608.069-.608 1.003.07 1.531 1.03 1.531 1.03.892 1.529 2.341 1.087 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.11-4.555-4.943 0-1.091.39-1.984 1.029-2.683-.103-.253-.446-1.27.098-2.647 0 0 .84-.269 2.75 1.025A9.578 9.578 0 0112 6.836c.85.004 1.705.114 2.504.336 1.909-1.294 2.747-1.025 2.747-1.025.546 1.377.203 2.394.1 2.647.64.699 1.028 1.592 1.028 2.683 0 3.842-2.339 4.687-4.566 4.935.359.309.678.919.678 1.852 0 1.336-.012 2.415-.012 2.741 0 .267.18.578.688.48C19.138 20.167 22 16.418 22 12c0-5.523-4.477-10-10-10z"/></svg>
GitHub
</a>
<a href="https://www.linkedin.com/in/rahul-roy-53b4621a8" target="_blank" class="contact-link">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>
LinkedIn
</a>
<a href="tel:+916001130723" class="contact-link">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.81 19.79 19.79 0 01.01 1.18C.01.6.44.05 1.01.01h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L5.09 7.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z"/></svg>
+91 6001130723
</a>
</div>
</div>
</div>
</section>
<footer>
<p>Designed & built by Rahul Roy · 2026</p>
<p style="margin-top:.5rem;font-size:.75rem;">
<span style="color:var(--accent)">const</span> passion = <span style="color:var(--accent2)">"building scalable solutions"</span>;
</p>
</footer>
<script>
const observer = new IntersectionObserver((entries) => {
entries.forEach(e => { if (e.isIntersecting) e.target.classList.add('visible'); });
}, { threshold: 0.12 });
document.querySelectorAll('.fade-up').forEach(el => observer.observe(el));
const sections = document.querySelectorAll('section[id]');
const navLinks = document.querySelectorAll('.nav-links a');
window.addEventListener('scroll', () => {
let current = '';
sections.forEach(s => { if (window.scrollY >= s.offsetTop - 120) current = s.id; });
navLinks.forEach(a => {
a.style.color = a.getAttribute('href') === '#' + current ? 'var(--text)' : '';
});
});
</script>
</body>
</html>