-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
550 lines (497 loc) · 34.7 KB
/
Copy pathindex.html
File metadata and controls
550 lines (497 loc) · 34.7 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
<!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>Rohan Mulla | Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;700&family=Space+Grotesk:wght@400;500;700&display=swap"
rel="stylesheet">
<link rel="icon" type="image/svg+xml"
href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%2316f2b3'/%3E%3Cstop offset='100%25' stop-color='%233da2ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='4' y='4' width='56' height='56' rx='12' fill='%23050a13'/%3E%3Cpath d='M24 20L14 32l10 12M40 20l10 12-10 12' stroke='url(%23g)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['"Space Grotesk"', 'sans-serif'],
mono: ['"JetBrains Mono"', 'monospace'],
},
colors: {
accent: 'var(--accent)',
accentAlt: 'var(--accent-alt)',
textMain: 'var(--text-main)',
textSoft: 'var(--text-soft)',
bgBase: 'var(--bg-base)',
navBg: 'var(--nav-bg)',
panel: 'var(--panel)',
panelSolid: 'var(--panel-solid)',
cardBg: 'var(--card-bg)',
borderBase: 'var(--border)'
},
boxShadow: {
custom: 'var(--shadow)'
}
}
}
}
</script>
<style>
/* Simplified CSS - Only essential variables and complex animations */
:root {
--bg-base: #070b14;
--panel: rgba(12, 20, 38, 0.72);
--panel-solid: #121d34;
--border: rgba(98, 121, 164, 0.32);
--text-main: #e6edf8;
--text-soft: #9db0ce;
--accent: #16f2b3;
--accent-alt: #3da2ff;
--bg-grad-1: rgba(22, 242, 179, 0.12);
--bg-grad-2: rgba(61, 162, 255, 0.16);
--bg-main-start: #050a13;
--bg-main-mid: #0a1222;
--bg-main-end: #080c18;
--nav-bg: rgba(7, 12, 22, 0.68);
--card-bg: rgba(13, 23, 43, 0.66);
--hero-grad-a: rgba(18, 29, 52, 0.9);
--hero-grad-b: rgba(10, 18, 34, 0.55);
--shadow: 0 14px 36px rgba(1, 7, 20, 0.45);
/* Section Gradients */
--bg-welcome: linear-gradient(145deg, rgba(15, 34, 62, 0.55), rgba(5, 16, 32, 0.6));
--bg-about: linear-gradient(145deg, rgba(10, 48, 43, 0.5), rgba(8, 28, 30, 0.62));
--bg-skills: linear-gradient(145deg, rgba(50, 27, 62, 0.5), rgba(22, 18, 42, 0.62));
--bg-projects: linear-gradient(145deg, rgba(58, 29, 22, 0.5), rgba(26, 14, 16, 0.62));
--bg-profiles: linear-gradient(145deg, rgba(24, 38, 66, 0.52), rgba(10, 16, 32, 0.62));
}
body[data-theme="light"] {
--bg-base: #eff5ff;
--panel: rgba(255, 255, 255, 0.84);
--panel-solid: #ffffff;
--border: rgba(83, 110, 153, 0.32);
--text-main: #12233f;
--text-soft: #3f577c;
--accent: #007f5f;
--accent-alt: #0066c9;
--bg-grad-1: rgba(0, 127, 95, 0.11);
--bg-grad-2: rgba(0, 102, 201, 0.11);
--bg-main-start: #f6fbff;
--bg-main-mid: #ebf3ff;
--bg-main-end: #e3eefe;
--nav-bg: rgba(246, 251, 255, 0.8);
--card-bg: rgba(255, 255, 255, 0.86);
--hero-grad-a: rgba(255, 255, 255, 0.9);
--hero-grad-b: rgba(230, 240, 255, 0.82);
--shadow: 0 12px 28px rgba(21, 40, 74, 0.12);
/* Section Gradients Light */
--bg-welcome: linear-gradient(145deg, rgba(212, 231, 255, 0.72), rgba(227, 242, 255, 0.74));
--bg-about: linear-gradient(145deg, rgba(208, 246, 233, 0.75), rgba(224, 248, 240, 0.72));
--bg-skills: linear-gradient(145deg, rgba(236, 223, 255, 0.72), rgba(244, 234, 255, 0.72));
--bg-projects: linear-gradient(145deg, rgba(255, 231, 218, 0.74), rgba(255, 240, 232, 0.74));
--bg-profiles: linear-gradient(145deg, rgba(223, 235, 255, 0.74), rgba(237, 245, 255, 0.74));
}
body {
background:
radial-gradient(circle at 12% 18%, var(--bg-grad-1), transparent 34%),
radial-gradient(circle at 86% 14%, var(--bg-grad-2), transparent 30%),
linear-gradient(150deg, var(--bg-main-start) 0%, var(--bg-main-mid) 50%, var(--bg-main-end) 100%);
background-attachment: fixed;
}
.nav-link.active {
color: var(--text-main);
border-color: rgba(22, 242, 179, 0.35);
background-color: rgba(22, 242, 179, 0.1);
}
.fade-in-section {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.is-visible {
opacity: 1;
transform: translateY(0);
}
.about-orb {
position: absolute;
width: 420px;
height: 420px;
right: -100px;
top: 50%;
transform: translateY(-50%) scale(0.8);
border-radius: 50%;
background: radial-gradient(circle, rgba(22, 242, 179, 0.15) 0%, rgba(61, 162, 255, 0.05) 45%, transparent 70%);
filter: blur(8px);
opacity: 0;
pointer-events: none;
z-index: -1;
transition: opacity 0.8s ease, transform 0.8s ease;
}
.is-visible .about-orb {
opacity: 1;
transform: translateY(-50%) scale(1);
}
</style>
</head>
<body class="text-textMain font-sans overflow-x-hidden" data-theme="dark">
<header
class="fixed top-0 left-0 w-full z-50 border-b border-borderBase bg-navBg backdrop-blur-md transition-all duration-300"
id="navbar">
<div class="w-full max-w-[1120px] mx-auto min-h-[66px] flex items-center justify-between px-4 sm:px-6">
<div class="font-mono text-accent text-sm sm:text-base tracking-wider font-bold"><Rohan.dev/></div>
<nav class="flex items-center gap-1 sm:gap-3 flex-wrap justify-end">
<a class="nav-link font-mono no-underline text-textSoft text-[0.75rem] sm:text-sm px-2 sm:px-3 py-1.5 rounded-lg border border-transparent transition-all hover:text-textMain hover:border-[#16f2b359] hover:bg-[#16f2b31a]"
href="#welcome">Welcome</a>
<a class="nav-link font-mono no-underline text-textSoft text-[0.75rem] sm:text-sm px-2 sm:px-3 py-1.5 rounded-lg border border-transparent transition-all hover:text-textMain hover:border-[#16f2b359] hover:bg-[#16f2b31a]"
href="#about">About</a>
<a class="nav-link font-mono no-underline text-textSoft text-[0.75rem] sm:text-sm px-2 sm:px-3 py-1.5 rounded-lg border border-transparent transition-all hover:text-textMain hover:border-[#16f2b359] hover:bg-[#16f2b31a]"
href="#skills">Skills</a>
<a class="nav-link font-mono no-underline text-textSoft text-[0.75rem] sm:text-sm px-2 sm:px-3 py-1.5 rounded-lg border border-transparent transition-all hover:text-textMain hover:border-[#16f2b359] hover:bg-[#16f2b31a]"
href="#projects">Projects</a>
<a class="nav-link font-mono no-underline text-textSoft text-[0.75rem] sm:text-sm px-2 sm:px-3 py-1.5 rounded-lg border border-transparent transition-all hover:text-textMain hover:border-[#16f2b359] hover:bg-[#16f2b31a]"
href="#profiles">Profiles</a>
<button
class="ml-2 font-mono text-textMain border border-borderBase rounded-lg w-8 h-8 sm:w-10 sm:h-10 flex items-center justify-center bg-[#3da2ff14] transition-all hover:border-[#16f2b373] hover:bg-[#16f2b31f]"
id="theme-toggle" type="button">
<span id="theme-icon">🌙</span>
</button>
</nav>
</div>
</header>
<main>
<section id="welcome"
class="relative flex items-center justify-center pt-24 px-4 sm:px-6 pb-14 min-h-screen overflow-hidden isolate">
<div class="absolute inset-0 -z-10 opacity-95" style="background: var(--bg-welcome);"></div>
<div class="w-full max-w-[1120px] mx-auto fade-in-section">
<article class="p-6 md:p-12 border border-borderBase rounded-2xl shadow-custom max-w-[1020px] mx-auto"
style="background: linear-gradient(155deg, var(--hero-grad-a), var(--hero-grad-b));">
<p class="font-mono text-[0.88rem] text-accent tracking-widest uppercase mb-4">Welcome</p>
<h1
class="font-mono text-4xl sm:text-5xl lg:text-[4rem] leading-tight mb-4 font-bold text-textMain">
MD. ROHAN MULLA</h1>
<p class="text-textMain text-lg sm:text-xl mb-3">Computer Science Undergraduate & Developer</p>
<p class="text-textSoft leading-relaxed text-base sm:text-lg max-w-[760px]">I design clean,
practical software solutions and enjoy turning complex logic into reliable products through
code.</p>
<p class="mt-4 mb-8 text-accent font-mono text-sm sm:text-[0.94rem]">$ Building systems with
precision, structure, and purpose.</p>
<!-- <a href="#"
class="inline-flex items-center gap-2 px-6 py-3 font-mono text-sm font-bold text-[#050a13] bg-accent rounded-lg transition-all hover:bg-[#3da2ff] hover:-translate-y-1 shadow-[0_4px_14px_rgba(22,242,179,0.3)] hover:shadow-[0_6px_20px_rgba(61,162,255,0.4)]">
<svg class="w-5 h-5" 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="M12 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z">
</path>
</svg>
Download Resume
</a> -->
<a href="https://drive.google.com/uc?export=download&id=1QKt6AaB1JDziBcVTdbCYhjJb0suxkUuX"
class="inline-flex items-center gap-2 px-6 py-3 font-mono text-sm font-bold text-bgBase bg-accent rounded-lg transition-all duration-300 hover:bg-accentAlt hover:-translate-y-1 shadow-[0_8px_16px_var(--bg-grad-1)] hover:shadow-[0_12px_20px_var(--bg-grad-2)]"
target="_blank">
<svg class="w-5 h-5" 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="M12 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z">
</path>
</svg>
Download Resume
</a>
</article>
</div>
</section>
<section id="about"
class="relative flex items-center justify-center pt-24 px-4 sm:px-6 pb-14 min-h-screen overflow-hidden isolate">
<div class="absolute inset-0 -z-10 opacity-95" style="background: var(--bg-about);"></div>
<div class="about-orb"></div>
<div
class="w-full max-w-[1120px] mx-auto border border-borderBase rounded-2xl bg-panel shadow-custom p-6 md:p-10 fade-in-section transition-transform duration-300 hover:-translate-y-1 hover:border-[#16f2b355] hover:shadow-[0_18px_40px_rgba(5,18,26,0.5)]">
<p class="font-mono text-[0.88rem] text-accent tracking-widest uppercase mb-4">About Me</p>
<h2 class="font-mono text-2xl sm:text-3xl md:text-4xl mb-4 font-bold text-textMain">Engineer Mindset,
Problem-Solving Focus</h2>
<p class="text-textSoft leading-relaxed text-base sm:text-lg max-w-[800px]">I am a B.Sc. in Computer
Science and Engineering student at Rabindra Maitree University, with expected graduation in 2026. I
bring strong analytical thinking and a passion for solving complex problems through structured
reasoning.</p>
<a href="https://drive.google.com/file/d/1QKt6AaB1JDziBcVTdbCYhjJb0suxkUuX/view?usp=drive_link"
class="inline-flex items-center gap-2 mt-6 px-5 py-2.5 font-mono text-sm text-accent border border-[#16f2b359] bg-[#16f2b30a] rounded-lg transition-all hover:bg-[#16f2b324] hover:text-[#e9fff7] hover:border-[#16f2b3bd]"
target="_blank">
<svg class="w-4 h-4" 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="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
View Full Resume
</a>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6 mt-8">
<article
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col">
<h3 class="font-mono text-lg text-accentAlt mb-4 group-hover:text-accent transition-colors">
Academic Track</h3>
<p class="text-textSoft mb-2">Program: B.Sc. in Computer Science and Engineering</p>
<p class="text-textSoft mb-2">University: Rabindra Maitree University</p>
<p class="text-textSoft font-bold text-textMain">Expected Graduation: 2026</p>
</article>
<article
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col">
<h3 class="font-mono text-lg text-accentAlt mb-4 group-hover:text-accent transition-colors">Core
Approach</h3>
<div class="flex flex-wrap gap-2">
<span
class="border border-[#3da2ff66] rounded-full text-[#c6dcff] px-4 py-1.5 text-sm bg-[#3da2ff0a]">Analytical
Thinking</span>
<span
class="border border-[#3da2ff66] rounded-full text-[#c6dcff] px-4 py-1.5 text-sm bg-[#3da2ff0a]">Structured
Reasoning</span>
<span
class="border border-[#3da2ff66] rounded-full text-[#c6dcff] px-4 py-1.5 text-sm bg-[#3da2ff0a]">Practical
Engineering</span>
</div>
</article>
</div>
</div>
</section>
<section id="skills"
class="relative flex items-center justify-center pt-24 px-4 sm:px-6 pb-14 min-h-screen overflow-hidden isolate">
<div class="absolute inset-0 -z-10 opacity-95" style="background: var(--bg-skills);"></div>
<div
class="w-full max-w-[1120px] mx-auto border border-borderBase rounded-2xl bg-panel shadow-custom p-6 md:p-10 fade-in-section">
<p class="font-mono text-[0.88rem] text-accent tracking-widest uppercase mb-4">Skills</p>
<h2 class="font-mono text-2xl sm:text-3xl md:text-4xl mb-6 font-bold text-textMain">Technical Stack</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<article
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col">
<h3 class="font-mono text-lg text-accentAlt mb-4 group-hover:text-accent transition-colors">
Programming Languages</h3>
<ul class="flex flex-col gap-3 list-none text-textSoft">
<li class="flex items-center"><span class="text-accent font-mono mr-2">>_</span> C</li>
<li class="flex items-center"><span class="text-accent font-mono mr-2">>_</span> C++</li>
<li class="flex items-center"><span class="text-accent font-mono mr-2">>_</span> Python
(Proficient)</li>
</ul>
</article>
<article
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col">
<h3 class="font-mono text-lg text-accentAlt mb-4 group-hover:text-accent transition-colors">
Machine Learning</h3>
<ul class="flex flex-col gap-3 list-none text-textSoft">
<li class="flex items-center"><span class="text-accent font-mono mr-2">>_</span>
Scikit-learn</li>
<li class="flex items-center"><span class="text-accent font-mono mr-2">>_</span> Feature
Engineering</li>
<li class="flex items-center"><span class="text-accent font-mono mr-2">>_</span> Data
Preprocessing</li>
</ul>
</article>
<article
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col">
<h3 class="font-mono text-lg text-accentAlt mb-4 group-hover:text-accent transition-colors">Web
Development</h3>
<ul class="flex flex-col gap-3 list-none text-textSoft">
<li class="flex items-center"><span class="text-accent font-mono mr-2">>_</span> HTML</li>
<li class="flex items-center"><span class="text-accent font-mono mr-2">>_</span> CSS</li>
<li class="flex items-center"><span class="text-accent font-mono mr-2">>_</span> JavaScript
</li>
<li class="flex items-center"><span class="text-accent font-mono mr-2">>_</span> FastAPI
</li>
</ul>
</article>
</div>
<div
class="mt-8 p-4 rounded-xl border border-[#16f2b352] bg-[#16f2b314] flex items-center justify-center gap-3">
<span class="text-2xl">🏆</span>
<p class="text-accentAlt font-medium">Solved 500+ problems in various Online Judges.</p>
</div>
</div>
</section>
<section id="projects"
class="relative flex items-center justify-center pt-24 px-4 sm:px-6 pb-14 min-h-screen overflow-hidden isolate">
<div class="absolute inset-0 -z-10 opacity-95" style="background: var(--bg-projects);"></div>
<div
class="w-full max-w-[1120px] mx-auto border border-borderBase rounded-2xl bg-panel shadow-custom p-6 md:p-10 fade-in-section">
<p class="font-mono text-[0.88rem] text-accent tracking-widest uppercase mb-4">Projects</p>
<h2 class="font-mono text-2xl sm:text-3xl md:text-4xl mb-6 font-bold text-textMain">Selected Work</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<article
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col h-full">
<h3 class="font-mono text-lg text-accentAlt mb-4 group-hover:text-accent transition-colors">
Social Network Ads (ML)</h3>
<div class="text-textSoft flex-grow space-y-2 mb-6 text-sm">
<p>• Implemented end-to-end ML pipeline.</p>
<p>• Built classification model using Python and scikit-learn.</p>
<p>• Performed data preprocessing and model evaluation.</p>
<p>• Deployed prediction API using FastAPI.</p>
</div>
<div class="flex gap-3 mt-auto">
<a class="text-textMain border border-[#3da2ff85] rounded-lg text-sm px-4 py-2 bg-[#3da2ff1a] transition-all hover:border-[#16f2b3bd] hover:bg-[#16f2b324] hover:text-[#e9fff7] w-full text-center font-medium"
href="https://github.com/mullarohan/Classification_Social_Network_Ads"
target="_blank">Code / GitLink</a>
</div>
</article>
<article
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col h-full">
<h3 class="font-mono text-lg text-accentAlt mb-4 group-hover:text-accent transition-colors">
Diabetes Prediction App</h3>
<div class="text-textSoft flex-grow space-y-2 mb-6 text-sm">
<p>• Implemented end-to-end ML pipeline.</p>
<p>• Built classification model using Python and scikit-learn.</p>
<p>• Performed data preprocessing and model evaluation.</p>
<p>• Deployed prediction API using FastAPI.</p>
</div>
<div class="flex gap-2 mt-auto">
<a class="flex-1 text-textMain border border-[#3da2ff85] rounded-lg text-sm px-2 py-2 bg-[#3da2ff1a] transition-all hover:border-[#16f2b3bd] hover:bg-[#16f2b324] hover:text-[#e9fff7] text-center font-medium"
href="https://github.com/mullarohan/Diabetes_predictor" target="_blank">GitLink</a>
<a class="flex-1 text-textMain border border-[#3da2ff85] rounded-lg text-sm px-2 py-2 bg-[#3da2ff1a] transition-all hover:border-[#16f2b3bd] hover:bg-[#16f2b324] hover:text-[#e9fff7] text-center font-medium"
href="https://huggingface.co/spaces/MullaRohan/diabetes_prediction" target="_blank">Live
(HF)</a>
</div>
</article>
<article
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col h-full">
<h3 class="font-mono text-lg text-accentAlt mb-4 group-hover:text-accent transition-colors">CLI
Banking System</h3>
<div class="text-textSoft flex-grow mb-6">
<p class="py-1 text-sm"><span class="text-accentAlt">Tech:</span> Python</p>
<div class="text-textSoft space-y-2 mt-3 text-sm">
<p>• A command-line based banking system built entirely in Python.</p>
<p>• Implemented core functionalities like account management.</p>
<p>• Uses CSV for data storage and handling.</p>
</div>
</div>
<div class="flex gap-3 mt-auto">
<a class="text-textMain border border-[#3da2ff85] rounded-lg text-sm px-4 py-2 bg-[#3da2ff1a] transition-all hover:border-[#16f2b3bd] hover:bg-[#16f2b324] hover:text-[#e9fff7] w-full text-center font-medium"
href="https://github.com/mullarohan/PyBank" target="_blank">Code / GitLink</a>
</div>
</article>
</div>
</div>
</section>
<section id="profiles"
class="relative flex items-center justify-center pt-24 px-4 sm:px-6 pb-14 min-h-screen overflow-hidden isolate">
<div class="absolute inset-0 -z-10 opacity-95" style="background: var(--bg-profiles);"></div>
<div
class="w-full max-w-[1120px] mx-auto border border-borderBase rounded-2xl bg-panel shadow-custom p-6 md:p-10 fade-in-section">
<p class="font-mono text-[0.88rem] text-accent tracking-widest uppercase mb-4">Online Judges &
Profiles</p>
<h2 class="font-mono text-2xl sm:text-3xl md:text-4xl mb-6 font-bold text-textMain">Connect And Verify
My Work</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 mb-10">
<a href="https://www.linkedin.com/in/mullarohan/" target="_blank" rel="noreferrer noopener"
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col">
<h3 class="font-mono text-lg text-accentAlt mb-1 group-hover:text-accent transition-colors">
Linkedin</h3>
<p class="text-[#d0e2ff] text-sm mt-auto">linkedin.com/in/mullarohan/</p>
</a>
<a href="https://www.facebook.com/MullaRohan/" target="_blank" rel="noreferrer noopener"
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col">
<h3 class="font-mono text-lg text-accentAlt mb-1 group-hover:text-accent transition-colors">
Facebook</h3>
<p class="text-[#d0e2ff] text-sm mt-auto">facebook.com/MullaRohan</p>
</a>
<a href="https://github.com/MullaRohan" target="_blank" rel="noreferrer noopener"
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col">
<h3 class="font-mono text-lg text-accentAlt mb-1 group-hover:text-accent transition-colors">[GH]
GitHub</h3>
<p class="text-[#d0e2ff] text-sm mt-auto">github.com/MullaRohan</p>
</a>
<a href="https://codeforces.com/profile/MullaRohan" target="_blank" rel="noreferrer noopener"
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col">
<h3 class="font-mono text-lg text-accentAlt mb-1 group-hover:text-accent transition-colors">[CF]
Codeforces</h3>
<p class="text-[#d0e2ff] text-sm mt-auto">codeforces.com/profile/MullaRohan</p>
</a>
<a href="https://www.codechef.com/users/mullarohan" target="_blank" rel="noreferrer noopener"
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col">
<h3 class="font-mono text-lg text-accentAlt mb-1 group-hover:text-accent transition-colors">[CC]
CodeChef</h3>
<p class="text-[#d0e2ff] text-sm mt-auto">codechef.com/users/mullarohan</p>
</a>
<a href="https://wakatime.com/@mullarohan" target="_blank" rel="noreferrer noopener"
class="border border-borderBase rounded-xl bg-cardBg p-6 transition-all duration-300 hover:border-[#16f2b380] hover:-translate-y-1 hover:bg-[#16f2b30a] group flex flex-col">
<h3 class="font-mono text-lg text-accentAlt mb-1 group-hover:text-accent transition-colors">[WT]
WakaTime</h3>
<p class="text-[#d0e2ff] text-sm mt-auto">wakatime.com/@mullarohan</p>
</a>
</div>
<div
class="pt-6 border-t border-borderBase bg-[#0a122240] -mx-6 md:-mx-10 -mb-6 md:-mb-10 px-6 md:px-10 pb-6 md:pb-10 rounded-b-2xl">
<h3 class="font-mono text-lg text-accent mb-4">Contact Info</h3>
<div class="grid gap-3 md:flex md:gap-8 flex-wrap">
<p class="text-textSoft flex items-center gap-2"><span class="text-xl">✉</span>
rohanmulla.cs@gmail.com</p>
<p class="text-textSoft flex items-center gap-2"><span class="text-xl">✉</span>
contact@mullarohan.pro.bd</p>
<p class="text-textSoft flex items-center gap-2"><span class="text-xl">📞</span> +880 1867799622
</p>
<p class="text-textSoft flex items-center gap-2"><span class="text-xl">📍</span> Mirpur,
Kushtia, Bangladesh</p>
</div>
</div>
</div>
</section>
</main>
<div class="fixed bottom-6 right-6 z-50 flex flex-col items-end gap-2" id="quick-menu-wrap">
<div class="flex-col gap-2 bg-panelSolid border border-borderBase p-2 rounded-xl shadow-custom hidden transition-opacity"
id="quick-menu-panel">
<a class="block px-4 py-2 text-sm text-textSoft hover:text-textMain hover:bg-[#16f2b31a] rounded-lg transition-colors"
href="#welcome">↑ Top</a>
<a class="block px-4 py-2 text-sm text-textSoft hover:text-textMain hover:bg-[#16f2b31a] rounded-lg transition-colors"
href="#about">About</a>
<a class="block px-4 py-2 text-sm text-textSoft hover:text-textMain hover:bg-[#16f2b31a] rounded-lg transition-colors"
href="#skills">Skills</a>
<a class="block px-4 py-2 text-sm text-textSoft hover:text-textMain hover:bg-[#16f2b31a] rounded-lg transition-colors"
href="#projects">Projects</a>
</div>
<button
class="w-12 h-12 rounded-full border border-borderBase bg-panelSolid text-accent shadow-custom cursor-pointer text-2xl flex items-center justify-center transition-all hover:border-[#16f2b373] hover:scale-105"
id="quick-menu-toggle">
⚡
</button>
</div>
<footer class="bg-panelSolid border-t border-borderBase py-6 text-center text-textSoft">
<p>© 2026 Mulla Rohan. All rights reserved.</p>
</footer>
<script>
const themeToggle = document.getElementById("theme-toggle");
const themeIcon = document.getElementById("theme-icon");
const storageKey = "portfolio-theme";
function setTheme(theme) {
document.body.setAttribute("data-theme", theme);
themeIcon.textContent = theme === "light" ? "☀" : "🌙";
localStorage.setItem(storageKey, theme);
}
const savedTheme = localStorage.getItem(storageKey) || "dark";
setTheme(savedTheme);
themeToggle.addEventListener("click", () => {
const currentTheme = document.body.getAttribute("data-theme");
setTheme(currentTheme === "dark" ? "light" : "dark");
});
const quickMenuToggle = document.getElementById("quick-menu-toggle");
const quickMenuPanel = document.getElementById("quick-menu-panel");
quickMenuToggle.addEventListener("click", () => {
quickMenuPanel.style.display = quickMenuPanel.style.display === "flex" ? "none" : "flex";
});
document.querySelectorAll('#quick-menu-panel a').forEach(link => {
link.addEventListener('click', () => {
quickMenuPanel.style.display = "none";
});
});
const sections = document.querySelectorAll("section");
const navLinks = document.querySelectorAll(".nav-link");
const observerOptions = { root: null, rootMargin: '0px', threshold: 0.3 };
const observer = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.querySelector('.fade-in-section')?.classList.add('is-visible');
const currentId = entry.target.id;
navLinks.forEach((link) => {
link.classList.toggle("active", link.getAttribute("href") === `#${currentId}`);
});
}
});
}, observerOptions);
sections.forEach((section) => observer.observe(section));
</script>
</body>
</html>