-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1131 lines (1047 loc) Β· 55.2 KB
/
index.html
File metadata and controls
1131 lines (1047 loc) Β· 55.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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sandip Ghosh β AI & ML Engineer</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=Syne:wght@400;500;600;700;800&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&family=Cabinet+Grotesk:wght@300;400;500;700;800&display=swap" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/ScrollTrigger.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
display: ['Syne', 'sans-serif'],
body: ['Cabinet Grotesk', 'sans-serif'],
mono: ['DM Mono', 'monospace'],
},
colors: {
bg: '#080B14',
surface: '#0D1220',
card: '#111827',
border: '#1E2A3A',
cyan: '#00E5FF',
indigo: '#6366F1',
violet: '#8B5CF6',
muted: '#4B5E7A',
dim: '#8FA3BE',
light: '#C8D9EE',
white: '#F0F6FF',
},
},
},
};
</script>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background-color: #080B14;
color: #C8D9EE;
font-family: 'Cabinet Grotesk', sans-serif;
overflow-x: hidden;
cursor: none;
}
#cursor-dot {
width: 6px; height: 6px;
background: #00E5FF;
border-radius: 50%;
position: fixed; top: 0; left: 0;
pointer-events: none; z-index: 9999;
transform: translate(-50%, -50%);
transition: transform 0.08s ease;
}
#cursor-ring {
width: 32px; height: 32px;
border: 1.5px solid rgba(0,229,255,0.45);
border-radius: 50%;
position: fixed; top: 0; left: 0;
pointer-events: none; z-index: 9998;
transform: translate(-50%, -50%);
transition: transform 0.22s ease, width 0.22s ease, height 0.22s ease, border-color 0.22s ease;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
width: 48px; height: 48px;
border-color: rgba(0,229,255,0.8);
}
body::before {
content: '';
position: fixed; inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none; z-index: 0; opacity: 0.35;
}
.grid-bg {
background-image:
linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
background-size: 60px 60px;
}
.orb {
position: absolute;
border-radius: 50%;
filter: blur(90px);
pointer-events: none;
z-index: 0;
}
nav {
position: fixed; top: 0; width: 100%; z-index: 100;
backdrop-filter: blur(18px);
background: rgba(8,11,20,0.75);
border-bottom: 1px solid rgba(30,42,58,0.6);
}
.nav-link {
color: #4B5E7A;
font-family: 'DM Mono', monospace;
font-size: 0.75rem;
letter-spacing: 0.08em;
text-transform: uppercase;
transition: color 0.25s;
position: relative;
}
.nav-link::after {
content: ''; position: absolute; bottom: -4px; left: 0;
width: 0; height: 1px;
background: #00E5FF;
transition: width 0.3s ease;
}
.nav-link:hover { color: #00E5FF; }
.nav-link:hover::after { width: 100%; }
.section-label {
font-family: 'DM Mono', monospace;
font-size: 0.7rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #00E5FF;
}
.section-title {
font-family: 'Syne', sans-serif;
font-weight: 800;
color: #F0F6FF;
line-height: 1.1;
}
.typed-cursor {
display: inline-block;
width: 3px; height: 1em;
background: #00E5FF;
margin-left: 4px;
vertical-align: middle;
animation: blink 0.9s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.skill-tag {
display: inline-flex;
align-items: center;
padding: 0.45rem 1rem;
border-radius: 9999px;
font-family: 'DM Mono', monospace;
font-size: 0.72rem;
letter-spacing: 0.04em;
border: 1px solid rgba(30,42,58,0.8);
background: rgba(13,18,32,0.7);
color: #8FA3BE;
cursor: default;
transition: all 0.25s ease;
backdrop-filter: blur(8px);
}
.skill-tag:hover {
border-color: #00E5FF;
color: #00E5FF;
background: rgba(0,229,255,0.07);
transform: translateY(-2px);
box-shadow: 0 0 14px rgba(0,229,255,0.18);
}
.project-card {
background: rgba(13,18,32,0.8);
border: 1px solid rgba(30,42,58,0.8);
border-radius: 1.25rem;
padding: 2rem;
position: relative;
overflow: hidden;
transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
backdrop-filter: blur(12px);
}
.project-card::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(0,229,255,0.055), transparent 60%);
opacity: 0;
transition: opacity 0.4s ease;
pointer-events: none;
}
.project-card:hover::before { opacity: 1; }
.project-card:hover {
transform: translateY(-6px);
border-color: rgba(0,229,255,0.3);
box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(0,229,255,0.08);
}
.project-card.featured {
border-color: rgba(99,102,241,0.4);
background: linear-gradient(135deg, rgba(13,18,32,0.95) 0%, rgba(99,102,241,0.06) 100%);
}
.project-card.featured:hover {
border-color: rgba(99,102,241,0.7);
box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(99,102,241,0.15);
}
.timeline-line {
position: absolute; left: 0; top: 0; bottom: 0;
width: 1px;
background: linear-gradient(180deg, transparent, rgba(0,229,255,0.4) 20%, rgba(99,102,241,0.4) 80%, transparent);
}
.timeline-dot {
width: 12px; height: 12px;
border-radius: 50%;
background: #00E5FF;
box-shadow: 0 0 12px rgba(0,229,255,0.6);
flex-shrink: 0;
}
.timeline-dot.indigo {
background: #6366F1;
box-shadow: 0 0 12px rgba(99,102,241,0.6);
}
.cert-chip {
background: rgba(13,18,32,0.9);
border: 1px solid rgba(30,42,58,0.8);
border-radius: 0.75rem;
padding: 1rem 1.25rem;
transition: border-color 0.25s, transform 0.25s;
}
.cert-chip:hover {
border-color: rgba(99,102,241,0.5);
transform: translateY(-3px);
}
.contact-link {
display: flex; align-items: center; gap: 0.75rem;
padding: 1rem 1.5rem;
border: 1px solid rgba(30,42,58,0.8);
border-radius: 0.875rem;
background: rgba(13,18,32,0.6);
color: #8FA3BE;
font-family: 'DM Mono', monospace;
font-size: 0.8rem;
text-decoration: none;
transition: all 0.25s ease;
backdrop-filter: blur(8px);
}
.contact-link:hover {
border-color: #00E5FF;
color: #00E5FF;
background: rgba(0,229,255,0.06);
transform: translateX(4px);
}
.btn-primary {
display: inline-flex; align-items: center; gap: 0.5rem;
padding: 0.85rem 2rem;
border-radius: 9999px;
background: linear-gradient(135deg, #6366F1, #00E5FF);
color: #080B14;
font-family: 'Syne', sans-serif;
font-weight: 700;
font-size: 0.875rem;
letter-spacing: 0.04em;
text-decoration: none;
transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
position: relative;
overflow: hidden;
}
.btn-primary::after {
content: '';
position: absolute; inset: 0;
background: rgba(255,255,255,0.15);
opacity: 0;
transition: opacity 0.25s;
}
.btn-primary:hover {
transform: scale(1.04);
filter: brightness(1.1);
box-shadow: 0 0 32px rgba(99,102,241,0.45);
}
.btn-primary:hover::after { opacity: 1; }
.btn-outline {
display: inline-flex; align-items: center; gap: 0.5rem;
padding: 0.85rem 2rem;
border-radius: 9999px;
border: 1.5px solid rgba(0,229,255,0.4);
color: #00E5FF;
font-family: 'Syne', sans-serif;
font-weight: 600;
font-size: 0.875rem;
letter-spacing: 0.04em;
text-decoration: none;
transition: all 0.25s ease;
}
.btn-outline:hover {
background: rgba(0,229,255,0.08);
border-color: #00E5FF;
box-shadow: 0 0 20px rgba(0,229,255,0.2);
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #080B14; }
::-webkit-scrollbar-thumb { background: rgba(0,229,255,0.3); border-radius: 4px; }
.lang-badge {
display: inline-flex; align-items: center; gap: 0.5rem;
padding: 0.4rem 0.9rem;
background: rgba(13,18,32,0.9);
border: 1px solid rgba(30,42,58,0.8);
border-radius: 9999px;
font-family: 'DM Mono', monospace;
font-size: 0.72rem;
color: #8FA3BE;
}
.lang-dot {
width: 6px; height: 6px;
border-radius: 50%;
background: #00E5FF;
box-shadow: 0 0 6px #00E5FF;
}
.reveal { opacity: 0; transform: translateY(30px); }
#mobile-menu {
display: none;
position: fixed; top: 56px; left: 0; right: 0;
background: rgba(8,11,20,0.96);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(30,42,58,0.6);
padding: 1.5rem;
flex-direction: column; gap: 1.5rem;
z-index: 99;
}
#mobile-menu.open { display: flex; }
#progress-bar {
position: fixed; top: 0; left: 0; height: 2px;
background: linear-gradient(90deg, #6366F1, #00E5FF);
z-index: 101; width: 0%;
transition: width 0.1s linear;
}
.featured-badge {
position: absolute; top: 1.25rem; right: 1.25rem;
padding: 0.25rem 0.75rem;
border-radius: 9999px;
background: rgba(99,102,241,0.2);
border: 1px solid rgba(99,102,241,0.5);
font-family: 'DM Mono', monospace;
font-size: 0.65rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #8B5CF6;
}
</style>
</head>
<body class="grid-bg">
<div id="progress-bar"></div>
<div id="cursor-dot"></div>
<div id="cursor-ring"></div>
<nav>
<div class="max-w-7xl mx-auto px-6 py-4 flex items-center justify-between">
<a href="#hero" class="font-display font-bold text-white text-lg tracking-tight">
SG<span class="text-cyan">.</span>
</a>
<div class="hidden md:flex items-center gap-8">
<a href="#about" class="nav-link">About</a>
<a href="#skills" class="nav-link">Skills</a>
<a href="#projects" class="nav-link">Projects</a>
<a href="#education" class="nav-link">Education</a>
<a href="#contact" class="nav-link">Contact</a>
</div>
<a href="mailto:sandipghosh0801@gmail.com" class="hidden md:inline-flex btn-primary text-sm py-2 px-5">
Hire Me
</a>
<button id="hamburger" class="md:hidden flex flex-col gap-1.5 p-2" aria-label="Menu">
<span class="block w-5 h-0.5 bg-light transition-all" id="h1"></span>
<span class="block w-5 h-0.5 bg-light transition-all" id="h2"></span>
<span class="block w-5 h-0.5 bg-light transition-all" id="h3"></span>
</button>
</div>
</nav>
<div id="mobile-menu">
<a href="#about" class="nav-link text-base" onclick="closeMobile()">About</a>
<a href="#skills" class="nav-link text-base" onclick="closeMobile()">Skills</a>
<a href="#projects" class="nav-link text-base" onclick="closeMobile()">Projects</a>
<a href="#education" class="nav-link text-base" onclick="closeMobile()">Education</a>
<a href="#contact" class="nav-link text-base" onclick="closeMobile()">Contact</a>
<a href="mailto:sandipghosh0801@gmail.com" class="btn-primary text-center justify-center">Hire Me</a>
</div>
<section id="hero" class="relative min-h-screen flex items-center justify-center overflow-hidden pt-20">
<div class="orb w-96 h-96 bg-indigo opacity-20" style="top:-80px;left:-100px;"></div>
<div class="orb w-80 h-80 bg-cyan opacity-10" style="bottom:60px;right:-80px;"></div>
<div class="orb w-64 h-64" style="top:40%;left:55%;background:#8B5CF6;opacity:0.12;filter:blur(70px);"></div>
<div class="relative z-10 max-w-5xl mx-auto px-6 text-center">
<div id="hero-pill" class="inline-flex items-center gap-2 mb-8 px-4 py-2 rounded-full border border-cyan/20 bg-cyan/5 backdrop-blur-sm">
<span class="w-2 h-2 rounded-full bg-cyan animate-pulse"></span>
<span class="font-mono text-xs text-cyan tracking-widest uppercase">Available for Opportunities Β· 2026</span>
</div>
<h1 id="hero-title" class="font-display font-extrabold text-white leading-none mb-6"
style="font-size: clamp(3rem, 9vw, 7rem);">
Sandip<br/>Ghosh
</h1>
<div class="flex items-center justify-center gap-3 mb-8 font-mono text-dim text-sm md:text-base">
<span class="text-muted">$ whoami β</span>
<span id="typed-text" class="text-cyan font-medium"></span>
<span class="typed-cursor"></span>
</div>
<p id="hero-desc" class="max-w-2xl mx-auto text-dim text-lg leading-relaxed mb-12">
Aspiring Full-Stack AI Engineer crafting intelligent, scalable applications at the
intersection of <span class="text-white font-semibold">Generative AI</span>,
<span class="text-white font-semibold">Computer Vision</span>, and
<span class="text-white font-semibold">Full-Stack Engineering</span>.
</p>
<div id="hero-cta" class="flex flex-wrap items-center justify-center gap-4">
<a href="#projects" class="btn-primary">
<svg class="w-4 h-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/></svg>
View Projects
</a>
<a href="https://github.com/QuantumCoderrr" target="_blank" class="btn-outline">
<svg class="w-4 h-4" viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-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.029-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.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z"/></svg>
GitHub
</a>
</div>
<div id="scroll-cue" class="mt-20 flex flex-col items-center gap-2 opacity-40">
<span class="font-mono text-xs text-muted tracking-widest">SCROLL</span>
<div class="w-px h-12 bg-gradient-to-b from-cyan to-transparent animate-pulse"></div>
</div>
</div>
</section>
<section id="about" class="relative py-32 overflow-hidden">
<div class="orb w-72 h-72 bg-violet opacity-10" style="top:0;right:10%;"></div>
<div class="max-w-6xl mx-auto px-6">
<div class="grid md:grid-cols-2 gap-16 items-center">
<div class="reveal">
<p class="section-label mb-3">01 / About</p>
<h2 class="section-title text-4xl md:text-5xl mb-6">
Building the<br/>
<span class="text-transparent bg-clip-text bg-gradient-to-r from-indigo to-cyan">
Future with AI
</span>
</h2>
<p class="text-dim text-lg leading-relaxed mb-6">
I'm a final-year B.Tech student in <span class="text-white">Artificial Intelligence & Machine Learning</span>
at St. Thomas' College of Engineering & Technology, Kolkata.
</p>
<p class="text-dim text-lg leading-relaxed mb-8">
My passion lies in the <span class="text-white">Generative AI ecosystem</span> β from LLM orchestration
and RAG architectures to real-time computer vision systems. I'm actively building
enterprise-grade AI solutions and deepening my expertise in LangChain, prompt engineering,
and AI-native application design.
</p>
<div class="flex flex-wrap gap-3">
<span class="lang-badge"><span class="lang-dot"></span>English</span>
<span class="lang-badge"><span class="lang-dot" style="background:#6366F1;box-shadow:0 0 6px #6366F1;"></span>Hindi</span>
<span class="lang-badge"><span class="lang-dot" style="background:#8B5CF6;box-shadow:0 0 6px #8B5CF6;"></span>Bengali</span>
</div>
</div>
<div class="reveal grid grid-cols-2 gap-4">
<div class="cert-chip col-span-2 flex items-center gap-4">
<div class="w-12 h-12 rounded-xl bg-gradient-to-br from-indigo to-cyan flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-bg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path d="M12 14l9-5-9-5-9 5 9 5z"/><path d="M12 14l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14z"/></svg>
</div>
<div>
<p class="text-white font-display font-bold text-sm">B.Tech AI & ML</p>
<p class="text-muted text-xs font-mono mt-0.5">St. Thomas' College of Engineering & Technology</p>
<p class="text-cyan text-xs font-mono mt-1">Class of 2026</p>
</div>
</div>
<div class="cert-chip flex flex-col gap-2">
<span class="text-3xl font-display font-extrabold text-white">20+</span>
<span class="text-muted text-xs font-mono">Projects Shipped</span>
</div>
<div class="cert-chip flex flex-col gap-2">
<span class="text-3xl font-display font-extrabold text-cyan">AI</span>
<span class="text-muted text-xs font-mono">Primary Domain</span>
</div>
<div class="cert-chip flex flex-col gap-2">
<span class="text-2xl font-display font-extrabold text-violet">Open Source</span>
<span class="text-muted text-xs font-mono">Contributor</span>
</div>
<div class="cert-chip flex flex-col gap-2">
<span class="text-2xl font-display font-extrabold text-white">Hackathon</span>
<span class="text-muted text-xs font-mono">Enthusiast</span>
</div>
</div>
</div>
</div>
</section>
<section id="skills" class="relative py-32 overflow-hidden">
<div class="orb w-96 h-96 bg-cyan opacity-5" style="bottom:0;left:-100px;"></div>
<div class="max-w-6xl mx-auto px-6">
<div class="text-center mb-16 reveal">
<p class="section-label mb-3">02 / Skills</p>
<h2 class="section-title text-4xl md:text-5xl">Technical Arsenal</h2>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="reveal cert-chip">
<div class="flex items-center gap-3 mb-4">
<div class="w-8 h-8 rounded-lg bg-cyan/10 border border-cyan/20 flex items-center justify-center">
<svg class="w-4 h-4 text-cyan" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"/></svg>
</div>
<span class="font-display font-bold text-white text-sm">Languages</span>
</div>
<div class="flex flex-wrap gap-2">
<span class="skill-tag">Python</span>
<span class="skill-tag">Java</span>
<span class="skill-tag">C</span>
<span class="skill-tag">JavaScript</span>
<span class="skill-tag">HTML/CSS</span>
</div>
</div>
<div class="reveal cert-chip">
<div class="flex items-center gap-3 mb-4">
<div class="w-8 h-8 rounded-lg bg-violet/10 border border-violet/20 flex items-center justify-center">
<svg class="w-4 h-4 text-violet" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"/></svg>
</div>
<span class="font-display font-bold text-white text-sm">Generative AI & LLMs</span>
</div>
<div class="flex flex-wrap gap-2">
<span class="skill-tag">Prompt Engineering</span>
<span class="skill-tag">OpenAI API</span>
<span class="skill-tag">Gemini API</span>
<span class="skill-tag">LangChain</span>
<span class="skill-tag">RAG</span>
<span class="skill-tag">LLM Orchestration</span>
</div>
</div>
<div class="reveal cert-chip">
<div class="flex items-center gap-3 mb-4">
<div class="w-8 h-8 rounded-lg bg-indigo/10 border border-indigo/20 flex items-center justify-center">
<svg class="w-4 h-4 text-indigo" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M7 21a4 4 0 01-4-4V5a2 2 0 012-2h4a2 2 0 012 2v12a4 4 0 01-4 4zm0 0h12a2 2 0 002-2v-4a2 2 0 00-2-2h-2.343M11 7.343l1.657-1.657a2 2 0 012.828 0l2.829 2.829a2 2 0 010 2.828l-8.486 8.485M7 17h.01"/></svg>
</div>
<span class="font-display font-bold text-white text-sm">Machine Learning & AI</span>
</div>
<div class="flex flex-wrap gap-2">
<span class="skill-tag">Deep Learning</span>
<span class="skill-tag">Neural Networks</span>
<span class="skill-tag">Computer Vision</span>
<span class="skill-tag">NLP</span>
<span class="skill-tag">TensorFlow</span>
<span class="skill-tag">PyTorch</span>
<span class="skill-tag">Scikit-learn</span>
<span class="skill-tag">MediaPipe</span>
<span class="skill-tag">OpenCV</span>
</div>
</div>
<div class="reveal cert-chip">
<div class="flex items-center gap-3 mb-4">
<div class="w-8 h-8 rounded-lg bg-cyan/10 border border-cyan/20 flex items-center justify-center">
<svg class="w-4 h-4 text-cyan" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"/></svg>
</div>
<span class="font-display font-bold text-white text-sm">Web Development</span>
</div>
<div class="flex flex-wrap gap-2">
<span class="skill-tag">React</span>
<span class="skill-tag">Node.js</span>
<span class="skill-tag">Express.js</span>
<span class="skill-tag">PostgreSQL</span>
<span class="skill-tag">RESTful APIs</span>
<span class="skill-tag">Streamlit</span>
</div>
</div>
<div class="reveal cert-chip">
<div class="flex items-center gap-3 mb-4">
<div class="w-8 h-8 rounded-lg bg-violet/10 border border-violet/20 flex items-center justify-center">
<svg class="w-4 h-4 text-violet" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M3 15a4 4 0 004 4h9a5 5 0 10-.1-9.999 5.002 5.002 0 10-9.78 2.096A4.001 4.001 0 003 15z"/></svg>
</div>
<span class="font-display font-bold text-white text-sm">Cloud & DevOps</span>
</div>
<div class="flex flex-wrap gap-2">
<span class="skill-tag">Google Cloud</span>
<span class="skill-tag">Cloud Computing</span>
<span class="skill-tag">Git</span>
<span class="skill-tag">GitHub</span>
<span class="skill-tag">Docker</span>
</div>
</div>
<div class="reveal cert-chip">
<div class="flex items-center gap-3 mb-4">
<div class="w-8 h-8 rounded-lg bg-indigo/10 border border-indigo/20 flex items-center justify-center">
<svg class="w-4 h-4 text-indigo" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"/></svg>
</div>
<span class="font-display font-bold text-white text-sm">Data & Algorithms</span>
</div>
<div class="flex flex-wrap gap-2">
<span class="skill-tag">DSA</span>
<span class="skill-tag">Pandas</span>
<span class="skill-tag">NumPy</span>
<span class="skill-tag">LeetCode</span>
<span class="skill-tag">DBMS</span>
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="relative py-32 overflow-hidden">
<div class="orb w-96 h-96 bg-indigo opacity-10" style="top:50%;right:-100px;"></div>
<div class="max-w-6xl mx-auto px-6">
<div class="text-center mb-16 reveal">
<p class="section-label mb-3">03 / Projects</p>
<h2 class="section-title text-4xl md:text-5xl">Selected Work</h2>
</div>
<div class="reveal project-card featured mb-8">
<span class="featured-badge">β Featured</span>
<div class="grid md:grid-cols-5 gap-8 items-start">
<div class="md:col-span-3">
<div class="flex items-center gap-3 mb-4">
<div class="w-10 h-10 rounded-xl bg-indigo/20 border border-indigo/30 flex items-center justify-center flex-shrink-0">
<svg class="w-5 h-5 text-indigo" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/><path stroke-linecap="round" stroke-linejoin="round" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"/></svg>
</div>
<div>
<h3 class="font-display font-bold text-white text-xl">AttenDrive</h3>
<p class="text-muted font-mono text-xs">Driver Monitoring System</p>
</div>
</div>
<p class="text-dim leading-relaxed mb-5">
A real-time, event-triggered driver safety framework engineered to detect drowsiness
and complex distraction behaviours with minimal inference latency. Uses a
<span class="text-white">multi-stream architecture</span> that fuses lightweight
ocular/vehicular heuristics with heavy deep learning models for edge-hardware deployment.
</p>
<ul class="space-y-3 text-dim text-sm mb-6">
<li class="flex items-start gap-2">
<span class="text-cyan mt-0.5 flex-shrink-0">βΈ</span>
<p class="leading-relaxed">Implemented a <span class="text-white">Temporal Convolutional Network (TCN)</span> with Self-Attention to classify time-series distraction patterns.</p>
</li>
<li class="flex items-start gap-2">
<span class="text-cyan mt-0.5 flex-shrink-0">βΈ</span>
<p class="leading-relaxed">Multi-stream architecture optimises compute on edge hardware via heuristic + DL model fusion.</p>
</li>
<li class="flex items-start gap-2">
<span class="text-cyan mt-0.5 flex-shrink-0">βΈ</span>
<p class="leading-relaxed">Full-stack reporting pipeline with real-time alerts + PDF generation for post-drive analytics.</p>
</li>
</ul>
<div class="flex flex-wrap gap-2">
<span class="skill-tag" style="border-color:rgba(99,102,241,0.4);color:#8B5CF6;">Python</span>
<span class="skill-tag" style="border-color:rgba(99,102,241,0.4);color:#8B5CF6;">OpenCV</span>
<span class="skill-tag" style="border-color:rgba(99,102,241,0.4);color:#8B5CF6;">TensorFlow</span>
<span class="skill-tag" style="border-color:rgba(99,102,241,0.4);color:#8B5CF6;">MediaPipe</span>
<span class="skill-tag" style="border-color:rgba(99,102,241,0.4);color:#8B5CF6;">TCN + Attention</span>
</div>
</div>
<div class="md:col-span-2 relative mt-12 md:mt-14">
<div class="rounded-xl border border-indigo/20 bg-bg/60 p-4 font-mono text-[10px] md:text-xs backdrop-blur-sm shadow-2xl">
<div class="flex items-center gap-2 mb-4">
<span class="w-3 h-3 rounded-full bg-red-500/70"></span>
<span class="w-3 h-3 rounded-full bg-yellow-500/70"></span>
<span class="w-3 h-3 rounded-full bg-green-500/70"></span>
<span class="text-muted ml-2">attendrive_arch.py</span>
</div>
<div class="space-y-1.5 text-dim leading-relaxed">
<p><span class="text-violet">class</span> <span class="text-cyan">AttenDrive</span>:</p>
<p class="pl-4"><span class="text-violet">def</span> <span class="text-white">__init__</span>(self):</p>
<p class="pl-8 text-muted"># Multi-stream pipeline</p>
<p class="pl-8">self.ocular = <span class="text-cyan">EyeTracker</span>()</p>
<p class="pl-8">self.pose = <span class="text-cyan">MediaPipe</span>()</p>
<p class="pl-8">self.tcn = <span class="text-cyan">TCN_Attention</span>()</p>
<p class="pl-4 mt-3"><span class="text-violet">def</span> <span class="text-white">infer</span>(self, frame):</p>
<p class="pl-8 text-muted"># Fuse heuristics + DL</p>
<p class="pl-8">eye = self.ocular.process(frame)</p>
<p class="pl-8">body = self.pose.process(frame)</p>
<p class="pl-8 text-green-400">return self.tcn.classify(</p>
<p class="pl-12 text-green-400">eye, body, t=<span class="text-cyan">self.ts</span>)</p>
</div>
</div>
</div>
</div>
</div>
<div class="grid md:grid-cols-2 gap-6">
<div class="reveal project-card" data-tilt>
<div class="flex items-center gap-3 mb-4">
<div class="w-10 h-10 rounded-xl bg-cyan/10 border border-cyan/20 flex items-center justify-center flex-shrink-0">
<svg class="w-5 h-5 text-cyan" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"/></svg>
</div>
<div>
<h3 class="font-display font-bold text-white text-lg">NeuroDesk</h3>
<p class="text-muted font-mono text-xs">AI Productivity Toolkit</p>
</div>
</div>
<p class="text-dim text-sm leading-relaxed mb-5">
A full-stack AI productivity toolkit with modular endpoints for intelligent document processing,
text extraction, and workflow automation. Integrates Tesseract OCR with LLM APIs for
context-aware document summarization.
</p>
<ul class="space-y-2 text-dim text-xs mb-6">
<li class="flex items-start gap-2"><span class="text-cyan mt-0.5 flex-shrink-0">βΈ</span><p class="leading-relaxed">Automated OCRβLLM pipeline transforming unstructured text into structured data.</p></li>
<li class="flex items-start gap-2"><span class="text-cyan mt-0.5 flex-shrink-0">βΈ</span><p class="leading-relaxed">Precise prompt templates for context-aware extraction and summarization.</p></li>
<li class="flex items-start gap-2"><span class="text-cyan mt-0.5 flex-shrink-0">βΈ</span><p class="leading-relaxed">Iteratively tested Streamlit UI for seamless GenAI model interaction.</p></li>
</ul>
<div class="flex flex-wrap gap-2">
<span class="skill-tag">Python</span>
<span class="skill-tag">Streamlit</span>
<span class="skill-tag">Tesseract OCR</span>
<span class="skill-tag">LLM APIs</span>
<span class="skill-tag">NLP</span>
</div>
</div>
<div class="reveal project-card" data-tilt>
<div class="flex items-center gap-3 mb-4">
<div class="w-10 h-10 rounded-xl bg-violet/10 border border-violet/20 flex items-center justify-center flex-shrink-0">
<svg class="w-5 h-5 text-violet" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M8 12h.01M12 12h.01M16 12h.01M21 3H3a2 2 0 00-2 2v14a2 2 0 002 2h18a2 2 0 002-2V5a2 2 0 00-2-2z"/></svg>
</div>
<div>
<h3 class="font-display font-bold text-white text-lg">SocketTalk</h3>
<p class="text-muted font-mono text-xs">LAN Chat Application</p>
</div>
</div>
<p class="text-dim text-sm leading-relaxed mb-5">
A desktop-based LAN chat application featuring encrypted communication and a multithreaded
client-server architecture. Supports multiple concurrent users with real-time messaging,
emoji support, and message history encryption.
</p>
<ul class="space-y-2 text-dim text-xs mb-6">
<li class="flex items-start gap-2"><span class="text-violet mt-0.5 flex-shrink-0">βΈ</span><p class="leading-relaxed">Multithreaded Java Sockets supporting multiple simultaneous connections.</p></li>
<li class="flex items-start gap-2"><span class="text-violet mt-0.5 flex-shrink-0">βΈ</span><p class="leading-relaxed">Swing GUI with emoji support, timestamps, and auto-scrolling.</p></li>
<li class="flex items-start gap-2"><span class="text-violet mt-0.5 flex-shrink-0">βΈ</span><p class="leading-relaxed">Message history encryption strengthening data privacy and UX.</p></li>
</ul>
<div class="flex flex-wrap gap-2">
<span class="skill-tag">Java</span>
<span class="skill-tag">Sockets</span>
<span class="skill-tag">Multithreading</span>
<span class="skill-tag">Swing GUI</span>
<span class="skill-tag">Encryption</span>
</div>
</div>
</div>
</div>
</section>
<section id="education" class="relative py-32 overflow-hidden">
<div class="orb w-80 h-80 bg-cyan opacity-8" style="top:-40px;left:-60px;opacity:0.07;"></div>
<div class="max-w-4xl mx-auto px-6">
<div class="text-center mb-16 reveal">
<p class="section-label mb-3">04 / Education</p>
<h2 class="section-title text-4xl md:text-5xl">Academic Journey</h2>
</div>
<div class="relative pl-8 mb-32">
<div class="timeline-line"></div>
<div class="reveal relative mb-12">
<div class="absolute -left-[35px] top-8 flex items-center justify-center w-6 h-6">
<div class="timeline-dot indigo"></div>
</div>
<div class="cert-chip">
<div class="flex flex-wrap items-start justify-between gap-4 mb-3">
<div>
<h3 class="font-display font-bold text-white text-lg">MSc in Artificial Intelligence</h3>
<p class="text-indigo font-mono text-sm mt-1">Lancaster University, UK</p>
</div>
<div class="text-right">
<span class="font-mono text-xs bg-indigo/10 text-indigo border border-indigo/20 px-3 py-1 rounded-full">Incoming Autumn 2026</span>
</div>
</div>
<p class="text-dim text-sm leading-relaxed">
Accepted to pursue advanced studies focusing on cutting-edge AI architectures, machine learning frameworks, and research-driven software development.
</p>
</div>
</div>
<div class="reveal relative mb-12">
<div class="absolute -left-[35px] top-8 flex items-center justify-center w-6 h-6">
<div class="timeline-dot"></div>
</div>
<div class="cert-chip">
<div class="flex flex-wrap items-start justify-between gap-4 mb-3">
<div>
<h3 class="font-display font-bold text-white text-lg">B.Tech in AI & Machine Learning</h3>
<p class="text-cyan font-mono text-sm mt-1">St. Thomas' College of Engineering & Technology</p>
</div>
<div class="text-right">
<span class="font-mono text-xs bg-cyan/10 text-cyan border border-cyan/20 px-3 py-1 rounded-full">2022 β 2026</span>
</div>
</div>
<p class="text-dim text-sm leading-relaxed">
Core curriculum spanning Data Structures & Algorithms, Operating Systems, DBMS,
Computer Networks, AI & ML, NLP, and Computer Vision.
</p>
</div>
</div>
<div class="reveal relative mb-12">
<div class="absolute -left-[35px] top-8 flex items-center justify-center w-6 h-6">
<div class="timeline-dot" style="background:#8B5CF6;box-shadow:0 0 12px rgba(139,92,246,0.6);"></div>
</div>
<div class="cert-chip">
<div class="flex flex-wrap items-start justify-between gap-4 mb-3">
<div>
<h3 class="font-display font-bold text-white text-lg">ISC Class XII Board</h3>
<p class="text-violet font-mono text-sm mt-1">National Gems Higher Secondary School</p>
</div>
<div class="text-right">
<span class="font-mono text-xs bg-violet/10 text-violet border border-violet/20 px-3 py-1 rounded-full">High School</span>
</div>
</div>
<p class="text-dim text-sm leading-relaxed">
Focused heavily on core STEM subjects including Physics, Chemistry, Mathematics, and Computer Science.
</p>
</div>
</div>
<div class="reveal relative">
<div class="absolute -left-[35px] top-8 flex items-center justify-center w-6 h-6">
<div class="timeline-dot" style="background:#8FA3BE;box-shadow:0 0 12px rgba(143,163,190,0.6);"></div>
</div>
<div class="cert-chip">
<div class="flex flex-wrap items-start justify-between gap-4 mb-3">
<div>
<h3 class="font-display font-bold text-white text-lg">ICSE Class X Board</h3>
<p class="text-violet font-mono text-sm mt-1">National Gems Higher Secondary School</p>
</div>
<div class="text-right">
<span class="font-mono text-xs bg-violet/10 text-violet border border-violet/20 px-3 py-1 rounded-full">Early and Middle School</span>
</div>
</div>
<p class="text-dim text-sm leading-relaxed">
Foundational studies emphasizing analytical thinking, logic, and early exposure to computer applications.
</p>
</div>
</div>
</div>
<div class="reveal project-card mb-20 !p-8" style="background: linear-gradient(135deg, rgba(13,18,32,0.95) 0%, rgba(139,92,246,0.1) 100%); border-color: rgba(139,92,246,0.4);">
<span class="featured-badge" style="background: rgba(139,92,246,0.2); border-color: rgba(139,92,246,0.5); color: #C4B5FD;">Elite Selection</span>
<div class="flex flex-col md:flex-row items-start gap-8">
<div class="w-16 h-16 rounded-2xl bg-gradient-to-br from-violet-600 to-indigo-600 flex items-center justify-center flex-shrink-0 shadow-lg shadow-violet-500/30">
<svg class="w-8 h-8 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M19.428 15.428a2 2 0 00-1.022-.547l-2.387-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z"/></svg>
</div>
<div>
<h3 class="font-display font-bold text-white text-2xl mb-2">GirlScript Summer of Code (GSSoC) 2026</h3>
<p class="text-violet-400 font-mono text-sm mb-4">Open Source Contributor</p>
<p class="text-dim leading-relaxed text-sm">
Selected from a highly competitive, global pool of applicants to collaborate with top-tier developers and organizations on critical, open-source AI projects. This selection highlights deep technical proficiency, innovative problem-solving, and a proven ability to contribute at an enterprise-grade level to the real-world software ecosystem.
</p>
</div>
</div>
</div>
<div class="reveal mb-16">
<h3 class="font-display font-bold text-white text-2xl mb-6">Key Innovation Milestones</h3>
<div class="grid sm:grid-cols-2 gap-4">
<div class="cert-chip flex flex-col gap-3">
<div class="flex items-center gap-3">
<div class="w-10 h-10 rounded-lg bg-cyan/10 border border-cyan/20 flex items-center justify-center flex-shrink-0">
<svg class="w-5 h-5 text-cyan" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"/></svg>
</div>
<div>
<p class="text-white text-sm font-semibold leading-snug">Smart India Hackathon (SIH)</p>
<p class="text-cyan font-mono text-xs mt-1">2023, 2024, 2025</p>
</div>
</div>
<p class="text-dim text-xs leading-relaxed">Spearheaded complex, event-triggered edge vision systems, securing finalist and winning placements for immediate real-world impact.</p>
</div>
<div class="cert-chip flex flex-col gap-3">
<div class="flex items-center gap-3">
<div class="w-10 h-10 rounded-lg bg-violet/10 border border-violet/20 flex items-center justify-center flex-shrink-0">
<svg class="w-5 h-5 text-violet" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M13 10V3L4 14h7v7l9-11h-7z"/></svg>
</div>
<div>
<p class="text-white text-sm font-semibold leading-snug">OOFY HACKS 1.0</p>
<p class="text-violet font-mono text-xs mt-1">Overall Winner</p>
</div>
</div>
<p class="text-dim text-xs leading-relaxed">Won top honors with an end-to-end full-stack solution integrating advanced Computer Vision for real-time analytics.</p>
</div>
</div>
</div>
<div class="reveal">
<h3 class="font-display font-bold text-white text-2xl mb-6">Community & Strategic Knowledge</h3>
<div class="grid sm:grid-cols-2 gap-4">
<div class="cert-chip flex flex-col gap-3">
<div class="flex items-center gap-3">
<div class="w-10 h-10 rounded-lg bg-indigo/10 border border-indigo/20 flex items-center justify-center flex-shrink-0">
<svg class="w-5 h-5 text-indigo" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"/></svg>
</div>
<div>
<p class="text-white text-sm font-semibold leading-snug">AI & ML with Data Science</p>
<p class="text-indigo font-mono text-xs mt-1">Workshop Β· IIT Guwahati</p>
</div>
</div>
<p class="text-dim text-xs leading-relaxed">Completed rigorous deep-tech training, deepening understanding of neural architectures and large-scale data pipelines.</p>
</div>
<div class="cert-chip flex flex-col gap-3">
<div class="flex items-center gap-3">
<div class="w-10 h-10 rounded-lg bg-cyan/10 border border-cyan/20 flex items-center justify-center flex-shrink-0">
<svg class="w-5 h-5 text-cyan" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M19.428 15.428a2 2 0 00-1.022-.547l-2.387-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z"/></svg>
</div>
<div>
<p class="text-white text-sm font-semibold leading-snug">IndiaAI Impact Gen-AI</p>
<p class="text-cyan font-mono text-xs mt-1">Hackathon Participant</p>
</div>
</div>
<p class="text-dim text-xs leading-relaxed">Participated in a nation-wide Gen-AI challenge, exploring RAG architectures for large-scale enterprise solutions.</p>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="relative py-32 overflow-hidden">
<div class="orb w-96 h-96 bg-indigo opacity-15" style="bottom:-100px;left:50%;transform:translateX(-50%);"></div>
<div class="max-w-3xl mx-auto px-6 text-center relative z-10">
<div class="reveal">
<p class="section-label mb-3">05 / Contact</p>
<h2 class="section-title text-4xl md:text-5xl mb-6">
Let's Build<br/>
<span class="text-transparent bg-clip-text bg-gradient-to-r from-cyan to-indigo">
Something Remarkable
</span>
</h2>
<p class="text-dim text-lg leading-relaxed mb-12">
I'm actively seeking opportunities in AI engineering, full-stack development, and
research roles. Whether you have a project, a position, or just want to connect β
my inbox is open.
</p>
</div>
<div class="reveal grid sm:grid-cols-3 gap-4 mb-12">
<a href="mailto:sandipghosh0801@gmail.com" class="contact-link justify-center flex-col gap-2 py-5">
<svg class="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/></svg>
<span>Email</span>
<span class="text-muted text-xs">sandipghosh0801@gmail.com</span>
</a>
<a href="https://github.com/QuantumCoderrr" target="_blank" class="contact-link justify-center flex-col gap-2 py-5">
<svg class="w-5 h-5" viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-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.029-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.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z"/></svg>
<span>GitHub</span>
<span class="text-muted text-xs">QuantumCoderrr</span>
</a>
<a href="https://linkedin.com/in/sandip-ghosh-aiml" target="_blank" class="contact-link justify-center flex-col gap-2 py-5">
<svg class="w-5 h-5" 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>
<span>LinkedIn</span>
<span class="text-muted text-xs">sandip-ghosh-aiml</span>
</a>
</div>
<div class="reveal">
<a href="mailto:sandipghosh0801@gmail.com" class="btn-primary text-base px-8 py-4">
<svg class="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/></svg>
Send a Message
</a>
</div>
</div>
</section>
<footer class="border-t border-border py-8 px-6">
<div class="max-w-6xl mx-auto flex flex-wrap items-center justify-between gap-4">
<p class="font-display font-bold text-white">SG<span class="text-cyan">.</span></p>
<p class="font-mono text-xs text-muted">
Β© 2026 Sandip Ghosh
</p>
<div class="flex gap-6">
<a href="https://github.com/QuantumCoderrr" target="_blank" class="text-muted hover:text-cyan transition-colors">
<svg class="w-5 h-5" viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-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.029-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.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z"/></svg>
</a>
<a href="https://linkedin.com/in/sandip-ghosh-aiml" target="_blank" class="text-muted hover:text-cyan transition-colors">
<svg class="w-5 h-5" 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>
</a>
<a href="mailto:sandipghosh0801@gmail.com" class="text-muted hover:text-cyan transition-colors">
<svg class="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/></svg>
</a>