-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1329 lines (1258 loc) · 104 KB
/
index.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">
<!-- Primary Meta Tags -->
<title>Money Mindset - Turn Your Hustle into a Legacy | Business Formalization</title>
<meta name="title" content="Money Mindset - Turn Your Hustle into a Legacy | Business Formalization">
<meta name="description" content="Transform your hustle into a structured, compliant business with Money Mindset's Series Two. Get free tools, expert guidance on registration, taxes, and licensing in Tanzania.">
<meta name="keywords" content="money mindset, business formalization, entrepreneur Tanzania, business registration, tax guidance, business license, startup guidance">
<meta name="author" content="Money Mindset">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://moneymindset.tz/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://moneymindset.tz/">
<meta property="og:title" content="Money Mindset - Turn Your Hustle into a Legacy">
<meta property="og:description" content="Free 5-month program to formalize your business in Tanzania. Get expert guidance, free tools, and join a community of entrepreneurs.">
<meta property="og:image" content="https://moneymindset.tz/gallery/event.7.png">
<meta property="og:site_name" content="Money Mindset">
<meta property="og:locale" content="en_US">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://moneymindset.tz/">
<meta property="twitter:title" content="Money Mindset - Turn Your Hustle into a Legacy">
<meta property="twitter:description" content="Free 5-month program to formalize your business in Tanzania. Get expert guidance, free tools, and join a community of entrepreneurs.">
<meta property="twitter:image" content="https://moneymindset.tz/gallery/event.7.png">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./gallery/logo.png">
<link rel="icon" type="image/png" sizes="32x32" href="./gallery/logo.png">
<link rel="icon" type="image/png" sizes="16x16" href="./gallery/logo.png">
<link rel="manifest" href="./site.webmanifest">
<link rel="mask-icon" href="./gallery/logo.png" color="#004241">
<meta name="msapplication-TileColor" content="#004241">
<meta name="theme-color" content="#004241">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#004241', // Dark teal from logo
secondary: '#F7C922', // Yellow/gold from logo
accent: '#5B9BD5', // Light blue from logo
dark: '#002B29', // Darker variation of primary
light: '#F8FAFC', // Light background
},
fontFamily: {
sans: ['Montserrat', 'sans-serif'],
heading: ['Poppins', 'sans-serif'],
},
spacing: {
'128': '32rem',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
}
}
}
}
</script>
<style>
html {
scroll-behavior: smooth;
}
body {
font-family: 'Montserrat', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins', sans-serif;
}
.gradient-text {
background: linear-gradient(to right, #004241, #5B9BD5);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-text-gold {
background: linear-gradient(to right, #004241, #F7C922);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-gradient {
background: linear-gradient(135deg, rgba(0,66,65,0.05) 0%, rgba(247,201,34,0.15) 100%);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.sticky-nav {
transition: all 0.3s ease;
}
.timeline-dot::before {
content: '';
position: absolute;
left: -36px;
top: 50%;
width: 20px;
height: 20px;
border-radius: 50%;
background: #F7C922;
transform: translateY(-50%);
border: 4px solid white;
box-shadow: 0 0 0 3px rgba(247,201,34,0.3);
}
.timeline-line {
position: absolute;
left: -27px;
top: 0;
bottom: 0;
width: 2px;
background: rgba(0,66,65,0.2);
}
@media (max-width: 768px) {
.timeline-dot::before {
left: -30px;
width: 16px;
height: 16px;
}
.timeline-line {
left: -22px;
}
}
/* Add better focus styles for accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
outline: 2px solid #004241;
outline-offset: 2px;
}
/* Improve scroll performance */
@media screen and (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
}
</style>
<!-- Structured Data for SEO - Course -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Course",
"name": "Money Mindset Series Two: Business Formalization",
"description": "A 5-month program to transform your hustle into a structured, compliant, and growth-ready business.",
"provider": {
"@type": "Organization",
"name": "Money Mindset",
"sameAs": "https://instagram.com/moneymindset.tz"
},
"hasCourseInstance": [
{
"@type": "CourseInstance",
"courseMode": "online",
"startDate": "2025-02-01",
"endDate": "2025-06-30",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "TZS",
"availability": "https://schema.org/InStock"
}
}
]
}
</script>
<!-- Structured Data for SEO - Event -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "Money Mindset Mondays",
"startDate": "2025-02-01T17:30",
"endDate": "2025-02-01T19:30",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"eventStatus": "https://schema.org/EventScheduled",
"location": {
"@type": "Place",
"name": "LinkSpace Kaloleni",
"address": {
"@type": "PostalAddress",
"addressLocality": "Arusha",
"addressRegion": "Tanzania"
}
},
"image": "https://moneymindset.tz/gallery/event.6.png",
"description": "A monthly meetup where ambition meets actionable advice for entrepreneurs in Tanzania.",
"offers": {
"@type": "Offer",
"url": "https://moneymindset.tz/#events",
"price": "0",
"priceCurrency": "TZS",
"availability": "https://schema.org/InStock"
},
"organizer": {
"@type": "Organization",
"name": "Money Mindset",
"url": "https://moneymindset.tz"
}
}
</script>
<!-- Structured Data for SEO - Organization -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Money Mindset",
"url": "https://moneymindset.tz",
"logo": "https://moneymindset.tz/gallery/logo.png",
"sameAs": [
"https://instagram.com/moneymindset.tz"
],
"address": {
"@type": "PostalAddress",
"addressLocality": "Arusha",
"addressRegion": "Tanzania"
},
"contactPoint": {
"@type": "ContactPoint",
"contactType": "Customer Support",
"email": "[email protected]"
}
}
</script>
</head>
<body class="bg-light text-gray-800">
<!-- Skip to main content link for accessibility -->
<a href="#main-content" class="sr-only focus:not-sr-only focus:absolute focus:p-4 focus:bg-white focus:text-primary focus:z-50">Skip to main content</a>
<!-- Navigation -->
<nav class="fixed w-full bg-white bg-opacity-95 shadow-sm z-50 sticky-nav" aria-label="Main Navigation">
<div class="container mx-auto px-4 py-3">
<div class="flex justify-between items-center">
<a href="#" class="flex items-center" aria-label="Money Mindset Home">
<img src="./gallery/logo.png" alt="Money Mindset Logo" class="h-16 md:h-18 mr-2">
<span class="hidden md:block text-2xl font-bold text-primary">MONEY<span class="text-secondary"> MINDSET</span></span>
</a>
<div class="hidden md:flex space-x-8 items-center">
<a href="#about" class="font-medium hover:text-primary transition text-base tracking-wide">About</a>
<a href="#episodes" class="font-medium hover:text-primary transition text-base tracking-wide">Series Two</a>
<a href="#tools" class="font-medium hover:text-primary transition text-base tracking-wide">Free Tools</a>
<a href="#events" class="font-medium hover:text-primary transition text-base tracking-wide">Events</a>
<a href="#contact" class="bg-secondary text-primary px-6 py-3 rounded-lg hover:bg-opacity-90 transition text-base font-bold shadow-md tracking-wide">Register Now</a>
</div>
<button class="md:hidden text-2xl text-primary" id="mobile-menu-button" aria-expanded="false" aria-controls="mobile-menu" aria-label="Toggle navigation menu">
<i class="fas fa-bars"></i>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden mt-4 pb-4" aria-labelledby="mobile-menu-button">
<a href="#about" class="block py-3 text-lg hover:text-primary transition border-b border-gray-100">About</a>
<a href="#episodes" class="block py-3 text-lg hover:text-primary transition border-b border-gray-100">Series Two</a>
<a href="#tools" class="block py-3 text-lg hover:text-primary transition border-b border-gray-100">Free Tools</a>
<a href="#events" class="block py-3 text-lg hover:text-primary transition">Events</a>
<a href="#contact" class="block py-3 mt-4 bg-secondary text-primary px-4 rounded-lg text-center text-lg font-bold shadow-md">Register Now</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient pt-28 pb-16 md:pt-36 md:pb-24" id="main-content">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row lg:items-center">
<div class="lg:w-1/2 mb-10 lg:mb-0 lg:pr-12">
<div class="inline-block bg-secondary/20 text-primary font-bold px-4 py-2 rounded-full mb-6 text-sm tracking-wider">APRIL 7TH 2025 - SERIES TWO, EP3 CONTINUES</div>
<h1 class="text-4xl md:text-5xl lg:text-6xl font-extrabold mb-6 leading-tight">Turn Your <span class="text-primary">Hustle</span> into a <span class="text-secondary">Legacy</span></h1>
<p class="text-xl md:text-2xl text-gray-600 mb-8 leading-relaxed">Series Two unpacks the why and how of building a legitimate Business — so you can protect your ideas, attract opportunities, and grow without limits.</p>
<div class="flex flex-col sm:flex-row gap-4 mb-8">
<a href="#" class="bg-primary hover:bg-dark text-white font-bold px-8 py-4 rounded-lg text-center transition duration-300 shadow-md hover:shadow-xl text-lg tracking-wide">Reserve Your Spot</a>
<!-- <a href="./calltoaction.html" class="bg-primary hover:bg-dark text-white font-bold px-8 py-4 rounded-lg text-center transition duration-300 shadow-md hover:shadow-xl text-lg tracking-wide">Reserve Your Spot</a> -->
<a href="#episodes" class="border-2 border-primary hover:bg-primary/5 text-primary font-bold px-8 py-4 rounded-lg text-center transition duration-300 text-lg tracking-wide">Explore Episodes</a>
</div>
<div class="flex items-center">
<div class="flex -space-x-4">
<img src="./gallery/abel_testimony.jpg" alt="Entrepreneur testimonial" class="w-12 h-12 rounded-full border-2 border-white">
<img src="./gallery/manka_testimony.jpg" alt="Entrepreneur testimonial" class="w-12 h-12 rounded-full border-2 border-white">
<img src="./gallery/mtuchi_testimony.jpg" alt="Entrepreneur testimonial" class="w-12 h-12 rounded-full border-2 border-white">
</div>
<div class="ml-4">
<div class="flex text-yellow-400" aria-label="5 star rating">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
</div>
<p class="text-sm text-gray-600">Empowering <span class="font-bold">hundred</span> of entrepreneurs</p>
</div>
</div>
</div>
<div class="lg:w-1/2">
<div class="relative">
<div class="absolute inset-0 bg-primary rounded-3xl transform rotate-3 scale-105 opacity-10"></div>
<div class="relative overflow-hidden rounded-3xl shadow-2xl">
<img src="./gallery/event.7.png" alt="Entrepreneurs collaborating at a Money Mindset event" class="w-full h-auto object-cover">
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-primary/90 to-transparent p-8">
<div class="flex items-center">
<div class="w-12 h-12 bg-secondary rounded-full flex items-center justify-center mr-4">
<svg class="w-6 h-6 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z"></path><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
</div>
<div class="text-white">
<p class="text-sm">Come to our Monthly Dialogues</p>
<p class="font-bold">No fees. Just actionable Insights.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="about" class="py-20 bg-white" aria-labelledby="about-heading">
<div class="container mx-auto px-4">
<div class="mb-16 text-center max-w-3xl mx-auto">
<h2 id="about-heading" class="text-3xl md:text-4xl font-bold mb-6">What Makes <span class="gradient-text-gold">Money Mindset</span> Different?</h2>
<p class="text-xl text-gray-600">We're not here to lecture. We're here to simplify complex business concepts through relatable stories and actionable tools.</p>
</div>
<div class="grid md:grid-cols-3 gap-8 mb-16">
<div class="bg-white rounded-xl p-8 shadow-lg card-hover border-t-4 border-primary">
<div class="w-16 h-16 bg-primary/10 rounded-2xl flex items-center justify-center mb-6">
<svg class="w-8 h-8 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path></svg>
</div>
<h3 class="text-2xl font-bold mb-4">Skip the Guesswork</h3>
<p class="text-gray-600 text-lg mb-4">Clear, step-by-step guidance on registration, taxes, licenses, and more.</p>
<ul class="space-y-2">
<li class="flex items-center">
<svg class="w-5 h-5 text-green-500 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path></svg>
<span>Step-by-step processes</span>
</li>
<li class="flex items-center">
<svg class="w-5 h-5 text-green-500 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path></svg>
<span>Clear timelines</span>
</li>
<li class="flex items-center">
<svg class="w-5 h-5 text-green-500 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path></svg>
<span>Simplified procedures</span>
</li>
</ul>
</div>
<div class="bg-white rounded-xl p-8 shadow-lg card-hover border-t-4 border-secondary">
<div class="w-16 h-16 bg-secondary/10 rounded-2xl flex items-center justify-center mb-6">
<svg class="w-8 h-8 text-secondary" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z"></path></svg>
</div>
<h3 class="text-2xl font-bold mb-4">Learn from Real People</h3>
<p class="text-gray-600 text-lg mb-4">Relatable stories from entrepreneurs who've been there, made mistakes, and succeeded.</p>
<ul class="space-y-2">
<li class="flex items-center">
<svg class="w-5 h-5 text-green-500 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path></svg>
<span>No exaggerated success stories</span>
</li>
<li class="flex items-center">
<svg class="w-5 h-5 text-green-500 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path></svg>
<span>Real challenges addressed</span>
</li>
<li class="flex items-center">
<svg class="w-5 h-5 text-green-500 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path></svg>
<span>Actionable solutions</span>
</li>
</ul>
</div>
<div class="bg-white rounded-xl p-8 shadow-lg card-hover border-t-4 border-accent">
<div class="w-16 h-16 bg-accent/10 rounded-2xl flex items-center justify-center mb-6">
<svg class="w-8 h-8 text-accent" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2M15 11a3 3 0 11-6 0 3 3 0 016 0z"></path></svg>
</div>
<h3 class="text-2xl font-bold mb-4">Act Immediately</h3>
<p class="text-gray-600 text-lg mb-4">Free tools and checklists to apply what you learn right away.</p>
<ul class="space-y-2">
<li class="flex items-center">
<svg class="w-5 h-5 text-green-500 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path></svg>
<span>Downloadable templates</span>
</li>
<li class="flex items-center">
<svg class="w-5 h-5 text-green-500 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path></svg>
<span>Practical checklists</span>
</li>
<li class="flex items-center">
<svg class="w-5 h-5 text-green-500 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path></svg>
<span>Implementation guides</span>
</li>
</ul>
</div>
</div>
<!-- Testimonial Feature -->
<div class="bg-primary rounded-2xl overflow-hidden shadow-xl">
<div class="flex flex-col lg:flex-row">
<div class="lg:w-2/5 relative">
<img src="./gallery/event.9.png" alt="Entrepreneur success story" class="w-full h-full object-cover object-center">
<div class="absolute inset-0 bg-gradient-to-r from-primary/80 lg:from-primary to-transparent flex items-center lg:hidden">
<div class="p-8">
<blockquote class="text-white text-xl md:text-2xl italic font-medium">"I used to think formalizing was optional. Now I see it as my secret weapon."</blockquote>
</div>
</div>
</div>
<div class="lg:w-3/5 p-8 md:p-12 flex items-center">
<div>
<blockquote class="text-white text-xl md:text-3xl italic font-medium mb-8 hidden lg:block">"I used to think formalizing was optional. Now I see it as my secret weapon."</blockquote>
<div class="flex items-center">
<img src="./gallery/abel_testimony.jpg" alt="Abell" class="w-16 h-16 rounded-full border-2 border-secondary mr-4">
<div>
<p class="text-white font-bold text-lg">Abell</p>
<p class="text-white/80">Small Business Owner, Arusha</p>
</div>
</div>
<p class="mt-6 text-white/90">Series Two inspired Abel to formalize his Air-ticket Booking Business. It's been a game-changer and he now appears proffessional with potential to work with all kinds of businesses.</p>
<a href="#contact" class="inline-block mt-8 bg-secondary text-primary font-bold px-6 py-3 rounded-lg hover:bg-opacity-90 transition">Join Abell & Others</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Episode Timeline Section (Improved) -->
<section id="episodes" class="py-20 bg-gray-50" aria-labelledby="episodes-heading">
<div class="container mx-auto px-8">
<div class="mb-16 text-center max-w-3xl mx-auto">
<span class="inline-block bg-primary/10 text-primary font-bold px-4 py-2 rounded-full mb-4 text-sm" aria-hidden="true">SERIES TWO CURRICULUM</span>
<h2 id="episodes-heading" class="text-3xl md:text-4xl font-bold mb-6">Your Journey to Business Legitimacy</h2>
<p class="text-xl text-gray-600">A 5-month program to transform your hustle into a structured, compliant, and growth-ready business. Each episode includes free tools to implement what you learn.</p>
</div>
<div class="relative lg:pl-0 lg:flex lg:justify-center">
<!-- Timeline Desktop View -->
<div class="hidden lg:grid lg:grid-cols-5 gap-3 max-w-10xl">
<!-- Episode 1 -->
<article class="bg-white rounded-xl shadow-lg overflow-hidden hover:shadow-xl transition-shadow duration-300">
<div class="h-2 bg-primary" aria-hidden="true"></div>
<div class="p-6 flex flex-col h-full">
<div class="flex items-center mb-4">
<span class="flex items-center justify-center w-10 h-10 bg-primary text-white text-xs font-bold rounded-full mr-3">FEB</span>
<h3 class="text-xl font-bold text-gray-800">Register Right</h3>
</div>
<p class="text-gray-600 mb-4">Why it matters: <span class="font-semibold text-primary">Legitimacy = Trust</span></p>
<ul class="space-y-2 mb-4 flex-grow">
<li class="flex items-start">
<svg class="w-5 h-5 text-primary mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Business structure selection</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-primary mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Registration process</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-primary mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Required documentation</span>
</li>
</ul>
<div class="border-t border-gray-100 pt-4 mt-auto">
<div class="flex items-center text-primary">
<svg class="w-5 h-5 mr-2" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V7.414A2 2 0 0015.414 6L12 2.586A2 2 0 0010.586 2H6zm5 6a1 1 0 10-2 0v2H7a1 1 0 100 2h2v2a1 1 0 102 0v-2h2a1 1 0 100-2h-2V8z" clip-rule="evenodd"></path></svg>
<p class="font-medium">Free registration flowchart</p>
</div>
</div>
</div>
</article>
<!-- Episode 2 -->
<article class="bg-white rounded-xl shadow-lg overflow-hidden hover:shadow-xl transition-shadow duration-300">
<div class="h-2 bg-primary" aria-hidden="true"></div>
<div class="p-6 flex flex-col h-full">
<div class="flex items-center mb-4">
<span class="flex items-center justify-center w-10 h-10 bg-primary text-white text-xs font-bold rounded-full mr-3">MAR</span>
<h3 class="text-xl font-bold text-gray-800">License Lowdown</h3>
</div>
<p class="text-gray-600 mb-4">Why it matters: <span class="font-semibold text-primary">Avoid fines, unlock growth</span></p>
<ul class="space-y-2 mb-4 flex-grow">
<li class="flex items-start">
<svg class="w-5 h-5 text-primary mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Industry-specific licenses</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-primary mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Permit requirements</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-primary mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Compliance strategies</span>
</li>
</ul>
<div class="border-t border-gray-100 pt-4 mt-auto">
<div class="flex items-center text-primary">
<svg class="w-5 h-5 mr-2" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V7.414A2 2 0 0015.414 6L12 2.586A2 2 0 0010.586 2H6zm5 6a1 1 0 10-2 0v2H7a1 1 0 100 2h2v2a1 1 0 102 0v-2h2a1 1 0 100-2h-2V8z" clip-rule="evenodd"></path></svg>
<p class="font-medium">License checklist bundle</p>
</div>
</div>
</div>
</article>
<!-- Episode 3 -->
<article class="bg-white rounded-xl shadow-lg overflow-hidden hover:shadow-xl transition-shadow duration-300">
<div class="h-2 bg-primary" aria-hidden="true"></div>
<div class="p-6 flex flex-col h-full">
<div class="flex items-center mb-4">
<span class="flex items-center justify-center w-10 h-10 bg-primary text-white text-xs font-bold rounded-full mr-3">APR</span>
<h3 class="text-xl font-bold text-gray-800">Tax Tactics</h3>
</div>
<p class="text-gray-600 mb-4">Why it matters: <span class="font-semibold text-primary">Taxes fund your future</span></p>
<ul class="space-y-2 mb-4 flex-grow">
<li class="flex items-start">
<svg class="w-5 h-5 text-primary mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Tax classification</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-primary mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Filing requirements</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-primary mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Deduction strategies</span>
</li>
</ul>
<div class="border-t border-gray-100 pt-4 mt-auto">
<div class="flex items-center text-primary">
<svg class="w-5 h-5 mr-2" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V7.414A2 2 0 0015.414 6L12 2.586A2 2 0 0010.586 2H6zm5 6a1 1 0 10-2 0v2H7a1 1 0 100 2h2v2a1 1 0 102 0v-2h2a1 1 0 100-2h-2V8z" clip-rule="evenodd"></path></svg>
<p class="font-medium">Tax calculation template</p>
</div>
</div>
</div>
</article>
<!-- Episode 4 -->
<article class="bg-white rounded-xl shadow-lg overflow-hidden hover:shadow-xl transition-shadow duration-300 opacity-90">
<div class="h-2 bg-primary opacity-60" aria-hidden="true"></div>
<div class="p-6 flex flex-col h-full">
<div class="flex items-center mb-4">
<span class="flex items-center justify-center w-10 h-10 bg-primary opacity-60 text-white text-xs font-bold rounded-full mr-3">MAY</span>
<h3 class="text-xl font-bold text-gray-800">Formalize & Thrive</h3>
</div>
<p class="text-gray-600 mb-4">Why it matters: <span class="font-semibold text-primary opacity-60">Look pro, attract investors</span></p>
<ul class="space-y-2 mb-4 flex-grow">
<li class="flex items-start">
<svg class="w-5 h-5 text-primary opacity-60 mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Brand development</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-primary opacity-60 mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Professional operations</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-primary opacity-60 mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Investor readiness</span>
</li>
</ul>
<div class="border-t border-gray-100 pt-4 mt-auto">
<div class="flex items-center text-primary opacity-60">
<svg class="w-5 h-5 mr-2" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V7.414A2 2 0 0015.414 6L12 2.586A2 2 0 0010.586 2H6zm5 6a1 1 0 10-2 0v2H7a1 1 0 100 2h2v2a1 1 0 102 0v-2h2a1 1 0 100-2h-2V8z" clip-rule="evenodd"></path></svg>
<p class="font-medium">Case study collection</p>
</div>
</div>
</div>
</article>
<!-- Episode 5 -->
<article class="bg-white rounded-xl shadow-lg overflow-hidden hover:shadow-xl transition-shadow duration-300 opacity-80">
<div class="h-2 bg-primary opacity-60" aria-hidden="true"></div>
<div class="p-6 flex flex-col h-full">
<div class="flex items-center mb-4">
<span class="flex items-center justify-center w-10 h-10 bg-primary opacity-60 text-white text-xs font-bold rounded-full mr-3">JUN</span>
<h3 class="text-xl font-bold text-gray-800">Scale Smart</h3>
</div>
<p class="text-gray-600 mb-4">Why it matters: <span class="font-semibold text-primary opacity-60">Grow bigger, stay compliant</span></p>
<ul class="space-y-2 mb-4 flex-grow">
<li class="flex items-start">
<svg class="w-5 h-5 text-primary opacity-60 mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Growth strategies</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-primary opacity-60 mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Scaling operations</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-primary opacity-60 mt-0.5 mr-2 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<span>Hiring & team building</span>
</li>
</ul>
<div class="border-t border-gray-100 pt-4 mt-auto">
<div class="flex items-center text-primary opacity-60">
<svg class="w-5 h-5 mr-2" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V7.414A2 2 0 0015.414 6L12 2.586A2 2 0 0010.586 2H6zm5 6a1 1 0 10-2 0v2H7a1 1 0 100 2h2v2a1 1 0 102 0v-2h2a1 1 0 100-2h-2V8z" clip-rule="evenodd"></path></svg>
<p class="font-medium">Scaling roadmap template</p>
</div>
</div>
</div>
</article>
</div>
<!-- Timeline Mobile View -->
<div class="lg:hidden relative" aria-label="Program timeline - mobile version">
<!-- Episode 1 -->
<article class="relative bg-white rounded-xl shadow-lg overflow-hidden hover:shadow-xl transition-shadow duration-300">
<!-- Timeline dot -->
<div class="absolute left-[-30px] top-8 w-8 h-5 bg-primary rounded-full border-4 border-white shadow-sm z-10" aria-hidden="true"></div>
<div class="h-2 bg-primary" aria-hidden="true"></div>
<div class="p-6">
<div class="flex items-center mb-4">
<span class="flex items-center justify-center w-10 h-10 bg-primary text-white text-xs font-bold rounded-full mr-3">FEB</span>
<h3 class="text-xl font-bold text-gray-800">Episode 1: Register Right</h3>
</div>
<p class="text-gray-600 mb-3">Why it matters: <span class="font-semibold text-primary">Legitimacy = Trust</span></p>
<p class="mb-4">Learn the exact steps to register your business properly and establish a foundation for growth.</p>
<div class="flex items-center text-primary">
<svg class="w-5 h-5 mr-2" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V7.414A2 2 0 0015.414 6L12 2.586A2 2 0 0010.586 2H6zm5 6a1 1 0 10-2 0v2H7a1 1 0 100 2h2v2a1 1 0 102 0v-2h2a1 1 0 100-2h-2V8z" clip-rule="evenodd"></path></svg>
<p class="font-medium">Get: A free step-by-step registration flowchart</p>
</div>
</div>
</article>
<!-- Episode 2 -->
<article class="relative bg-white rounded-xl shadow-lg overflow-hidden hover:shadow-xl transition-shadow duration-300">
<!-- Timeline dot -->
<div class="absolute left-[-30px] top-8 w-5 h-5 bg-primary rounded-full border-4 border-white shadow-sm z-10" aria-hidden="true"></div>
<div class="h-2 bg-primary" aria-hidden="true"></div>
<div class="p-6">
<div class="flex items-center mb-4">
<span class="flex items-center justify-center w-10 h-10 bg-primary text-white text-xs font-bold rounded-full mr-3">MAR</span>
<h3 class="text-xl font-bold text-gray-800">Episode 2: License Lowdown</h3>
</div>
<p class="text-gray-600 mb-3">Why it matters: <span class="font-semibold text-primary">Avoid fines, unlock growth</span></p>
<p class="mb-4">Navigate the licensing landscape confidently and protect your business legally.</p>
<div class="flex items-center text-primary">
<svg class="w-5 h-5 mr-2" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V7.414A2 2 0 0015.414 6L12 2.586A2 2 0 0010.586 2H6zm5 6a1 1 0 10-2 0v2H7a1 1 0 100 2h2v2a1 1 0 102 0v-2h2a1 1 0 100-2h-2V8z" clip-rule="evenodd"></path></svg>
<p class="font-medium">Get: Industry-specific license checklists</p>
</div>
</div>
</article>
<!-- Episode 3 -->
<article class="relative bg-white rounded-xl shadow-lg overflow-hidden hover:shadow-xl transition-shadow duration-300">
<!-- Timeline dot -->
<div class="absolute left-[-30px] top-8 w-5 h-5 bg-primary rounded-full border-4 border-white shadow-sm z-10" aria-hidden="true"></div>
<div class="h-2 bg-primary" aria-hidden="true"></div>
<div class="p-6">
<div class="flex items-center mb-4">
<span class="flex items-center justify-center w-10 h-10 bg-primary text-white text-xs font-bold rounded-full mr-3">APR</span>
<h3 class="text-xl font-bold text-gray-800">Episode 3: Tax Tactics</h3>
</div>
<p class="text-gray-600 mb-3">Why it matters: <span class="font-semibold text-primary">Taxes fund your future</span></p>
<p class="mb-4">Demystify the tax system and discover deductions that can save your business money.</p>
<div class="flex items-center text-primary">
<svg class="w-5 h-5 mr-2" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V7.414A2 2 0 0015.414 6L12 2.586A2 2 0 0010.586 2H6zm5 6a1 1 0 10-2 0v2H7a1 1 0 100 2h2v2a1 1 0 102 0v-2h2a1 1 0 100-2h-2V8z" clip-rule="evenodd"></path></svg>
<p class="font-medium">Get: A simple tax-calculation template</p>
</div>
</div>
</article>
<!-- Future Episodes -->
<article class="relative bg-white rounded-xl shadow-lg overflow-hidden hover:shadow-xl transition-shadow duration-300 p-6">
<!-- Timeline dot -->
<div class="absolute left-[-30px] top-8 w-5 h-5 bg-primary opacity-60 rounded-full border-4 border-white shadow-sm z-10" aria-hidden="true"></div>
<h3 class="text-xl font-bold mb-6 text-gray-800">Coming Later in 2025</h3>
<div class="space-y-6">
<div>
<div class="flex items-center mb-2">
<span class="flex items-center justify-center w-8 h-8 bg-primary opacity-60 text-white text-xs font-bold rounded-full mr-3">MAY</span>
<h4 class="font-bold text-lg text-gray-800">Episode 4: Formalize & Thrive</h4>
</div>
<p class="text-gray-600 ml-11">Look professional, attract investors, and position your business for opportunities.</p>
</div>
<div>
<div class="flex items-center mb-2">
<span class="flex items-center justify-center w-8 h-8 bg-primary opacity-60 text-white text-xs font-bold rounded-full mr-3">JUN</span>
<h4 class="font-bold text-lg text-gray-800">Episode 5: Scale Smart</h4>
</div>
<p class="text-gray-600 ml-11">Grow bigger while staying compliant, and build systems that support expansion.</p>
</div>
</div>
</article>
</div>
</div>
<!-- CTA Banner -->
<div class="mt-16 max-w-8xl mx-auto" id="early-registration">
<div class="bg-primary rounded-2xl shadow-xl overflow-hidden">
<div class="relative p-8 md:p-10 text-white">
<div class="absolute right-0 bottom-0 rounded-full w-32 h-32 bg-secondary opacity-10 -mr-10 -mb-10" aria-hidden="true"></div>
<div class="absolute left-0 top-0 rounded-full w-16 h-16 bg-secondary opacity-10 -ml-8 -mt-8" aria-hidden="true"></div>
<div class="relative flex flex-col md:flex-row items-center">
<div class="md:w-2/3 mb-6 md:mb-0 md:pr-8">
<div class="flex items-center mb-4">
<span class="text-2xl mr-3" aria-hidden="true">🎯</span>
<h3 class="text-2xl font-bold">Early Registration Bonus</h3>
</div>
<p class="text-lg mb-4">Sign up before January 31st and get our exclusive <span class="font-bold text-secondary">"Formalize Your Future" Starter Kit</span> for free!</p>
<p>Includes business structure comparison guide, registration checklist, and startup legal essentials reference.</p>
</div>
<div class="md:w-1/3 text-center">
<a href="#contact" class="block bg-secondary text-primary font-bold px-8 py-4 rounded-lg hover:bg-opacity-90 transition shadow-md text-lg transform hover:scale-105">Claim Your Bonus</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Tools Section -->
<section id="tools" class="py-20 bg-white" aria-labelledby="tools-heading">
<div class="container mx-auto px-4">
<div class="mb-16 text-center max-w-3xl mx-auto">
<h2 id="tools-heading" class="text-3xl md:text-4xl font-bold mb-6">Free Tools for <span class="gradient-text-gold">Busy Builders</span></h2>
<p class="text-xl text-gray-600">Knowledge that fits your hustle. Multiple formats to match your learning style and busy schedule.</p>
</div>
<div class="grid md:grid-cols-3 gap-10">
<div class="group">
<div class="bg-primary/5 rounded-2xl p-8 text-center hover:bg-primary/10 transition flex flex-col items-center h-full relative overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-b from-transparent via-transparent to-primary/5 group-hover:opacity-100 opacity-0 transition-opacity" aria-hidden="true"></div>
<div class="relative">
<div class="h-24 w-24 mx-auto bg-primary/10 rounded-full flex items-center justify-center mb-6 group-hover:bg-primary/20 transition" aria-hidden="true">
<svg class="w-12 h-12 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"></path></svg>
</div>
<h3 class="text-2xl font-bold mb-4 text-primary">Digital Playbooks</h3>
<p class="text-gray-600 text-lg mb-6">PDF guides for quick, on-the-go learning. Download, save, and reference whenever you need clarity.</p>
<div class="mt-auto">
<span class="inline-block bg-primary/10 text-primary font-medium px-4 py-2 rounded-full text-sm">Sample Available Now</span>
</div>
</div>
</div>
</div>
<div class="group">
<div class="bg-secondary/5 rounded-2xl p-8 text-center hover:bg-secondary/10 transition flex flex-col items-center h-full relative overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-b from-transparent via-transparent to-secondary/5 group-hover:opacity-100 opacity-0 transition-opacity" aria-hidden="true"></div>
<div class="relative">
<div class="h-24 w-24 mx-auto bg-secondary/10 rounded-full flex items-center justify-center mb-6 group-hover:bg-secondary/20 transition" aria-hidden="true">
<svg class="w-12 h-12 text-secondary" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.536 8.464a5 5 0 010 7.072m2.828-9.9a9 9 0 010 12.728M5.586 15.536a5 5 0 001.414 1.414m2.828-9.9a9 9 0 012.728-2.728"></path></svg>
</div>
<h3 class="text-2xl font-bold mb-4 text-primary">Audio Snacks</h3>
<p class="text-gray-600 text-lg mb-6">Listen to key takeaways while you work. Perfect for busy entrepreneurs who learn on the go.</p>
<div class="mt-auto">
<span class="inline-block bg-secondary/10 text-secondary font-medium px-4 py-2 rounded-full text-sm">10-15 Minutes Each</span>
</div>
</div>
</div>
</div>
<div class="group">
<div class="bg-accent/5 rounded-2xl p-8 text-center hover:bg-accent/10 transition flex flex-col items-center h-full relative overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-b from-transparent via-transparent to-accent/5 group-hover:opacity-100 opacity-0 transition-opacity" aria-hidden="true"></div>
<div class="relative">
<div class="h-24 w-24 mx-auto bg-accent/10 rounded-full flex items-center justify-center mb-6 group-hover:bg-accent/20 transition" aria-hidden="true">
<svg class="w-12 h-12 text-accent" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"></path></svg>
</div>
<h3 class="text-2xl font-bold mb-4 text-primary">Video Shorts</h3>
<p class="text-gray-600 text-lg mb-6">Watch demos like "How to fill Form X in 5 minutes." Visual learning made practical and quick.</p>
<div class="mt-auto">
<span class="inline-block bg-accent/10 text-accent font-medium px-4 py-2 rounded-full text-sm">Step-by-Step Walkthroughs</span>
</div>
</div>
</div>
</div>
</div>
<!-- Resources Preview -->
<div class="mt-20 max-w-8xl mx-auto">
<div class="bg-gray-50 rounded-2xl overflow-hidden shadow-lg">
<div class="flex flex-col lg:flex-row">
<div class="lg:w-1/2 p-8 md:p-10">
<h3 class="text-2xl font-bold mb-6">A Taste of What You'll Get</h3>
<ul class="space-y-6">
<li class="flex">
<div class="flex-shrink-0">
<div class="w-10 h-10 bg-primary/10 rounded-full flex items-center justify-center" aria-hidden="true">
<svg class="w-5 h-5 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path></svg>
</div>
</div>
<div class="ml-4">
<h4 class="font-bold mb-1">Business Structure Comparison</h4>
<p class="text-gray-600">Side-by-side analysis of sole proprietorship, LLC, and corporation options with pros and cons for each.</p>
</div>
</li>
<li class="flex">
<div class="flex-shrink-0">
<div class="w-10 h-10 bg-secondary/10 rounded-full flex items-center justify-center" aria-hidden="true">
<svg class="w-5 h-5 text-secondary" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
</div>
</div>
<div class="ml-4">
<h4 class="font-bold mb-1">Registration Checklist</h4>
<p class="text-gray-600">Complete step-by-step checklist with all required documents, fees, and timelines for getting registered.</p>
</div>
</li>
<li class="flex">
<div class="flex-shrink-0">
<div class="w-10 h-10 bg-accent/10 rounded-full flex items-center justify-center" aria-hidden="true">
<svg class="w-5 h-5 text-accent" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
</div>
</div>
<div class="ml-4">
<h4 class="font-bold mb-1">Tax Calendar</h4>
<p class="text-gray-600">Annual tax obligation timeline with reminders for when to file, what to pay, and how to prepare.</p>
</div>
</li>
</ul>
<div class="mt-8">
<a href="#contact" class="inline-flex items-center font-bold text-primary hover:text-accent transition">
<span>Access All Resources</span>
<svg class="w-5 h-5 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path></svg>
</a>
</div>
</div>
<div class="lg:w-1/2 bg-primary relative overflow-hidden">
<img src="./gallery/event.7.png" alt="Resources Preview" class="w-full h-full object-cover mix-blend-overlay opacity-20">
<div class="absolute inset-0 flex items-center justify-center p-8">
<div class="text-center">
<h3 class="text-2xl font-bold mb-6 text-white">All Resources are <span class="text-secondary">100% Free</span></h3>
<p class="text-white/90 mb-8 text-lg">No credit card required. No hidden fees. Just practical tools to help you succeed.</p>
<a href="#contact" class="inline-block bg-secondary text-primary font-bold px-8 py-4 rounded-lg hover:bg-yellow-400 transition shadow-lg text-lg">Register Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Events Section -->
<section id="events" class="py-20 bg-light" aria-labelledby="events-heading">
<div class="container mx-auto px-4">
<div class="mb-16 text-center max-w-3xl mx-auto">
<span class="inline-block bg-secondary/10 text-secondary font-bold px-4 py-2 rounded-full mb-4 text-sm" aria-hidden="true">MONTHLY MEETUPS</span>
<h2 id="events-heading" class="text-3xl md:text-4xl font-bold mb-6">Money Mindset Mondays</h2>
<p class="text-xl text-gray-600">Where Hustlers Become Visionaries. Join our free monthly events to learn, connect, and leave with a concrete action plan.</p>
</div>
<div class="flex flex-col lg:flex-row gap-10">
<div class="lg:w-1/2">
<div class="relative h-full">
<div class="absolute -inset-1 bg-gradient-to-r from-primary to-accent rounded-3xl blur opacity-20" aria-hidden="true"></div>
<div class="relative bg-white rounded-2xl overflow-hidden shadow-lg h-full">
<div class="h-64 md:h-80 relative">
<img src="./gallery/event.6.png" alt="Money Mindset Monday event at LinkSpace" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-primary to-transparent">
<div class="absolute bottom-0 left-0 p-6">
<span class="inline-block bg-secondary text-primary font-bold px-4 py-1 rounded-full text-sm mb-2">FREE MONTHLY EVENT</span>
<h3 class="text-2xl md:text-3xl font-bold text-white">Dream Big. Hustle Smarter.</h3>
</div>
</div>
</div>
<div class="p-8">
<p class="text-gray-600 mb-8 text-lg">A monthly meetup where ambition meets actionable advice. Hosted by LinkSpace and Irabu.</p>
<div class="grid grid-cols-1 gap-6 mb-8">
<div class="flex items-start">
<span class="flex-shrink-0 w-10 h-10 bg-primary/10 rounded-full flex items-center justify-center mr-3 text-primary" aria-hidden="true">💡</span>
<div>
<h4 class="font-bold mb-1">Learn Raw Truths</h4>
<p class="text-gray-600">From founders who've made (and fixed!) mistakes.</p>
</div>
</div>
<div class="flex items-start">
<span class="flex-shrink-0 w-10 h-10 bg-secondary/10 rounded-full flex items-center justify-center mr-3 text-secondary" aria-hidden="true">🤝</span>
<div>
<h4 class="font-bold mb-1">Build Your Squad</h4>
<p class="text-gray-600">Connect with mentors and peers who "get it."</p>
</div>
</div>
<div class="flex items-start">
<span class="flex-shrink-0 w-10 h-10 bg-accent/10 rounded-full flex items-center justify-center mr-3 text-accent" aria-hidden="true">🚀</span>
<div>
<h4 class="font-bold mb-1">Leave Energized</h4>
<p class="text-gray-600">With a to-do list, not just inspiration.</p>
</div>
</div>
<div class="flex items-start">
<span class="flex-shrink-0 w-10 h-10 bg-primary/10 rounded-full flex items-center justify-center mr-3 text-primary" aria-hidden="true">🎁</span>
<div>
<h4 class="font-bold mb-1">Free Resources</h4>
<p class="text-gray-600">Take home templates, checklists, and guides.</p>
</div>
</div>
</div>
<div class="flex flex-col sm:flex-row sm:items-center gap-4 justify-between border-t border-gray-100 pt-6">
<div>
<h4 class="font-bold text-lg flex items-center">
<svg class="w-5 h-5 mr-2 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"></path></svg>
<span>First Monday of Every Month</span>
</h4>
<p class="text-gray-600 pl-7">5:30 PM @ LinkSpace Kaloleni - Arusha</p>
</div>
<div class="text-center sm:text-right">
<span class="inline-block bg-green-100 text-green-600 font-bold px-4 py-1 rounded-full text-sm">Free Entry. Forever.</span>
</div>
</div>
<div class="mt-6">
<a href="#contact" class="block w-full bg-primary hover:bg-dark text-white font-bold py-3.5 rounded-lg text-center transition text-lg shadow-md">Reserve Your Spot</a>
</div>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2">
<div class="relative h-full">
<div class="absolute -inset-1 bg-gradient-to-r from-primary to-accent rounded-3xl blur opacity-20" aria-hidden="true"></div>
<div class="relative bg-white rounded-2xl overflow-hidden shadow-lg h-full grid content-between">
<div>
<div class="p-8">
<h3 class="text-2xl font-bold mb-8">What Past Attendees Say</h3>
<div class="space-y-8">
<div class="bg-gray-50 rounded-xl p-6 relative">
<div class="absolute top-0 right-0 transform translate-x-1/4 -translate-y-1/2" aria-hidden="true">
<div class="w-8 h-8 bg-secondary rounded-full flex items-center justify-center text-white text-xs">
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10 3a1 1 0 01.707.293l3 3a1 1 0 01-1.414 1.414L10 5.414 7.707 7.707a1 1 0 01-1.414-1.414l3-3A1 1 0 0110 3zm-3.707 9.293a1 1 0 011.414 0L10 14.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</div>
</div>
<blockquote class="italic text-gray-700 mb-4">"Attending live felt like a mentorship session with friends. I connected with three other business owners who've become my support network."</blockquote>
<div class="flex items-center">
<img src="./gallery/manka_testimony.jpg" alt="Betty" class="w-12 h-12 rounded-full object-cover mr-4 border-2 border-white shadow">
<div>
<cite class="font-bold not-italic">Betty</cite>
<p class="text-sm text-gray-600">Entrepreneur</p>
</div>
</div>
</div>
<div class="bg-gray-50 rounded-xl p-6 relative">
<div class="absolute top-0 right-0 transform translate-x-1/4 -translate-y-1/2" aria-hidden="true">
<div class="w-8 h-8 bg-primary rounded-full flex items-center justify-center text-white text-xs">
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10 3a1 1 0 01.707.293l3 3a1 1 0 01-1.414 1.414L10 5.414 7.707 7.707a1 1 0 01-1.414-1.414l3-3A1 1 0 0110 3zm-3.707 9.293a1 1 0 011.414 0L10 14.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</div>
</div>
<blockquote class="italic text-gray-700 mb-4">"The practical tips on business registration saved me weeks of research. I implemented what I learned immediately and saw results."</blockquote>
<div class="flex items-center">
<img src="./gallery/mtuchi_testimony.jpg" alt="Mtuchi" class="w-12 h-12 rounded-full object-cover mr-4 border-2 border-white shadow">
<div>
<cite class="font-bold not-italic">Mtuchi</cite>
<p class="text-sm text-gray-600">Tech Startup Founder</p>
</div>
</div>
</div>
<div class="bg-gray-50 rounded-xl p-6 relative">
<div class="absolute top-0 right-0 transform translate-x-1/4 -translate-y-1/2" aria-hidden="true">
<div class="w-8 h-8 bg-primary rounded-full flex items-center justify-center text-white text-xs">
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10 3a1 1 0 01.707.293l3 3a1 1 0 01-1.414 1.414L10 5.414 7.707 7.707a1 1 0 01-1.414-1.414l3-3A1 1 0 0110 3zm-3.707 9.293a1 1 0 011.414 0L10 14.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</div>
</div>
<blockquote class="italic text-gray-700 mb-4">"The practical tips on business registration saved me weeks of research. I implemented what I learned immediately and saw results."</blockquote>
<div class="flex items-center">
<img src="./gallery/julius_testimony.png" alt="Julius Moshiro" class="w-12 h-12 rounded-full object-cover mr-4 border-2 border-white shadow">
<div>
<cite class="font-bold not-italic">Julius Moshiro</cite>
<p class="text-sm text-gray-600">Content Creator</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Social Media Feed -->
<section class="py-20 bg-white" aria-labelledby="social-heading">
<div class="container mx-auto px-4">
<div class="mb-16 text-center max-w-3xl mx-auto">
<h2 id="social-heading" class="text-3xl md:text-4xl font-bold mb-6">Follow Our <span class="gradient-text">Journey</span></h2>
<p class="text-xl text-gray-600 mb-8">Get daily tips, event highlights, and success stories on our Instagram.</p>
<a href="https://instagram.com/moneymindset.tz" target="_blank" rel="noopener" class="inline-flex items-center text-primary font-bold text-lg hover:text-accent transition">
<svg class="w-6 h-6 mr-2" fill="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z"/></svg>
@moneymindset.tz
</a>
</div>
<!-- Social Media Feed Integration -->
<div id="instagram-feed" class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-6 gap-4" aria-label="Instagram feed gallery">
<!-- This will be replaced by the actual Instagram feed -->
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition group">
<img src="./gallery/event.5.png" alt="Money Mindset Instagram post - event highlight" class="w-full aspect-square object-cover group-hover:scale-105 transition-transform duration-300">
</div>
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition group">
<img src="./gallery/event.6.png" alt="Money Mindset Instagram post - event highlight" class="w-full aspect-square object-cover group-hover:scale-105 transition-transform duration-300">
</div>
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition group">
<img src="./gallery/event.7.png" alt="Money Mindset Instagram post - event highlight" class="w-full aspect-square object-cover group-hover:scale-105 transition-transform duration-300">
</div>