-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1473 lines (1318 loc) · 75.5 KB
/
index.html
File metadata and controls
1473 lines (1318 loc) · 75.5 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>Gabrielius Pocevicius - Full Stack Engineer</title>
<meta name="description" content="Full Stack Engineer & AI Trainer specializing in modern JavaScript frameworks, AI technologies, and automation.">
<meta name="keywords" content="Full Stack Engineer, JavaScript, Vue.js, React, Node.js, AI, Machine Learning, Web Development">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-primary: #1a1a1a;
--bg-secondary: #242424;
--bg-card: #2a2a2a;
--text-primary: #e5e5e5;
--text-secondary: #a0a0a0;
--accent: #ff6b47;
--accent-hover: #ff5533;
--border: #3a3a3a;
}
* {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
}
.card {
background: var(--bg-card);
border: 1px solid var(--border);
transition: all 0.3s ease;
outline: none;
}
.card:hover, .card:focus {
border-color: var(--accent);
transform: translateY(-2px);
outline: none;
box-shadow: 0 10px 30px rgba(255, 107, 71, 0.1);
}
.accent-text { color: var(--accent); }
.accent-bg { background-color: var(--accent); }
.accent-hover:hover { background-color: var(--accent-hover); }
.glass-bg {
background: rgba(42, 42, 42, 0.8);
backdrop-filter: blur(20px);
border: 1px solid var(--border);
}
.tech-tag {
background: var(--bg-secondary);
border: 1px solid var(--border);
color: var(--text-secondary);
transition: all 0.2s ease;
outline: none;
}
.tech-tag:hover, .tech-tag:focus {
border-color: var(--accent);
color: var(--text-primary);
transform: translateY(-1px);
outline: none;
}
.nav-blur {
backdrop-filter: blur(20px);
background: rgba(26, 26, 26, 0.9);
}
.timeline-line {
background: linear-gradient(to bottom, var(--accent), transparent);
}
.project-image {
background: linear-gradient(135deg, var(--accent), #ff8866);
opacity: 0.8;
}
.cert-card {
transition: all 0.3s ease;
}
.cert-card:hover {
transform: translateY(5px);
box-shadow: 0 15px 40px rgba(255, 107, 71, 0.15);
}
.cert-iframe {
width: 100%;
height: 100%;
border: none;
pointer-events: none;
}
.filter-btn {
padding: 8px 16px;
border-radius: 20px;
border: 1px solid var(--border);
background: var(--bg-secondary);
color: var(--text-secondary);
transition: all 0.2s ease;
cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
border-color: var(--accent);
background: var(--accent);
color: white;
}
/* Enhanced project card animations */
.project-card {
transform-style: preserve-3d;
perspective: 1000px;
will-change: transform, opacity;
}
.project-card img {
will-change: transform, scale;
backface-visibility: hidden;
}
.project-card.in-view {
/* Optimized rendering for cards in view */
}
@media (prefers-reduced-motion: reduce) {
.project-card {
transform: none !important;
}
.project-card img {
transform: none !important;
}
}
/* Performance optimizations */
.project-card, .skill-card {
contain: layout style paint;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
background: var(--accent);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--accent-hover);
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollTrigger.min.js"></script>
<!-- EmailJS for contact form functionality -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js"></script>
<script type="text/javascript">
// Initialize EmailJS with your public key
(function() {
emailjs.init('1a0XajOl0aHeAdOjA');
})();
</script>
</head>
<body class="leading-relaxed">
<!-- Navigation -->
<nav id="navbar" class="fixed top-0 left-0 right-0 z-50 px-6 py-4 transition-all duration-300">
<div class="max-w-6xl mx-auto flex justify-between items-center">
<div class="font-semibold text-xl">
<span class="accent-text">G</span>P
</div>
<div class="hidden md:flex space-x-8">
<a href="#hero" class="nav-link transition-colors hover:text-orange-400">Home</a>
<a href="#about" class="nav-link transition-colors hover:text-orange-400">About</a>
<a href="#skills" class="nav-link transition-colors hover:text-orange-400">Skills</a>
<a href="#projects" class="nav-link transition-colors hover:text-orange-400">Projects</a>
<a href="#certificates" class="nav-link transition-colors hover:text-orange-400">Certificates</a>
<a href="#contact" class="nav-link transition-colors hover:text-orange-400">Contact</a>
</div>
<div class="md:hidden">
<button id="mobile-menu-btn" class="focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="md:hidden absolute top-full left-0 right-0 glass-bg hidden">
<div class="px-6 py-4 space-y-4">
<a href="#hero" class="block transition-colors hover:text-orange-400">Home</a>
<a href="#about" class="block transition-colors hover:text-orange-400">About</a>
<a href="#skills" class="block transition-colors hover:text-orange-400">Skills</a>
<a href="#projects" class="block transition-colors hover:text-orange-400">Projects</a>
<a href="#certificates" class="block transition-colors hover:text-orange-400">Certificates</a>
<a href="#contact" class="block transition-colors hover:text-orange-400">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="hero" class="min-h-screen flex items-center justify-center relative overflow-hidden px-6">
<div class="absolute inset-0 opacity-10">
<div class="absolute top-1/4 left-1/4 w-96 h-96 bg-orange-500 rounded-full filter blur-3xl animate-pulse"></div>
<div class="absolute bottom-1/4 right-1/4 w-96 h-96 bg-orange-600 rounded-full filter blur-3xl animate-pulse" style="animation-delay: 2s;"></div>
</div>
<div class="relative z-10 text-center max-w-4xl mx-auto opacity-0" id="hero-content">
<div class="mb-8">
<div class="w-20 h-20 mx-auto mb-6 accent-bg rounded-2xl flex items-center justify-center transform rotate-12">
<svg class="w-10 h-10 text-white" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 2L13.09 8.26L22 9L13.09 9.74L12 16L10.91 9.74L2 9L10.91 8.26L12 2Z"/>
</svg>
</div>
</div>
<h1 class="text-5xl md:text-7xl font-light mb-4 tracking-tight">
Gabrielius<br>
<span class="font-semibold accent-text">Pocevicius</span>
</h1>
<p class="text-xl md:text-2xl font-light mb-8 opacity-80" style="color: var(--text-secondary);">
Full Stack Engineer & AI Trainer
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center items-center text-lg mb-12" style="color: var(--text-secondary);">
<span class="flex items-center gap-2">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M5.05 4.05a7 7 0 119.9 9.9L10 18.9l-4.95-4.95a7 7 0 010-9.9zM10 11a2 2 0 100-4 2 2 0 000 4z" clip-rule="evenodd"></path>
</svg>
Limerick, Ireland
</span>
<span class="hidden sm:block">•</span>
<a href="mailto:pocevicius.gabrielius@gmail.com" class="hover:text-white transition-colors">
pocevicius.gabrielius@gmail.com
</a>
</div>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="https://drive.google.com/file/d/1bB3xwU0tijN9CZnUawGFbpnRd49g-7ej/view?usp=sharing"
target="_blank"
class="inline-flex items-center gap-3 accent-bg accent-hover text-white px-8 py-4 rounded-full font-medium transition-all duration-300 hover:shadow-lg hover:-translate-y-1 focus:outline-none">
<span>Download CV</span>
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<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>
</a>
<a href="#projects"
class="inline-flex items-center gap-3 border border-gray-600 text-white px-8 py-4 rounded-full font-medium transition-all duration-300 hover:border-orange-400 hover:shadow-lg hover:-translate-y-1 focus:outline-none">
<span>View Work</span>
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
</svg>
</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 px-6">
<div class="max-w-4xl mx-auto">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div class="opacity-0" id="about-text">
<h2 class="text-4xl font-light mb-6">About</h2>
<p class="text-lg leading-relaxed mb-6 opacity-80" style="color: var(--text-secondary);">
Passionate Full Stack Engineer specializing in modern JavaScript frameworks, AI technologies, and automation.
I focus on building scalable applications with clean, maintainable code. I enjoy spending my leisure time reading, exploring, and learning.
</p>
<p class="text-lg leading-relaxed opacity-80" style="color: var(--text-secondary);">
Currently exploring opportunities to further my expertise in AI integration and pursuing advanced computer science studies.
</p>
<div class="mt-8 flex flex-wrap gap-4">
<div class="flex items-center gap-2 text-sm" style="color: var(--text-secondary);">
<svg class="w-4 h-4 accent-text" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
</svg>
Available for new opportunities
</div>
</div>
</div>
<div class="card p-8 rounded-2xl opacity-0 focus:outline-none" tabindex="0" id="about-card">
<h3 class="font-semibold mb-4">Core Focus</h3>
<div class="flex flex-wrap gap-2">
<span class="tech-tag px-3 py-1 rounded-full text-sm" tabindex="0">Nuxt</span>
<span class="tech-tag px-3 py-1 rounded-full text-sm" tabindex="0">Next</span>
<span class="tech-tag px-3 py-1 rounded-full text-sm" tabindex="0">Python</span>
<span class="tech-tag px-3 py-1 rounded-full text-sm" tabindex="0">Node.js</span>
<span class="tech-tag px-3 py-1 rounded-full text-sm" tabindex="0">TypeScript</span>
<span class="tech-tag px-3 py-1 rounded-full text-sm" tabindex="0">AI/ML agentic senses</span>
<span class="tech-tag px-3 py-1 rounded-full text-sm" tabindex="0">MCP Protocol</span>
<span class="tech-tag px-3 py-1 rounded-full text-sm" tabindex="0">Automation</span>
<span class="tech-tag px-3 py-1 rounded-full text-sm" tabindex="0">ZeroMQ & Kafka</span>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20 px-6" style="background: var(--bg-secondary);">
<div class="max-w-6xl mx-auto">
<h2 class="text-4xl font-light text-center mb-16 opacity-0" id="skills-title">Technical Stack</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Frontend -->
<div class="card p-6 rounded-xl opacity-0 skill-card focus:outline-none" tabindex="0">
<div class="w-10 h-10 accent-bg rounded-lg flex items-center justify-center mb-4">
<svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"></path>
</svg>
</div>
<h3 class="text-lg font-semibold mb-3">Frontend Development</h3>
<div class="space-y-1 text-sm opacity-80" style="color: var(--text-secondary);">
<div>JavaScript (ES6+), TypeScript</div>
<div>Vue3, React, Vite</div>
<div>Responsive Design, CSS Grid/Flexbox</div>
<div>Tailwind CSS, Bootstrap 5, GSAP, D3.js</div>
<div>Cross-browser Compatibility</div>
</div>
</div>
<!-- Backend & APIs -->
<div class="card p-6 rounded-xl opacity-0 skill-card focus:outline-none" tabindex="0">
<div class="w-10 h-10 accent-bg rounded-lg flex items-center justify-center mb-4">
<svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 12h14M5 12a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v4a2 2 0 01-2 2M5 12a2 2 0 00-2 2v4a2 2 0 002 2h14a2 2 0 002-2v-4a2 2 0 00-2-2m-2-4h.01M17 16h.01"></path>
</svg>
</div>
<h3 class="text-lg font-semibold mb-3">Backend & APIs</h3>
<div class="space-y-1 text-sm opacity-80" style="color: var(--text-secondary);">
<div>Node.js Design Patterns, Python</div>
<div>Fastify, Express, Nuxt Server</div>
<div>REST APIs, GraphQL</div>
<div>Rust, Advanced Node.js</div>
<div>Unix/Linux System Administration</div>
</div>
</div>
<!-- Database & Data Engineering -->
<div class="card p-6 rounded-xl opacity-0 skill-card focus:outline-none" tabindex="0">
<div class="w-10 h-10 accent-bg rounded-lg flex items-center justify-center mb-4">
<svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 7v10c0 2.21 3.582 4 8 4s8-1.79 8-4V7M4 7c0 2.21 3.582 4 8 4s8-1.79 8-4M4 7c0-2.21 3.582-4 8-4s8 1.79 8 4"></path>
</svg>
</div>
<h3 class="text-lg font-semibold mb-3">Data & Database</h3>
<div class="space-y-1 text-sm opacity-80" style="color: var(--text-secondary);">
<div>MongoDB (Advanced), PostgreSQL</div>
<div>Redis, Neo4j, Supabase, SQLite</div>
<div>Data Engineering Pipelines</div>
<div>Cloudflare KV, Data Analytics</div>
<div>Quantitative Analysis</div>
</div>
</div>
<!-- Testing & Security -->
<div class="card p-6 rounded-xl opacity-0 skill-card focus:outline-none" tabindex="0">
<div class="w-10 h-10 accent-bg rounded-lg flex items-center justify-center mb-4">
<svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"></path>
</svg>
</div>
<h3 class="text-lg font-semibold mb-3">Testing & Security</h3>
<div class="space-y-1 text-sm opacity-80" style="color: var(--text-secondary);">
<div>Test-Driven Development (TDD)</div>
<div>Cypress.io E2E Testing</div>
<div>Playwright, WebDriver.io, Puppeteer</div>
<div>JavaScript Security Best Practices</div>
<div>Ethical Hacking, Penetration Testing</div>
</div>
</div>
<!-- Cloud & DevOps -->
<div class="card p-6 rounded-xl opacity-0 skill-card focus:outline-none" tabindex="0">
<div class="w-10 h-10 accent-bg rounded-lg flex items-center justify-center mb-4">
<svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M15 13l-3-3m0 0l-3 3m3-3v12"></path>
</svg>
</div>
<h3 class="text-lg font-semibold mb-3">Cloud & DevOps</h3>
<div class="space-y-1 text-sm opacity-80" style="color: var(--text-secondary);">
<div>Cloudflare, Vercel, AWS Amplify</div>
<div>OAuth Implementation & Security</div>
<div>Git, GitHub, GitLab CI/CD</div>
<div>npm, pnpm, bun Package Management</div>
<div>Jira, JSM, Confluence</div>
</div>
</div>
<!-- AI & Emerging Technologies -->
<div class="card p-6 rounded-xl opacity-0 skill-card focus:outline-none" tabindex="0">
<div class="w-10 h-10 accent-bg rounded-lg flex items-center justify-center mb-4">
<svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1"></path>
</svg>
</div>
<h3 class="text-lg font-semibold mb-3">AI & Innovation</h3>
<div class="space-y-1 text-sm opacity-80" style="color: var(--text-secondary);">
<div>Generative AI Integration</div>
<div>STT (Speech-to-Text) (SSML) with Rust & N-API</div>
<div>MCP (Model Context Protocol)</div>
<div>RLHF (Reinforcement Learning) on SOTA modals</div>
<div>Remote AI Server Deployment</div>
<div>AI-Powered Automation Workflows</div>
</div>
</div>
<!-- Development Tools & Methodology -->
<div class="card p-6 rounded-xl opacity-0 skill-card focus:outline-none" tabindex="0">
<div class="w-10 h-10 accent-bg rounded-lg flex items-center justify-center mb-4">
<svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"></path>
</svg>
</div>
<h3 class="text-lg font-semibold mb-3">Tools & Best Practices</h3>
<div class="space-y-1 text-sm opacity-80" style="color: var(--text-secondary);">
<div>VS Code, PyCharm IDE</div>
<div>Code Formatting & Standards</div>
<div>Search Optimization & SEO</div>
<div>Agile Development, Trust Building</div>
<div>Software Engineering Best Practices</div>
</div>
</div>
<!-- Specialized Skills -->
<div class="card p-6 rounded-xl opacity-0 skill-card focus:outline-none" tabindex="0">
<div class="w-10 h-10 accent-bg rounded-lg flex items-center justify-center mb-4">
<svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" 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"></path>
</svg>
</div>
<h3 class="text-lg font-semibold mb-3">Specialized Expertise</h3>
<div class="space-y-1 text-sm opacity-80" style="color: var(--text-secondary);">
<div>Economics & Quantitative Analysis</div>
<div>Headless Browser Automation</div>
<div>n8n Workflow Automation</div>
<div>Web Scraping & Data Extraction</div>
<div>Performance Optimization</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 px-6">
<div class="max-w-6xl mx-auto">
<h2 class="text-4xl font-light text-center mb-16 opacity-0" id="projects-title">Featured Projects</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 - Artist Portal -->
<div class="card rounded-xl overflow-hidden opacity-0 project-card" tabindex="0">
<div class="h-48 overflow-hidden">
<img src="data/projects/artist_portal_rewrite_ compressed.gif" alt="Artist Portal Project" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="font-semibold mb-2">Artist Portal</h3>
<p class="text-sm opacity-80 mb-4" style="color: var(--text-secondary);">
Comprehensive artist management platform built with modern web technologies, featuring portfolio management and client interaction tools.
</p>
<div class="flex flex-wrap gap-2">
<span class="tech-tag px-2 py-1 rounded text-xs">Vue.js</span>
<span class="tech-tag px-2 py-1 rounded text-xs">Node.js</span>
<span class="tech-tag px-2 py-1 rounded text-xs">MongoDB</span>
</div>
</div>
</div>
<!-- Project 2 - Retro Pixel Game -->
<div class="card rounded-xl overflow-hidden opacity-0 project-card" tabindex="0">
<div class="h-48 overflow-hidden">
<img src="data/projects/basic_retro_pixel_game.gif" alt="Retro Pixel Game" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="font-semibold mb-2">Retro Pixel Game</h3>
<p class="text-sm opacity-80 mb-4" style="color: var(--text-secondary);">
Classic retro-style pixel game built with JavaScript and HTML5 Canvas, featuring smooth animations and engaging gameplay mechanics.
</p>
<div class="flex flex-wrap gap-2">
<span class="tech-tag px-2 py-1 rounded text-xs">JavaScript</span>
<span class="tech-tag px-2 py-1 rounded text-xs">HTML5 Canvas</span>
<span class="tech-tag px-2 py-1 rounded text-xs">Game Logic</span>
</div>
</div>
</div>
<!-- Project 3 - Chess Game -->
<div class="card rounded-xl overflow-hidden opacity-0 project-card" tabindex="0">
<div class="h-48 overflow-hidden">
<img src="data/projects/chess_game_rewrite_gif.gif" alt="Chess Game" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="font-semibold mb-2">Chess Game</h3>
<p class="text-sm opacity-80 mb-4" style="color: var(--text-secondary);">
Interactive chess game with full game logic, move validation, and smooth animations. Features drag-and-drop gameplay.
</p>
<div class="flex flex-wrap gap-2">
<span class="tech-tag px-2 py-1 rounded text-xs">JavaScript</span>
<span class="tech-tag px-2 py-1 rounded text-xs">CSS3</span>
<span class="tech-tag px-2 py-1 rounded text-xs">Game AI</span>
</div>
</div>
</div>
<!-- Project 4 - Code Editor -->
<div class="card rounded-xl overflow-hidden opacity-0 project-card" tabindex="0">
<div class="h-48 overflow-hidden">
<img src="data/projects/coder_rewrite.gif" alt="Analytics Dashboard" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="font-semibold mb-2">Analytics Dashboard</h3>
<p class="text-sm opacity-80 mb-4" style="color: var(--text-secondary);">
Feature-rich analytics dashboard with charts, data tables, and real-time injection capabilities.
</p>
<div class="flex flex-wrap gap-2">
<span class="tech-tag px-2 py-1 rounded text-xs">React</span>
<span class="tech-tag px-2 py-1 rounded text-xs">Monaco Editor</span>
<span class="tech-tag px-2 py-1 rounded text-xs">WebSocket</span>
</div>
</div>
</div>
<!-- Project 5 - Developer Site -->
<div class="card rounded-xl overflow-hidden opacity-0 project-card" tabindex="0">
<div class="h-48 overflow-hidden">
<img src="data/projects/coder_site_rewrite.gif" alt="Developer Site" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="font-semibold mb-2">Developer Portfolio Site</h3>
<p class="text-sm opacity-80 mb-4" style="color: var(--text-secondary);">
Modern developer portfolio showcasing projects, skills, and experience with interactive elements and smooth animations.
</p>
<div class="flex flex-wrap gap-2">
<span class="tech-tag px-2 py-1 rounded text-xs">Next.js</span>
<span class="tech-tag px-2 py-1 rounded text-xs">Tailwind CSS</span>
<span class="tech-tag px-2 py-1 rounded text-xs">Framer Motion</span>
</div>
</div>
</div>
<!-- Project 6 - Reading Life Response -->
<div class="card rounded-xl overflow-hidden opacity-0 project-card" tabindex="0">
<div class="h-48 overflow-hidden">
<img src="data/projects/gif_rewritten_response_reading_life.gif" alt="Reading Life Response" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="font-semibold mb-2">Reading Life Tracker</h3>
<p class="text-sm opacity-80 mb-4" style="color: var(--text-secondary);">
Personal reading tracker with book recommendations, progress tracking, and reading statistics visualization.
</p>
<div class="flex flex-wrap gap-2">
<span class="tech-tag px-2 py-1 rounded text-xs">React</span>
<span class="tech-tag px-2 py-1 rounded text-xs">Chart.js</span>
<span class="tech-tag px-2 py-1 rounded text-xs">API Integration</span>
</div>
</div>
</div>
<!-- Project 7 - Response System -->
<div class="card rounded-xl overflow-hidden opacity-0 project-card" tabindex="0">
<div class="h-48 overflow-hidden">
<img src="data/projects/gif_rewritten_response.gif" alt="Response System" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="font-semibold mb-2">Interactive Response System</h3>
<p class="text-sm opacity-80 mb-4" style="color: var(--text-secondary);">
Real-time response system with dynamic content generation and user interaction tracking.
</p>
<div class="flex flex-wrap gap-2">
<span class="tech-tag px-2 py-1 rounded text-xs">Node.js</span>
<span class="tech-tag px-2 py-1 rounded text-xs">WebSocket</span>
<span class="tech-tag px-2 py-1 rounded text-xs">Redis</span>
</div>
</div>
</div>
<!-- Project 8 - Color Memory Game -->
<div class="card rounded-xl overflow-hidden opacity-0 project-card" tabindex="0">
<div class="h-48 overflow-hidden">
<img src="data/projects/rewrite_color_memory_game_gif.gif" alt="Color Memory Game" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="font-semibold mb-2">Color Memory Game</h3>
<p class="text-sm opacity-80 mb-4" style="color: var(--text-secondary);">
Engaging memory game with colorful animations and progressive difficulty levels to challenge cognitive skills.
</p>
<div class="flex flex-wrap gap-2">
<span class="tech-tag px-2 py-1 rounded text-xs">JavaScript</span>
<span class="tech-tag px-2 py-1 rounded text-xs">CSS Animations</span>
<span class="tech-tag px-2 py-1 rounded text-xs">Game Logic</span>
</div>
</div>
</div>
<!-- Project 9 - Minesweeper Game -->
<div class="card rounded-xl overflow-hidden opacity-0 project-card" tabindex="0">
<div class="h-48 overflow-hidden">
<img src="data/projects/rewrite_minesweeper_game_gif.gif" alt="Minesweeper Game" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="font-semibold mb-2">Minesweeper Game</h3>
<p class="text-sm opacity-80 mb-4" style="color: var(--text-secondary);">
Classic minesweeper game with customizable difficulty levels, timer functionality, and smooth user interface.
</p>
<div class="flex flex-wrap gap-2">
<span class="tech-tag px-2 py-1 rounded text-xs">JavaScript</span>
<span class="tech-tag px-2 py-1 rounded text-xs">DOM Manipulation</span>
<span class="tech-tag px-2 py-1 rounded text-xs">Algorithm</span>
</div>
</div>
</div>
<!-- Project 10 - Student Dashboard -->
<div class="card rounded-xl overflow-hidden opacity-0 project-card" tabindex="0">
<div class="h-48 overflow-hidden">
<img src="data/projects/rewrite_student_dashboard_gif.gif" alt="Student Dashboard" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="font-semibold mb-2">Student Dashboard</h3>
<p class="text-sm opacity-80 mb-4" style="color: var(--text-secondary);">
Comprehensive student management system with grade tracking, assignment submission, and progress analytics.
</p>
<div class="flex flex-wrap gap-2">
<span class="tech-tag px-2 py-1 rounded text-xs">Vue.js</span>
<span class="tech-tag px-2 py-1 rounded text-xs">Node.js</span>
<span class="tech-tag px-2 py-1 rounded text-xs">PostgreSQL</span>
</div>
</div>
</div>
<!-- Project 11 - TikTok Animation -->
<div class="card rounded-xl overflow-hidden opacity-0 project-card" tabindex="0">
<div class="h-48 overflow-hidden">
<img src="data/projects/tiktaktoe_Animation.gif" alt="TikTakToe Animation" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="font-semibold mb-2">Tic-Tac-Toe Animation</h3>
<p class="text-sm opacity-80 mb-4" style="color: var(--text-secondary);">
Animated tic-tac-toe game with smooth transitions, AI opponent, and engaging visual effects.
</p>
<div class="flex flex-wrap gap-2">
<span class="tech-tag px-2 py-1 rounded text-xs">JavaScript</span>
<span class="tech-tag px-2 py-1 rounded text-xs">CSS3 Animations</span>
<span class="tech-tag px-2 py-1 rounded text-xs">Minimax Algorithm</span>
</div>
</div>
</div>
</div>
</section>
<!-- Certificates Section -->
<section id="certificates" class="py-20 px-6" style="background: var(--bg-secondary);">
<div class="max-w-6xl mx-auto">
<h2 class="text-4xl font-light text-center mb-16 opacity-0" id="certificates-title">Certificates</h2>
<!-- Filter Buttons -->
<div class="flex flex-wrap justify-center gap-3 mb-12 opacity-0" id="certificate-filters">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="javascript">JavaScript</button>
<button class="filter-btn" data-filter="node">Node.js</button>
<button class="filter-btn" data-filter="ai">AI/ML</button>
<button class="filter-btn" data-filter="css">CSS</button>
<button class="filter-btn" data-filter="python">Python</button>
<button class="filter-btn" data-filter="database">Database</button>
<button class="filter-btn" data-filter="development">Development</button>
<button class="filter-btn" data-filter="education">Education</button>
</div>
<!-- Loading Progress Bar -->
<div id="loading-wrapper" class="mb-8 transition-all duration-500">
<div class="w-full bg-gray-700 rounded-full h-2">
<div id="loading-indicator" class="accent-bg h-2 rounded-full transition-all duration-300" style="width: 0%" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<p class="text-center text-sm mt-2 opacity-60">Loading certificates...</p>
</div>
<!-- Certificates Grid -->
<div id="cert-container" class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Certificates will be dynamically loaded here -->
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 px-6">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-4xl font-light mb-8 opacity-0" id="contact-title">Let's Connect</h2>
<p class="text-lg opacity-80" id="contact-subtitle" style="color: var(--text-secondary);">
Ready to discuss opportunities and innovative projects.
</p>
</div>
<div class="grid md:grid-cols-2 gap-12 items-start">
<!-- Contact Form -->
<div class="card p-8 rounded-2xl opacity-0" id="contact-form">
<h3 class="font-semibold mb-6">Send a Message</h3>
<!-- Netlify form (hidden for bot detection) -->
<form name="contact" netlify netlify-honeypot="bot-field" hidden>
<input type="text" name="name" />
<input type="email" name="email" />
<textarea name="message"></textarea>
</form>
<form id="contactForm" class="space-y-6">
<!-- Honeypot field for bot protection -->
<div style="display: none;">
<label>Don't fill this out if you're human: <input name="bot-field" /></label>
</div>
<div>
<label for="name" class="block text-sm font-medium mb-2">Name</label>
<input type="text" id="name" name="name" required
class="w-full px-4 py-3 rounded-lg bg-gray-800 border border-gray-600 focus:border-orange-400 focus:outline-none transition-colors"
style="background: var(--bg-secondary); border-color: var(--border);">
</div>
<div>
<label for="email" class="block text-sm font-medium mb-2">Email</label>
<input type="email" id="email" name="email" required
class="w-full px-4 py-3 rounded-lg bg-gray-800 border border-gray-600 focus:border-orange-400 focus:outline-none transition-colors"
style="background: var(--bg-secondary); border-color: var(--border);">
</div>
<div>
<label for="message" class="block text-sm font-medium mb-2">Message</label>
<textarea id="message" name="message" rows="5" required
class="w-full px-4 py-3 rounded-lg bg-gray-800 border border-gray-600 focus:border-orange-400 focus:outline-none transition-colors resize-none"
style="background: var(--bg-secondary); border-color: var(--border);"></textarea>
</div>
<button type="submit" id="submitBtn"
class="w-full accent-bg accent-hover text-white px-6 py-3 rounded-lg font-medium transition-all duration-300 hover:shadow-lg hover:-translate-y-1">
Send Message
</button>
</form>
</div>
<!-- Contact Info -->
<div class="space-y-8 opacity-0" id="contact-info">
<div>
<h3 class="font-semibold mb-6">Get in Touch</h3>
<div class="space-y-4">
<a href="mailto:pocevicius.gabrielius@gmail.com"
class="flex items-center gap-4 p-4 rounded-lg hover:bg-gray-800 transition-colors group"
style="background: var(--bg-secondary);">
<div class="w-10 h-10 accent-bg rounded-lg flex items-center justify-center">
<svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" 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"></path>
</svg>
</div>
<div>
<p class="font-medium">Email</p>
<p class="text-sm opacity-60">pocevicius.gabrielius@gmail.com</p>
</div>
</a>
<div class="flex items-center gap-4 p-4 rounded-lg" style="background: var(--bg-secondary);">
<div class="w-10 h-10 accent-bg rounded-lg flex items-center justify-center">
<svg class="w-5 h-5 text-white" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M5.05 4.05a7 7 0 119.9 9.9L10 18.9l-4.95-4.95a7 7 0 010-9.9zM10 11a2 2 0 100-4 2 2 0 000 4z" clip-rule="evenodd"></path>
</svg>
</div>
<div>
<p class="font-medium">Location</p>
<p class="text-sm opacity-60">Limerick, Ireland</p>
</div>
</div>
</div>
</div>
<div>
<h4 class="font-medium mb-4">Follow Me</h4>
<div class="flex space-x-4">
<a href="https://github.com/GPlemon"
class="card group p-3 rounded-xl transition-all duration-300 focus:outline-none" tabindex="0">
<svg class="w-6 h-6 group-hover:text-orange-400 transition-colors" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
</svg>
</a>
<a href="https://dev.to/gabrieliuspocevicius"
class="card group p-3 rounded-xl transition-all duration-300 focus:outline-none" tabindex="0">
<svg class="w-6 h-6 group-hover:text-orange-400 transition-colors" fill="currentColor" viewBox="0 0 24 24">
<path d="M7.826 10.083a.784.784 0 0 0-.468-.175h-.701v4.198h.701a.786.786 0 0 0 .469-.175c.155-.117.233-.292.233-.525v-2.798c.001-.233-.079-.408-.234-.525zM19.236 3H4.764C3.791 3 3.002 3.787 3 4.76v14.48c.002.973.791 1.76 1.764 1.76h14.473c.973 0 1.762-.787 1.763-1.76V4.76A1.765 1.765 0 0 0 19.236 3zM9.195 13.414c0 .755-.466 1.901-1.942 1.898H5.389V8.665h1.903c1.424 0 1.902 1.144 1.903 1.899v2.85zm4.045-3.562H11.1v1.544h1.309v1.188H11.1v1.543h2.142v1.188h-2.498a.813.813 0 0 1-.833-.792V9.497a.813.813 0 0 1 .792-.832h2.539l-.002 1.187zm4.165 4.632c-.531 1.235-1.481.99-1.906 0l-1.548-5.818h1.309l1.193 4.569 1.188-4.569h1.31l-1.546 5.818z"/>
</svg>
</a>
<a href="https://www.linkedin.com/in/gabrielius-pocevicius-83344b201/"
class="card group p-3 rounded-xl transition-all duration-300 focus:outline-none" tabindex="0">
<svg class="w-6 h-6 group-hover:text-orange-400 transition-colors" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"/>
<rect width="4" height="12" x="2" y="9"/>
<circle cx="4" cy="4" r="2"/>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-8 text-center opacity-60" style="color: var(--text-secondary); border-top: 1px solid var(--border);">
<p class="text-sm">© 2025 Vici Portal</p>
<p class="text-sm mb-8 opacity-80" style="color: var(--text-secondary);">
Building high-performance, multi-purpose swarm AIs capable of replicating my expertise locally and autonomously.
</p>
</footer>
<script>
gsap.registerPlugin(ScrollTrigger);
// Certificate data - Deduplicated and organized
const certificates = [
{ path: 'data/UdacityCertificate.pdf', title: 'Udacity Certificate', category: 'education' },
{ path: 'data/CertificateOfCompletion_Microsoft Azure AI Essentials Professional Certificate by Microsoft and LinkedIn.pdf', title: 'Microsoft Azure AI', category: 'education' },
// Removed duplicate: 'data/Coursera E4WZRUCIBAMB.pdf' - same as Data Engineering below
{ path: 'data/Coursera Cert Data Engineering.pdf', title: 'DeepLearning.AI Data Engineering', category: 'education' },
{ path: 'data/CertificateOfCompletion_Economics Quantitative Demand Analysis.pdf', title: 'Quantitative Demand Analysis', category: 'education' },
{ path: 'data/CertificateOfCompletion_Marketing Strategy Competitive Intelligence.pdf', title: 'Marketing', category: 'education' },
// JavaScript Certificates
{ path: 'data/CertificateOfCompletion_Master JavaScript.pdf', title: 'Master JavaScript', category: 'javascript' },
{ path: 'data/Gabrielius Pocevicius_JavaScript.pdf', title: 'JavaScript Certificate', category: 'javascript' },
{ path: 'data/CertificateOfCompletion_EndtoEnd JavaScript Testing with Cypress.io.pdf', title: 'Cypress.io Testing', category: 'javascript' },
{ path: 'data/CertificateOfCompletion_Ethical Hacking with JavaScript.pdf', title: 'Ethical Hacking', category: 'javascript' },
{ path: 'data/CertificateOfCompletion_JavaScript Best Practices for Code Formatting.pdf', title: 'JS Code Formatting', category: 'javascript' },
{ path: 'data/CertificateOfCompletion_JavaScript Best Practices for Data.pdf', title: 'JS Data Practices', category: 'javascript' },
{ path: 'data/CertificateOfCompletion_JavaScript Security Essentials.pdf', title: 'JS Security', category: 'javascript' },
{ path: 'data/CertificateOfCompletion_JavaScript TestDriven Development ES6.pdf', title: 'Test-Driven Development', category: 'javascript' },
// Node.js Certificates
{ path: 'data/CertificateOfCompletion_Advanced Node.js.pdf', title: 'Advanced Node.js', category: 'node' },
{ path: 'data/CertificateOfCompletion_Node.js Design Patterns.pdf', title: 'Node.js Design Patterns', category: 'node' },
{ path: 'data/CertificateOfCompletion_Node.js Security.pdf', title: 'Node.js Security', category: 'node' },
// CSS Certificates
{ path: 'data/CertificateOfCompletion_CSS Essential Training.pdf', title: 'CSS Essential Training', category: 'css' },
{ path: 'data/CertificateOfCompletion_Responsive Layout.pdf', title: 'Responsive Layout', category: 'css' },
// AI Certificates
{ path: 'data/CertificateOfCompletion_Career Essentials in Generative AI by Microsoft and LinkedIn.pdf', title: 'Generative AI Essentials', category: 'ai' },
{ path: 'data/CertificateOfCompletion_Unboxing AI Build a Remote MCP Server from Zero to Deployed with OAuth.pdf', title: 'MCP Server Certificate', category: 'ai' },
{ path: 'data/CertificateOfCompletion_Artificial Intelligence Foundations Machine Learning.pdf', title: 'Machine Learning', category: 'ai' },
// Development Certificates
{ path: 'data/CertificateOfCompletion_Search Techniques for Web Developers.pdf', title: 'Search Techniques', category: 'development' },
{ path: 'data/CertificateOfCompletion_Essential New Skills in Software Engineering.pdf', title: 'Software Engineering Skills', category: 'development' },
{ path: 'data/CertificateOfCompletion_Unix Essential Training.pdf', title: 'Unix Shell', category: 'development' },
{ path: 'data/CertificateOfCompletion_Introduction to Career Skills in Software Development.pdf', title: 'Career Skills in Software Development', category: 'development' },
{ path: 'data/CertificateOfCompletion_Career Essentials in Software Development by Microsoft and LinkedIn.pdf', title: 'Career Essentials in Software Development', category: 'development' },
{ path: 'data/CertificateOfCompletion_Programming Foundations Software TestingQA.pdf', title: 'Software Testing & QA', category: 'development' },
{ path: 'data/CertificateOfCompletion_Programming Foundations Beyond the Fundamentals.pdf', title: 'Programming Beyond Fundamentals', category: 'development' },
{ path: 'data/CertificateOfCompletion_Programming Foundations Fundamentals.pdf', title: 'Programming Fundamentals', category: 'development' },
// Other Certificates
{ path: 'data/CertificateOfCompletion_Learning MongoDB.pdf', title: 'MongoDB', category: 'database' },
{ path: 'data/Gabrielius Pocevicius_Python.pdf', title: 'Python Certificate', category: 'python' }
];
// Remove duplicates based on path (primary key)
const uniqueCertificates = certificates.filter((cert, index, self) =>
index === self.findIndex(c => c.path === cert.path)
);
let loadedCount = 0;
const totalCerts = uniqueCertificates.length; // Use unique certificates count
let currentFilter = 'all';
const loadedPaths = new Set(); // Track loaded certificate paths to prevent duplicates
// Initialize all functionality when DOM is loaded
document.addEventListener('DOMContentLoaded', function() {
// Clear any existing certificates first
const certContainer = document.getElementById('cert-container');
if (certContainer) {
certContainer.innerHTML = '';
loadedPaths.clear();
loadedCount = 0;
}
// Initialize certificates
initializeCertificates();
// EmailJS form submission handler
const contactForm = document.getElementById('contactForm');
const submitBtn = document.getElementById('submitBtn');
if (contactForm && submitBtn) {
contactForm.addEventListener('submit', function(event) {
event.preventDefault();
const originalText = submitBtn.textContent;
submitBtn.textContent = 'Sending...';
submitBtn.disabled = true;
const serviceID = 'service_63heqj5';
const templateID = 'template_mavsf06';
emailjs.sendForm(serviceID, templateID, this)
.then(() => {
submitBtn.textContent = 'Message Sent!';
contactForm.reset(); // Reset the form
// Reset button text after 3 seconds
setTimeout(() => {
submitBtn.textContent = originalText;
submitBtn.disabled = false;
}, 3000);
}, (err) => {
console.error('EmailJS error:', err);
submitBtn.textContent = 'Error - Try Again';
// Reset button text after 3 seconds
setTimeout(() => {
submitBtn.textContent = originalText;
submitBtn.disabled = false;
}, 3000);
});
});
}
});
// Certificate filtering
function filterCertificates(category, buttonElement) {
const cards = document.querySelectorAll('[data-categories]');
const filterButtons = document.querySelectorAll('.filter-btn');
// Update active filter button
filterButtons.forEach(btn => btn.classList.remove('active'));
buttonElement.classList.add('active');
cards.forEach(card => {
const cardCategory = card.dataset.categories;
if (category === 'all' || cardCategory === category) {
card.style.display = 'block';
gsap.to(card, { opacity: 1, scale: 1, duration: 0.3 });
} else {
gsap.to(card, {
opacity: 0,
scale: 0.8,
duration: 0.3,
onComplete: () => card.style.display = 'none'
});
}
});
}
// Update loading progress
function updateProgress() {
loadedCount++;
const progress = Math.round((loadedCount / totalCerts) * 100);
const loadingIndicator = document.getElementById('loading-indicator');
if (loadingIndicator) {
loadingIndicator.style.width = `${progress}%`;
loadingIndicator.setAttribute('aria-valuenow', progress);
loadingIndicator.textContent = `${progress}%`;
}
if (loadedCount === totalCerts) {
setTimeout(() => {
const loadingWrapper = document.getElementById('loading-wrapper');
if (loadingWrapper) {
loadingWrapper.classList.add('opacity-0', 'h-0', 'mb-0');
}
}, 500);
}
}
// Create certificate card with duplicate prevention
function createCertificateCard(cert, index) {
return new Promise((resolve) => {
// Check if this certificate path has already been loaded
if (loadedPaths.has(cert.path)) {
console.warn(`Duplicate certificate prevented: ${cert.title} (${cert.path})`);
resolve();
return;