-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_jan29.html
1569 lines (1350 loc) · 65.3 KB
/
index_jan29.html
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>ApproVideo - DIY Solutions Portal</title>
<script src="https://cdn.tailwindcss.com" defer></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link href="stylenew.css" rel="stylesheet">
<style>
/* Core styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, sans-serif;
overflow: hidden;
}
/* Main carousel container */
.carousel-container {
position: relative;
width: 100vw;
height: 100vh;
overflow: hidden;
touch-action: pan-y;
}
/* Slide styling */
.slide {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
opacity: 0;
transition: opacity 0.7s ease-in-out;
padding: 1rem;
}
@media (min-width: 768px) {
.slide {
flex-direction: row;
padding: 2rem;
}
}
.slide.active {
opacity: 1;
}
/* Theme gradients */
.theme-water { background: linear-gradient(135deg, #2563eb, #0891b2); }
.theme-sanitation { background: linear-gradient(135deg, #059669, #059669); }
.theme-energy { background: linear-gradient(135deg, #f59e0b, #f97316); }
.theme-food { background: linear-gradient(135deg, #22c55e, #84cc16); }
.theme-health { background: linear-gradient(135deg, #ef4444, #ec4899); }
/* Content layout */
.content-left,
.content-right {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem;
}
/* SVG containers */
.mandala-container {
width: 100%;
max-width: 400px;
aspect-ratio: 1;
opacity: 0.3;
}
.character-container {
width: 128px;
height: 128px;
margin-bottom: 2rem;
}
/* Info panels */
.info-panel {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(8px);
padding: 1rem;
border-radius: 0.5rem;
color: white;
margin-bottom: 1rem;
width: 100%;
max-width: 400px;
transform: translateY(0);
transition: transform 0.3s ease;
}
.info-panel:hover {
transform: translateY(-4px);
}
.info-panel h3 {
font-size: 1.25rem;
margin-bottom: 0.5rem;
}
.info-panel p {
font-size: 0.875rem;
opacity: 0.9;
}
/* Navigation */
.nav-dots {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 0.5rem;
z-index: 10;
}
.nav-dot {
width: 0.75rem;
height: 0.75rem;
border-radius: 50%;
background: rgba(255, 255, 255, 0.5);
border: none;
cursor: pointer;
transition: all 0.3s ease;
}
.nav-dot.active {
background: white;
transform: scale(1.2);
}
/* Action buttons */
.cta-button {
background: white;
color: var(--theme-color, #2563eb);
border: none;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
width: 100%;
max-width: 400px;
transition: opacity 0.3s ease;
}
.cta-button:hover {
opacity: 0.9;
}
/* Modal styling */
.modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
display: none;
justify-content: center;
align-items: center;
padding: 1rem;
z-index: 50;
}
.modal.active {
display: flex;
}
.modal-content {
background: white;
padding: 2rem;
border-radius: 0.5rem;
max-width: 32rem;
width: 100%;
position: relative;
}
.modal-close {
position: absolute;
top: 1rem;
right: 1rem;
background: none;
border: none;
cursor: pointer;
color: #666;
}
/* Utility classes */
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js" defer></script>
<script type="module" src="index.js"></script>
</head>
<body class="theme-transition">
<div class="bg-gradient-to-r from-green-600 to-blue-600 text-white py-2 px-4 text-center text-sm banner-message">💧 Clean water, safe shelter, better lives</div>
<div class="border-b border-gray-700">
<div class="container mx-auto px-4">
<div class="flex justify-center space-x-8 py-4">🌿A P P R O V I D E O 🌱🌳🌱 </div>
<div class="flex justify-center space-x-8 py-4">
<div class="group">
<a href="#" class="flex items-center px-4 py-3 rounded-md hover:bg-opacity-20 hover:bg-white" data-category="Shelter">
<button class="icon-button relative group" data-category="diy">
<div class="bg-gradient-to-r from-red-600 to-zinc-400
text-white p-3 rounded-lg shadow-lg transform transition-all duration-200
hover:scale-105 hover:shadow-xl
float-1
flex items-center justify-center">
<i class="fas fa-2x fa-building"></i>
</div>
Shelter
</button>
</a>
<div class="drop-up-menu absolute hidden group-hover:block bg-white shadow-md rounded-md mt-2 py-2 z-10">
<a href="#"
class="drop-up-item bg-gradient-to-r from-blue-100 to-black-100 text-white p-3 rounded-lg shadow-lg transform transition-all border-3 border-blue m-2"
data-category="low-cost-construction"
data-text="Discover practical techniques for building durable structures affordably.">
Low-cost, Durable Construction Methods
</a>
<a href="#"
class="drop-up-item bg-gradient-to-r from-blue-100 to-black-100 text-white p-3 rounded-lg shadow-lg transform transition-all border-3 border-blue m-2"
data-category="local-materials"
data-text="Explore how to use nearby resources to construct sustainable, efficient buildings.">
Locally Available Materials
</a>
</div>
</div>
<div class="group">
<a href="#" class="flex items-center px-3 py-2 rounded-md hover:bg-opacity-20 hover:bg-white" data-text="Water system information" data-category="Water">
<button class="icon-button relative group" data-category="drinking-water">
<div class="bg-gradient-to-r from-cyan-500 to-blue-600
text-white p-3 rounded-lg shadow-lg transform transition-all duration-200
hover:scale-105 hover:shadow-xl
float-2
flex items-center justify-center">
<i class="fas fa-2x fa-tint"></i>
</div>
Water
</button>
</a>
<div class="drop-up-menu">
<a href="#"
class="drop-up-item bg-gradient-to-r from-blue-100 to-black-100 text-white p-3 rounded-lg shadow-lg transform transition-all border-3 border-blue m-2"
data-category="waterpurification"
data-text="Learn how to purify water effectively and ensure a clean, safe supply.">
Purification
</a>
<a href="#"
class="drop-up-item bg-gradient-to-r from-blue-100 to-black-100 text-white p-3 rounded-lg shadow-lg transform transition-all border-3 border-blue m-2"
data-category="desalination"
data-text="Explore methods to remove salt from seawater, making it usable for drinking and irrigation.">
Desalination
</a>
<a href="#"
class="drop-up-item bg-gradient-to-r from-blue-100 to-black-100 text-white p-3 rounded-lg shadow-lg transform transition-all border-3 border-blue m-2"
data-category="waterdistribution"
data-text="Discover efficient ways to distribute water across urban and rural communities.">
Efficient Distribution
</a>
</div>
</div>
<div class="group">
<a href="#" class="flex items-center px-3 py-2 rounded-md hover:bg-opacity-20 hover:bg-white" data-category="Energy">
<button class="icon-button relative group" data-category="energy-systems">
<div class="bg-gradient-to-r from-yellow-500 to-amber-600
text-white p-3 rounded-lg shadow-lg transform transition-all duration-200
hover:scale-105 hover:shadow-xl
float-4
flex items-center justify-center">
<i class="fas fa-2x fa-bolt"></i>
</div>
Energy
</button>
</a>
<div class="drop-up-menu">
<a href="#" class="drop-up-item bg-gradient-to-r from-yellow-500 to-amber-100 text-white p-3 rounded-lg shadow-lg transform
transition-all border-3 border-blue m-2" data-category="diysolar">DIY Solar Energy</a>
<a href="#" class="drop-up-item bg-gradient-to-r from-yellow-500 to-amber-100 text-white p-3 rounded-lg shadow-lg transform
transition-all border-3 border-blue m-2" data-category="biogas">Biogas Generation</a>
<a href="#" class="drop-up-item bg-gradient-to-r from-yellow-500 to-amber-100 text-white p-3 rounded-lg shadow-lg transform
transition-all border-3 border-blue m-2" data-category="microgrids">Microgrids for Sustainable Power</a>
</div>
</div>
<div class="group">
<a href="#" class="flex items-center px-3 py-2 rounded-md hover:bg-opacity-20 hover:bg-white" data-category="Health">
<button class="icon-button relative group" data-category="health">
<div class="bg-gradient-to-r from-red-700 to-violet-600
text-white p-3 rounded-lg shadow-lg transform transition-all duration-200
hover:scale-105 hover:shadow-xl
float-4
flex items-center justify-center">
<i class="fas fa-2x fa-heartbeat"></i>
</div>
Health
</button>
</a>
<div class="drop-up-menu">
<a href="#"
class="drop-up-item bg-gradient-to-r from-cyan-500 to-violet-100 text-white p-3 rounded-lg shadow-lg transform transition-all border-3 border-blue m-2"
data-category="emtskills"
data-text="Gain the essential emergency medical skills to respond to urgent situations.">
EMT Skills
</a>
<a href="#"
class="drop-up-item bg-gradient-to-r from-cyan-500 to-violet-100 text-white p-3 rounded-lg shadow-lg transform transition-all border-3 border-blue m-2"
data-category="telemedicine"
data-text="Discover how telemedicine bridges gaps in healthcare access and treatment.">
Telemedicine
</a>
<a href="#"
class="drop-up-item bg-gradient-to-r from-cyan-400 to-violet-100 text-white p-3 rounded-lg shadow-lg transform transition-all border-3 border-blue m-2"
data-category="firstaid"
data-text="Learn essential first-aid techniques to address minor injuries and emergencies.">
First Aid
</a>
<a href="#"
class="drop-up-item bg-gradient-to-r from-cyan-400 to-violet-100 text-white p-3 rounded-lg shadow-lg transform transition-all border-3 border-blue m-2"
data-category="selfsufficienthealthcare"
data-text="Explore strategies for self-reliant healthcare in remote or resource-limited settings.">
Self-sufficient Healthcare
</a>
</div>
</div>
<div class="group">
<a href="#" class="flex items-center px-4 py-3 rounded-md hover:bg-opacity-20 hover:bg-white" data-category="Agronomy">
<button class="icon-button relative group" data-category="agriculure">
<div class="bg-gradient-to-r from-emerald-500 to-green-600
text-white p-3 rounded-lg shadow-lg transform transition-all duration-200
hover:scale-105 hover:shadow-xl
float-6
flex items-center justify-center">
<i class="fas fa-2x fa-seedling"></i>
</div>
Food
</button>
</a>
<div class="drop-up-menu">
<a href="#" class="drop-up-item bg-gradient-to-r from-emerald-500 to-green-100 text-white p-3 rounded-lg shadow-lg transform transition-all border-3 border-blue m-2" data-category="urbanfood">Urban Gardening</a>
<a href="#" class="drop-up-item bg-gradient-to-r from-emerald-500 to-green-100 text-white p-3 rounded-lg shadow-lg transform transition-all border-3 border-blue m-2" data-category="hydroponics">Hydroponics</a>
<a href="#" class="drop-up-item bg-gradient-to-r from-emerald-500 to-green-100 text-white p-3 rounded-lg shadow-lg transform transition-all border-3 border-blue m-2" data-category="sustainableag">Sustainable Agriculture Techniques</a>
</div>
</div>
</div>
</div>
<div class="relative">
<!-- Hero Content -->
<div class="carousel-container">
<!-- Water Solutions Slide -->
<div class="slide theme-water active" data-theme="water">
<div class="content-left">
<svg class="mandala-container" viewBox="0 0 400 400">
<!-- Sky gradient with day/night cycle -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#4a90e2">
<animate attributeName="stop-color"
values="#4a90e2; #2c3e50; #4a90e2"
dur="30s"
repeatCount="indefinite" />
</stop>
<stop offset="100%" stop-color="#87ceeb">
<animate attributeName="stop-color"
values="#87ceeb; #16213e; #87ceeb"
dur="30s"
repeatCount="indefinite" />
</stop>
</linearGradient>
<!-- Wave pattern -->
<pattern id="wavePattern" x="0" y="0" width="40" height="10" patternUnits="userSpaceOnUse">
<path d="M0,5 Q10,0 20,5 Q30,10 40,5"
fill="none"
stroke="rgba(255,255,255,0.3)"
stroke-width="1">
<animate attributeName="d"
values="M0,5 Q10,0 20,5 Q30,10 40,5;
M0,5 Q10,10 20,5 Q30,0 40,5;
M0,5 Q10,0 20,5 Q30,10 40,5"
dur="3s"
repeatCount="indefinite" />
</path>
</pattern>
<!-- Cloud blur filter -->
<filter id="cloudBlur">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" />
</filter>
</defs>
<!-- Sky background -->
<rect width="400" height="400" fill="url(#skyGradient)" />
<!-- Sun/Moon cycle -->
<circle cx="200" cy="100" r="30" fill="#ffd700">
<animate attributeName="cy"
values="100; 300; 100"
dur="30s"
repeatCount="indefinite" />
<animate attributeName="fill"
values="#ffd700; #ffffff; #ffd700"
dur="30s"
repeatCount="indefinite" />
<animate attributeName="r"
values="30; 25; 30"
dur="30s"
repeatCount="indefinite" />
</circle>
<!-- Drifting clouds -->
<g class="clouds" filter="url(#cloudBlur)">
<path d="M50,80 Q65,70 80,80 Q95,70 110,80 Q100,90 80,90 Q60,90 50,80"
fill="white" opacity="0.7">
<animateTransform
attributeName="transform"
type="translate"
values="0,0; 350,0; 0,0"
dur="20s"
repeatCount="indefinite" />
</path>
<path d="M250,120 Q265,110 280,120 Q295,110 310,120 Q300,130 280,130 Q260,130 250,120"
fill="white" opacity="0.6">
<animateTransform
attributeName="transform"
type="translate"
values="-250,0; 100,0; -250,0"
dur="25s"
repeatCount="indefinite" />
</path>
</g>
<!-- Mountains with dynamic shadows -->
<g class="mountains">
<!-- Back mountain range -->
<path d="M0,400 L150,200 L300,400 Z" fill="#2d3436">
<animate attributeName="fill"
values="#2d3436; #1a1a1a; #2d3436"
dur="30s"
repeatCount="indefinite" />
</path>
<!-- Middle mountain -->
<path d="M100,400 L250,150 L400,400 Z" fill="#636e72">
<animate attributeName="fill"
values="#636e72; #2d3436; #636e72"
dur="30s"
repeatCount="indefinite" />
</path>
<!-- Front mountain details -->
<path d="M150,400 L280,180 L410,400 Z" fill="#b2bec3">
<animate attributeName="fill"
values="#b2bec3; #636e72; #b2bec3"
dur="30s"
repeatCount="indefinite" />
</path>
</g>
<!-- Ocean -->
<g class="ocean" transform="translate(0, 300)">
<!-- Base water -->
<rect width="400" height="100" fill="#3498db">
<animate attributeName="fill"
values="#3498db; #16213e; #3498db"
dur="30s"
repeatCount="indefinite" />
</rect>
<!-- Dynamic waves -->
<g>
<rect width="400" height="20"
fill="url(#wavePattern)"
opacity="0.85"
transform="translate(0, 5)">
<animate attributeName="transform"
values="translate(-40, 5); translate(0, 5)"
dur="4s"
repeatCount="indefinite" />
</rect>
<rect width="400" height="20"
fill="url(#wavePattern)"
opacity="0.7"
transform="translate(0, 10)">
<animate attributeName="transform"
values="translate(-40, 10); translate(0, 10)"
dur="5s"
repeatCount="indefinite" />
</rect>
<rect width="400" height="20"
fill="url(#wavePattern)"
opacity="0.55"
transform="translate(0, 15)">
<animate attributeName="transform"
values="translate(-40, 15); translate(0, 15)"
dur="6s"
repeatCount="indefinite" />
</rect>
<rect width="400" height="20"
fill="url(#wavePattern)"
opacity="0.4"
transform="translate(0, 20)">
<animate attributeName="transform"
values="translate(-40, 20); translate(0, 20)"
dur="7s"
repeatCount="indefinite" />
</rect>
<rect width="400" height="20"
fill="url(#wavePattern)"
opacity="0.25"
transform="translate(0, 25)">
<animate attributeName="transform"
values="translate(-40, 25); translate(0, 25)"
dur="8s"
repeatCount="indefinite" />
</rect>
</g>
<!-- Moonlight reflection -->
<path d="M180,0 Q200,-20 220,0"
fill="none"
stroke="white"
stroke-width="2"
opacity="0">
<animate attributeName="opacity"
values="0;0.5;0"
dur="30s"
repeatCount="indefinite" />
</path>
</g>
<!-- Shooting stars (visible at night) -->
<g class="stars">
<line x1="110" y1="80" x2="210" y2="180"
stroke="white" stroke-width="1" opacity="0">
<animate attributeName="opacity"
values="0;0.7;0"
dur="2s"
begin="2s"
repeatCount="indefinite" />
</line>
<line x1="170" y1="110" x2="270" y2="210"
stroke="white" stroke-width="1" opacity="0">
<animate attributeName="opacity"
values="0;0.7;0"
dur="2s"
begin="4s"
repeatCount="indefinite" />
</line>
<line x1="230" y1="140" x2="330" y2="240"
stroke="white" stroke-width="1" opacity="0">
<animate attributeName="opacity"
values="0;0.7;0"
dur="2s"
begin="6s"
repeatCount="indefinite" />
</line>
<line x1="290" y1="170" x2="390" y2="270"
stroke="white" stroke-width="1" opacity="0">
<animate attributeName="opacity"
values="0;0.7;0"
dur="2s"
begin="8s"
repeatCount="indefinite" />
</line>
<line x1="350" y1="200" x2="450" y2="300"
stroke="white" stroke-width="1" opacity="0">
<animate attributeName="opacity"
values="0;0.7;0"
dur="2s"
begin="10s"
repeatCount="indefinite" />
</line>
</g>
</svg>
</div>
<div class="content-right">
<svg class="character-container" viewBox="0 0 200 200">
<!-- Water character -->
<circle cx="100" cy="100" r="70" fill="none" stroke="white" stroke-width="3"/>
<path d="M70,110 Q100,140 130,110"
fill="none" stroke="white" stroke-width="3">
<animate attributeName="d"
values="M70,110 Q100,140 130,110;M70,120 Q100,150 130,120;M70,110 Q100,140 130,110"
dur="3s"
repeatCount="indefinite"/>
</path>
<!-- Eyes -->
<circle cx="80" cy="85" r="5" fill="white"/>
<circle cx="120" cy="85" r="5" fill="white"/>
</svg>
<div class="info-panel">
<h3>Clean Water Solutions</h3>
<p>Learn sustainable water management techniques and implementation strategies</p>
</div>
<div class="info-panel">
<h3>Water Certification</h3>
<p>Earn professional certification in water management systems</p>
</div>
<button class="cta-button" style="--theme-color: #2563eb;">
Start Water Training
</button>
</div>
</div>
<!-- Additional slides follow same pattern -->
<!-- Cleanup & Detox Slide -->
<div class="slide theme-energy" data-theme="cleanup"> <!-- re-use or new class -->
<div class="content-left">
<!-- A warm orange/red day/night SVG scene -->
<svg class="mandala-container" viewBox="0 0 400 400">
<defs>
<!-- Sky gradient (warm oranges to deep reds) -->
<linearGradient id="skyGradient3" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#f97316">
<animate attributeName="stop-color"
values="#f97316; #3b0404; #f97316"
dur="30s"
repeatCount="indefinite" />
</stop>
<stop offset="100%" stop-color="#ef4444">
<animate attributeName="stop-color"
values="#ef4444; #2b0202; #ef4444"
dur="30s"
repeatCount="indefinite" />
</stop>
</linearGradient>
<!-- Some rubble texture pattern -->
<pattern id="rubblePattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="rgba(0,0,0,0.2)" />
<rect x="10" y="10" width="10" height="10" fill="rgba(0,0,0,0.3)" />
</pattern>
<!-- Soft blur filter for the tree’s shade or dust -->
<filter id="softBlur3">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" />
</filter>
</defs>
<!-- Background -->
<rect width="400" height="400" fill="url(#skyGradient3)" />
<!-- A “sun” or “moon” traveling from top to bottom -->
<circle cx="80" cy="100" r="20" fill="#ffd700">
<animate attributeName="cy"
values="100; 350; 100"
dur="30s"
repeatCount="indefinite" />
<animate attributeName="fill"
values="#ffd700; #ffffff; #ffd700"
dur="30s"
repeatCount="indefinite" />
</circle>
<!-- A large area of rubble/debris (bottom) -->
<rect x="0" y="300" width="400" height="100" fill="url(#rubblePattern)">
<animate attributeName="fill"
values="url(#rubblePattern); #5c4033; url(#rubblePattern)"
dur="30s"
repeatCount="indefinite" />
</rect>
<!-- A tree trunk + canopy for shade -->
<g filter="url(#softBlur3)">
<!-- Trunk -->
<rect x="280" y="180" width="20" height="120" fill="#6b3f1d" />
<!-- Canopy (a circle or ellipse) -->
<ellipse cx="290" cy="160" rx="40" ry="30" fill="#2d6a4f">
<animate attributeName="fill"
values="#2d6a4f; #1a3d2c; #2d6a4f"
dur="30s"
repeatCount="indefinite" />
</ellipse>
</g>
<!-- A jar and a glass of water (foreground) -->
<g>
<!-- Jar -->
<rect x="60" y="270" width="35" height="50" fill="none" stroke="white" stroke-width="2" rx="5" />
<rect x="60" y="270" width="35" height="40" fill="rgba(173,216,230,0.3)" />
<!-- Glass -->
<rect x="110" y="290" width="15" height="30" fill="none" stroke="white" stroke-width="2" rx="3" />
<rect x="110" y="300" width="15" height="15" fill="rgba(173,216,230,0.3)" />
</g>
</svg>
</div>
<div class="content-right">
<!-- A “cleanup” character (similar style as others) -->
<svg class="character-container" viewBox="0 0 200 200">
<circle cx="100" cy="100" r="70" fill="none" stroke="white" stroke-width="3"/>
<!-- A bigger “smile” maybe -->
<path d="M70,120 Q100,150 130,120"
fill="none" stroke="white" stroke-width="3">
<animate attributeName="d"
values="M70,120 Q100,150 130,120;M70,115 Q100,145 130,115;M70,120 Q100,150 130,120"
dur="3s"
repeatCount="indefinite"/>
</path>
<!-- Eyes -->
<circle cx="80" cy="85" r="5" fill="white"/>
<circle cx="120" cy="85" r="5" fill="white"/>
<!-- Maybe small “flames” icon on the forehead, to represent burned debris -->
<path d="M90,60 C95,50 105,50 110,60 Q100,55 90,60 Z"
fill="white" />
</svg>
<div class="info-panel">
<h3>Cleanup & Detox of Burned Waste</h3>
<p>Reclaim land from cement rubble and burned debris. Learn safe handling
and detoxification methods in post-fire environments.</p>
</div>
<div class="info-panel">
<h3>Remediation Certification</h3>
<p>Get certified in advanced cleanup techniques,
focusing on rebuilding and safe disposal of toxic residue.</p>
</div>
<button class="cta-button" style="--theme-color: #f97316;">
Begin Cleanup Training
</button>
</div>
</div>
<!-- Learning Clinics Slide -->
<div class="slide theme-food" data-theme="learning">
<div class="content-left">
<!-- A slower day/night yard environment -->
<svg class="mandala-container" viewBox="0 0 400 400">
<defs>
<!-- Slower day/night sky gradient (60s cycle) -->
<linearGradient id="learningSky" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#a8edea">
<animate attributeName="stop-color"
values="#a8edea; #3b6064; #a8edea"
dur="60s"
repeatCount="indefinite" />
</stop>
<stop offset="100%" stop-color="#fed6e3">
<animate attributeName="stop-color"
values="#fed6e3; #212121; #fed6e3"
dur="60s"
repeatCount="indefinite" />
</stop>
</linearGradient>
<!-- Slower-moving cloud blur filter -->
<filter id="learningCloudBlur">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" />
</filter>
</defs>
<!-- Background sky -->
<rect width="400" height="400" fill="url(#learningSky)" />
<!-- Slower sun/moon cycle (60s) -->
<circle cx="80" cy="80" r="25" fill="#ffd700">
<animate attributeName="cy"
values="80; 350; 80"
dur="60s"
repeatCount="indefinite" />
<animate attributeName="fill"
values="#ffd700; #ffffff; #ffd700"
dur="60s"
repeatCount="indefinite" />
</circle>
<!-- Clouds drifting more slowly -->
<g filter="url(#learningCloudBlur)">
<path d="M30,90 Q60,70 90,90 Q120,70 150,90 Q130,110 90,110 Q60,110 30,90"
fill="white" opacity="0.7">
<animateTransform attributeName="transform" type="translate"
values="0,0; 300,0; 0,0"
dur="60s"
repeatCount="indefinite" />
</path>
<path d="M220,120 Q240,100 260,120 Q280,100 300,120 Q290,140 260,140 Q230,140 220,120"
fill="white" opacity="0.6">
<animateTransform attributeName="transform" type="translate"
values="-250,0; 100,0; -250,0"
dur="50s"
repeatCount="indefinite" />
</path>
</g>
<!-- Yard: green ground -->
<rect x="0" y="300" width="400" height="100" fill="#7cb342" />
<!-- Small house -->
<g>
<!-- House base -->
<rect x="50" y="220" width="100" height="80" fill="#f7f1e3" />
<!-- Roof -->
<polygon points="50,220 100,180 150,220" fill="#b33939" />
<!-- Door -->
<rect x="90" y="260" width="20" height="40" fill="#596275" />
<!-- Simple windows -->
<rect x="60" y="240" width="20" height="20" fill="#ffffff" opacity="0.8" />
<rect x="120" y="240" width="20" height="20" fill="#ffffff" opacity="0.8" />
</g>
<!-- Chairs in the yard -->
<g fill="#ffffff" stroke="#333" stroke-width="1">
<!-- Chair #1 -->
<rect x="200" y="280" width="15" height="20" rx="2" />
<line x1="200" y1="280" x2="210" y2="260" stroke="#333" />
<!-- Chair #2 -->
<rect x="220" y="285" width="15" height="20" rx="2" />
<line x1="220" y1="285" x2="230" y2="265" stroke="#333" />
</g>
<!-- Goats, chickens, cow (simple stylized shapes) -->
<g fill="#fff" stroke="#333" stroke-width="1">
<!-- Goat #1 -->
<path d="M300,320
l10,-5 5,10 10,-5 /* body, head with horns */
l-5,10 -10,5 -5,-15" />
<!-- Chicken #1 -->
<path d="M260,320
l4,-4 4,4 -2,6
q-3,-2 -6,0
z" />
<!-- Cow (a rectangle with small head & tail for simplicity) -->
<rect x="320" y="310" width="25" height="15" />
<circle cx="345" cy="315" r="3" /> <!-- simple head -->
<line x1="345" y1="315" x2="350" y2="312" /> <!-- tail -->
</g>
</svg>
</div>
<div class="content-right">
<!-- A “learning clinics” character or icon -->
<svg class="character-container" viewBox="0 0 200 200">
<circle cx="100" cy="100" r="70" fill="none" stroke="white" stroke-width="3"/>
<!-- Smile -->
<path d="M70,120 Q100,140 130,120"
fill="none" stroke="white" stroke-width="3">
<animate attributeName="d"
values="M70,120 Q100,140 130,120; M70,115 Q100,145 130,115; M70,120 Q100,140 130,120"
dur="3s"
repeatCount="indefinite"/>
</path>
<!-- Eyes -->
<circle cx="80" cy="85" r="5" fill="white"/>
<circle cx="120" cy="85" r="5" fill="white"/>
<!-- Maybe a little “book” icon -->
<rect x="88" y="55" width="24" height="15" fill="white" rx="2" />
<line x1="100" y1="55" x2="100" y2="70" stroke="#333" stroke-width="2" />
</svg>
<div class="info-panel">
<h3>Community Learning Clinics</h3>
<p>Join a collaborative hub where multiple subjects—from small repairs to gardening and mentorship—are tackled in one supportive environment.</p>
</div>
<div class="info-panel">
<h3>Hands-On Projects</h3>
<p>Help raise goats, chickens, and cows, maintain gardens, build chairs, and share knowledge with neighbors.</p>
</div>
<button class="cta-button" style="--theme-color: #22c55e;">
Explore Learning Clinics
</button>
</div>
</div>
<!-- Waste Management Solutions Slide -->
<div class="slide theme-sanitation" data-theme="sanitation">
<div class="content-left">
<!-- A new day/night sanitation-themed SVG -->
<svg class="mandala-container" viewBox="0 0 400 400">
<!-- Similar structure to first slide,
but different colors and focal elements -->
<defs>
<!-- Sky gradient -->
<linearGradient id="skyGradient2" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#8EC5FC">
<animate attributeName="stop-color"
values="#8EC5FC; #233C78; #8EC5FC"
dur="30s"
repeatCount="indefinite" />
</stop>
<stop offset="100%" stop-color="#E0C3FC">
<animate attributeName="stop-color"
values="#E0C3FC; #1A1A40; #E0C3FC"
dur="30s"
repeatCount="indefinite" />
</stop>
</linearGradient>
<!-- Swirl pattern (instead of waves) -->
<pattern id="swirlPattern" x="0" y="0" width="40" height="40"
patternUnits="userSpaceOnUse">
<path d="M0,30 C10,10 30,10 40,30
C30,10 10,10 0,30 Z"
fill="none"
stroke="rgba(255,255,255,0.2)"
stroke-width="2">
<animateTransform
attributeName="transform"
type="rotate"
values="0 20 20; 360 20 20"
dur="10s"
repeatCount="indefinite" />
</path>
</pattern>
<!-- Blur filter for floating objects -->
<filter id="softBlur2">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" />
</filter>
</defs>
<!-- Sky background -->
<rect width="400" height="400" fill="url(#skyGradient2)" />
<!-- Sun/Moon cycle -->
<circle cx="320" cy="80" r="25" fill="#ffdc5e">
<animate attributeName="cy"
values="80; 320; 80"
dur="30s"
repeatCount="indefinite" />
<animate attributeName="fill"
values="#ffdc5e; #ffffff; #ffdc5e"
dur="30s"
repeatCount="indefinite" />
<animate attributeName="r"
values="25; 20; 25"
dur="30s"
repeatCount="indefinite" />
</circle>
<!-- Rolling hills or ground area -->
<g class="ground">
<path d="M0,350 C80,300 160,300 240,350
C320,400 400,400 400,400
L400,400 L0,400 Z"
fill="#795548">
<animate attributeName="fill"