-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1433 lines (1361 loc) · 46.4 KB
/
index.html
File metadata and controls
1433 lines (1361 loc) · 46.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
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>
<!--
Portfolio Website v2.1.1
Created for: Saikat Das - Cloud DevOps & Cybersecurity Professional
Last Updated: October 7, 2025
-->
<html lang="en" class="scroll-smooth dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Professional Portfolio - Cloud DevOps & Cybersecurity Specialist"
/>
<meta name="author" content="Saikat Das" />
<meta name="robots" content="index, follow" />
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
<meta http-equiv="X-Frame-Options" content="DENY" />
<meta http-equiv="X-XSS-Protection" content="1; mode=block" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
<meta
name="google-site-verification"
content="7V2z0O6G2wDJw2a472pQMs6t4nvknmwyiOokwKjWcVk"
/>
<link
<link
rel="icon"
type="image/svg+xml"
href="data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3e%3cstyle%3e.bg%7bfill:%23000%7d.prompt%7bfill:%2300ff41%7d.cursor%7bfill:%2300ffff;animation:blink 1.2s infinite%7d@keyframes blink%7b0%25,60%25%7bopacity:1%7d61%25,100%25%7bopacity:0%7d%7d%3c/style%3e%3crect class='bg' width='100' height='100' rx='8'/%3e%3ctext x='8' y='25' font-family='monospace' font-size='12' fill='%2300ff41'%3e$%3c/text%3e%3ctext x='20' y='25' font-family='monospace' font-size='12' fill='%2300ffff'%3e./run.sh%3c/text%3e%3ctext x='8' y='45' font-family='monospace' font-size='12' fill='%2300ff41'%3e$%3c/text%3e%3ctext x='20' y='45' font-family='monospace' font-size='12' fill='%2300ffff'%3ecat /etc%3c/text%3e%3ctext x='8' y='65' font-family='monospace' font-size='12' fill='%2300ff41'%3e$%3c/text%3e%3ctext x='20' y='65' font-family='monospace' font-size='12' fill='%2300ffff'%3els -la%3c/text%3e%3ctext x='8' y='85' font-family='monospace' font-size='12' fill='%2300ff41'%3e$%3c/text%3e%3crect class='cursor' x='20' y='77' width='8' height='12'/%3e%3c/svg%3e"
/>
<link
rel="shortcut icon"
href="data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3e%3cstyle%3e.bg%7bfill:%23000%7d.prompt%7bfill:%2300ff41%7d.cursor%7bfill:%2300ffff;animation:blink 1.2s infinite%7d@keyframes blink%7b0%25,60%25%7bopacity:1%7d61%25,100%25%7bopacity:0%7d%7d%3c/style%3e%3crect class='bg' width='100' height='100' rx='8'/%3e%3ctext x='8' y='25' font-family='monospace' font-size='12' fill='%2300ff41'%3e$%3c/text%3e%3ctext x='20' y='25' font-family='monospace' font-size='12' fill='%2300ffff'%3e./run.sh%3c/text%3e%3ctext x='8' y='45' font-family='monospace' font-size='12' fill='%2300ff41'%3e$%3c/text%3e%3ctext x='20' y='45' font-family='monospace' font-size='12' fill='%2300ffff'%3ecat /etc%3c/text%3e%3ctext x='8' y='65' font-family='monospace' font-size='12' fill='%2300ff41'%3e$%3c/text%3e%3ctext x='20' y='65' font-family='monospace' font-size='12' fill='%2300ffff'%3els -la%3c/text%3e%3ctext x='8' y='85' font-family='monospace' font-size='12' fill='%2300ff41'%3e$%3c/text%3e%3crect class='cursor' x='20' y='77' width='8' height='12'/%3e%3c/svg%3e"
/>
<title>Security Terminal // Portfolio Dashboard</title>
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Tailwind Config for Custom Theme -->
<script>
tailwind.config = {
darkMode: "class",
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
},
colors: {
"cloud-primary": "#4A90E2",
"cloud-secondary": "#5AAFF0",
"cloud-accent": "#50C878",
"cyber-primary": "#00D4E6",
"cyber-secondary": "#9D00FF",
"cyber-accent": "#FF0080",
"terminal-green": "#00FF41",
},
fontFamily: {
mono: ["JetBrains Mono", "Courier New", "monospace"],
},
},
},
};
</script>
<!-- Google Fonts -->
<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=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
/>
<script>
// Fallback for Font Awesome if CDN fails
if (!document.querySelector('link[href*="font-awesome"]').sheet) {
const fallback = document.createElement("link");
fallback.rel = "stylesheet";
fallback.href =
"https://use.fontawesome.com/releases/v6.5.1/css/all.css";
document.head.appendChild(fallback);
}
</script>
<!-- Custom Styles -->
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body
class="font-['Inter'] bg-slate-100 dark:bg-gray-900 text-gray-900 dark:text-gray-100 transition-colors duration-300"
>
<!-- Floating Particles Background -->
<!-- Custom Cursor Effect -->
<div
id="cursor-glow"
class="fixed pointer-events-none z-50 w-5 h-5 rounded-full transition-opacity duration-300 opacity-0"
>
<!-- Inner glow core -->
<div class="absolute inset-0 rounded-full opacity-70"></div>
<!-- Center dot -->
<div class="absolute inset-1 rounded-full opacity-85"></div>
</div>
<!-- Mouse Spotlight Effect -->
<div
id="mouse-spotlight"
class="fixed pointer-events-none z-40 w-64 h-64 rounded-full opacity-0 transition-opacity duration-300"
>
<div class="absolute inset-0 rounded-full blur-xl"></div>
<div class="absolute inset-0 rounded-full blur-2xl scale-125"></div>
</div>
<div
id="particles-container"
class="fixed inset-0 pointer-events-none z-0 overflow-hidden"
>
<canvas id="particles-canvas" class="w-full h-full"></canvas>
</div>
<!-- Parallax Background Elements -->
<div class="fixed inset-0 pointer-events-none z-0 overflow-hidden">
<div
id="parallax-bg1"
class="absolute w-32 h-32 rounded-full bg-gradient-to-r from-cloud-primary/20 to-cloud-accent/20 dark:from-cyber-primary/20 dark:to-cyber-accent/20 blur-xl"
></div>
<div
id="parallax-bg2"
class="absolute w-24 h-24 rounded-full bg-gradient-to-r from-cloud-accent/30 to-cloud-secondary/30 dark:from-cyber-accent/30 dark:to-cyber-secondary/30 blur-lg"
></div>
</div>
<!-- Navigation -->
<nav
class="fixed top-0 left-0 right-0 z-50 bg-white/80 dark:bg-gray-900/80 backdrop-blur-md border-b border-gray-200 dark:border-gray-800"
>
<div class="max-w-7xl mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<!-- Logo/Brand -->
<div class="flex items-center space-x-2">
<span
class="text-2xl font-mono font-bold text-cloud-primary dark:text-cyber-primary"
>
<span class="hidden sm:inline">>_</span> TERMINAL
</span>
<span
class="hidden md:inline text-sm text-gray-500 dark:text-gray-400 font-mono"
>
// access granted
</span>
</div>
<!-- Desktop Navigation -->
<div class="hidden md:flex items-center space-x-8">
<a
href="#hero"
class="nav-link text-sm font-medium hover:text-cloud-primary dark:hover:text-cyber-primary transition-colors"
>
HOME
</a>
<a
href="#about"
class="nav-link text-sm font-medium hover:text-cloud-primary dark:hover:text-cyber-primary transition-colors"
>
ABOUT
</a>
<a
href="#projects"
class="nav-link text-sm font-medium hover:text-cloud-primary dark:hover:text-cyber-primary transition-colors"
>
OPERATIONS
</a>
<a
href="#certifications"
class="nav-link text-sm font-medium hover:text-cloud-primary dark:hover:text-cyber-primary transition-colors"
>
CREDENTIALS
</a>
<a
href="#contact"
class="nav-link text-sm font-medium hover:text-cloud-primary dark:hover:text-cyber-primary transition-colors"
>
CONTACT
</a>
<button
id="resume-btn"
class="px-4 py-2 bg-cloud-primary dark:bg-cyber-primary text-white rounded-lg text-sm font-medium hover:shadow-lg transition-all glow-on-hover"
>
RESUME
</button>
<!-- Theme Toggle -->
<button
id="theme-toggle"
class="p-2 rounded-lg bg-gray-200 dark:bg-gray-800 hover:bg-gray-300 dark:hover:bg-gray-700 transition-colors"
aria-label="Toggle dark mode"
>
<i class="fas fa-moon dark:hidden"></i>
<i class="fas fa-sun hidden dark:inline"></i>
</button>
</div>
<!-- Mobile Menu Button -->
<button
id="mobile-menu-btn"
class="md:hidden p-2"
aria-label="Toggle mobile menu"
>
<i class="fas fa-bars text-xl"></i>
</button>
</div>
<!-- Mobile Navigation -->
<div id="mobile-menu" class="hidden md:hidden pt-4 pb-2 space-y-3">
<a
href="#hero"
class="block text-sm font-medium hover:text-cloud-primary dark:hover:text-cyber-primary transition-colors"
>
HOME
</a>
<a
href="#about"
class="block text-sm font-medium hover:text-cloud-primary dark:hover:text-cyber-primary transition-colors"
>
INTEL
</a>
<a
href="#projects"
class="block text-sm font-medium hover:text-cloud-primary dark:hover:text-cyber-primary transition-colors"
>
OPERATIONS
</a>
<a
href="#certifications"
class="block text-sm font-medium hover:text-cloud-primary dark:hover:text-cyber-primary transition-colors"
>
CREDENTIALS
</a>
<a
href="#contact"
class="block text-sm font-medium hover:text-cloud-primary dark:hover:text-cyber-primary transition-colors"
>
CONTACT
</a>
<div class="flex items-center space-x-3 pt-2">
<button
id="resume-btn-mobile"
class="flex-1 px-4 py-2 bg-cloud-primary dark:bg-cyber-primary text-white rounded-lg text-sm font-medium glow-on-hover"
>
RESUME
</button>
<button
id="theme-toggle-mobile"
class="p-2 rounded-lg bg-gray-200 dark:bg-gray-800"
aria-label="Toggle dark mode"
>
<i class="fas fa-moon dark:hidden"></i>
<i class="fas fa-sun hidden dark:inline"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section
id="hero"
class="min-h-screen flex items-center justify-center relative overflow-hidden pt-20"
>
<div class="max-w-7xl mx-auto px-6 py-20 relative z-10">
<div class="text-center space-y-8">
<!-- Status Badge -->
<div
class="inline-flex items-center space-x-2 px-4 py-2 bg-green-100 dark:bg-green-900/30 rounded-full border border-green-300 dark:border-green-700 glow-on-hover animate opacity-100"
>
<span
class="w-2 h-2 bg-green-500 rounded-full animate-pulse"
></span>
<span class="text-sm font-mono text-green-700 dark:text-green-400"
>SYSTEM ONLINE</span
>
</div>
<!-- Main Headline -->
<h1
class="text-5xl md:text-7xl font-bold leading-tight parallax-element opacity-100"
>
<span class="text-gray-900 dark:text-white">SECURITY</span>
<br />
<span
class="bg-gradient-to-r from-cloud-primary to-cloud-accent dark:from-cyber-primary dark:to-cyber-accent bg-clip-text text-transparent"
>
TERMINAL
</span>
</h1>
<!-- Subheadline -->
<div class="max-w-2xl mx-auto space-y-4 opacity-100">
<p
class="text-xl md:text-2xl text-gray-600 dark:text-gray-300 font-medium fade-in-up"
>
Cloud Infrastructure & Cybersecurity Operations
</p>
<p
class="text-base md:text-lg text-gray-500 dark:text-gray-400 font-mono fade-in-up"
>
> Specializing in secure cloud architecture and DevSecOps
practices
</p>
</div>
<!-- CTA Buttons -->
<div
class="flex flex-col sm:flex-row items-center justify-center gap-4 pt-8 fade-in-up"
>
<a
href="#projects"
class="w-full sm:w-auto px-8 py-4 bg-cloud-primary dark:bg-cyber-primary text-white rounded-lg font-medium hover:shadow-xl transition-all transform hover:-translate-y-1 glow-on-hover"
>
VIEW OPERATIONS
<i class="fas fa-arrow-right ml-2"></i>
</a>
<a
href="#contact"
class="w-full sm:w-auto px-8 py-4 bg-transparent border-2 border-cloud-primary dark:border-cyber-primary text-cloud-primary dark:text-cyber-primary rounded-lg font-medium hover:bg-cloud-primary dark:hover:bg-cyber-primary hover:text-white dark:hover:text-white transition-all glow-on-hover"
>
ESTABLISH CONTACT
</a>
</div>
<!-- Scroll Indicator -->
<div class="pt-12 animate-bounce fade-in-up">
<i class="fas fa-chevron-down text-2xl text-gray-400"></i>
</div>
</div>
</div>
</section>
<!-- About Section (INTEL) -->
<section
id="about"
class="py-20 bg-gray-50 dark:bg-gray-800 animate-fade-in border-y border-gray-200 dark:border-gray-700"
>
<div class="max-w-7xl mx-auto px-6">
<!-- Section Header -->
<div class="text-center mb-16">
<span
class="text-sm font-mono text-cloud-primary dark:text-cyber-primary uppercase tracking-wider"
>
// CLEARANCE LEVEL: CLASSIFIED
</span>
<h2 class="text-4xl md:text-5xl font-bold mt-2 mb-4 fade-in-up">
AGENT INTEL
</h2>
<div
class="w-20 h-1 bg-gradient-to-r from-cloud-primary to-cloud-accent dark:from-cyber-primary dark:to-cyber-accent mx-auto rounded-full"
></div>
</div>
<div class="grid md:grid-cols-2 gap-12 items-center">
<!-- About Text -->
<div class="space-y-8">
<div class="space-y-6">
<p
class="text-lg text-gray-700 dark:text-gray-300 leading-relaxed font-medium fade-in-left"
>
Hello! I'm
<span
class="font-semibold text-cloud-primary dark:text-cyber-primary"
>Saikat Das</span
>, a resilient and highly motivated
<span
class="font-semibold text-cloud-primary dark:text-cyber-primary"
>B.Tech Information Technology student</span
>
with a strong academic record and proven leadership experience.
</p>
<p
class="text-base text-gray-600 dark:text-gray-400 leading-relaxed fade-in-left"
>
Currently serving as a
<span
class="font-semibold text-cloud-primary dark:text-cyber-primary"
>Google Student Ambassador</span
>
and have completed a comprehensive
<span
class="font-semibold text-cloud-primary dark:text-cyber-primary"
>IBM SkillsBuild Front-End Development Internship</span
>. I'm passionate about leveraging technology to solve
real-world problems and eager to contribute to challenging
projects in a dynamic environment.
</p>
</div>
<div class="grid grid-cols-2 gap-3 pt-2 scale-in">
<span
class="px-4 py-2 bg-cloud-primary/10 dark:bg-cyber-primary/10 text-cloud-primary dark:text-cyber-primary rounded-lg text-sm font-medium text-center"
>
Full-Stack Development
</span>
<span
class="px-4 py-2 bg-cloud-primary/10 dark:bg-cyber-primary/10 text-cloud-primary dark:text-cyber-primary rounded-lg text-sm font-medium text-center"
>
Student Leadership
</span>
<span
class="px-4 py-2 bg-cloud-primary/10 dark:bg-cyber-primary/10 text-cloud-primary dark:text-cyber-primary rounded-lg text-sm font-medium text-center"
>
Google Cloud Platform
</span>
<span
class="px-4 py-2 bg-cloud-primary/10 dark:bg-cyber-primary/10 text-cloud-primary dark:text-cyber-primary rounded-lg text-sm font-medium text-center"
>
AI Innovation
</span>
</div>
</div>
<!-- Skills Grid -->
<div class="space-y-6">
<h3 class="text-2xl font-bold mb-6 fade-in-right">
<i
class="fas fa-code text-cloud-primary dark:text-cyber-primary mr-2"
></i>
TECHNICAL ARSENAL
</h3>
<!-- Programming Languages -->
<div class="skill-category fade-in-right">
<h4
class="text-sm font-mono text-gray-500 dark:text-gray-400 uppercase mb-3"
>
Languages
</h4>
<div class="flex flex-wrap gap-2">
<span class="skill-badge">Java</span>
<span class="skill-badge">Python</span>
<span class="skill-badge">C</span>
<span class="skill-badge">Bash</span>
</div>
</div>
<!-- Web Technologies -->
<div class="skill-category fade-in-right">
<h4
class="text-sm font-mono text-gray-500 dark:text-gray-400 uppercase mb-3"
>
Web Tech
</h4>
<div class="flex flex-wrap gap-2">
<span class="skill-badge">HTML5</span>
<span class="skill-badge">CSS3</span>
<span class="skill-badge">JavaScript</span>
<span class="skill-badge">React JS</span>
</div>
</div>
<!-- Database & Tools -->
<div class="skill-category fade-in-right">
<h4
class="text-sm font-mono text-gray-500 dark:text-gray-400 uppercase mb-3"
>
Databases & Tools
</h4>
<div class="flex flex-wrap gap-2">
<span class="skill-badge">MySQL</span>
<span class="skill-badge">Linux</span>
<span class="skill-badge">Git</span>
<span class="skill-badge">GitHub</span>
<span class="skill-badge">Generative AI</span>
<span class="skill-badge">Google Cloud</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section (OPERATIONS) -->
<section
id="projects"
class="py-20 bg-white dark:bg-gray-900 animate-fade-in shadow-sm"
>
<div class="max-w-7xl mx-auto px-6">
<!-- Section Header -->
<div class="text-center mb-16">
<span
class="text-sm font-mono text-cloud-primary dark:text-cyber-primary uppercase tracking-wider"
>
// MISSION FILES
</span>
<h2 class="text-4xl md:text-5xl font-bold mt-2 mb-4 fade-in-up">
ACTIVE OPERATIONS
</h2>
<div
class="w-20 h-1 bg-gradient-to-r from-cloud-primary to-cloud-accent dark:from-cyber-primary dark:to-cyber-accent mx-auto rounded-full"
></div>
</div>
<!-- Project Filter Tabs -->
<div class="flex flex-wrap justify-center gap-4 mb-12 fade-in-up">
<button
class="project-filter-btn active scale-in"
data-filter="completed"
>
<i class="fas fa-check-circle mr-2"></i>
COMPLETED
</button>
<button class="project-filter-btn scale-in" data-filter="in-progress">
<i class="fas fa-spinner mr-2"></i>
IN PROGRESS
</button>
<button class="project-filter-btn scale-in" data-filter="planned">
<i class="fas fa-clock mr-2"></i>
PLANNED
</button>
</div>
<!-- Projects Grid -->
<div
id="projects-grid"
class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"
>
<!-- Projects will be injected here by JavaScript -->
</div>
</div>
</section>
<!-- Certifications Section -->
<section
id="certifications"
class="py-20 bg-gray-50 dark:bg-gray-800 animate-fade-in border-y border-gray-200 dark:border-gray-700"
>
<div class="max-w-7xl mx-auto px-6">
<!-- Section Header -->
<div class="text-center mb-16">
<span
class="text-sm font-mono text-cloud-primary dark:text-cyber-primary uppercase tracking-wider"
>
// VERIFIED CREDENTIALS
</span>
<h2 class="text-4xl md:text-5xl font-bold mt-2 mb-4 fade-in-up">
CERTIFICATIONS & TRAINING
</h2>
<div
class="w-20 h-1 bg-gradient-to-r from-cloud-primary to-cloud-accent dark:from-cyber-primary dark:to-cyber-accent mx-auto rounded-full"
></div>
</div>
<!-- Certificate Category Filter Tabs -->
<div class="flex flex-wrap justify-center gap-4 mb-12 fade-in-up">
<button class="cert-filter-btn active" data-filter="all">
<i class="fas fa-list mr-2"></i>
ALL
</button>
<button class="cert-filter-btn" data-filter="frontend">
<i class="fas fa-palette mr-2"></i>
FRONTEND
</button>
<button class="cert-filter-btn" data-filter="backend">
<i class="fas fa-server mr-2"></i>
BACKEND
</button>
<button class="cert-filter-btn" data-filter="cloud">
<i class="fas fa-cloud mr-2"></i>
CLOUD/DEVOPS
</button>
<button class="cert-filter-btn" data-filter="ai-ml">
<i class="fas fa-robot mr-2"></i>
AI/ML
</button>
<button class="cert-filter-btn" data-filter="cybersecurity">
<i class="fas fa-shield-alt mr-2"></i>
CYBERSECURITY
</button>
<button class="cert-filter-btn" data-filter="professional">
<i class="fas fa-user-tie mr-2"></i>
PROFESSIONAL
</button>
</div>
<!-- Certifications Grid -->
<div
id="certifications-grid"
class="grid md:grid-cols-2 lg:grid-cols-3 gap-6"
>
<!-- Cloud & DevOps Certifications -->
<div class="cert-card" data-category="cloud">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<i class="fab fa-google text-3xl text-blue-500"></i>
</div>
<div>
<h3 class="font-bold text-lg mb-1">
Google Cloud Computing Foundations
</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Google Cloud
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2025
</p>
</div>
</div>
</div>
<!-- Frontend Development Certifications -->
<div class="cert-card" data-category="frontend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/IBM Logo 1.svg"
alt="IBM"
class="w-12 h-12"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">
Web Development Fundamentals
</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
IBM SkillsBuild
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: Oct 2025
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="frontend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/Infosys/Infosys_idxq8SaZnR_0.svg"
alt="Infosys"
class="w-8 h-8"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">HTML5 Fundamentals</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Infosys Springboard
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="frontend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/Infosys/Infosys_idxq8SaZnR_0.svg"
alt="Infosys"
class="w-8 h-8"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">CSS3 Styling</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Infosys Springboard
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="frontend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/Infosys/Infosys_idxq8SaZnR_0.svg"
alt="Infosys"
class="w-8 h-8"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">JavaScript Programming</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Infosys Springboard
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="frontend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/Microsoft/Microsoft_Symbol_0.svg"
alt="Microsoft"
class="w-8 h-8"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">React Development</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Microsoft Learn
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="frontend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<i class="fab fa-react text-3xl text-cyan-400"></i>
</div>
<div>
<h3 class="font-bold text-lg mb-1">React Bootcamp</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Scaler Academy
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="frontend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/Microsoft/Microsoft_Symbol_0.svg"
alt="Microsoft"
class="w-8 h-8"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">Web Accessibility</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Microsoft Learn
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<!-- Backend Development Certifications -->
<div class="cert-card" data-category="backend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/Microsoft/Microsoft_Symbol_0.svg"
alt="Microsoft"
class="w-8 h-8"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">
ASP.NET Core Fundamentals
</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Microsoft Learn
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="backend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/Microsoft/Microsoft_Symbol_0.svg"
alt="Microsoft"
class="w-8 h-8"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">MEAN Stack Development</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Microsoft Learn
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="backend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/IBM Logo 1.svg"
alt="IBM"
class="w-12 h-12"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">
Web Applications Development
</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
IBM SkillsBuild
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="backend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/IBM Logo 1.svg"
alt="IBM"
class="w-12 h-12"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">GitHub Fundamentals</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
IBM SkillsBuild
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="backend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<i class="fas fa-code text-3xl text-purple-500"></i>
</div>
<div>
<h3 class="font-bold text-lg mb-1">
Data Structures & Algorithms
</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Let's Upgrade
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="backend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<i class="fab fa-js-square text-3xl text-yellow-500"></i>
</div>
<div>
<h3 class="font-bold text-lg mb-1">JavaScript Programming</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Let's Upgrade
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="backend">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/MongoDB_Logomark_SpringGreen.svg"
alt="MongoDB"
class="w-8 h-8"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">
MongoDB Basics for Students
</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">MongoDB</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: Oct 2025
</p>
</div>
</div>
</div>
<!-- AI/ML Certifications -->
<div class="cert-card" data-category="ai-ml">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/Gemini_logo.png"
alt="Google Gemini"
class="w-8 h-8 object-contain"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">Gemini Certified Student</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Google for Education
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: Oct 2025
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="ai-ml">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/databricks-symbol-color.svg"
alt="Databricks"
class="w-8 h-8"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">
Databricks Accredited Generative AI Fundamentals
</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Databricks Academy
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: Oct 2025
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="ai-ml">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/Anthropic 2/Anthropic_Symbol_0.svg"
alt="Anthropic"
class="w-8 h-8 dark:hidden"
/>
<img
src="assets/images/Anthropic/Anthropic_Symbol_0.svg"
alt="Anthropic"
class="w-8 h-8 hidden dark:block"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">AI Fluency for Students</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">
Anthropic Education
</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: Oct 2025
</p>
</div>
</div>
</div>
<div class="cert-card" data-category="ai-ml">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<i class="fas fa-robot text-3xl text-purple-600"></i>
</div>
<div>
<h3 class="font-bold text-lg mb-1">AI for Beginners</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">HP Life</p>
<p class="text-xs text-gray-500 dark:text-gray-500 mt-2">
Issued: 2024
</p>
</div>
</div>
</div>
<!-- Cybersecurity Certifications -->
<div class="cert-card" data-category="cybersecurity">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0">
<img
src="assets/images/flare_logos.png"
alt="Flare"
class="w-8 h-8 object-contain"
/>
</div>
<div>
<h3 class="font-bold text-lg mb-1">