-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1562 lines (1400 loc) · 87.8 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>
<!--[if lt IE 9 ]><html class="no-js oldie" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<link href="./css/team-timeline.css" rel="stylesheet">
<style>
.downfont {
font-family: 'Poppins';
}
.col-full {
font-family: 'Poppins';
}
.quote{
font-family: 'Shift', sans-serif; padding-top: 180px; color: rgba(255, 255, 255, 0.5); font-weight: bold; font-size: 2.3rem; text-align: center;
}
.author{
font-size: 1.8rem;
}
.btn-all-events{
width: 215px; text-align: center; font-weight: bold; color: #69e9f2; cursor: pointer; border: solid #69e9f2; padding: 10px;
}
.btn-all-events:hover{
background-color: #69e9f2; color: #ffffff;
}
@media only screen and (max-width: 768px) {
.quote{
font-family: 'Shift', sans-serif; padding-top: 6rem; color: rgba(255, 255, 255, 0.5); font-weight: bold; font-size: 1.9rem;
}
.author{
font-size: 1.7rem;
}
.site-logo img{
max-width: 100px;
max-height: 125px;
}
}
</style>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>E-Cell, IIIT Guwahati</title>
<meta name="description" content="Ecell IIITG">
<meta name="author" content="IIITG">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/timeline.css">
<link rel="stylesheet" href="css/grid.css">
<link rel="stylesheet" href="css/team.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="icon.png" type="image/x-icon">
<link rel="icon" href="icon.png" type="image/x-icon">
</head>
<body id="top" >
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="index.html" >
<img src="images/logo.png" alt="Homepage" style="max-width: 125px;">
</a>
</div>
<nav class="header-nav">
<a href="#0" class="header-nav__close" title="close"><span>Close</span></a>
<div class="header-nav__content">
<h3 style="color: burlywood;">Navigation</h3>
<ul class="header-nav__list">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#services" title="events">Events</a></li>
<li><a class="smoothscroll" href="#works" title="works">Gallery</a></li>
<li><a class="smoothscroll" href="#clients" title="sponsors">Sponsors</a></li>
<li><a class="smoothscroll" href="#speakers" title="speakers">Speakers</a></li>
<li><a class="smoothscroll" href="#team" title="team">Team</a></li>
<li><a class="smoothscroll" href="#contact" title="contact">Contact</a></li>
</ul>
<ul class="header-nav__social">
<li>
<a href="https://www.facebook.com/ecell.iiitguwahati/"target="_blank" ><i class="fa fa-facebook"></i></a>
</li>
<li>
<a href="https://twitter.com/iiitghy"target="_blank"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="https://www.instagram.com/ecell.iiitguwahati/"target="_blank"><i class="fa fa-instagram"></i></a>
</li>
</ul>
</div> <!-- end header-nav__content -->
</nav> <!-- end header-nav -->
<a class="header-menu-toggle" href="#0">
<span class="header-menu-text" style="color: burlywood;">Menu</span>
<span class="header-menu-icon"></span>
</a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home target-section" style="background-color: #8EC5FC;
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%); text-align: center;
" data-parallax="scroll" data-natural-width=3000 data-natural-height=2000 data-position-y=center>
<div class="overlay"></div>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h1 style="color:black">
Welcome to <span style="color:burlywood">E-Cell IIITG</span>
</h1>
<h3>We are a creative group of people promoting entreprenuership.</h3>
<!-- <div class="home-content__buttons" style="display: flex; flex-direction: row; justify-content: center;">
<a href="#about" class="smoothscroll btn btn--stroke">
More About Us
</a>
</div> -->
<div class="row quote">
“Don’t worry about being successful but work toward being significant and the success will naturally follow.”
<div class="author">~ Oprah Winfrey</div>
</div>
</div>
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
<span>Scroll Down</span>
</a>
</div>
<!-- end home-content -->
</div>
<ul class="home-social" style="color:black">
<li>
<a href="https://www.facebook.com/ecell.iiitguwahati/" target="_blank" ><i class="fab fa-facebook-f" aria-hidden="true"></i><span>Facebook</span></a>
</li>
<li>
<a href="https://twitter.com/iiitghy" target="_blank" ><i class="fab fa-twitter" aria-hidden="true"></i><span>Twiiter</span></a>
</li>
<li>
<a href="https://www.instagram.com/ecell.iiitguwahati/" target="_blank"><i class="fab fa-instagram" aria-hidden="true"></i><span>Instagram</span></a>
</li>
</ul>
</section> <!-- end s-home -->
<!-- end home-social -->
<!-- about
================================================== -->
<section id='about' class="s-about">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead subhead--dark" style="color: lightgrey;">Hello There</h3>
<h1 class="display-1 display-1--light" style="color: #06D85F;">We Are <span style="color:#db5050">E-Cell IIITG</span></h1>
</div>
</div> <!-- end section-header -->
<div class="row about-desc" data-aos="fade-up">
<div class="col-full" style="color:lightblue;">
<p >
<b>E-Cell, IIIT Guwahati</b> , established in the year 2018 is the primary entrepreneurship promoting body
of the institute, which is managed and run by the faculty coordinators and the students of the
institute. We organise events with the purview of introducing young leaders/aspirants to the models
of social business and the challenges faced while dealing with social problems through a business
perspective. We strive to kindle the spirit of entrepreneurship and encourage the students to think
creatively and solve the issues related to entrepreneurship and society. We mainly organise
workshops, puzzles and lectures to help students interact with business leaders.
</p>
</div>
<!-- end about-desc -->
<!--The countdown section.....................-->
<!-- <div class="downfont">
<div id="clock"></div>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script src="js/countdown.js"></script>
<script type="text/javascript">
$('#clock').countdown('2019/3/23',function(event){
var $this= $(this).html(event.strftime(''
+'<div><span>%w</span><span>Weeks</span></div>'
+'<div><span>%d</span><span>Days</span></div>'
+'<div><span>%H</span><span>Hours</span></div>'
+'<div><span>%M</span><span>Min</span></div>'
+'<div><span>%S</span><span>Sec</span></div>'
))
})
</script>
</div>
--End of countdown section..................-->
</div>
<div class="row about-stats stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-right">
<div class="col-block stats__col ">
<div class="stats__count" style="color: lightblue">10</div>
<h5 style="color: grey;">Events</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count" style="color: lightblue">1050</div>
<h5 style="color: grey;">Participants</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count" style="color: lightblue">720</div>
<h5 style="color: grey;">Lecture Minutes</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count" style="color: lightblue">14</div>
<h5 style="color: grey;">Speakers</h5>
</div>
</div> <!-- end about-stats -->
</section> <!-- end s-about -->
<!-- events
================================================== -->
<section id='services' class="s-services" style="background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%); padding-bottom: 0;">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Our Events</h3>
<h1 class="display-2">We’ve got everything you need to launch and grow your ideas</h1>
</div>
</div> <!-- end section-header -->
<!-- ========================
THIS IS EVENT BOX
======================== -->
<div class="finbyz-timeline" style="background-color: transparent; padding-bottom: 3rem;">
<div class="container wgl-row-animation">
<div class="row">
<div data-vc-full-width="true" data-vc-full-width-init="true" class="vc_row wpb_row vc_row-fluid vc_custom_1542873226451 vc_row-has-fill wgl-row-animation" style="width: 100% !important;left: -11.2px; box-sizing: border-box; padding-left: 11.2px; padding-right: 10.8px; position: relative;">
<div class="wpb_column vc_column_container vc_col-sm-12" style="width: 100%;">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="seofy_module_spacing">
<div class="spacing_size spacing_size-initial" style="height:30px;"></div>
</div>
<div class="seofy_module_time_line_vertical appear_anim aos-init aos-animate" data-aos="fade-up">
<div id="time_line_5cf90ca818f641" class="time_line-item item_show">
<div class="time_line-date_wrap">
<div class="seofy_hexagon">
<svg style=" fill: #ffa705;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<div class="seofy_hexagon">
<svg style="filter: drop-shadow(4px 5px 4px rgba(255,167,5,0.3)); fill: #ffa705;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<h4 class="time_line-date">2020</h4>
</div>
<div class="time_line-content">
<div class="date-event" style="position: absolute; width:100px; border-bottom-right-radius: 22px;top: 0; left: 0;text-align: center;font-weight: bold; color: #ffffff; background-color: #ffa705;">Ongoing</div>
<!-- <div class="poster-event col-custom-4" style="width: 25%;"><img src="file:///home/sameer/Desktop/desktop/dev/web/ecell/ecell19/images/events/sampark.PNG" height="100px" width="100px" style="border-radius: 200px; margin-bottom: auto; margin-top: auto;"></div> -->
<!-- <div class="col-custom-8" style="width: 75%; "> -->
<h5 class="time_line-title">Q&A with Entrepreneurs</h5>
<div class="time_line-descr">
<table style="padding: 0; margin: 0">
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0;">These video sessions will have speakers sharing their experience of the entrepreneurial world and their unique ways which has helped them in their journey.</td>
</tr>
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0; border: none">The first session of our series, Q&A With Entrepreneurs features Mr. Jeevan Mandadapu, Founder and CEO of Froogal.</td>
</tr>
</table>
</div>
<!-- </div> -->
</div>
</div>
<div id="time_line_5cf90ca818fa82" class="time_line-item item_show">
<div class="time_line-date_wrap">
<div class="seofy_hexagon">
<svg style=" fill: #ff5600;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<div class="seofy_hexagon">
<svg style="filter: drop-shadow(4px 5px 4px rgba(255,86,0,0.3)); fill: #ff5600;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<h4 class="time_line-date">2020</h4>
</div>
<div class="time_line-content">
<div class="date-event" style="position: absolute; width:100px; border-bottom-left-radius: 22px;top: 0; right: 0;text-align: center;font-weight: bold; color: #ffffff; background-color: #ff5600;">Feb 2</div>
<h5 class="time_line-title">Webinar on how to evaluate startup idea</h5>
<div class="time_line-descr">
<table style="padding: 0; margin: 0">
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0; border: none">E-cell IIITG, in collaboration with iB Hubs, held a webinar from experienced industry Abhinav Pandey, Vice President, Start-up Strategy, iB Hubs on how to get a evaluate start up idea. It was really an engaging session and learning from the accomplished was a good experience for the students.</td>
</tr>
</table>
</div>
</div>
</div>
<div id="time_line_5cf90ca818fc83" class="time_line-item item_active item_show">
<div class="time_line-date_wrap">
<div class="seofy_hexagon">
<svg style=" fill: #69e9f2;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<div class="seofy_hexagon">
<svg style="filter: drop-shadow(4px 5px 4px rgba(105,233,242,0.3)); fill: #69e9f2;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<h4 class="time_line-date">2020</h4>
</div>
<div class="time_line-content">
<div class="date-event" style="position: absolute; width:100px; border-bottom-right-radius: 22px;top: 0; left: 0;text-align: center;font-weight: bold; color: #ffffff; background-color: #69e9f2;">Jan 18</div>
<h5 class="time_line-title">SIH internal round</h5>
<div class="time_line-descr">
<table style="padding: 0; margin: 0;">
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0;">The internal round for SIH 2020 was conducted by IIC(Institute Innovation Council), IIIT-G.</td>
</tr>
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0;">TA total of 18 teams, which included 14 software teams and 4 hardware teams participated in it.</td>
</tr>
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0;">A basic prototype and product description was required to be submitted by each team in the selection round.</td>
</tr>
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0; border: none">Out of these teams 5 from software and 2 from hardware were selected by the judges .</td>
</tr>
</table>
</div>
</div>
</div>
<div id="time_line_5cf90ca818fe44" class="time_line-item item_show">
<div class="time_line-date_wrap">
<div class="seofy_hexagon">
<svg style=" fill: #12affe;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<div class="seofy_hexagon">
<svg style="filter: drop-shadow(4px 5px 4px rgba(18,175,254,0.3)); fill: #12affe;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<h4 class="time_line-date">2019</h4>
</div>
<div class="time_line-content">
<div class="date-event" style="position: absolute; width:100px; border-bottom-left-radius: 22px;top: 0; right: 0;text-align: center;font-weight: bold; color: #ffffff; background-color: #12affe;">Nov 2</div>
<h5 class="time_line-title">Talk on Innovation and Product management</h5>
<div class="time_line-descr">
<table style="padding: 0; margin: 0">
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0;">Pʀᴀsʜᴀɴᴛ Sɪɴɢʜ, VP Of Product management, Paytm delivered a talk on his journey as an entrepreneur and product management.</td>
</tr>
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0;">Prof.Pᴀʀᴀᴍᴇsᴡᴀʀ K Iʏᴇʀ, Dept of chemistry & Centre for Nanotechnology, IIT Guwahati, delivered a talk on low-cost, bio-compatible sensor that can detect bacteria almost instantaneously without the need for cell culture and microbiological assays.</td>
</tr>
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0; border: none">The two speakers have explained the importance of innovation and product management in a very eloquent way.</td>
</tr>
</table>
</div>
</div>
</div>
<div id="events-hidden" style="display: none;">
<div id="time_line_5cf90ca818ffe5" class="time_line-item item_show">
<div class="time_line-date_wrap">
<div class="seofy_hexagon">
<svg style=" fill: #3224e9;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<div class="seofy_hexagon">
<svg style="filter: drop-shadow(4px 5px 4px rgba(50,36,233,0.3)); fill: #3224e9;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<h4 class="time_line-date">2019</h4>
</div>
<div class="time_line-content">
<div class="date-event" style="position: absolute; width:100px; border-bottom-right-radius: 22px;top: 0; left: 0;text-align: center;font-weight: bold; color: #ffffff; background-color: #3224e9;">Oct 15</div>
<h5 class="time_line-title">Essay writing competition</h5>
<div class="time_line-descr">
<table style="padding: 0; margin: 0">
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0; border: none">On 15th October, 2019 to mark the birth anniversary of Dr. A.P.J. Abdul Kalam, the E-cell organized an essay writing competition. An amazing participation was seen and amazing essays were delivered by the students.</td>
</tr>
</table>
</div>
</div>
</div>
<div id="time_line_5cf90ca818ffe6" class="time_line-item item_show">
<div class="time_line-date_wrap">
<div class="seofy_hexagon">
<svg style=" fill: #82ebb1;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<div class="seofy_hexagon">
<svg style="filter: drop-shadow(4px 5px 4px #82ebb1); fill: #82ebb1;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<h4 class="time_line-date" style="color: #82ebb1;">2019</h4>
</div>
<div class="time_line-content">
<div class="date-event" style="position: absolute; width:100px; border-bottom-left-radius: 22px;top: 0; right: 0;text-align: center;font-weight: bold; color: #ffffff; background-color: #82ebb1;">Sep 8</div>
<h5 class="time_line-title">NE8x workshop</h5>
<div class="time_line-descr">
<table style="padding: 0; margin: 0">
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0; border: none">Riddhinil Roy, known entrepreneur held a workshop on Entrepreneurship and Innovation, briefing and guiding the students of IIITG on the basics of entrepreneurship as career choice. Powered by Ne8x the event was successfully conducted on Sep 8, 2019 with legal assisting technical training.</td>
</tr>
</table>
</div>
</div>
</div>
<div id="time_line_5cf90ca818ffe7" class="time_line-item item_show">
<div class="time_line-date_wrap">
<div class="seofy_hexagon">
<svg style=" fill: #45ca81;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<div class="seofy_hexagon">
<svg style="filter: drop-shadow(4px 5px 4px #45ca81); fill: #45ca81;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<h4 class="time_line-date" style="color: #45ca81;">2019</h4>
</div>
<div class="time_line-content">
<div class="date-event" style="position: absolute; width:100px; border-bottom-right-radius: 22px;top: 0; left: 0;text-align: center;font-weight: bold; color: #ffffff; background-color: #45ca81;">Apr 7</div>
<h5 class="time_line-title">INIZIO</h5>
<div class="time_line-descr">
<table style="padding: 0; margin: 0">
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0; border: none">While definitions of entrepreneurship typically focus on the launching and running of businesses.Entrepreneurship has been described as the "capacity and willingness to develop, organize and manage a business venture along with any of its risks to make a profit</td>
</tr>
</table>
</div>
</div>
</div>
<div id="time_line_5cf90ca818ffe8" class="time_line-item item_show">
<div class="time_line-date_wrap">
<div class="seofy_hexagon">
<svg style=" fill: #138647;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<div class="seofy_hexagon">
<svg style="filter: drop-shadow(4px 5px 4px #138647); fill: #138647;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<h4 class="time_line-date" style="color: #138647;">2019</h4>
</div>
<div class="time_line-content">
<div class="date-event" style="position: absolute; width:100px; border-bottom-left-radius: 22px;top: 0; right: 0;text-align: center;font-weight: bold; color: #ffffff; background-color: #138647;"></div>
<h5 class="time_line-title">Startup Co-founders Meetup</h5>
<div class="time_line-descr">
<table style="padding: 0; margin: 0">
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0; border: none">Startup Byte is a discovery platform for the entire Indian startup ecosystem to discover information as well as connect with each other in a meaningful way! In short, we aim to be the one stop destination for everyone in the startup ecosystem.</td>
</tr>
</table>
</div>
</div>
</div>
<div id="time_line_5cf90ca818ffe9" class="time_line-item item_show">
<div class="time_line-date_wrap">
<div class="seofy_hexagon">
<svg style=" fill: #eee87d;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<div class="seofy_hexagon">
<svg style="filter: drop-shadow(4px 5px 4px #eee87d); fill: #eee87d;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<h4 class="time_line-date" style="color: #eee87d;">2019</h4>
</div>
<div class="time_line-content">
<div class="date-event" style="position: absolute; width:100px; border-bottom-right-radius: 22px;top: 0; left: 0;text-align: center;font-weight: bold; color: #ffffff; background-color: #eee87d;">Jan 18</div>
<h5 class="time_line-title">Sampark</h5>
<div class="time_line-descr">
<table style="padding: 0; margin: 0">
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0; border: none">"SAMPARK" is an initiative to bring our IIITG Community even closer,so the culture of teaching and learning from each other becomes even more profound.This event consists of talks by our very own IIITG people who have taken a step ahead in various career fields.These talks are centred around the whole topic of internships,research and various other fields that people opt.</td>
</tr>
</table>
</div>
</div>
</div>
<div id="time_line_5cf90ca818ff10" class="time_line-item item_show">
<div class="time_line-date_wrap">
<div class="seofy_hexagon">
<svg style=" fill: #beb725;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<div class="seofy_hexagon">
<svg style="filter: drop-shadow(4px 5px 4px #beb725); fill: #beb725;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 177.4 197.4">
<path d="M0,58.4v79.9c0,6.5,3.5,12.6,9.2,15.8l70.5,40.2c5.6,3.2,12.4,3.2,18,0l70.5-40.2c5.7-3.2,9.2-9.3,9.2-15.8V58.4 c0-6.5-3.5-12.6-9.2-15.8L97.7,2.4c-5.6-3.2-12.4-3.2-18,0L9.2,42.5C3.5,45.8,0,51.8,0,58.4z"></path>
</svg>
</div>
<h4 class="time_line-date" style="color: #beb725;">2018</h4>
</div>
<div class="time_line-content">
<div class="date-event" style="position: absolute; width:100px; border-bottom-left-radius: 22px;top: 0; right: 0;text-align: center;font-weight: bold; color: #ffffff; background-color: #beb725;">Oct 6</div>
<h5 class="time_line-title">Ideation workshop</h5>
<div class="time_line-descr">
<table style="padding: 0; margin: 0">
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0;">
The Ideation Workshop has covered the topics that shall include the following:
</td>
</tr>
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0;">
Idea Generation
</td>
</tr>
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0;">
Idea Validation
</td>
</tr>
<tr>
<td style="padding-right:0; border: none"><li></li></td>
<td style="padding:0; border: none">
Basics of Prototyping (using industry standard software).
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="extended-parallax" data-paroller-type="foreground" style="top: 0%; left: 0%; transform: translateY(-50px); transition: transform 0s linear 0s; will-change: transform;" data-paroller-direction="vertical" data-paroller-factor="-0.079"><img src="https://seofy.wgl-demo.net/wp-content/uploads/2018/11/section_timeline2.png" alt=""></div> -->
<!-- <div id="particles_5cf90ca81976a" class="particles-js" style="top:0%; left:0%; width:30%; height:100%; " data-particles-type="hexagons" data-particles-number="30" data-particles-color="#ff7e00,#3224e9,#69e9f2" data-particles-line="false" data-particles-size="10" data-particles-speed="1" data-particles-hover="true" data-particles-hover-mode="grab" data-particles-colors-type="random_colors">
<canvas class="particles-js-canvas-el" width="376" height="1636" style="width: 100%; height: 100%;"></canvas>
</div> -->
</div>
</div>
</div>
<div class="row-all-events" style="display: flex; flex-flow: row wrap; justify-content: center;">
<div class="btn-all-events" onclick="showAllEvents()">Show more</div>
</div>
</div>
</section> <!-- end events -->
<!-- gallery
================================================== -->
<section id='works' class="s-works" style="background: #e6e6e6;">
<div class="intro-wrap">
<div class="row section-header has-bottom-sep light-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Gallery</h3>
<h1 class="display-2 display-2--light">We love what we do, check out some of our latest works</h1>
</div>
</div>
</div>
<div class="row works-content" data-aos="fade-right">
<div class="col-full masonry-wrap">
<div class="masonry gallery">
<a href="images/gallery/1.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/1.jpg"
srcset="images/gallery/1.jpg 1x, images/gallery/1.jpg 2x" alt="">
</a>
<a href="images/gallery/2.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/2.jpg"
srcset="images/gallery/2.jpg 1x, images/gallery/2.jpg 2x" alt="">
</a>
<a href="images/gallery/3.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/3.jpg"
srcset="images/gallery/3.jpg 1x, images/gallery/3.jpg 2x" alt="">
</a>
<a href="images/gallery/4.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/4.jpg"
srcset="images/gallery/4.jpg 1x, images/gallery/4.jpg 2x" alt="">
</a>
<a href="images/gallery/5.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/5.jpg"
srcset="images/gallery/5.jpg 1x, images/gallery/5.jpg 2x" alt="">
</a>
<a href="images/gallery/6.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/6.jpg"
srcset="images/gallery/6.jpg 1x, images/gallery/6.jpg 2x" alt="">
</a>
<a href="images/gallery/2.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/7.jpg"
srcset="images/gallery/7.jpg 1x, images/gallery/7.jpg 2x" alt="">
</a>
<a href="images/gallery/8.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/8.jpg"
srcset="images/gallery/8.jpg 1x, images/gallery/8.jpg 2x" alt="">
</a>
</div>
</div>
</div>
</section> <!-- end s-works -->
<!-- sponsors & speakers
================================================== -->
<section id="clients" class="s-clients">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Our Partners</h3>
<h1 class="display-2">E-Cell, IIITG has been honored to
partner up with these brands.</h1>
</div>
</div> <!-- end section-header -->
<div class="row clients-outer" data-aos="fade-up">
<div class="col-full">
<div class="clients">
<a href="#0" title="" class="clients__slide"><img src="images/clients/primebakers.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/pizzahut.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/bigfm.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/poptales.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/hpprinters.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/technomate.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/time.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/muskan.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/bobaroda.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/nagabowl.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/ndimensions.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/hackerearth.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/Gplus.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/godrej.png" /></a>
</div> <!-- end clients -->
</div> <!-- end col-full -->
</div> <!-- end clients-outer -->
<div id="speakers" class="row clients-testimonials" data-aos="fade-up">
<div class="col-full">
<div class="testimonials">
<div class="testimonials__slide">
<p><h3>Our Previous Speakers</h3></p>
<p>He was our guest for the lecture series.He is the CEO of Egnify Technologies. He is an alumni of Stanford University
</p>
<img src="images/avatars/user-01.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Mr. Kiran Babu</span>
<span class="testimonials__pos">CEO, Egnify Technologies</span>
</div>
</div>
<div class="testimonials__slide">
<p><h3>Our Previous Speakers</h3></p>
<p>He was our guest for the lecture series.He is the Co-Founder of Startup Byte.He holds a MBA degree in Entrepreneurship (2013) from Babson College, USA</p>
<img src="images/avatars/user-02.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Mr. Praveen Dorna</span>
<span class="testimonials__pos">Co-founder, Startup Byte</span>
</div>
</div>
<div class="testimonials__slide">
<p><h3>Our Previous Speakers</h3></p>
<p>Mr. Arjun Majumdar, an entrepreneur by profession and a trekker by passion,
Mr. Arjun started Indiahikes in 2008. He leads Indiahikes, a community that has
changed the face of trekking in India. He has written extensively for Discover India
magazine and is a TedX speaker.</p>
<img src="images/avatars/Arjun-Majumdar.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Mr. Arjun Majumdara</span>
<span class="testimonials__pos">Indiahikes</span>
</div>
</div>
<div class="testimonials__slide">
<p><h3>Our Previous Speakers</h3></p>
<p>Mr. Sricharan Lakaraju, CEO and founder of the Hyderabad-based startup ‘stuMagZ’.
This was founded by him and his friend Frederick Devarampati who were keen to
bring digital life to the idea of the traditional university newspaper or magazine
across hundreds of colleges.</p>
<img src="images/avatars/sricharan-lakkaraju.jpeg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Mr. Sricharan Lakaraj</span>
<span class="testimonials__pos">Founder & CEO, stuMagZ</span>
</div>
</div>
<div class="testimonials__slide">
<p><h3>Our Previous Speakers</h3></p>
<p>Prashant Singh, has delivered a talk on his journey as an
entrepreneur and product management. He has explained how being creative is a choice
and not a talent with the importance of PR in product building.</p>
<img src="images/avatars/prasant-singh.jpeg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Prashant Singh</span>
<span class="testimonials__pos">VP Of Product management, Paytm</span>
</div>
</div>
<div class="testimonials__slide">
<p><h3>Our Previous Speakers</h3></p>
<p>Prof. Parameswar K Iyer, has
mainly focused on importance of innovation in his lecture. He delivered an interactive talk
by showing the samples of work he was involved in, it was really mesmerizing to see how
things actually worked in nanotechnology.</p>
<img src="images/avatars/prof-iyer.jpeg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Prof. Parameswar K Iyer</span>
<span class="testimonials__pos">Dept of chemistry & Centre for Nanotechnology, IIT Guwahati</span>
</div>
</div>
</div><!-- end testimonials -->
</div> <!-- end col-full -->
</div> <!-- end client-testimonials -->
</section> <!-- end s-clients -->
<!---check out our web article-->
<section id='web-article' class="s-about">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead" style="color: grey;">Check out our new web article</h3>
<h1 class="display-2 display-2--light" style="color: lightblue;">Entrepreneurship in the world of Millennials</h1>
</div>
</div> <!-- end section-header -->
<div class="row about-desc" data-aos="fade-up">
<div class="col-full" >
<p>
A generation that has been described as lazy, narcissistic, entitled and unable to stay in one job,
have also been described as the most purpose driven and potentially the most entrepreneurial
of all previous generations. Regardless of an individual's conditions, this generation has been
generally influenced by an increase and fluency within communications, media, and
technologies. Never has a generation been so aware of their options, thanks to the internet.
Gone are the days of businesses solely focusing on financial gains, as millennials believe that
the success of a business should be measured on its impact on the world. It is about "balance,"
finding a gap in the market that is also fulfilling to the individual on a personal level.
</p>
</div>
<div class="mycheader col-full" ><span>Why do we have “E-Cells” in technical institutes?</span>
</div>
<div class="mycontent col-full" >
<p>
In India a large number of technical institutions and institutions of higher learning have
emerged since Independence. These institutions are churning out large number of trained
manpower, thus fulfilling the need of the industry, R&D institutions and other economic
sectors. In order to make favourable use of facilities, expertise and know-how available in these
institutions for the benefit of the society, it is necessary that appropriate links are established
between them and the industry. In addition, now-a-days young technocrats are also looking out
for opportunities to exploit their full potential by setting up their own ventures thus becoming
“job generators” rather than “job seekers”.
The National Science & Technology Entrepreneurship Development Board (NSTEDB) took up
the scheme for establishment of Entrepreneurship Development Cells (EDCs) in academic
institutions in 1986-87. Thereafter Entrepreneurship cell (E-CELL) has been established in many
technical institutes and have taken up the role to blend technical inputs with entrepreneurial
and managerial skills. The fact that the R&D of these technical institutions are involved in
research in the industry, the output of this research can be translated into viable start-ups with
the help of the E-cell. E-Cells are bridging the gap between the student community and the
industry by guiding aspiring entrepreneurs and thus are an important part of every technical
institution.
</p>
</div>
</div>
<!-- end about-desc -->
<div class="article-content__buttons">
<a class="smoothscroll btn btn--stroke readmore">
Read More
</a>
</div>
</section> <!-- end web article -->
<!-- team section start -->
<section id="team" class="section-wrapper gray-bg" style="min-height: 100%;padding-top: 10rem; padding-bottom: 9rem;">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full" id="ourteam">
<h3 class="display-2" style="color:#eb0505;padding-top:1.5%"><span style="color:#fff">Our</span> Team</h3>
</div>
</div> <!-- end section-header -->
<div class="container1">
<div class="row" style="max-width: 1800px;" data-aos="fade-in">
<div class="team">
<div class="team-member">
<div class="member-img">
<img src="img/swapnil.jpg">
</div>
<div class="member-profile">
<p class="member-name">Swapnil Raj</p>
<p class="member-position">Head Coordinator</p>
<p class="member-social">
<a href="https://www.linkedin.com/in/swapnil-raj-05a07914b"><i class="fab fa-linkedin-in"></i></a>
<a href="mailto:[email protected]"><i class="far fa-envelope"></i></a>
</p>
<p class="member-tagline">
<!-- <hr style="border: solid 1px burlywood"> -->
“Working with differently opinionated people is the best I had here.”
</p>
</div>
</div>
<div class="team-member">
<div class="member-img">
<img src="img/sameer.jpg">
</div>
<div class="member-profile">
<p class="member-name">Sameer Kumar Kushwaha</p>
<p class="member-position">Technical team lead</p>
<p class="member-social">
<a href="https://www.linkedin.com/in/kushwahasameerkumar"><i class="fab fa-linkedin-in"></i></a>
<a href="mailto:[email protected]"><i class="far fa-envelope"></i></a>
</p>
<p class="member-tagline">
“Technically technical.”
</p>
</div>
</div>
<div class="team-member">
<div class="member-img">
<img src="img/team/IMG_20181105_020406_139 - Priya Pampati.jpg">
</div>
<div class="member-profile">
<p class="member-name">Lakshmi Priya Pampati</p>
<p class="member-position">Marketing team lead</p>
<p class="member-social">
<a href="https://www.linkedin.com/in/priya-pampati-733334173"><i class="fab fa-linkedin-in"></i></a>
<a href="mailto:[email protected]"><i class="far fa-envelope"></i></a>
</p>
<p class="member-tagline">
“Just a girl who aims high and loves to read.”
</p>
</div>
</div>
<div class="team-member">
<div class="member-img">
<img src="img/team/IMG-20191201-WA0014 - Neelabh Shukla(1).jpg">
</div>
<div class="member-profile">
<p class="member-name">Neelabh Shukla</p>
<p class="member-position">Public & Coporate Relations team lead</p>
<p class="member-social">
<a href="https://www.linkedin.com/in/neelabh-shukla-67638426"><i class="fab fa-linkedin-in"></i></a>
<a href="mailto:[email protected]"><i class="far fa-envelope"></i></a>
</p>
<p class="member-tagline">
“I am a natural problem solver. Full on collaborative, versatile, focused and confident.”
</p>
</div>
</div>
<div class="team-member">
<div class="member-img">
<img src="img/team/IMG_20171109_151109_Bokeh__01 - S Shashank.jpg">
</div>
<div class="member-profile">
<p class="member-name">S Shashank</p>
<p class="member-position">Event Management Head</p>
<p class="member-social">
<a href="https://www.linkedin.com/in/s-shashank-783a89158"><i class="fab fa-linkedin-in"></i></a>
<a href="mailto:[email protected]"><i class="far fa-envelope"></i></a>
</p>
<p class="member-tagline">
“I enjoy facing challenges.”
</p>
</div>
</div>
<!-- <div class="team-member">
<div class="member-img">
<img src="img/team/IMG_20190720_223609_Bokeh__01 - Sargun.jpg">
</div>
<div class="member-profile">
<p class="member-name">Sargunjit Singh</p>
<p class="member-position">Event Management</p>
<p class="member-social">
<a href="https://www.linkedin.com/in/sargunjitsingh"><i class="fab fa-linkedin-in"></i></a>
<a href="mailto:[email protected]"><i class="far fa-envelope"></i></a>
</p>
</div>
</div> -->
<div class="team-member">
<div class="member-img">
<img src="img/team/IMG_20191208_155343_243 - chekurthi manvith.jpg">
</div>
<div class="member-profile">
<p class="member-name">Manvith Chekurthi</p>