-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2366 lines (2129 loc) · 152 KB
/
index.html
File metadata and controls
2366 lines (2129 loc) · 152 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>
<!-- ================================================================ -->
<!-- GOOGLE ANALYTICS CODE -->
<!-- ID: G-FMPPSZV1V8 -->
<!-- ================================================================ -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FMPPSZV1V8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-FMPPSZV1V8');
</script>
<!-- ================================================================ -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Angga Conni Saputra | Portfolio</title>
<link rel="icon" type="image/png" href="favicon.png">
<!-- FONTS: 'Manrope' for a clean, modern institutional look -->
<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=Manrope:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<style>
:root {
/* --- PALETTE: TRUST BLUE + CHARCOAL --- */
--bg-body: #F8FAFC; /* Slate 50 */
--bg-card: #FFFFFF; /* Pure White */
--text-main: #0F172A; /* Slate 900 */
--text-muted: #475569; /* Slate 600 */
--text-light: #94A3B8; /* Slate 400 */
--primary: #2563EB; /* Royal Blue */
--primary-hover: #1D4ED8;
--accent-gold: #D4AF37; /* Metallic Gold */
--border: #E2E8F0; /* Slate 200 */
/* Shadows */
--shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}
body {
font-family: 'Manrope', sans-serif;
background-color: var(--bg-body);
color: var(--text-main);
line-height: 1.6;
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
}
/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
font-weight: 700;
color: var(--text-main);
margin-top: 0;
letter-spacing: -0.02em;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
/* --- HEADER (TIGHTER SPACING) --- */
header {
background: var(--bg-card);
border-bottom: 1px solid var(--border);
/* padding: 40px 20px 25px; /* Reduced vertical padding */
text-align: center;
}
h1 {
font-size: 2.2rem; /* Balanced size */
margin-bottom: 5px;
color: var(--text-main);
font-weight: 800;
}
.subtitle {
font-size: 1rem;
color: var(--primary);
font-weight: 600;
margin-bottom: 15px;
}
.header-bio {
max-width: 650px;
margin: 0 auto 20px;
color: var(--text-muted);
font-size: 0.95rem;
}
/* --- BUTTONS --- */
.cv-button-container { margin: 20px 0; }
.btn-cv {
display: inline-flex;
align-items: center;
background-color: var(--text-main);
color: var(--accent-gold);
padding: 10px 24px;
border-radius: 50px;
font-weight: 700;
font-size: 0.9rem;
border: 1px solid var(--text-main);
box-shadow: var(--shadow-md);
transition: all 0.3s ease;
}
.btn-cv:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
background-color: var(--bg-card);
color: var(--text-main);
border-color: var(--text-main);
}
.btn-cv i { margin-right: 8px; font-size: 1.1rem; }
.contact-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 10px; }
.contact-links a {
color: var(--text-muted);
font-weight: 500;
font-size: 0.85rem;
display: flex; align-items: center; gap: 6px;
}
.contact-links a:hover { color: var(--primary); }
/* --- LAYOUT --- */
.container { max-width: 1100px; margin: 0 auto; padding: 10px 20px; /* Reduced top padding */ }
section { margin-bottom: 20px; /* Reduced Section Spacing */ }
h2 {
font-size: 1.4rem;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid var(--border);
display: flex;
align-items: center;
gap: 10px;
}
h2 i { color: var(--primary); opacity: 0.8; }
/* --- CAROUSEL (PROJECTS) --- */
.carousel-container { position: relative; display: flex; align-items: center; }
.carousel-track {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-behavior: smooth;
padding: 5px 5px 25px 5px;
-ms-overflow-style: none; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
min-width: 290px;
max-width: 310px;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
overflow: hidden;
display: flex;
flex-direction: column;
transition: all 0.3s ease;
box-shadow: var(--shadow-sm);
flex-shrink: 0;
}
.carousel-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
border-color: var(--primary);
}
/* REDUCED HEIGHT FOR THUMBNAIL */
.card-thumb {
width: 100%;
height: 120px; /* Reduced from 150px */
background-color: #f1f5f9;
object-fit: cover;
border-bottom: 1px solid var(--border);
}
.card-body { padding: 18px; display: flex; flex-direction: column; flex-grow: 1; }
.tag {
display: inline-block;
background: #EFF6FF;
color: var(--primary);
font-size: 0.65rem;
padding: 3px 8px;
border-radius: 100px;
font-weight: 700;
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.carousel-card h3 {
font-size: 1rem;
margin-bottom: 8px;
line-height: 1.3;
min-height: 2.6em;
}
.carousel-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; flex-grow: 1; }
.btn-group { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.btn {
display: flex; justify-content: center; align-items: center; gap: 8px;
padding: 8px;
border-radius: 6px;
font-size: 0.8rem;
font-weight: 600;
text-align: center;
transition: all 0.2s;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.carousel-btn {
background: white;
border: 1px solid var(--border);
width: 40px; height: 40px;
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
cursor: pointer;
box-shadow: var(--shadow-md);
z-index: 10;
color: var(--text-main);
position: absolute;
transition: all 0.2s;
}
.carousel-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }
/* --- EXPERTISE GRID --- */
.expertise-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
}
.expert-card {
background: var(--bg-card);
padding: 25px;
border-radius: 12px;
border: 1px solid var(--border);
transition: all 0.3s ease;
box-shadow: var(--shadow-sm);
cursor: pointer;
}
.expert-card:hover {
box-shadow: var(--shadow-md);
border-color: var(--primary);
transform: translateY(-2px);
}
.expert-card i {
font-size: 1.8rem;
color: var(--accent-gold);
margin-bottom: 15px;
display: block;
}
.expert-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.expert-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
/* --- TIMELINE (Experience) --- */
.timeline {
border-left: 2px solid var(--border);
margin-left: 10px;
padding-left: 25px;
}
.job {
position: relative;
margin-bottom: 30px;
padding: 25px;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
transition: all 0.3s ease;
cursor: pointer;
box-shadow: var(--shadow-sm);
}
.job:hover {
box-shadow: var(--shadow-md);
border-color: var(--primary);
}
.job::before {
content: '';
position: absolute;
left: -32px;
top: 30px;
width: 12px; height: 12px;
background: var(--bg-body);
border: 2px solid var(--primary);
border-radius: 50%;
z-index: 2;
}
.job-period {
font-size: 0.75rem;
color: var(--primary);
font-weight: 700;
text-transform: uppercase;
margin-bottom: 5px;
display: block;
letter-spacing: 0.5px;
}
.job h3 { margin: 0 0 5px 0; font-size: 1.15rem; }
.job-company { font-weight: 500; color: var(--text-muted); margin-bottom: 12px; display: block; font-size: 0.95rem;}
.job ul { margin: 0; padding-left: 18px; color: var(--text-main); font-size: 0.9rem; }
.job li { margin-bottom: 6px; }
.job::after {
content: "View Details →";
display: block; margin-top: 15px;
font-size: 0.8rem; color: var(--primary);
font-weight: 600; opacity: 0; transition: opacity 0.3s;
}
.job:hover::after { opacity: 1; }
/* --- EDUCATION --- */
.edu-item { margin-bottom: 30px; position: relative; }
.edu-item::before {
content: ''; position: absolute; left: -30px; top: 6px;
width: 8px; height: 8px; background: var(--text-light); border-radius: 50%;
}
.edu-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.edu-meta { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.edu-desc {
font-size: 0.85rem; color: var(--text-muted);
background: white; padding: 15px;
border: 1px solid var(--border); border-radius: 8px;
border-left: 4px solid var(--accent-gold);
}
/* --- LISTS & TABLES --- */
.mm-list { display: flex; flex-direction: column; gap: 10px; }
.mm-item {
padding: 18px;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 8px;
transition: border-color 0.2s;
display: flex;
flex-direction: column;
gap: 5px;
}
.mm-item:hover { border-color: var(--primary); }
.mm-item h4 { margin: 0; font-size: 0.95rem; color: var(--text-main); line-height: 1.4; }
.mm-meta {
font-size: 0.7rem;
color: var(--primary);
font-weight: 700;
text-transform: uppercase;
display: block;
}
.mm-link { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; margin-top: 5px; }
.mm-link:hover { color: var(--primary); }
.table-scroll {
max-height: 350px; overflow-y: auto;
border: 1px solid var(--border);
background: white;
border-radius: 8px;
}
.pub-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.pub-table th {
background-color: #F1F5F9;
color: var(--text-main);
text-align: left; padding: 12px;
font-weight: 600;
position: sticky; top: 0; z-index: 10;
border-bottom: 1px solid var(--border);
}
.pub-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: top;}
.isbn-code {
font-family: 'Courier New', monospace;
color: var(--primary);
background: #EFF6FF;
padding: 2px 6px; border-radius: 4px; font-size: 0.8rem;
white-space: nowrap;
}
/* --- MODAL --- */
.modal-overlay {
display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: rgba(15, 23, 42, 0.6);
z-index: 2000; align-items: center; justify-content: center;
backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal-content {
background: white; width: 90%; max-width: 700px; max-height: 85vh;
border-radius: 12px;
display: flex; flex-direction: column;
box-shadow: var(--shadow-lg);
}
.modal-header {
padding: 20px; border-bottom: 1px solid var(--border);
display: flex; justify-content: space-between; align-items: center;
}
.modal-header h3 { margin: 0; color: var(--primary); font-size: 1.15rem; }
.close-icon { cursor: pointer; font-size: 1.4rem; color: var(--text-light); transition: 0.2s; }
.close-icon:hover { color: var(--text-main); }
.modal-body { padding: 25px; overflow-y: auto; color: var(--text-main); }
.modal-body h4 { color: var(--text-main); margin-top: 20px; margin-bottom: 10px; font-size: 1rem; border-left: 4px solid var(--accent-gold); padding-left: 10px; }
.modal-body ul { padding-left: 20px; margin-top: 5px; }
.modal-body li { margin-bottom: 8px; color: var(--text-muted); font-size: 0.9rem; }
.modal-footer { padding: 15px; border-top: 1px solid var(--border); text-align: right; background: #F8FAFC; border-radius: 0 0 12px 12px; }
.btn-close {
background: white; border: 1px solid var(--border);
padding: 8px 20px; cursor: pointer; font-weight: 600;
color: var(--text-muted); border-radius: 6px;
transition: all 0.2s;
}
.btn-close:hover { background: var(--text-main); color: white; border-color: var(--text-main); }
footer {
text-align: center; padding: 20px 20px;
color: var(--text-light); font-size: 0.85rem;
background: white; border-top: 1px solid var(--border); margin-top: 60px;
}
/* --- RESPONSIVE --- */
@media (max-width: 768px) {
h1 { font-size: 2rem; }
header { padding-top: 40px; }
.carousel-btn { display: none; }
.carousel-card { min-width: 270px; }
.timeline { margin-left: 0; padding-left: 20px; }
.job::before { left: -27px; }
.header-bio { padding: 0 10px; }
.mm-item { flex-direction: column; align-items: flex-start; }
.mm-link { margin-left: 0; margin-top: 8px; }
}
/* --- FULL BLEED CAROUSEL (TIMELINE BABLAS) --- */
body {
overflow-x: hidden; /* Mencegah munculnya scrollbar horizontal di browser */
}
.full-bleed-wrapper {
width: 100vw;
margin-left: calc(50% - 50vw);
position: relative;
}
.full-bleed-track {
/* Padding dinamis: Memastikan card pertama tetap sejajar dengan teks (batas 1100px) */
padding-left: max(20px, calc((100vw - 1100px) / 2 + 20px));
padding-right: max(20px, calc((100vw - 1100px) / 2 + 20px));
}
</style>
<style>
/* Menyembunyikan scrollbar standar tapi tetap bisa di-scroll */
.hide-scrollbar::-webkit-scrollbar {
display: none;
}
.hide-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
/* Animasi garis horizontal */
.timeline-line-grow {
animation: growRight 1.5s ease-out forwards;
transform-origin: left;
}
@keyframes growRight {
from { transform: scaleX(0); }
to { transform: scaleX(1); }
}
/* Kelas untuk menyembunyikan item saat difilter */
.hide-item {
display: none !important;
}
/* Animasi saat item muncul kembali */
.fade-in-card {
animation: fadeIn 0.4s ease-out forwards;
}
@keyframes fadeIn {
from { opacity: 0; transform: scale(0.9); }
to { opacity: 1; transform: scale(1); }
}
</style>
</head>
<body>
<header class="relative bg-slate-50 text-slate-900 font-sans overflow-hidden flex flex-col">
<div class="absolute top-[-10%] left-[-10%] w-96 h-96 bg-blue-300 rounded-full mix-blend-multiply filter blur-[100px] opacity-40 pointer-events-none"></div>
<div class="absolute top-[20%] right-[-5%] w-96 h-96 bg-indigo-300 rounded-full mix-blend-multiply filter blur-[100px] opacity-40 pointer-events-none"></div>
<nav class="relative w-full max-w-[1100px] mx-auto px-[20px] py-4 flex justify-between items-center z-20">
<div class="text-xl font-bold tracking-tighter text-slate-800">
Angga<span class="text-blue-600">.</span>
</div>
<div class="hidden sm:flex items-center gap-6 text-sm font-medium text-slate-600">
<a href="#" class="hover:text-blue-600 transition-colors">Philosophy</a>
<a href="#timeline-scroll" class="hover:text-blue-600 transition-colors">Tech Portofolio</a>
<a href="mailto:conniezz.cool@gmail.com" class="hover:text-blue-600 transition-colors">Contact</a>
</div>
</nav>
<main class="relative w-full max-w-[1100px] mx-auto px-[20px] pt-2 pb-4 md:pt-4 md:pb-6 flex flex-col md:flex-row items-center justify-between gap-8 md:gap-12 z-10">
<div class="flex-1 text-center md:text-left flex flex-col items-center md:items-start w-full">
<div class="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-white border border-slate-200 text-slate-700 text-sm font-medium mb-6 md:mb-8 shadow-sm hover:shadow-md transition-shadow cursor-default">
<span class="relative flex h-2.5 w-2.5">
<span class="animate-ping absolute inline-flex h-full w-full rounded-full bg-blue-400 opacity-75"></span>
<span class="relative inline-flex rounded-full h-2.5 w-2.5 bg-blue-500"></span>
</span>
Available for Global Impact
</div>
<h1 class="text-5xl md:text-5xl lg:text-6xl font-extrabold tracking-tight mb-4 text-slate-900 leading-[1.1] md:mt-0">
Angga Conni <br class="hidden md:block"/>
<span class="text-transparent bg-clip-text bg-gradient-to-r from-blue-600 to-indigo-600">
Saputra
</span>
</h1>
<h2 class="text-lg md:text-xl font-semibold text-slate-700 mb-5 border-none pb-0">
Solutions Architect | Cultural Data Scientist | Gov-Tech Innovator
</h2>
<p class="text-base md:text-lg text-slate-600 mb-8 max-w-xl mx-auto md:mx-0 leading-relaxed">
Architecting Sustainable Digital Public Infrastructure for Global Policy Reform. Bridging High-Level Mandates with Zero-Cost, Serverless Execution for UNESCO, UNDP, and National Ministries.
</p>
<div class="flex flex-col sm:flex-row items-center justify-center md:justify-start gap-4 w-full">
<a href="complete.html" target="_blank" rel="noreferrer" class="group flex items-center justify-center gap-2 w-full sm:w-auto px-6 py-3.5 bg-slate-900 text-white rounded-full font-semibold transition-all duration-300 hover:bg-blue-600 hover:shadow-lg hover:shadow-blue-200 hover:-translate-y-1">
<i class="ph ph-file-text text-xl"></i>
<span>View Full Portfolio</span>
<i class="ph ph-arrow-right text-lg transition-transform duration-300 group-hover:translate-x-1"></i>
</a>
<div class="flex items-center gap-3 w-full sm:w-auto justify-center">
<a href="https://anggaconni.github.io" target="_blank" rel="noreferrer" aria-label="Website" class="p-3.5 bg-white text-slate-600 rounded-full border border-slate-200 hover:border-blue-300 hover:text-blue-600 transition-all duration-300 hover:shadow-md hover:-translate-y-1 flex items-center justify-center">
<i class="ph ph-globe text-xl"></i>
</a>
<a href="https://www.linkedin.com/in/anggaconni/" target="_blank" rel="noreferrer" aria-label="LinkedIn" class="p-3.5 bg-white text-slate-600 rounded-full border border-slate-200 hover:border-blue-300 hover:text-blue-600 transition-all duration-300 hover:shadow-md hover:-translate-y-1 flex items-center justify-center">
<i class="ph ph-linkedin-logo text-xl"></i>
</a>
<a href="https://github.com/AnggaConni" target="_blank" rel="noreferrer" aria-label="GitHub" class="p-3.5 bg-white text-slate-600 rounded-full border border-slate-200 hover:border-blue-300 hover:text-blue-600 transition-all duration-300 hover:shadow-md hover:-translate-y-1 flex items-center justify-center">
<i class="ph ph-github-logo text-xl"></i>
</a>
</div>
</div>
</div>
<div class="w-full max-w-[400px] shrink-0 relative h-[450px] mt-4 md:mt-0" style="perspective: 1000px;">
<div class="absolute -top-8 right-4 text-sm font-medium text-slate-400 flex items-center gap-2 animate-pulse">
Click cards to explore <i class="ph ph-arrow-right"></i>
</div>
<div id="card-stack-container" class="relative w-full h-full cursor-pointer">
<div id="stack-card-0" class="absolute top-0 left-0 w-full bg-white/90 backdrop-blur-xl rounded-[2.5rem] p-8 border border-white flex flex-col justify-between transition-all duration-500 ease-[cubic-bezier(0.25,1,0.5,1)] translate-y-0 scale-100 z-30 opacity-100 shadow-2xl hover:-translate-y-2" style="height: 380px;">
<div class="flex justify-between items-start mb-4">
<div class="w-12 h-12 bg-blue-50 rounded-2xl flex items-center justify-center text-blue-600 border border-blue-100 shadow-sm">
<i class="ph ph-globe text-2xl"></i>
</div>
<div class="px-3 py-1 text-xs font-bold uppercase tracking-wider rounded-lg flex items-center gap-1.5 border text-blue-700 bg-blue-50 border-blue-100">
<i class="ph ph-check-circle fill text-lg" id="status-icon-0"></i>
UN Mandates
</div>
</div>
<div class="space-y-3 flex-1">
<div>
<div class="text-[0.8rem] font-semibold text-slate-400 mb-1 uppercase tracking-wide">UNESCO & UNDP Initiatives</div>
<h3 class="text-xl font-bold text-slate-800 leading-tight border-none pb-0">Global Policy & Digital Infra</h3>
</div>
<div>
<div class="flex flex-wrap gap-1.5">
<span class="px-2.5 py-1 bg-slate-100 border border-slate-200 rounded-md text-[0.7rem] text-slate-600 font-bold uppercase tracking-wide">UNESCO</span>
<span class="px-2.5 py-1 bg-slate-100 border border-slate-200 rounded-md text-[0.7rem] text-slate-600 font-bold uppercase tracking-wide">UNDP</span>
<span class="px-2.5 py-1 bg-slate-100 border border-slate-200 rounded-md text-[0.7rem] text-slate-600 font-bold uppercase tracking-wide">Intl</span>
</div>
</div>
</div>
<div class="mt-4 p-4 bg-gradient-to-r from-slate-900 to-slate-800 rounded-2xl border border-slate-700 text-white shadow-inner">
<div class="flex items-center justify-between mb-2">
<div class="flex items-center gap-2 font-medium text-sm">
<i class="ph ph-hard-drives text-blue-400 text-lg"></i> Zero-Cost
</div>
<span class="text-[0.65rem] font-mono text-emerald-400 bg-emerald-400/10 border border-emerald-400/20 px-2 py-0.5 rounded">Google Stack</span>
</div>
<div class="w-full bg-slate-700 rounded-full h-1.5 mt-2 overflow-hidden">
<div id="progress-0" class="bg-blue-500 h-1.5 rounded-full relative transition-all duration-1000 w-full">
<div class="absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-white rounded-full shadow-[0_0_10px_rgba(255,255,255,0.8)]"></div>
</div>
</div>
<div class="text-[0.7rem] text-slate-400 mt-2 font-mono">Cost: $0.00 Infrastructure</div>
</div>
</div>
<div id="stack-card-1" class="absolute top-0 left-0 w-full bg-white/90 backdrop-blur-xl rounded-[2.5rem] p-8 border border-white flex flex-col justify-between transition-all duration-500 ease-[cubic-bezier(0.25,1,0.5,1)] translate-y-8 scale-95 z-20 opacity-80 shadow-lg" style="height: 380px;">
<div class="flex justify-between items-start mb-4">
<div class="w-12 h-12 bg-blue-50 rounded-2xl flex items-center justify-center text-emerald-600 border border-emerald-100 shadow-sm">
<i class="ph ph-bank text-2xl"></i>
</div>
<div class="px-3 py-1 text-xs font-bold uppercase tracking-wider rounded-lg flex items-center gap-1.5 border text-emerald-700 bg-emerald-50 border-emerald-100">
<div class="w-2 h-2 rounded-full bg-current" id="status-icon-1"></div>
Nationally
</div>
</div>
<div class="space-y-3 flex-1">
<div>
<div class="text-[0.8rem] font-semibold text-slate-400 mb-1 uppercase tracking-wide">National Reform Mandate</div>
<h3 class="text-xl font-bold text-slate-800 leading-tight border-none pb-0">Zero-Cost Bureaucracy</h3>
</div>
<div>
<div class="flex flex-wrap gap-1.5">
<span class="px-2.5 py-1 bg-slate-100 border border-slate-200 rounded-md text-[0.7rem] text-slate-600 font-bold uppercase tracking-wide">Kemenkes</span>
<span class="px-2.5 py-1 bg-slate-100 border border-slate-200 rounded-md text-[0.7rem] text-slate-600 font-bold uppercase tracking-wide">Kemendesa</span>
<span class="px-2.5 py-1 bg-slate-100 border border-slate-200 rounded-md text-[0.7rem] text-slate-600 font-bold uppercase tracking-wide">PMK</span>
</div>
</div>
</div>
<div class="mt-4 p-4 bg-gradient-to-r from-slate-900 to-slate-800 rounded-2xl border border-slate-700 text-white shadow-inner">
<div class="flex items-center justify-between mb-2">
<div class="flex items-center gap-2 font-medium text-sm">
<i class="ph ph-code text-blue-400 text-lg"></i> AI-Augmented
</div>
<span class="text-[0.65rem] font-mono text-emerald-400 bg-emerald-400/10 border border-emerald-400/20 px-2 py-0.5 rounded">HTML + JS</span>
</div>
<div class="w-full bg-slate-700 rounded-full h-1.5 mt-2 overflow-hidden">
<div id="progress-1" class="bg-blue-500 h-1.5 rounded-full relative transition-all duration-1000 w-0">
<div class="absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-white rounded-full shadow-[0_0_10px_rgba(255,255,255,0.8)]"></div>
</div>
</div>
<div class="text-[0.7rem] text-slate-400 mt-2 font-mono">Efficiency: Auto Workflows</div>
</div>
</div>
<div id="stack-card-2" class="absolute top-0 left-0 w-full bg-white/90 backdrop-blur-xl rounded-[2.5rem] p-8 border border-white flex flex-col justify-between transition-all duration-500 ease-[cubic-bezier(0.25,1,0.5,1)] translate-y-16 scale-90 z-10 opacity-40 shadow-md" style="height: 380px;">
<div class="flex justify-between items-start mb-4">
<div class="w-12 h-12 bg-blue-50 rounded-2xl flex items-center justify-center text-amber-600 border border-amber-100 shadow-sm">
<i class="ph ph-cpu text-2xl"></i>
</div>
<div class="px-3 py-1 text-xs font-bold uppercase tracking-wider rounded-lg flex items-center gap-1.5 border text-amber-700 bg-amber-50 border-amber-100">
<div class="w-2 h-2 rounded-full bg-current" id="status-icon-2"></div>
Ecosystems
</div>
</div>
<div class="space-y-3 flex-1">
<div>
<div class="text-[0.8rem] font-semibold text-slate-400 mb-1 uppercase tracking-wide">Gamification & Foresight</div>
<h3 class="text-xl font-bold text-slate-800 leading-tight border-none pb-0">Gamified Policy Simulations</h3>
</div>
<div>
<div class="flex flex-wrap gap-1.5">
<span class="px-2.5 py-1 bg-slate-100 border border-slate-200 rounded-md text-[0.7rem] text-slate-600 font-bold uppercase tracking-wide">WebGL</span>
<span class="px-2.5 py-1 bg-slate-100 border border-slate-200 rounded-md text-[0.7rem] text-slate-600 font-bold uppercase tracking-wide">Three.js</span>
<span class="px-2.5 py-1 bg-slate-100 border border-slate-200 rounded-md text-[0.7rem] text-slate-600 font-bold uppercase tracking-wide">AI</span>
</div>
</div>
</div>
<div class="mt-4 p-4 bg-gradient-to-r from-slate-900 to-slate-800 rounded-2xl border border-slate-700 text-white shadow-inner">
<div class="flex items-center justify-between mb-2">
<div class="flex items-center gap-2 font-medium text-sm">
<i class="ph ph-cube text-blue-400 text-lg"></i> 3D & AI
</div>
<span class="text-[0.65rem] font-mono text-emerald-400 bg-emerald-400/10 border border-emerald-400/20 px-2 py-0.5 rounded">Commons</span>
</div>
<div class="w-full bg-slate-700 rounded-full h-1.5 mt-2 overflow-hidden">
<div id="progress-2" class="bg-blue-500 h-1.5 rounded-full relative transition-all duration-1000 w-0">
<div class="absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-white rounded-full shadow-[0_0_10px_rgba(255,255,255,0.8)]"></div>
</div>
</div>
<div class="text-[0.7rem] text-slate-400 mt-2 font-mono">Impact: High Engagement</div>
</div>
</div>
</div>
<div class="absolute bottom-0 left-0 w-full flex justify-center gap-2 z-40">
<div id="dot-0" class="h-2 rounded-full transition-all duration-300 w-6 bg-blue-600"></div>
<div id="dot-1" class="h-2 rounded-full transition-all duration-300 w-2 bg-slate-300"></div>
<div id="dot-2" class="h-2 rounded-full transition-all duration-300 w-2 bg-slate-300"></div>
</div>
</div>
</main>
</header>
<div class="container">
<!-- 1. CAROUSEL SECTION (Updated Applications) -->
<section style="margin-bottom: 50px;">
<h2 class="border-none pb-0"><i class="ph ph-rocket-launch"></i> Footprint of Work and Innovation</h2>
<p style="color: var(--text-muted); font-size: 0.95rem; margin-bottom: 25px;">
Scroll to the right to explore my <strong>timeline</strong> of applications. Use the filters to search by specific categories.
</p>
<div class="mb-8 flex flex-col md:flex-row justify-between items-center gap-6">
<div class="flex flex-wrap justify-start gap-2" id="filter-container">
<button class="filter-btn active bg-indigo-600 text-white px-5 py-2 rounded-full text-sm font-semibold shadow-md transition-all" data-filter="all">All Works</button>
<button class="filter-btn bg-white text-slate-600 border border-slate-200 px-5 py-2 rounded-full text-sm font-semibold hover:bg-slate-100 transition-all" data-filter="ai-data">AI & Data</button>
<button class="filter-btn bg-white text-slate-600 border border-slate-200 px-5 py-2 rounded-full text-sm font-semibold hover:bg-slate-100 transition-all" data-filter="edtech">EdTech & Game</button>
<button class="filter-btn bg-white text-slate-600 border border-slate-200 px-5 py-2 rounded-full text-sm font-semibold hover:bg-slate-100 transition-all" data-filter="gis">GIS & WebMap</button>
<button class="filter-btn bg-white text-slate-600 border border-slate-200 px-5 py-2 rounded-full text-sm font-semibold hover:bg-slate-100 transition-all" data-filter="tools">Sistem & Tools</button>
</div>
<div class="flex gap-2 z-10 hidden sm:flex shrink-0">
<button id="scrollLeftBtn" class="bg-white border border-slate-200 text-slate-600 hover:text-indigo-600 hover:border-indigo-300 p-2.5 rounded-full shadow-sm transition-all focus:outline-none">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5">
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 19.5L8.25 12l7.5-7.5" />
</svg>
</button>
<button id="scrollRightBtn" class="bg-indigo-600 text-white hover:bg-indigo-700 p-2.5 rounded-full shadow-md transition-all focus:outline-none">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5">
<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 4.5l7.5 7.5-7.5 7.5" />
</svg>
</button>
</div>
</div>
<div class="full-bleed-wrapper">
<div class="absolute top-[39px] left-0 w-full h-1 bg-slate-200 hidden md:block"></div>
<div class="absolute top-[39px] left-0 w-full h-1 bg-indigo-500 timeline-line-grow hidden md:block"></div>
<div id="timeline-scroll" class="flex overflow-x-auto hide-scrollbar snap-x snap-mandatory scroll-smooth pb-4 pt-4 gap-6 md:gap-10 items-stretch transition-all duration-300 full-bleed-track">
</div>
<div id="empty-state" class="hidden text-center py-12 w-full text-slate-500">
Tidak ada proyek di kategori ini.
</div>
</div>
</section>
<!-- 2. CORE COMPETENCIES -->
<section>
<h2><i class="ph ph-lightbulb"></i> Core Competencies</h2>
<div class="expertise-grid">
<div class="expert-card" onclick="openModal('modal-behavioral')">
<i class="ph ph-brain"></i>
<h3>Behavioral Science</h3>
<p>Nudge Theory & Social Proof strategies applied to public sector adoption.</p>
</div>
<div class="expert-card" onclick="openModal('modal-tech')">
<i class="ph ph-code"></i>
<h3>Civic Tech & AI</h3>
<p>Developing low-code systems, IoT integration, and "Gamified Policy" tools.</p>
</div>
<div class="expert-card" onclick="openModal('modal-diplomacy')">
<i class="ph ph-handshake"></i>
<h3>Diplomacy & Policy</h3>
<p>Stakeholder management, high-level policy bridging, and conflict resolution.</p>
</div>
</div>
</section>
<!-- 3. EXPERIENCE -->
<section>
<h2><i class="ph ph-briefcase"></i> Professional Experience</h2>
<div class="timeline">
<!-- CONSULTANT -->
<div class="job" onclick="openModal('modal-consultant')">
<span class="job-period">2025 – Present</span>
<h3>Strategic Advisor & System Architect</h3>
<span class="job-company">Independent Consultant (Min. Health, Kemendikdasmen, Kemenko PMK)</span>
<ul>
<li><strong>Ministry of Health:</strong> Designed digital reporting systems for specialist medical education, enhancing accountability for 2,600+ residents.</li>
<li><strong>Kemendikdasmen:</strong> Co-developed "Ocean Literacy" pilot (Blue School), enabling student-led digital data collection.</li>
<li><strong>Kemenko PMK:</strong> Delivered capacity building on Horizon Scanning methodology for policy foresight.</li>
</ul>
</div>
<!-- UNESCO -->
<div class="job" onclick="openModal('modal-unesco')">
<span class="job-period">Feb 2023 – Apr 2025</span>
<h3>Project Assistant (Culture Unit)</h3>
<span class="job-company">UNESCO Jakarta</span>
<ul>
<li><strong>Program Continuity:</strong> Assumed key coordination duties during leadership sabbatical (2023), managing 2003 (ICH) & 2001 (UCH) conventions.</li>
<li><strong>Digital Innovation:</strong> Built "Heritage Commons" 3D simulation game and "UN Travel Calculator" to automate complex workflows.</li>
<li><strong>Diplomacy:</strong> Facilitated high-level visits (US Congress) and informal diplomacy efforts (Brunei).</li>
</ul>
</div>
<!-- UNDP -->
<div class="job" onclick="openModal('modal-undp')">
<span class="job-period">Mar 2022 – Feb 2023</span>
<h3>Vaccine Cold Chain Manager (SMILE Project)</h3>
<span class="job-company">UNDP Indonesia (Papua Region)</span>
<ul>
<li><strong>Impact:</strong> Increased vaccine stock reporting from 5% to 60% in remote districts using behavioral insights.</li>
<li><strong>System Integration:</strong> Mediated workflow harmonization between Malaria & Vaccine units.</li>
<li><strong>Tech Oversight:</strong> Integrated IoT sensors for real-time cold chain monitoring.</li>
</ul>
</div>
<!-- MINISTRY OF VILLAGE -->
<div class="job" onclick="openModal('modal-kemendes')">
<span class="job-period">Jan 2016 – Jan 2020</span>
<h3>PIC Data Command Room (BALILATFO)</h3>
<span class="job-company">Ministry of Village, PDT & Transmigration</span>
<ul>
<li><strong>National Data:</strong> Established the Data Command Room to coordinate flows between field facilitators and central leadership.</li>
<li><strong>Policy Analysis:</strong> Produced weekly Policy Briefs and documented grassroots STI (Science, Tech, Innovation) practices.</li>
</ul>
</div>
<!-- FREELANCE -->
<div class="job" onclick="openModal('modal-freelance')">
<span class="job-period">Oct 2009 – Dec 2015</span>
<h3>Technical Consultant & Liaison</h3>
<span class="job-company">Freelance</span>
<ul>
<li>Bridged communication gaps between government/NGO clients and software developers.</li>
<li>Managed Agile requirements gathering and custom M&E dashboard development.</li>
</ul>
</div>
</div>
</section>
<!-- 4. EDUCATION -->
<section>
<h2><i class="ph ph-graduation-cap"></i> Education</h2>
<div class="timeline" style="border-left: 2px dashed var(--border);">
<div class="edu-item">
<h3>Master of Science in Public Policy Administration</h3>
<div class="edu-meta">Prof. Dr. Moestopo (Beragama) University | 2016 – 2019</div>
<div class="edu-desc">
<strong>GPA: 3.87 / 4.00</strong><br>
Thesis: "Analysis of Organizational Effectiveness at the Ministry of Village (Case Study: Data and Information Center)."<br>
<em>Strategic Relevance: Academic evaluation of the national data center I helped manage.</em>
</div>
</div>
<div class="edu-item">
<h3>Bachelor of Economics in Human Resources Management</h3>
<div class="edu-meta">STIE YAPAN Surabaya | 2009 – 2013</div>
<div class="edu-desc">
<strong>GPA: 3.13 / 4.00</strong><br>
Focus: Human Capacity Development.
</div>
</div>
</div>
</section>
<!-- 5. PUBLICATIONS & MEDIA (UPDATED WITH DATA) -->
<section>
<h2><i class="ph ph-books"></i> Publications & Media</h2>
<!-- AUTHORED -->
<h3 style="font-size:1.1rem; color:var(--text-muted); margin: 30px 0 15px;">Authored Publications (Reporting & Layout)</h3>
<div id="publications-container" class="flex flex-col gap-4">
</div>
<!-- EDITED -->
<h3 style="font-size:1.1rem; color:var(--text-muted); margin: 40px 0 15px;">Editorial Works - Copy Editor (34 Titles)</h3>
<div class="table-scroll">
<table class="pub-table">
<thead>
<tr><th width="10%">No</th><th>Title / Province</th><th>ISBN</th></tr>
</thead>
<tbody>
<tr><td>1</td><td>Manfaat Dana Desa di Provinsi Aceh</td><td><span class="isbn-code">978-623-7129-38-7</span></td></tr>
<tr><td>2</td><td>Manfaat Dana Desa di Provinsi Lampung</td><td><span class="isbn-code">978-623-7129-39-4</span></td></tr>
<tr><td>3</td><td>Manfaat Dana Desa di Provinsi Sumatera Selatan</td><td><span class="isbn-code">978-623-7129-40-0</span></td></tr>
<tr><td>4</td><td>Manfaat Dana Desa di Provinsi Kepulauan Riau</td><td><span class="isbn-code">978-623-7129-41-7</span></td></tr>
<tr><td>5</td><td>Manfaat Dana Desa di Provinsi Sumatera Utara</td><td><span class="isbn-code">978-623-7129-42-4</span></td></tr>
<tr><td>6</td><td>Manfaat Dana Desa di Provinsi Sumatera Barat</td><td><span class="isbn-code">978-623-7129-43-1</span></td></tr>
<tr><td>7</td><td>Manfaat Dana Desa di Provinsi Jambi</td><td><span class="isbn-code">978-623-7129-44-8</span></td></tr>
<tr><td>8</td><td>Manfaat Dana Desa di Provinsi Bengkulu</td><td><span class="isbn-code">978-623-7129-45-5</span></td></tr>
<tr><td>9</td><td>Manfaat Dana Desa di Provinsi Bangka Belitung</td><td><span class="isbn-code">978-623-7129-46-2</span></td></tr>
<tr><td>10</td><td>Manfaat Dana Desa di Provinsi Banten</td><td><span class="isbn-code">978-623-7129-47-9</span></td></tr>
<tr><td>11</td><td>Manfaat Dana Desa di Provinsi D.I. Yogyakarta</td><td><span class="isbn-code">978-623-7129-48-6</span></td></tr>
<tr><td>12</td><td>Manfaat Dana Desa di Provinsi Jawa Barat</td><td><span class="isbn-code">978-623-7129-49-3</span></td></tr>
<tr><td>13</td><td>Manfaat Dana Desa di Provinsi Jawa Tengah</td><td><span class="isbn-code">978-623-7129-50-9</span></td></tr>
<tr><td>14</td><td>Manfaat Dana Desa di Provinsi Jawa Timur</td><td><span class="isbn-code">978-623-7129-51-6</span></td></tr>
<tr><td>15</td><td>Manfaat Dana Desa di Provinsi Bali</td><td><span class="isbn-code">978-623-7129-52-3</span></td></tr>
<tr><td>16</td><td>Manfaat Dana Desa di Provinsi NTB</td><td><span class="isbn-code">978-623-7129-53-0</span></td></tr>
<tr><td>17</td><td>Manfaat Dana Desa di Provinsi NTT</td><td><span class="isbn-code">978-623-7129-54-7</span></td></tr>
<tr><td>18</td><td>Manfaat Dana Desa di Provinsi Kalimantan Barat</td><td><span class="isbn-code">978-623-7129-55-4</span></td></tr>
<tr><td>19</td><td>Manfaat Dana Desa di Provinsi Kalimantan Tengah</td><td><span class="isbn-code">978-623-7129-56-1</span></td></tr>
<tr><td>20</td><td>Manfaat Dana Desa di Provinsi Kalimantan Utara</td><td><span class="isbn-code">978-623-7129-57-8</span></td></tr>
<!-- Truncated to prevent extreme length, represented by last entries -->
<tr><td>...</td><td>And 14 other provinces (Sulawesi, Maluku, Papua)</td><td>-</td></tr>
<tr><td>34</td><td>Dinamika Pembangunan Desa (Kajian 7 Wilayah Pulau)</td><td><span class="isbn-code">978-623-7129-69-1</span></td></tr>
</tbody>
</table>
</div>
<!-- MULTIMEDIA -->
<h3 style="font-size:1.1rem; color:var(--text-muted); margin: 40px 0 15px;">Multimedia Strategy & Web Design</h3>
<div class="mm-list">
<!-- 1 -->
<div class="mm-item">
<div>
<h4>UNESCO Global Network of Facilitators (Asia-Pacific)</h4>
<span class="mm-meta">Videographer & Video Editor</span>
</div>
<p style="font-size:0.85rem; color:#666; margin:0;">Produced high-quality video footage and interviews for UNESCO Beijing Living Heritage Secretariat.</p>
<a href="https://www.unesco.org/en/articles/asia-and-pacific-chapter-2003-conventions-global-network-facilitators-strengthened-18-new-members" target="_blank" class="mm-link">Watch Coverage <i class="ph ph-arrow-right"></i></a>
</div>
<!-- 2 -->
<div class="mm-item">
<div>
<h4>Regional Workshop on World War Shipwrecks</h4>
<span class="mm-meta">Event Organizer & Communications Lead</span>
</div>
<p style="font-size:0.85rem; color:#666; margin:0;">Led operational coordination of an ASEAN regional programme on marine pollution, managing invitations with ASEAN Member States, securing HQ funding, negotiating partnerships for field visits and hospitality arrangements, overseeing logistics and guest management, and drafting the official publication.</p>
<a href="https://www.unesco.org/en/articles/world-war-shipwrecks-southeast-asia-threats-marine-pollution-and-looting" target="_blank" class="mm-link">Read Article <i class="ph ph-arrow-right"></i></a>
</div>
<!-- 3 -->
<div class="mm-item">
<div>
<h4>Capacity Building Workshop on ICH (CRIHAP)</h4>
<span class="mm-meta">Webinar Organizer & Content Strategist</span>
</div>
<a href="https://en.crihap.cn/a/202311/28/WS656591b7a310decc1a222798.html" target="_blank" class="mm-link">View Event <i class="ph ph-arrow-right"></i></a>
</div>
<!-- 4 -->
<div class="mm-item">
<div>
<h4>UNDP SMILE Project Repository</h4>
<span class="mm-meta">Web Designer & Content Creator</span>
</div>
<p style="font-size:0.85rem; color:#666; margin:0;">Designed comprehensive repository and produced end-to-end workshop documentation.</p>
<a href="https://conniezzcool.wixsite.com/undp-meeting-smile-r" target="_blank" class="mm-link">Visit Repository <i class="ph ph-arrow-right"></i></a>
</div>
<!-- 5 -->
<div class="mm-item">
<div>
<h4>UNESCO Jakarta Talkshow: Youth & Cultural Diversity</h4>
<span class="mm-meta">Moderator & Comms Support</span>
</div>
<a href="https://www.instagram.com/reel/CzF6_9oLOiv/" target="_blank" class="mm-link">Watch Reel <i class="ph ph-arrow-right"></i></a>
</div>
</div>
<!-- NEWS & MENTIONS -->
<h3 style="font-size:1.1rem; color:var(--text-muted); margin: 40px 0 15px;">Media Coverage & Mentions</h3>
<div class="mm-list">
<div class="mm-item">
<div>
<h4>BUMDes Payang Sejahtera Masuk Kriteria Sukses Indonesia</h4>
<span class="mm-meta">DPMPD Kaltim (2018)</span>
</div>
<a href="https://dpmpd.kaltimprov.go.id/artikel/bumdes-payang-sejahtera-masuk-kriteria-bumdes-sukses-indonesia-2018" target="_blank" class="mm-link">Read News <i class="ph ph-arrow-right"></i></a>
</div>
<div class="mm-item">
<div>
<h4>Jamupedia's Kaleidoscope of 2024</h4>
<span class="mm-meta">Jamupedia (2024)</span>
</div>
<a href="https://en.jamupedia.com/jamupedias-kaleidoscope-of-2024/" target="_blank" class="mm-link">Read News <i class="ph ph-arrow-right"></i></a>
</div>
<div class="mm-item">
<div>
<h4>Implementing Partner for UNESCO Heritage Emergency Fund</h4>
<span class="mm-meta">ICOMOS Philippines (2023)</span>
</div>
<a href="https://philippines.icomos.org/2023/10/16/icomos-philippines-selected-as-the-implementing-partner-of-the-first-unesco-heritage-emergency-fund-project-for-the-republic-of-the-philippines/" target="_blank" class="mm-link">Read News <i class="ph ph-arrow-right"></i></a>
</div>
</div>
</section>
</div>
<section class="container" style="margin-top: 0; margin-bottom: 0;">
<div class="bg-white border border-slate-200 rounded-3xl p-8 text-center overflow-hidden relative">
<h3 class="text-slate-400 text-xs font-bold uppercase tracking-widest mb-4">Innovation Lab: The Bureaucracy Dodger</h3>
<div id="game-container" class="relative w-full h-48 bg-slate-50 rounded-2xl border-b-2 border-slate-200 cursor-pointer overflow-hidden group">
<div id="game-start-msg" class="absolute inset-0 flex flex-col items-center justify-center z-20 bg-slate-50/80 backdrop-blur-sm transition-opacity">
<i class="ph ph-rocket-launch text-4xl text-blue-600 animate-bounce"></i>
<p class="text-slate-600 font-bold mt-2">Click or Press Space to Start</p>