-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1193 lines (1147 loc) · 54.2 KB
/
Copy pathindex.html
File metadata and controls
executable file
·1193 lines (1147 loc) · 54.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
InAmigos Foundation | NGO for Education, Food Distribution &
Community Development
</title>
<meta
name="description"
content="InAmigos Foundation is a Section 8 NGO empowering communities across India through education, food drives, women empowerment, animal welfare and sustainability."
/>
<meta
name="keywords"
content="InAmigos Foundation, NGO, education, food distribution, women empowerment, animal welfare, environment, skill development, India, Chhattisgarh"
/>
<meta name="author" content="InAmigos Foundation" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#0f3d22" />
<link
rel="canonical"
href="https://foundation-inamigos.netlify.app/Inamigos.html"
/>
<meta
property="og:title"
content="InAmigos Foundation — Together We Rise"
/>
<meta
property="og:description"
content="Discover InAmigos Foundation's mission and projects across India."
/>
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://foundation-inamigos.netlify.app/Inamigos.html"
/>
<meta
property="og:image"
content="https://foundation-inamigos.netlify.app/assets/logo.png"
/>
<meta property="og:site_name" content="InAmigos Foundation" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="InAmigos Foundation — Together We Rise"
/>
<meta
name="twitter:description"
content="Learn about InAmigos Foundation's projects and impact across India."
/>
<meta
name="twitter:image"
content="https://foundation-inamigos.netlify.app/assets/logo.png"
/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "NonprofitOrganization",
"name": "InAmigos Foundation",
"url": "https://foundation-inamigos.netlify.app/Inamigos.html",
"logo": "https://foundation-inamigos.netlify.app/assets/logo.png",
"email": "inamigosfoundation@gmail.com",
"telephone": "+91 626 730 9902",
"foundingDate": "2020-09-23",
"founder": { "@type": "Person", "name": "Govind Shukla" },
"address": {
"@type": "PostalAddress",
"streetAddress": "Ward No. 5, Gram Post, Sipat Ujwal Nagar",
"addressLocality": "Bilaspur",
"addressRegion": "Chhattisgarh",
"postalCode": "495555",
"addressCountry": "IN"
},
"sameAs": [
"https://www.facebook.com/inamigos.inamigos",
"https://www.instagram.com/inamigos/",
"https://in.linkedin.com/company/inamigos-foundation"
]
}
</script>
<link
href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="assets/logo.png" type="image/png" />
</head>
<body>
<!-- ═══ NAV ═══════════════════════════════════════ -->
<nav id="navbar">
<a class="nav-logo" href="#">
<img
class="nav-logo-img"
src="assets/logo.png"
alt="InAmigos Foundation"
/>
<span>InAmigos Foundation</span>
</a>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#impact">Impact</a></li>
<li><a href="#volunteers">Volunteers</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#gallery">Gallery</a></li>
</ul>
<a class="nav-cta" href="#cta">Support Us</a>
<button class="hamburger" id="hamburger" aria-label="Menu">
<span></span><span></span><span></span>
</button>
</nav>
<!-- mobile menu -->
<div class="mobile-menu" id="mobileMenu">
<a href="#about" class="mob-link">About</a>
<a href="#projects" class="mob-link">Projects</a>
<a href="#impact" class="mob-link">Impact</a>
<a href="#volunteers" class="mob-link">Volunteers</a>
<a href="#blog" class="mob-link">Blog</a>
<a href="#gallery" class="mob-link">Gallery</a>
<a href="#cta" class="mob-cta">Support Us →</a>
</div>
<!-- ═══ HERO ═══════════════════════════════════════ -->
<section class="hero" id="home">
<div class="hero-content">
<div class="hero-eyebrow">
<span class="dot"></span>
NGO · Bilaspur, Chhattisgarh · Est. 2020
</div>
<h1>
Empowering Communities<br />
Across India With<br />
<em>InAmigos Foundation.</em>
</h1>
<p class="hero-lead">
InAmigos Foundation uplifts underprivileged communities
through education, food distribution, women empowerment,
animal welfare, and skill development — across India.
</p>
<div class="hero-actions">
<a class="btn-primary" href="#cta">Become a Volunteer</a>
<a class="btn-ghost" href="#projects">Our Projects</a>
</div>
<div class="hero-stats">
<div class="hstat">
<div class="hstat-num">50K+</div>
<div class="hstat-lbl">Meals Served</div>
</div>
<div class="hstat">
<div class="hstat-num">200+</div>
<div class="hstat-lbl">Volunteers</div>
</div>
<div class="hstat">
<div class="hstat-num">28</div>
<div class="hstat-lbl">States</div>
</div>
<div class="hstat">
<div class="hstat-num">30K+</div>
<div class="hstat-lbl">Interns Trained</div>
</div>
</div>
</div>
<div class="hero-visual">
<div style="position: relative">
<div class="hero-img-frame">
<img
src="https://inamigosfoundation.org.in/public/storage/slideshow/1738236201.jpg"
alt="InAmigos Foundation volunteers supporting communities"
/>
</div>
<div class="hero-badge-float badge-meals">
<div class="hbf-icon">🍱</div>
<div>
<div class="hbf-num">50,000+</div>
<div class="hbf-lbl">Meals distributed</div>
</div>
</div>
<div class="hero-badge-float badge-since">
<div class="hbf-icon">🌱</div>
<div>
<div class="hbf-num">Since 2020</div>
<div class="hbf-lbl">Creating impact</div>
</div>
</div>
</div>
</div>
</section>
<!-- ═══ MARQUEE ════════════════════════════════════ -->
<div class="marquee-strip" aria-hidden="true">
<div class="marquee-track">
<span>Project <strong>SEVA</strong></span>
<span>·</span>
<span>Project <strong>Bachpanshala</strong></span>
<span>·</span>
<span>Project <strong>Jeev</strong></span>
<span>·</span>
<span>Project <strong>Udaan</strong></span>
<span>·</span>
<span>Project <strong>Prakriti</strong></span>
<span>·</span>
<span>Project <strong>Vikas</strong></span>
<span>·</span>
<span><strong>ISO 9001:2015</strong> Certified</span>
<span>·</span>
<span><strong>NITI Aayog</strong> Registered</span>
<span>·</span>
<span><strong>Section 8</strong> Non-Profit</span>
<span>·</span>
<!-- duplicate for seamless loop -->
<span>Project <strong>SEVA</strong></span>
<span>·</span>
<span>Project <strong>Bachpanshala</strong></span>
<span>·</span>
<span>Project <strong>Jeev</strong></span>
<span>·</span>
<span>Project <strong>Udaan</strong></span>
<span>·</span>
<span>Project <strong>Prakriti</strong></span>
<span>·</span>
<span>Project <strong>Vikas</strong></span>
<span>·</span>
<span><strong>ISO 9001:2015</strong> Certified</span>
<span>·</span>
<span><strong>NITI Aayog</strong> Registered</span>
<span>·</span>
<span><strong>Section 8</strong> Non-Profit</span>
<span>·</span>
</div>
</div>
<!-- ═══ ABOUT ══════════════════════════════════════ -->
<section id="about">
<div class="about-layout">
<div class="about-img-wrap reveal">
<div class="about-founded-pill">
<div class="yr">2020</div>
<div class="lbl">Founded</div>
</div>
<img
class="about-img-main"
src="https://inamigosfoundation.org.in/public/storage/volunteers/1738080678.jpg"
alt="InAmigos Foundation team"
/>
<img
class="about-img-accent"
src="https://inamigosfoundation.org.in/public/storage/gallery/1743051485.jpg"
alt="InAmigos SEVA project"
/>
</div>
<div class="about-text">
<div class="section-chip reveal">Who We Are</div>
<h2 class="section-title reveal reveal-delay-1">
InAmigos<br /><em>Foundation</em>
</h2>
<p class="section-desc reveal reveal-delay-2">
Founded on <strong>September 23, 2020</strong> by
<strong>Mr. Govind Shukla (Founder & CEO)</strong>,
InAmigos Foundation is a Section 8 registered non-profit
dedicated to creating lasting social impact across
India. Based in Bilaspur, Chhattisgarh, the foundation
operates a powerful network of volunteers and
professionals across multiple states.
</p>
<div class="cert-row reveal reveal-delay-3">
<span class="cert-pill">✔ Section 8 Registered</span>
<span class="cert-pill">✔ 80G & 12A Certified</span>
<span class="cert-pill">✔ CSR-1 Registered</span>
<span class="cert-pill">🇮🇳 NITI Aayog</span>
<span class="cert-pill">✔ ISO 9001:2015</span>
</div>
<!-- UPDATED: Founder chip with proper SVG avatar -->
<div class="founder-chip reveal reveal-delay-4">
<div>
<div class="founder-chip-name">
<a
class="founder-chip-name"
href="https://inamigosfoundation.org.in/volunteer/Govind-Shukla"
>Mr. Govind Shukla</a
>
</div>
<div class="founder-chip-role">
Founder & CEO · InAmigos Foundation
</div>
</div>
</div>
<p class="about-quote reveal reveal-delay-5">
"In a world that often feels divided, InAmigos stands as
a beacon of hope — dedicated to unity, compassion, and
collective action."
</p>
</div>
</div>
</section>
<!-- ═══ PROJECTS ═══════════════════════════════════ -->
<section id="projects">
<div class="projects-header">
<div>
<div class="section-chip reveal">Our Work</div>
<h2 class="section-title reveal reveal-delay-1">
Community Development <em>Projects</em>
</h2>
<p class="section-desc reveal reveal-delay-2">
Six initiatives tackling India's most critical social
challenges — from a plate of food to a future full of
opportunity.
</p>
</div>
</div>
<div class="projects-grid">
<div class="project-card reveal">
<div class="card-img-wrap">
<div class="card-bar bar-red"></div>
<img
src="https://inamigosfoundation.org.in/public/storage/gallery/1743051485.jpg"
alt="Project SEVA"
/>
<span class="card-tag">Food & Clothing</span>
</div>
<div class="card-body">
<h3>Project SEVA</h3>
<p>
Providing nutritious meals and clothing to the
homeless and underprivileged — feeding hope,
nourishing lives, one drive at a time.
</p>
<span class="card-impact"
>50,000+ Meals & Clothing Distributed</span
>
</div>
</div>
<div class="project-card reveal reveal-delay-1">
<div class="card-img-wrap">
<div class="card-bar bar-blue"></div>
<img
src="https://inamigosfoundation.org.in/public/storage/gallery/1743051466.jpg"
alt="Project Bachpanshala"
/>
<span class="card-tag">Education</span>
</div>
<div class="card-body">
<h3>Project Bachpanshala</h3>
<p>
Bridging educational gaps by training
underprivileged children in digital literacy, life
skills, and school education support.
</p>
<span class="card-impact"
>Education for All Children</span
>
</div>
</div>
<div class="project-card reveal reveal-delay-2">
<div class="card-img-wrap">
<div class="card-bar bar-purple"></div>
<img
src="https://inamigosfoundation.org.in/public/storage/gallery/1743051449.jpg"
alt="Project Jeev"
/>
<span class="card-tag">Animal Welfare</span>
</div>
<div class="card-body">
<h3>Project Jeev</h3>
<p>
Dedicated to animal welfare — rescuing, protecting,
and feeding stray animals daily through our
dedicated volunteer network.
</p>
<span class="card-impact">50+ Animals Fed Daily</span>
</div>
</div>
<div class="project-card reveal reveal-delay-1">
<div class="card-img-wrap">
<div class="card-bar bar-gold"></div>
<img
src="https://inamigosfoundation.org.in/public/storage/gallery/1743051438.jpg"
alt="Project Udaan"
/>
<span class="card-tag">Women Empowerment</span>
</div>
<div class="card-body">
<h3>Project Udaan</h3>
<p>
Empowering women through self-help groups in rural
areas — promoting financial independence, skill
development, and menstrual hygiene awareness.
</p>
<span class="card-impact"
>Women Empowerment & Independence</span
>
</div>
</div>
<div class="project-card reveal reveal-delay-2">
<div class="card-img-wrap">
<div class="card-bar bar-green"></div>
<img
src="https://inamigosfoundation.org.in/public/storage/gallery/1743051382.jpg"
alt="Project Prakriti"
/>
<span class="card-tag">Environment</span>
</div>
<div class="card-body">
<h3>Project Prakriti</h3>
<p>
Advocating for sustainability and environmental
conservation — planting saplings and supporting
eco-friendly agriculture practices across India.
</p>
<span class="card-impact"
>20,000+ Saplings Planted</span
>
</div>
</div>
<div class="project-card reveal reveal-delay-3">
<div class="card-img-wrap">
<div class="card-bar bar-orange"></div>
<img
src="https://inamigosfoundation.org.in/public/storage/gallery/1738299164.jpg"
alt="Project Vikas"
/>
<span class="card-tag">Skill Development</span>
</div>
<div class="card-body">
<h3>Project Vikas</h3>
<p>
Facilitating employment through internships in data
operations, finance, research, digital marketing,
social work and more.
</p>
<span class="card-impact">30,000+ Interns Trained</span>
</div>
</div>
</div>
</section>
<!-- ═══ IMPACT ══════════════════════════════════════ -->
<section id="impact">
<div class="impact-header">
<div class="section-chip reveal">Why It Matters</div>
<h2 class="section-title reveal reveal-delay-1">
Social <em>Impact</em><br />Across India
</h2>
<p class="section-desc reveal reveal-delay-2">
Every initiative addresses a real, pressing need in Indian
society — creating change that lasts.
</p>
</div>
<div class="impact-grid">
<div class="impact-cell reveal">
<span class="ic-icon">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M4 4h16v2H4zm1 4h14v10H5zm2 2v6h10v-6z" />
</svg>
</span>
<span class="ic-num">50K+</span>
<span class="ic-label"
>Meals served to the homeless and underprivileged</span
>
</div>
<div class="impact-cell reveal reveal-delay-1">
<span class="ic-icon">
<svg viewBox="0 0 24 24" fill="currentColor">
<path
d="M12 2L2 8l10 6 10-6-10-6zm0 8.7L5.4 8 12 4.3 18.6 8 12 10.7zM5 12l7 4 7-4v4l-7 4-7-4z"
/>
</svg>
</span>
<span class="ic-num">30K+</span>
<span class="ic-label"
>Young people trained & upskilled via Project
Vikas</span
>
</div>
<div class="impact-cell reveal reveal-delay-2">
<span class="ic-icon">
<svg viewBox="0 0 24 24" fill="currentColor">
<path
d="M12 2c-3.5 0-6 2.5-6 6 0 1.7.7 3.2 1.9 4.3-2.6.4-4.9 2.5-4.9 5.7v2h18v-2c0-3.2-2.3-5.3-4.9-5.7A5.96 5.96 0 0 0 18 8c0-3.5-2.5-6-6-6z"
/>
</svg>
</span>
<span class="ic-num">20K+</span>
<span class="ic-label"
>Saplings planted for a greener environment</span
>
</div>
<div class="impact-cell reveal reveal-delay-3">
<span class="ic-icon">
<svg viewBox="0 0 24 24" fill="currentColor">
<path
d="M7 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm10 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM4.5 15a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm15 0a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zM12 21c3 0 5-2.3 5-4.5S15 13 12 13s-5 1.3-5 3.5S9 21 12 21z"
/>
</svg>
</span>
<span class="ic-num">50+</span>
<span class="ic-label"
>Stray animals fed and cared for every single day</span
>
</div>
<div class="impact-cell reveal reveal-delay-4">
<span class="ic-icon">
<svg viewBox="0 0 24 24" fill="currentColor">
<path
d="M12 2a5 5 0 0 1 5 5c0 2.8-2.2 5-5 5s-5-2.2-5-5a5 5 0 0 1 5-5zm-7 18c0-3.5 3.1-6 7-6s7 2.5 7 6v2H5z"
/>
</svg>
</span>
<span class="ic-num">Rural</span>
<span class="ic-label"
>Women in self-help groups empowered with financial
literacy</span
>
</div>
<div class="impact-cell reveal reveal-delay-5">
<span class="ic-icon">
<svg viewBox="0 0 24 24" fill="currentColor">
<path
d="M12 2l3 7h7l-5.5 4.2L18.5 22 12 17.8 5.5 22l2-8.8L2 9h7z"
/>
</svg>
</span>
<span class="ic-num">5+</span>
<span class="ic-label"
>States: CG, Delhi, Maharashtra, UP & MP</span
>
</div>
</div>
<div class="impact-quote-block reveal">
<div class="iq-mark">"</div>
<div>
<p class="iq-text">
At InAmigos Foundation, we believe in the power of
collective action. Every contribution is directed
towards essential causes — food distribution, education,
women empowerment, animal welfare, environmental
sustainability and social inclusion programs across
India.
</p>
<cite class="iq-cite"
>— InAmigos Foundation Mission Statement</cite
>
</div>
</div>
</section>
<!-- ═══ VOLUNTEERS ══════════════════════════════════ -->
<!---->
<section id="volunteers">
<div class="section-chip">Our People</div>
<h2 class="section-title">Powered by <em>200+ Volunteers</em></h2>
<p class="section-desc">
InAmigos Foundation is driven by a passionate network of
volunteers working across India to create positive social impact
through education, food distribution, women empowerment,
environmental sustainability, and community development.
</p>
<div style="margin-top: 30px">
<a
class="btn-primary"
href="https://inamigosfoundation.org.in/volunteers"
target="_blank"
>
Meet Our Volunteers
</a>
</div>
</section>
<!-- ═══ BLOG ═════════════════════════════════════════ -->
<section id="blog">
<div class="blog-header">
<div>
<div class="section-chip reveal">Stories & Updates</div>
<h2 class="section-title reveal reveal-delay-1">
From Our <em>Blog</em>
</h2>
<p class="section-desc reveal reveal-delay-2">
Insights, field stories, and updates from InAmigos
Foundation's journey across India.
</p>
</div>
<a
class="blog-link-out reveal"
href="https://inamigosfoundation.org.in/blog"
target="_blank"
>
Read All Articles →
</a>
</div>
<div class="blog-grid">
<!-- Featured post -->
<div class="blog-card reveal">
<div class="blog-card-img">
<img
src="https://inamigosfoundation.org.in/public/storage/post/1740818641.jpg"
alt="Project Vikas blog post"
/>
<span class="blog-cat-tag">Skill Development</span>
</div>
<div class="blog-body">
<div class="blog-meta">
<span class="blog-date">01 Mar 2025</span>
<span class="blog-views">
<svg viewBox="0 0 24 24">
<path
d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"
/>
</svg>
5,165 views
</span>
</div>
<h3 class="blog-title">
Project Vikas: Transforming Careers, One Internship
at a Time
</h3>
<p class="blog-excerpt">
For the past four years, InAmigos Foundation has
been committed to empowering young minds through
Project Vikas — an internship initiative bridging
the gap between education and meaningful employment
opportunities.
</p>
<a
class="blog-read-link"
href="https://inamigosfoundation.org.in/single/Project-Vikas-Transforming-Careers-One-Internship-at-a-Time"
target="_blank"
>
Read More
<svg viewBox="0 0 24 24">
<path
d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6z"
/>
</svg>
</a>
</div>
</div>
<!-- Post 2 -->
<div class="blog-card reveal reveal-delay-1">
<div class="blog-card-img">
<img
src="https://inamigosfoundation.org.in/public/storage/post/1738237839.jpeg"
alt="Udaan blog post"
/>
<span class="blog-cat-tag">Women Empowerment</span>
</div>
<div class="blog-body">
<div class="blog-meta">
<span class="blog-date">30 Jan 2025</span>
<span class="blog-views">
<svg viewBox="0 0 24 24">
<path
d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"
/>
</svg>
14,493 views
</span>
</div>
<h3 class="blog-title">
Udaan: Where Women Rise, Dreams Soar, and Change
Begins
</h3>
<p class="blog-excerpt">
Project Udaan is an empowerment initiative
transforming the lives of women across India by
providing skills, resources, and a strong community
support network.
</p>
<a
class="blog-read-link"
href="https://inamigosfoundation.org.in/single/udaan-women-rise-dreams-soar-change-begins"
target="_blank"
>
Read More
<svg viewBox="0 0 24 24">
<path
d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6z"
/>
</svg>
</a>
</div>
</div>
<!-- Post 3 -->
<div class="blog-card reveal reveal-delay-2">
<div class="blog-card-img">
<img
src="https://inamigosfoundation.org.in/public/storage/post/1738237826.jpg"
alt="Project Jeev blog post"
/>
<span class="blog-cat-tag">Animal Welfare</span>
</div>
<div class="blog-body">
<div class="blog-meta">
<span class="blog-date">30 Jan 2025</span>
<span class="blog-views">
<svg viewBox="0 0 24 24">
<path
d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"
/>
</svg>
4,663 views
</span>
</div>
<h3 class="blog-title">
Project Jeev — In This Life, Save a Life
</h3>
<p class="blog-excerpt">
Project Jeev is a compassionate initiative dedicated
to helping stray animals through shelters, feeding
programs, and emergency rescue operations
nationwide.
</p>
<a
class="blog-read-link"
href="https://inamigosfoundation.org.in/single/project-jeev-in-this-life-save-a-life"
target="_blank"
>
Read More
<svg viewBox="0 0 24 24">
<path
d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6z"
/>
</svg>
</a>
</div>
</div>
</div>
</section>
<!-- ═══ GALLERY ══════════════════════════════════════ -->
<section id="gallery">
<div class="gallery-intro">
<div>
<div class="section-chip reveal">Moments in Action</div>
<h2 class="section-title reveal reveal-delay-1">
NGO Activities <em>Gallery</em>
</h2>
<p class="section-desc reveal reveal-delay-2">
A glimpse of our volunteers and beneficiaries in the
field.
</p>
</div>
<a
class="gallery-link-out reveal"
href="https://inamigosfoundation.org.in/gallery"
target="_blank"
>
View Full Gallery →
</a>
</div>
<div class="gallery-grid">
<div class="g-item reveal">
<img
src="https://inamigosfoundation.org.in/public/storage/gallery/1738238755.JPG"
alt="Featured campaign photo"
/>
<div class="g-item-overlay"></div>
<span class="g-item-label">Community Campaign</span>
</div>
<div class="g-item reveal reveal-delay-1">
<img
src="https://inamigosfoundation.org.in/public/storage/gallery/1738238744.jpg"
alt="SEVA food drive"
/>
<div class="g-item-overlay"></div>
<span class="g-item-label">Project SEVA</span>
</div>
<div class="g-item reveal reveal-delay-2">
<img
src="https://inamigosfoundation.org.in/public/storage/gallery/1738238725.jpg"
alt="Bachpanshala class"
/>
<div class="g-item-overlay"></div>
<span class="g-item-label">Bachpanshala</span>
</div>
<div class="g-item reveal reveal-delay-3">
<img
src="https://inamigosfoundation.org.in/public/storage/gallery/1738238698.jpg"
alt="Prakriti plantation"
/>
<div class="g-item-overlay"></div>
<span class="g-item-label">Project Prakriti</span>
</div>
</div>
</section>
<!-- ═══ CTA ══════════════════════════════════════════ -->
<section id="cta">
<div class="cta-wrapper reveal">
<div class="cta-text">
<h2>Be the Change<br /><em>You Wish to See</em></h2>
<p>
Join 200+ volunteers across India who are already making
a difference. Whether you donate, volunteer, or spread
the word — every action matters and every rupee counts.
</p>
</div>
<div class="cta-actions">
<!-- Donate button — forest green with rupee/heart SVG -->
<a
class="cta-btn cta-btn-donate"
href="https://rzp.io/l/kWQ87HP"
target="_blank"
>
<svg
width="22"
height="22"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<!-- Rupee coin -->
<circle
cx="12"
cy="12"
r="10"
fill="none"
stroke="rgba(255,255,255,0.4)"
stroke-width="1.5"
/>
<!-- Rupee symbol -->
<path
d="M8 7h8M8 10.5h8M12 10.5 L9 17"
stroke="#fff"
stroke-width="1.8"
stroke-linecap="round"
/>
<path
d="M8 10.5 Q8 14 12 14 Q16 14 16 10.5"
stroke="#fff"
stroke-width="1.8"
stroke-linecap="round"
stroke-linejoin="round"
fill="none"
/>
</svg>
Donate Now
</a>
<!-- Volunteer button with hands/people SVG -->
<a
class="cta-btn cta-btn-volunteer"
href="https://forms.gle/AB4c1hLaDDmtrKGU7"
target="_blank"
>
<svg
width="22"
height="22"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<!-- Two people -->
<circle
cx="9"
cy="6"
r="2.5"
fill="rgba(255,255,255,0.85)"
/>
<circle
cx="15"
cy="6"
r="2.5"
fill="rgba(255,255,255,0.85)"
/>
<!-- Bodies with raised hands -->
<path
d="M5 14 Q5 11 9 11 Q13 11 13 14 L13 18 L5 18 Z"
fill="rgba(255,255,255,0.85)"
/>
<path
d="M11 14 Q11 11 15 11 Q19 11 19 14 L19 18 L11 18 Z"
fill="rgba(255,255,255,0.55)"
/>
<!-- Raised hand gesture -->
<path
d="M7 11 L6 8.5 M11 11 L12 8.5"
stroke="rgba(255,255,255,0.7)"
stroke-width="1.5"
stroke-linecap="round"
/>
<!-- Heart above -->
<path
d="M12 4.5 C12 3.5 10.5 2.5 10.5 4 C10.5 5 12 6 12 6 C12 6 13.5 5 13.5 4 C13.5 2.5 12 3.5 12 4.5Z"
fill="rgba(255,255,255,0.9)"
/>
</svg>
Become a Volunteer
</a>
<a
class="cta-btn cta-btn-web"
href="https://inamigosfoundation.org.in"
target="_blank"
>
Visit Official Website →
</a>
</div>
<div class="cta-contact">
<span
>📍 Ward No. 5, Gram Post, Sipat Ujwal Nagar, Bilaspur,
CG — 495555</span
>
<span
>📧
<a href="mailto:inamigosfoundation@gmail.com"
>inamigosfoundation@gmail.com</a
></span
>
<span
>📞
<a href="tel:+916267309902">+91 626 730 9902</a></span
>
</div>
</div>
</section>
<!-- ═══ FOOTER ════════════════════════════════════════ -->
<footer>
<div class="footer-top">
<div class="footer-brand-col">
<div class="footer-logo-wrap">
<img
class="footer-logo"
src="assets/logo.png"
alt="InAmigos Foundation Logo"
/>
<span class="footer-brand-name"
>InAmigos Foundation</span
>
</div>
<p class="footer-brand-desc">
A Section 8 non-profit committed to lasting social
impact across education, food, women empowerment, animal
welfare, environment & skills.
</p>
<div class="social-row">
<a
class="s-btn fb"
href="https://www.facebook.com/inamigos.inamigos"
target="_blank"
aria-label="Facebook"
>
<svg viewBox="0 0 24 24" fill="currentColor">
<path
d="M22 12.07C22 6.48 17.52 2 11.93 2S1.86 6.48 1.86 12.07c0 5.05 3.66 9.24 8.44 10.03v-7.1H7.9v-2.93h2.4V9.84c0-2.37 1.41-3.68 3.57-3.68 1.03 0 2.1.18 2.1.18v2.32h-1.18c-1.16 0-1.52.72-1.52 1.46v1.75h2.59l-.41 2.93h-2.18v7.1c4.78-.79 8.44-4.98 8.44-10.03z"
/>
</svg>
</a>
<a
class="s-btn ig"
href="https://www.instagram.com/inamigos/"
target="_blank"
aria-label="Instagram"
>
<svg viewBox="0 0 24 24" fill="currentColor">
<path
d="M7.75 2h8.5A5.75 5.75 0 0 1 22 7.75v8.5A5.75 5.75 0 0 1 16.25 22h-8.5A5.75 5.75 0 0 1 2 16.25v-8.5A5.75 5.75 0 0 1 7.75 2zm0 1.8A3.95 3.95 0 0 0 3.8 7.75v8.5a3.95 3.95 0 0 0 3.95 3.95h8.5a3.95 3.95 0 0 0 3.95-3.95v-8.5a3.95 3.95 0 0 0-3.95-3.95zm8.9 1.35a1.15 1.15 0 1 1 0 2.3 1.15 1.15 0 0 1 0-2.3zM12 7a5 5 0 1 1 0 10A5 5 0 0 1 12 7zm0 1.8A3.2 3.2 0 1 0 12 15.2 3.2 3.2 0 0 0 12 8.8z"
/>
</svg>
</a>
<a
class="s-btn li"
href="https://in.linkedin.com/company/inamigos-foundation"
target="_blank"
aria-label="LinkedIn"
>
<svg viewBox="0 0 24 24" fill="currentColor">
<path
d="M4.98 3.5A2.48 2.48 0 1 1 5 8.46a2.48 2.48 0 0 1-.02-4.96zM3 9h4v12H3zm7 0h3.83v1.64h.05c.53-1.01 1.84-2.08 3.79-2.08 4.05 0 4.8 2.66 4.8 6.11V21h-4v-5.57c0-1.33-.02-3.04-1.85-3.04-1.86 0-2.15 1.45-2.15 2.95V21h-4z"
/>
</svg>
</a>
</div>
</div>