forked from goelnaman66/lightWebsite2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
1001 lines (878 loc) · 50.4 KB
/
about.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">
<title>Light</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link href="img/favicon.png" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Montserrat:300,400,500,700" rel="stylesheet">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<!-- Bootstrap CSS File -->
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/aboutUS.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header id="header" class="header-scrolled">
<div class="container-fluid">
<div id="logo">
<h1><a href="index.html">LIGHT</a></h1>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="center.html">Centers</a></li>
<li><a href="networkpage.html">Our Network</a></li>
<li><a href="members.html">Members</a></li>
<li><a href="#contact">Support Us</a></li>
<li><a href="https://www.gyws.org/">GYWS</a></li>
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section >
<div class="container-fluid">
<div class="row" style="background-image: url(img/members/team.jpg) ; background-size: 100% 400px; height: 400px;">
<center style="margin: auto;">
<header class="section-header"><h3>About US</h3></header>
</center>
</div>
</div>
</section>
<!-- #intro -->
<section style="height: 90px;"></section>
<section style="padding-top: 50px; background-color: white">
<div class="container">
<header class="section-header">
<h3>our motivation</h3>
</header>
<p class="text-center text-dark">Back in 2004, Our Founder and President Mr. Mrinal Kanti Bhanja noticed a <b>very common problem</b>: “About how the youth of our country are ignorant of the social problems that exist in our country”. He
identified <b>two major bottlenecks</b> about why youth lacked social commitment:</p>
<p class="text-center text-dark" style="font-size: 16px;"><b>Firstly</b>, the social problems aren’t portrayed well in the <b>bookish knowledge</b> which people gain through the curriculum and hence are generally unaware of the real scenario at the grass-root level.
It can only be understood by real-life experiences by encountering these problems.</p>
<p class="text-center text-dark" style="font-size: 16px;"><b>Secondly</b>, even if they are well aware of the real-world scenarios there was a <b>lack of platform or proper guidance & a team of like-minded people</b> to execute their ideas regarding existing social problems.
This gap could only be filled through early exposure to these social problems. We have to motivate the youth of our country to consider these bottlenecks in our country’s progress as their
own problems and provide them with a platform to execute their solutions and develop problem-solving skills.
The zeal to fill this gap became the cause of the birth of the Gopali Youth Welfare Society.
<button onclick="changeContent()" id="about-read-more">..read more</button></p>
<!--<span id="read-more-dots">...</span>-->
<p class="text-center text-dark" style="font-size: 16px;">
<span id="read-more-content">
<br>
<br>
A <b>total student-run organization</b> started back in 2004, We are now managing a school for underprivliged children of their own, providing quality education to more than <b>250 underprivileged students</b> from the
areas in and around Kharagpur. We also conduct skill development programs like tailoring, computer training, etc, and have many other small initiatives with an annual budget of around <b>30+ Lakhs</b> managed
solely by a group of students from IIT Kharagpur.<br><br>
After the success of strategies and plans of the Gopali Youth Welfare Society (GYWS) near the area of IIT Kharagpur ,the society planned to reciprocate similar models of social upliftment throughout the
nation so as to create a greater impact by spreading knowledge and experience gained through such long journey of social service and hence came up with the initiative named LIGHT to reach to
masses all over India.<button onclick="changeContent()" id="about-read-less">..read less</button></span></p>
<hr>
</div>
</section>
<!---vision and mission section-->
<section id="missionAndVission">
<div class="container-fluid">
<div class="row">
<div class="col-md-6" style="z-index: 100; background-color: white; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);">
<b><h1 style="color: black;padding-top:8%">VISION</h1></b>
<p class=" text-center text-dark" >We aim to build a <b>network of autonomous student-run centers</b> across India, to <b>provide them with a platform</b> for ensuring the <b>fulfillment of Sustainable Development Goals</b> for the weaker sections of the Society.</p>
</div>
<div class="col-md-6"><center><img src="img/aboutUS/vision1.png" style="margin-top:-10%;margin-bottom:-5%;max-width: 50%;
height: auto;z-index:20;position:relative"></center> </div>
</div>
<div class="row">
<div class="col-md-6"><center><img src="img/aboutUS/mission1.png" style="margin-top:-3.5%;margin-bottom:0%;max-width: 40%;
height: auto;z-index:20;position:relative"></center></div>
<div class="col-md-6 " style="z-index: 100; background-color:white;box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);">
<b><h1 style="color: black;padding-top:10%">MISSION</h1></b>
<p class=" text-center text-dark">
<b>LiGHT</b> exist to deliver Gopali Youth Welfare Society's learnings, expertise & experience to involve
Youth in social problem solving to the youth throughout the nation.
</p>
</div>
</div>
</div>
</section>
<!--end of miison section-->
<section style="background-color: rgb(234, 241, 234); color: black">
<div>
<h3 style="text-align: center; padding: 2.5%;color: black;"><strong>Founder's Message</strong></h3>
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-3">
<center>
<div class="container pl-4 pr-4">
<div class="row justify-content-center">
<div style="text-align: center; padding-bottom: 2.5%">
<div class="member-card bg-light p-3">
<img src="img/members/f.jpg"><br>
<div class="member-name">Mr. Mrinal Kanti Bhanja</div>
<div class="member-post">President (Gopali Youth Welfare Society)</div>
<br />
<div class="member-social-strip">
<a href="#"><i class="fa fa-envelope"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</center>
</div>
<div class="col-md-1"></div>
<div class="col-md-6">
<p style="padding-left:20px;padding-right:20px">
Gopali Youth Welfare Society was founded with a sole vision to involve the educated youth in social
work. The idea was to make them aware of the situation in their surroundings and motivate them to work
for it. Back in the 2000s, I used to notice how the students after getting education start aiming for lucrative jobs
and work for Multi-National companies. I used to ask myself whether they actually know about what is going
on in their surroundings, How one section of the society is still suffering while others are enjoying the luxury
which life has to offer. I started the Gopali Youth Welfare Society with an aim to make them aware of these
situations which are a bottleneck to the country's progress and help them use their creative brains for solving
the nation's problems at the ground level.
</p>
<p style="padding-left:20px;padding-right:20px">
We have been successful in motivating a pool of students from IIT Kharagpur & GYWS is a prime example
of the untapped potential in the youth of the country. Through LiGHT, we aim to provide a similar platform to
everybody across the country.
</p>
</div>
<div class="col-md-1"></div>
</div>
</div>
</section>
<section class="bg-dark" style=" color: white">
<div>
<h3 style="text-align: center; padding: 2.5%;color: white;">CEO's Words</h3>
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-3">
<center>
<div class="container pl-4 pr-4">
<div class="row justify-content-center">
<div style="color: black; text-align: center; padding-bottom: 2.5%">
<div class="member-card bg-light p-3">
<img src="img/prerit.jpg"><br>
<div class="member-name">Mr. Prerit Jain</div>
<div class="member-post">CEO (LIGHT)</div>
<br />
<div class="member-social-strip">
<a href="#"><i class="fa fa-envelope"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</center>
</div>
<div class="col-md-1"></div>
<div class="col-md-6">
<p style="padding-left:20px;padding-right:20px">
Gopali Youth Welfare Society has acted as a prime example of how involving the youth of the country into social work can not only help us solve the nation's social problem but also help us provide life-skills to the members involved. I personally am a product of this platform, and closely understands how providing a platform can change someone's life.
</p>
<p style="padding-left:20px;padding-right:20px">
We at LiGHT are working very hard to deliver a similar platform to the future leaders of the country to come forward and carve the path to the Nation's Development. We are trying to achieve this by explicitly providing them with the skills required to solve these problems followed by an opportunity to get a flavor of social problem-solving at the grass-root level by getting involved with our initiatives or identify their own and work for it.
</p>
<p style="padding-left:20px;padding-right:20px">
Our aim is to form a network of student-run centers like ours across the country so that whenever any student has an amazing idea about solving a problem, he or she should know exactly how to execute those.
</p>
</div>
<div class="col-md-1"></div>
</div>
</div>
</section>
<!-------------------------------------------------------------faqs sections-->
<!-----------------------faqs sections-->
<br>
<br>
<div class="container mb-4 pb-4">
<header class="section-header"><h3>frequently asked questions?</h3></header>
<div class="row mx-auto my-auto">
<div id="recipeCarousel" class="carousel slide w-100" data-ride="carousel">
<div class="carousel-inner " role="listbox">
<div class="carousel-item active">
<div class="col-md-4">
<div class="card card-body">
<button id="tab1" onclick="changeTab1() ">General FAQs</button>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-md-4">
<div class="card card-body">
<button id="tab2" onclick="changeTab2() ">Volunteering</button>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-md-4">
<div class="card card-body">
<button id="tab3" onclick="changeTab3() ">Incentives</button>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-md-4">
<div class="card card-body">
<button id="tab4" onclick="changeTab4() "">Work Process</button>
</div>
</div>
</div>
<div class=" carousel-item">
<div class="col-md-4">
<div class="card card-body">
<button id="tab5" onclick="changeTab5() ">Social Activities</button>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-md-4">
<div class="card card-body">
<button id="tab6" onclick="changeTab6() ">Finances and Funding</button>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-md-4">
<div class="card card-body">
<button id="tab7" onclick="changeTab7()">Corporate Partnerships</button>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev w-auto" href="#recipeCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon bg-dark border border-dark rounded-circle"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next w-auto" href="#recipeCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon bg-dark border border-dark rounded-circle"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!--added the faq content over here -->
<main id="tab1div">
<div class="intern-faq-content mt-4">
<!---first tab-->
<div class="intern-faq-ques">How is your network different from the one provided by NSS or
AISSEC?<span class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
"These platforms are generally focussed on providing the members-only with a Platform,
We aim to deliver both the Platform, as well as necessary skills and mindset to the people
so that
they
can
solve
social problems whenever they come across one.
We also provide them opportunities in decision making part, which is certainly missing in
the above
platforms,
People can take up their own initiatives once they are mature enough and work with us to
enhance its
impact at
multiple parts
of the India. "
</div>
<div class="intern-faq-ques">How was LiGHT formed? Who formed it and why?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
LiGHT is an expansion project of GYWS which was formed with the idea to reciprocate the
model and
learnings of
GYWS and to provide a social platform to socially motivated youth of India. It was formed in
2017 by
the
then
Head- Mr. Krushi Bandi , Governing Body Member- Mr. Suyash Yadav of GYWS under the guidance
of our
founder Mr.
Mrinal Kanti Bhanja.
</div>
<div class="intern-faq-ques">The problems are huge! Will my small contribution make a
difference?<span class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
It most certainly does. A small amount goes a long way. In fact, individuals’ contributions
form
almost
90 to
95% of our income. Taken together, it is these seemingly small contributions that
collectively add
up to
a
large amount needed to effect change. There are people all over who are concerned about the
situation
and who
want to do something to change it. However, their own commitments and pressures do not allow
them to
go
out
and directly work with situation. LiGHT provides them the opportunity to help in whatever
way they
can.
They
can contribute their money, materials, time, or skills. When everybody comes together and
pitches
in, no
task
is impossible. This COLLECTIVE ACTION has an impact and brings about change. Every
individual’s
contribution
is important. This is the fundamental principle on which LiGHT functions.
</div>
<div class="intern-faq-ques">Are you a registered body?
<span class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span>
</div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
Yes, Gopali Youth Welfare Society is registered under the West Bengal Societies Act. It is
also
registered for
exemption under section 80 G, 12 A, 12AA and for foreign contributions- under FCRA.
</div>
<div class="intern-faq-ques">Why did you choose so many objectives to work on? Why particularly
those 8?
<span class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span>
</div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
The 8 objectives are derived from the broader set of SDG which we aim to cover in a cyclic
order so
that
we
focus on the all round development of the areas which we target.
</div>
<div class="intern-faq-ques">What is LiGHT Spring Fest stall?
<span class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span>
</div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
LiGHT organizes a stall for promotion and for attracting college students, to work with us
by
helping us
form
a center at their college.
</div>
</div>
</main>
<!--second tab -->
<main id="tab2div" style="display: none;">
<div class="intern-faq-content mt-4">
<div class="intern-faq-ques">How can I apply and what will be the selection procedure?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">For applying you can reach us through our website's
Contact
section.
To
say the least an interview will be taken and the main focus of the procedure would be to see
your
motivation
towards your work.
</div>
<div class="intern-faq-ques">What kind of skills are required to join LiGHT ?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">The most required skill is commitment towards your
resposibilities
would
be appreciated if you have any documentaion, management and communication skills.
</div>
<div class="intern-faq-ques">Who can join LiGHT?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">You can join us in various ways, as collage student to
form a new
center
at your collage, as a social worker to guide college students, teachers and alumns can join
as a
member
of
advisory committee, as a virtual volunteer or can collaborate with us if your NGO has
similar vision
as
ours.
</div>
</div>
</main>
<!--third tab-->
<main id="tab3div" style="display: none;">
<div class="intern-faq-content mt-4">
<div class="intern-faq-ques">I have come into college to study and make my career. How being a
part of
this
would help me accomplish my mission?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span>
</div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">You cannot succeed in this world by being a bookish worm.
You need
to
learn how to face and solve real-life problems. You need to have skills to convince people,
to
manage
people
and to lead them in an activity. Your CG is not everything. In the end, what matters is the
skills
and
LiGHT
is a wonderful opportunity to develop one’s all-round personality. The experience
certificate of
working
in a
nation-wide NGO will help them in their higher studies applications as well as Jobs
applications.
The
network
will connect them with various other individuals, exposing them to a large number of people
from
different
sets of mindsets and perspectives.</div>
<div class="intern-faq-ques">Will I get a certificate, if I volunteer with LiGHT?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">On request we will surely issue a certificate for the work
and
duration of
time that a person volunteer with LiGHT on the tasks assigned by us. On the other hand we
strongly
discourage
people from approaching us with requests from their friends, relatives, children, college
kids
wanting a
certificate when they are not actually interested in working with us as a volunteer.</div>
<div class="intern-faq-ques">What is the motive for Annual Meet of LiGHT?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
"We have identified that there is always a need to meet physically and network with each
other to
work
together. Also, physically meeting creates a much deeper impact than virtual sessions. We
aim to
have
representatives from each of the centers and conduct an annual meeting where everyone gets
to know
each
other
in a much better manner." Apart from physically meeting and networking sessions, the
objectives of
this
meet
shall be as follows:
<ul>
<li>
1. To show them how we work at IIT Kharagpur Chapter, and motivate them to develop a
similar
structure at
their centers.
</li>
<li>
To allow them to meet with our founder, and advisory committee members.
</li>
<li>
To organize a skill development workshop where specific leadership, team management,
event
management
skill should be focussed upon.
</li>
<li>
To guide them about other career opportunities in the field of Social work, and
workshops on
Social
Entrepreneurship.
</li>
<li>
Workshop on Generalized framework for Social Problem Solving, that we use at GYWS.
</li>
</div>
</div>
</main>
<!----fourth tab-->
<main id="tab4div" style="display: none;">
<div class="intern-faq-content mt-4">
<div class="intern-faq-ques">what do you mean when you Autonomous centers?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">"By autonomous we mean, we will help students to build a
team and
working
structure at their LiGHT center. Our aim is to prepare them for the time when they can carry
out
their
action
plans and help us with extending our reach to their areas. You will always be a part of our
network
and
take
help from us whenever required.
Once you will be mature enough you can help us to expand further and be mentors for several
other
centers in
your locality helping them to be autonomous."
</div>
<div class="intern-faq-ques">As most of the colleges under your umbrella are far away from your
Headquarter,
How
do you manage the students working in the centres?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
The answer can be divided into two parts:
<ul>
<li>
Head Quarter node to Centre node Knowledge transfer</li>
<li>
Knowledge transfer in the member of the nodes</li>
</ul>
<ol>
<li> We make plans at the HQ with the involvement of centres and distribute it to the
Centre
Coordinators.
</li>
<li> Then later the Centre Coordinators further distributes the plan and divides the
work among
the
Core
Team Members and the Volunteers.</li>
</ol>
Now comes the distribution of plans among the centre nodes, Each of the teams at HQ node is
assigned
a
certain
number of centres and then the member of that team manages the centre. Distribution of
knowledge is
either
through various groups formed or through calls or others means of communication. And often
we have
skype
meetings with the centres which help us keep in contact with them and also regular contact
is the
key to
management.
<br>
The involvement of centres in the planning part help us to tackle the regional problems that
the
centres
faced.
<br>
Here is the hierarchy:<br>
_attach the images from the annual plan regarding the hierarchy_
<br>
Hierarchy helps us to stream down the content easily and feedbacks are accessible easily,
also the
workflow is
properly defined.
</div>
<div class="intern-faq-ques">How will you ensure that the centers are autonomous after being a
part of
LiGHT?<span class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">"A center will be considered autonomous when they have
build their
own
action plan and are self sufficient to conduct those activities in their areas.
They should be able produce proposals, build documentations, build working procedures, raise
sufficient
funds,
publicize their work, etc." </div>
<div class="intern-faq-ques">Do you prepare Annual Reports of LiGHT?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">Yes, Annual Report for LiGHT is formed defining
expenditure on
every
activity conducted and that year's progress.</div>
</div>
</main>
<!---fifth tab-->
<main id="tab5div" style="display: none;">
<div class="intern-faq-content mt-4">
<div class="intern-faq-ques">How can I apply and what will be the selection procedure?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">For applying you can reach us through our website's
Contact
section.
To
say the least an interview will be taken and the main focus of the procedure would be to see
your
motivation
towards your work.
</div>
<div class="intern-faq-ques">What kind of skills are required to join LiGHT ?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">The most required skill is commitment towards your
resposibilities
would
be appreciated if you have any documentaion, management and communication skills.
</div>
<div class="intern-faq-ques">Who can join LiGHT?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">You can join us in various ways, as collage student to
form a new
center
at your collage, as a social worker to guide college students, teachers and alumns can join
as a
member
of
advisory committee, as a virtual volunteer or can collaborate with us if your NGO has
similar vision
as
ours.
</div>
</div>
</main>
<!--tab6-->
<main id="tab6div" style="display: none;">
<div class="intern-faq-content mt-4">
<div class="intern-faq-ques">Does LiGHT receive government funding?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
As an NGO (non-government organization), we do not receive any direct government funding
allowing us to remain independent, making unbiased evaluations of government policies and
programs. The government has also
extended certain tax and duty exemptions to us, enabling us to minimize costs
</div>
<div class="intern-faq-ques">Is there any advantage to donating online?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
Yes, when you donate online (Add the link of the donate now section here), you help us twice
over,
as it is the most cost-efficient channel of collecting funds for LiGHT.
</div>
<div class="intern-faq-ques">Is it
very complicated to donate online?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
Not at all. It's simple and safe method. Here is what you have to do to make a donation
online the LiGHT site:
<ol>
<li>Click on the "Donate Now" option.</li>
<li>Decide the amount that you wish to donate towards any one of the causes or towards
LiGHT’s work in general</li>
<li>Confirm the amount and whether you would like to donate once to start with or make
it a recurring donation</li>
<li>Enter you personel details like name, mobile number, address, email address etc.
</li>
<li>Specify your mode of payment Choose between the Payment Gateway option and proceed
</li>
<li>Fill in your credit/debit card/Bank account details. You will get an immediate
confirmation of your donation
through an email with a donation number and instant receipt for your donation.</li>
</ol>
</div>
<div class="intern-faq-ques">How safe is my personel information with LiGHT on the LiGHT
site?<span class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
We are committed to protecting your personal information with us. For more details, please
do read our Privacy Policy.
</div>
<div class="intern-faq-ques">Are there any tax benefits for donating to LiGHT?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span>
</div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
Donation to LiGHT (add link of Donate now) are exempt from 50% under section 80G
of the Income Tax Act. Tax exemption is valid only in India.
</div>
<div class="intern-faq-ques">Will you send me the tax emeption certificate?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span>
</div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
Certainly. While specifying the details of your donation, just mention that you wish to
claim tax benefits. The tax exemption certificate will reach you by
mail or if you want it through post, we will send you the certificate through post also.
</div>
<div class="intern-faq-ques">Can I donate to LiGHT from outside of India?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span>
</div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
Yes, you can donate to LiGHT even if you are living outside of India. Please click here to
donate online. (Insert the link of Donate Now option)
</div>
<div class="intern-faq-ques">Why do you need monetary support?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span>
</div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
The entire operation is a huge logistical exercise; where money is needed for expenses on
transportation, storage space,
and manpower for sorting, packing etc, office expenses and team salaries.
</div>
</div>
</main>
<!---tatb7-->
<main id="tab7div" style="display: none;">
<div class="intern-faq-content mt-4">
<div class="intern-faq-ques">I work with a corporate and I want
to talk to someone in your team about a
partnership for CSR and other aspects. Who should I talk to?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
For corporate partnerships please write to Contact Us (Please add the
link to the Contact Us Section here) from our LiGHT Team to further discuss.
</div>
<div class="intern-faq-ques">I am writing on behalf of a
corporate. We really
like the work of LiGHT. How can we connect with your work?<span
class="fa fa-angle-right intern-faq-arrow mr-2 ml-2"></span></div>
<hr />
<div class="intern-faq-ans mt-2 mb-3">
"LiGHT has been working with national and MNC corporates from different
sectors, for many years now."
<ol>
<li> As an organization you can connect with our work through</li>
<ul>
<li>Co branded campaigns</li>
<li>CSR funded projects</li>
<li>Giving your surplus/2-3 months to expire inventory</li>
<li> your surplus office material like furniture/IT equipment</li>
<li>Matching grants to employee payroll giving</li>
</ul>
<li> Engaging your Employees</li>
<ul>
<li>special campaigns involving employees in giving campaigns motivating
your teams to contribute their surplus material. </li>
<li>Sessions and visits to sensitise teams about rural issues or value
of our objectives with LiGHT.</li>
<li> Payroll Giving – employees can support LiGHT work with payroll
giving on a regular basis or for its disaster releif and rehab work.
</li>
<li> Connect with some innovative giving ideas like RISE and all</li>
<li>To know more about corporate engagement please write to CONTACT US
(Drop the link of contact us section here).</li>
</ol>
</div>
</div>
</main>
</div>
<!--javascript code is start fform here-->
<!----------------ends ;of faqs-->
<!---faqs start of script---------------------->
<!----ends of faqs-------------------------------------------------------->
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 footer-info">
<h3>BizPage</h3>
<p>Cras fermentum odio eu feugiat lide par naso tierra. Justo eget nada terra videa magna derita valies darta donna mare fermentum iaculis eu non diam phasellus. Scelerisque felis imperdiet proin fermentum leo. Amet volutpat consequat
mauris nunc congue.</p>
</div>
<div class="col-lg-3 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="ion-ios-arrow-right"></i> <a href="#">Home</a></li>
<li><i class="ion-ios-arrow-right"></i> <a href="#">About us</a></li>
<li><i class="ion-ios-arrow-right"></i> <a href="#">Services</a></li>
<li><i class="ion-ios-arrow-right"></i> <a href="#">Terms of service</a></li>
<li><i class="ion-ios-arrow-right"></i> <a href="#">Privacy policy</a></li>
</ul>
</div>
<div class="col-lg-3 footer-contact">
<h4>Contact Us</h4>
<p>
A108 Adam Street <br> New York, NY 535022<br> United States <br>
<strong>Phone:</strong> +1 5589 55488 55<br>
<strong>Email:</strong> [email protected]<br>
</p>
<div class="social-links">
<a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a>
<a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="col-lg-3 footer-newsletter">
<h4>Our Newsletter</h4>
<p>Tamen quem nulla quae legam multos aute sint culpa legam noster magna veniam enim veniam illum dolore legam minim quorum culpa amet magna export quem marada parida nodela caramase seza.</p>
<form action="" method="post">
<input type="email" name="email"><input type="submit" value="Subscribe">
</form>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong>BizPage</strong>. All Rights Reserved
</div>
<div class="credits">
<!--
All the links in the footer should remain intact.
You can delete the links only if you purchased the pro version.
Licensing information: https://bootstrapmade.com/license/
Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=BizPage
-->
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
</div>
</div>
</footer>
<!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- Uncomment below i you want to use a preloader -->
<!-- <div id="preloader"></div> -->
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/superfish/hoverIntent.js"></script>
<script src="lib/superfish/superfish.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<script src="lib/touchSwipe/jquery.touchSwipe.min.js"></script>
<!-- Contact Form JavaScript File -->
<script src="contactform/contactform.js"></script>
<!-- Template Main Javascript File -->
<script src="js/main.js"></script>
<script src="js/about.js"></script>
</body>