-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarelink_dashboard_demo.html
More file actions
519 lines (490 loc) · 21.5 KB
/
carelink_dashboard_demo.html
File metadata and controls
519 lines (490 loc) · 21.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fighting Corruption with Smart Technology</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.9.1/chart.min.js"></script>
<style>
body {
font-family: 'Georgia', 'Times New Roman', serif;
line-height: 1.8;
max-width: 900px;
margin: 0 auto;
padding: 0;
background: #ffffff;
color: #2c3e50;
}
.official-header {
background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
color: white;
padding: 30px 60px;
border-bottom: 5px solid #c41e3a;
}
.header-content {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 900px;
margin: 0 auto;
}
.ministry-logo {
width: 80px;
height: 80px;
background: white;
padding: 10px;
border-radius: 4px;
}
.ministry-info {
flex-grow: 1;
margin-left: 25px;
}
.ministry-name {
font-size: 1.4em;
font-weight: bold;
margin-bottom: 5px;
font-family: 'Segoe UI', Arial, sans-serif;
}
.ministry-name-ar {
font-size: 1.1em;
direction: rtl;
font-family: Arial, sans-serif;
opacity: 0.95;
}
.republic {
font-size: 0.95em;
opacity: 0.9;
margin-top: 5px;
}
.container {
background: white;
padding: 60px;
max-width: 900px;
margin: 0 auto;
}
h1 {
font-family: 'Segoe UI', Arial, sans-serif;
color: #1a365d;
font-size: 2.2em;
margin-bottom: 15px;
line-height: 1.3;
font-weight: 700;
border-bottom: 3px solid #c41e3a;
padding-bottom: 15px;
}
h2 {
font-family: 'Segoe UI', Arial, sans-serif;
color: #2c5282;
font-size: 1.5em;
margin-top: 35px;
margin-bottom: 18px;
font-weight: 600;
border-left: 4px solid #c41e3a;
padding-left: 16px;
}
.byline {
color: #718096;
font-style: italic;
margin-bottom: 35px;
padding: 20px;
background: #f7fafc;
border-radius: 6px;
border-left: 3px solid #2c5282;
}
.byline strong {
color: #1a365d;
font-style: normal;
font-size: 1.1em;
}
p {
margin-bottom: 18px;
font-size: 1.05em;
}
.stat-highlight {
background: linear-gradient(135deg, #ebf8ff 0%, #e6fffa 100%);
padding: 25px;
border-radius: 8px;
margin: 30px 0;
border-left: 4px solid #2c5282;
}
.stat-number {
font-size: 2.8em;
font-weight: bold;
color: #1a365d;
display: block;
margin-bottom: 10px;
font-family: 'Segoe UI', Arial, sans-serif;
}
.chart-container {
margin: 35px 0;
padding: 25px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
border: 1px solid #e2e8f0;
}
.chart-title {
font-family: 'Segoe UI', Arial, sans-serif;
font-size: 1.2em;
color: #2d3748;
margin-bottom: 20px;
font-weight: 600;
text-align: center;
}
canvas {
max-height: 400px;
}
.infographic-container {
margin: 35px 0;
padding: 30px;
background: #f8fafc;
border-radius: 8px;
text-align: center;
border: 2px solid #e2e8f0;
}
.infographic-title {
font-family: 'Segoe UI', Arial, sans-serif;
font-size: 1.3em;
color: #1a365d;
margin-bottom: 25px;
font-weight: 600;
}
.infographic-container img {
max-width: 100%;
height: auto;
border-radius: 6px;
}
.action-section {
background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
color: white;
padding: 40px;
border-radius: 8px;
margin: 40px 0;
border-top: 5px solid #c41e3a;
}
.action-section h2 {
color: white;
border: none;
padding: 0;
margin-top: 0;
}
.action-section p {
font-size: 1.1em;
line-height: 1.7;
}
.action-buttons {
margin-top: 25px;
text-align: center;
}
.action-btn {
display: inline-block;
background: white;
color: #1a365d;
padding: 14px 35px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
margin: 8px;
transition: all 0.3s ease;
font-family: 'Segoe UI', Arial, sans-serif;
border: 2px solid white;
}
.action-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
background: #f7fafc;
}
.action-list {
margin-top: 25px;
padding-left: 0;
list-style: none;
}
.action-list li {
padding: 12px 0 12px 30px;
position: relative;
font-size: 1.05em;
}
.action-list li:before {
content: "→";
position: absolute;
left: 0;
font-weight: bold;
color: #90cdf4;
}
a {
color: #2c5282;
text-decoration: none;
border-bottom: 1px solid #4299e1;
transition: all 0.2s ease;
}
a:hover {
color: #1a365d;
border-bottom-color: #c41e3a;
}
.official-footer {
background: #1a365d;
color: white;
padding: 30px 60px;
margin-top: 0;
text-align: center;
font-size: 0.9em;
}
.footer-content {
max-width: 900px;
margin: 0 auto;
}
.contact-info {
margin-top: 15px;
opacity: 0.9;
}
.footnote {
font-size: 0.9em;
color: #718096;
border-top: 2px solid #e2e8f0;
margin-top: 50px;
padding-top: 25px;
line-height: 1.6;
}
.video-container {
margin: 35px 0;
padding: 25px;
background: #f8fafc;
border-radius: 8px;
border: 2px solid #e2e8f0;
}
.video-title {
font-family: 'Segoe UI', Arial, sans-serif;
font-size: 1.3em;
color: #1a365d;
margin-bottom: 20px;
font-weight: 600;
text-align: center;
}
.video-container video {
width: 100%;
max-width: 100%;
height: auto;
border-radius: 6px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.video-caption {
margin-top: 15px;
text-align: center;
color: #4a5568;
font-size: 0.95em;
line-height: 1.6;
}
@media print {
body {
background: white;
}
.action-btn {
border: 2px solid #1a365d;
}
}
@media (max-width: 600px) {
.official-header, .container, .official-footer {
padding: 20px;
}
.header-content {
flex-direction: column;
text-align: center;
}
.ministry-info {
margin-left: 0;
margin-top: 15px;
}
.ministry-logo {
width: 60px;
height: 60px;
}
h1 {
font-size: 1.6em;
}
h2 {
font-size: 1.3em;
}
.stat-number {
font-size: 2.2em;
}
}
</style>
</head>
<body>
<div class="official-header">
<div class="header-content">
<div class="ministry-logo">
<img src="ministry_logo.png" alt="Ministry Logo" style="width: 100%; height: 100%; object-fit: fill;">
</svg>
</div>
<div class="ministry-info">
<div class="ministry-name">Ministry of Information Technology and Artificial Intelligence</div>
<div class="ministry-name-ar">وزارة تكنولوجيا المعلومات والذكاء الاصطناعي</div>
<div class="republic">Republic of Lebanon | الجمهورية اللبنانية</div>
</div>
</div>
</div>
<div class="container">
<h1>Fighting Corruption with Smart Technology: Lebanon's Path to Transparent Governance</h1>
<div class="byline">
<strong>H.E. Dr. Kamal Shehadi</strong><br>
Minister of State for Technology and Artificial Intelligence<br>
October 6, 2025
</div>
<div class="video-container">
<div class="video-title">A Message from Our Policy Team</div>
<video controls poster="" aria-label="Video message from Chris Oueis, Policy Analyst at Heinz Policy Institute and Junior Advisor to the Minister, discussing AI-powered anti-corruption reform in Lebanon's public procurement system">
<source src="intro.mp4" type="video/mp4">
<p>Your browser does not support the video element. Chris Oueis, Policy Analyst at the Heinz Policy Institute and Junior Advisor to the Minister of Technology and Artificial Intelligence, discusses the importance of implementing AI-powered oversight to combat corruption in Lebanon's public procurement system.</p>
</video>
<div class="video-caption">
<strong>Chris Oueis</strong> – Policy Analyst, Heinz Policy Institute | Junior Advisor to the Minister<br>
<em style="font-size: 0.85em; color: #718096;">Note: This video was fully generated using AI technology.</em>
</div>
</div>
<p>Every day, Lebanese families witness a troubling paradox. Our schools lack basic supplies, hospitals struggle with essential care, and infrastructure deteriorates—yet the government spends billions annually on public contracts. Too often, this money disappears into inflated contracts serving private interests rather than public needs. As your Minister of State for Technology and Artificial Intelligence, I am committed to changing this reality through artificial intelligence that can detect and prevent corruption before it drains resources meant for our citizens.</p>
<h2>The Challenge We Face</h2>
<div class="stat-highlight">
<span class="stat-number">$3.4 Billion</span>
<p><strong>Lebanon's annual public procurement spending—6.5% of our GDP.</strong> <a href="https://www.oecd.org/content/dam/oecd/en/publications/reports/2024/06/governing-with-artificial-intelligence_f0e316f5/26324bc2-en.pdf" target="_blank">OECD research</a> indicates countries with weak oversight can lose up to 70% of procurement funds to corruption.</p>
</div>
<p>Recent investigations expose the severity. At Rafic Hariri International Airport, a routine contract inexplicably inflated five-fold. The Ministry of Telecommunications <a href="https://limslb.com/news-51733/?lang=en" target="_blank">bypassed procurement procedures entirely</a> to award a predetermined contract. With Lebanon ranking 154 out of 180 on <a href="https://www.transparency.org/en/cpi/2024" target="_blank">Transparency International's 2024 index</a>, every inflated contract means fewer teachers, reduced medical supplies, and delayed infrastructure repairs.</p>
<h2>Evidence-Based Solutions</h2>
<div class="chart-container">
<div class="chart-title">AI Impact on Corruption Detection: International Evidence</div>
<canvas id="corruptionChart"></canvas>
</div>
<p>Ukraine's <a href="https://dozorro.org/" target="_blank">AI-powered DOZORRO platform</a> analyzes tender data in real-time, achieving a 26% increase in detecting unfair contract winners compared to manual oversight. Advanced machine learning systems demonstrate <a href="https://epjdatascience.springeropen.com/articles/10.1140/epjds/s13688-025-00569-3" target="_blank">93% precision rates in fraud detection</a>, identifying subtle patterns human auditors might overlook—detecting contractor-official relationships, recognizing unusual pricing, and flagging market deviations.</p>
<h2>Our Strategic Advantage</h2>
<p>Lebanon launched <a href="https://institutdesfinances.gov.lb/sites/default/files/2024-06/Progress-report-Lebanon-Public-Procurement-reform-Jan2024.pdf" target="_blank">TendA</a>, our first national e-procurement platform, providing the digital foundation we need. Our technology sector demonstrates remarkable capability, and our diaspora includes leading researchers at MIT, Stanford, and Google. We have the expertise and infrastructure for success.</p>
<h2>Our 18-Month Implementation Plan</h2>
<div class="infographic-container">
<div class="infographic-title">Three-Phase Implementation Framework</div>
<img src="infographic.png" alt="Implementation Framework" style="max-width: 100%; height: auto;">
</svg>
</div>
<p><strong>Phase 1 (Months 1-6):</strong> Establish legal mandate for AI oversight on contracts exceeding $50,000. Form an independent oversight committee with parliament, government, technology sector, civil society, and diaspora representatives ensuring algorithmic fairness.</p>
<p><strong>Phase 2 (Months 7-12):</strong> Partner with Lebanese technology companies to develop AI algorithms trained on historical data. Our system will assign real-time risk scores, automatically flagging suspicious patterns while training government staff on interpretation and response.</p>
<p><strong>Phase 3 (Months 13-18):</strong> Launch pilot program for infrastructure contracts exceeding $100,000. Following validation, expand AI oversight across all agencies and launch a public dashboard where every citizen can track procurement transparency metrics.</p>
<h2>Why This Will Succeed</h2>
<p>Unlike previous reforms, this initiative creates technological systems where transparency is automatic and corruption becomes significantly more difficult. AI-powered oversight maintains consistency—analyzing every contract with rigorous standards, creating a level playing field while protecting public resources. These systems don't experience fatigue, cannot be intimidated, and have no compromising relationships.</p>
<div class="action-section">
<h2>How You Can Support This Reform</h2>
<p>Transparency requires active citizen engagement. I ask for your participation:</p>
<ul class="action-list">
<li>Sign up for regular updates on implementation progress</li>
<li>Contact parliamentary representatives expressing support for AI-powered reform</li>
<li>Share this initiative with your networks</li>
<li>Monitor results through our public dashboard once launched</li>
</ul>
<div class="action-buttons">
<a href="mailto:info@ai.gov.lb" class="action-btn">Subscribe to Updates</a>
<a href="#contact" class="action-btn">Contact Your Representative</a>
</div>
</div>
<p>I understand Lebanese citizens have grown skeptical of government promises—this skepticism is earned. However, this initiative creates verifiable, measurable outcomes you can monitor independently. Within 18 months, you'll see concrete evidence: contracts flagged for review, potential savings identified, and actions taken in response to AI alerts. Transparency becomes demonstrable reality.</p>
<p>Lebanon faces a critical choice: continue losing billions while our country struggles, or leverage available technology to build government that genuinely serves its people. This isn't about punishment—it's about prevention and protection. When Lebanon invests in a hospital, that hospital must actually get built. The question isn't whether we can afford to implement this system, but whether we can afford not to. Our children's future depends on today's choices. Together, we can build a Lebanon where public money serves public needs—where every lira represents genuine investment in shared prosperity.</p>
<div class="footnote">
<p style="margin-top: 20px;"><strong>GenAI Disclosure:</strong> This blog post was developed with assistance from Claude (Anthropic, Claude Sonnet 4) for design refinement and grammar checks. Policy content is based on personal research conducted as noted in the original memorandum.</p>
</div>
</div>
<div class="official-footer">
<div class="footer-content">
<strong>Ministry of Information Technology and Artificial Intelligence</strong><br>
Republic of Lebanon<br>
<div class="contact-info">
Email: info@ai.gov.lb | Tel: +961 1 XXX XXX<br>
Beirut, Lebanon
</div>
</div>
</div>
<script>
const ctx = document.getElementById('corruptionChart').getContext('2d');
const chart = new Chart(ctx, {
type: 'bar',
data: {
labels: ['Manual Oversight\n(Traditional)', 'AI-Powered Oversight\n(Ukraine DOZORRO)', 'Advanced ML\nAlgorithms'],
datasets: [{
label: 'Fraud Detection Rate (%)',
data: [45, 71, 93],
backgroundColor: [
'rgba(203, 213, 224, 0.8)',
'rgba(66, 153, 225, 0.8)',
'rgba(26, 54, 93, 0.8)'
],
borderColor: [
'rgba(113, 128, 150, 1)',
'rgba(43, 108, 176, 1)',
'rgba(196, 30, 58, 1)'
],
borderWidth: 2
}]
},
options: {
responsive: true,
maintainAspectRatio: true,
plugins: {
legend: {
display: true,
position: 'top',
labels: {
font: {
size: 14,
family: "'Segoe UI', Arial, sans-serif"
}
}
},
tooltip: {
callbacks: {
label: function(context) {
return context.dataset.label + ': ' + context.parsed.y + '%';
}
}
}
},
scales: {
y: {
beginAtZero: true,
max: 100,
ticks: {
callback: function(value) {
return value + '%';
},
font: {
size: 12
}
},
title: {
display: true,
text: 'Detection Accuracy',
font: {
size: 13,
weight: 'bold'
}
}
},
x: {
ticks: {
font: {
size: 11
}
}
}
}
}
});
document.getElementById('corruptionChart').onclick = function(evt) {
const points = chart.getElementsAtEventForMode(evt, 'nearest', { intersect: true }, true);
if (points.length) {
const firstPoint = points[0];
const messages = [
'Traditional manual audits detect approximately 45% of procurement fraud due to limited resources and time constraints.',
'Ukraine\'s DOZORRO platform achieved a 26% improvement over manual methods, reaching 71% detection accuracy through real-time AI analysis.',
'Advanced machine learning systems have demonstrated 93% precision in fraud detection, representing the cutting edge of anti-corruption technology.'
];
alert(messages[firstPoint.index]);
}
};
</script>
</body>
</html>