-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
2403 lines (2053 loc) · 106 KB
/
index.html
File metadata and controls
2403 lines (2053 loc) · 106 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">
<title>CSIS 2018</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Computer Society India Symposium 2018">
<meta name="keywords" content="CSIS, conference, conference, event, IEEE, CSIS'18,CS, Symposium, Bodhgaya">
<meta name="author" content="">
<link rel="preload" href="csis_gif.gif" as="image" type="image/gif" >
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<style>
#preloader {
position: fixed;
z-index: 20000;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: center no-repeat #ffffff !important;
text-align: center;
}
.preloader1 {
background: url('csis_gif.gif') no-repeat center center;
position: absolute;
width: 60px;
height: 60px;
display: inline-block;
padding: 0px;
}
</style
<a href="#" id="back-to-top"></a>
<div id="preloader">
<div class="preloader1"></div>
</div>
</div>
<!-- CSS Files
================================================== -->
<link rel="stylesheet" href="css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="css/animate.css" type="text/css">
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css">
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="css/jquery.countdown.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/font-awesome.css" type="text/css">
<!-- ChatBot CSS Files
================================================== -->
<style>
@media (min-width: 992px) {
.cen-img {
left: 37.5%; /* IMPORTANT */
}
}
#center-text {
display: flex;
flex: 1;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}
#chat-circle {
position: fixed;
z-index: 9999;
bottom: 35px;
right: 50px;
background: #eeb807;
width: 75px;
height: 75px;
border-radius: 50%;
color: white;
padding: 28px;
cursor: pointer;
box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.6), 0 2px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
}
.btn#my-btn {
background: white;
padding-top: 13px;
padding-bottom: 12px;
border-radius: 45px;
padding-right: 40px;
padding-left: 40px;
color: #5865C3;
}
#chat-overlay {
background: rgba(255, 255, 255, 0.1);
position: absolute;
z-index: 9999;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
}
.chat-box {
display: none;
background: #efefef;
position: fixed;
z-index: 9999;
right: 30px;
bottom: 50px;
width: 350px;
max-width: 85vw;
max-height: 100vh;
border-radius: 5px;
box-shadow: 0px 2px 40px 2px #70706f;
/*box-shadow: 0px 5px 5px 9px #ccc; */
}
.chat-box-toggle {
float: right;
margin-right: 15px;
cursor: pointer;
}
.chat-box-header {
background: #F9A42A;
height: 50px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
color: white;
text-align: center;
font-size: 20px;
padding-top: 12px;
}
.chat-box-body {
position: relative;
height: 370px;
height: auto;
border: 1px solid #ccc;
overflow: hidden;
}
.chat-box-body:after {
content: "";
background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAgOCkiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGNpcmNsZSBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIgY3g9IjE3NiIgY3k9IjEyIiByPSI0Ii8+PHBhdGggZD0iTTIwLjUuNWwyMyAxMW0tMjkgODRsLTMuNzkgMTAuMzc3TTI3LjAzNyAxMzEuNGw1Ljg5OCAyLjIwMy0zLjQ2IDUuOTQ3IDYuMDcyIDIuMzkyLTMuOTMzIDUuNzU4bTEyOC43MzMgMzUuMzdsLjY5My05LjMxNiAxMC4yOTIuMDUyLjQxNi05LjIyMiA5LjI3NC4zMzJNLjUgNDguNXM2LjEzMSA2LjQxMyA2Ljg0NyAxNC44MDVjLjcxNSA4LjM5My0yLjUyIDE0LjgwNi0yLjUyIDE0LjgwNk0xMjQuNTU1IDkwcy03LjQ0NCAwLTEzLjY3IDYuMTkyYy02LjIyNyA2LjE5Mi00LjgzOCAxMi4wMTItNC44MzggMTIuMDEybTIuMjQgNjguNjI2cy00LjAyNi05LjAyNS0xOC4xNDUtOS4wMjUtMTguMTQ1IDUuNy0xOC4xNDUgNS43IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PHBhdGggZD0iTTg1LjcxNiAzNi4xNDZsNS4yNDMtOS41MjFoMTEuMDkzbDUuNDE2IDkuNTIxLTUuNDEgOS4xODVIOTAuOTUzbC01LjIzNy05LjE4NXptNjMuOTA5IDE1LjQ3OWgxMC43NXYxMC43NWgtMTAuNzV6IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIvPjxjaXJjbGUgZmlsbD0iIzAwMCIgY3g9IjcxLjUiIGN5PSI3LjUiIHI9IjEuNSIvPjxjaXJjbGUgZmlsbD0iIzAwMCIgY3g9IjE3MC41IiBjeT0iOTUuNSIgcj0iMS41Ii8+PGNpcmNsZSBmaWxsPSIjMDAwIiBjeD0iODEuNSIgY3k9IjEzNC41IiByPSIxLjUiLz48Y2lyY2xlIGZpbGw9IiMwMDAiIGN4PSIxMy41IiBjeT0iMjMuNSIgcj0iMS41Ii8+PHBhdGggZmlsbD0iIzAwMCIgZD0iTTkzIDcxaDN2M2gtM3ptMzMgODRoM3YzaC0zem0tODUgMThoM3YzaC0zeiIvPjxwYXRoIGQ9Ik0zOS4zODQgNTEuMTIybDUuNzU4LTQuNDU0IDYuNDUzIDQuMjA1LTIuMjk0IDcuMzYzaC03Ljc5bC0yLjEyNy03LjExNHpNMTMwLjE5NSA0LjAzbDEzLjgzIDUuMDYyLTEwLjA5IDcuMDQ4LTMuNzQtMTIuMTF6bS04MyA5NWwxNC44MyA1LjQyOS0xMC44MiA3LjU1Ny00LjAxLTEyLjk4N3pNNS4yMTMgMTYxLjQ5NWwxMS4zMjggMjAuODk3TDIuMjY1IDE4MGwyLjk0OC0xOC41MDV6IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIvPjxwYXRoIGQ9Ik0xNDkuMDUgMTI3LjQ2OHMtLjUxIDIuMTgzLjk5NSAzLjM2NmMxLjU2IDEuMjI2IDguNjQyLTEuODk1IDMuOTY3LTcuNzg1LTIuMzY3LTIuNDc3LTYuNS0zLjIyNi05LjMzIDAtNS4yMDggNS45MzYgMCAxNy41MSAxMS42MSAxMy43MyAxMi40NTgtNi4yNTcgNS42MzMtMjEuNjU2LTUuMDczLTIyLjY1NC02LjYwMi0uNjA2LTE0LjA0MyAxLjc1Ni0xNi4xNTcgMTAuMjY4LTEuNzE4IDYuOTIgMS41ODQgMTcuMzg3IDEyLjQ1IDIwLjQ3NiAxMC44NjYgMy4wOSAxOS4zMzEtNC4zMSAxOS4zMzEtNC4zMSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjEuMjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvZz48L3N2Zz4=');
opacity: 0.1;
top: 0;
left: 0;
bottom: 0;
right: 0;
height: 100%;
position: absolute;
z-index: -1;
}
#chat-input {
background: #f4f7f9;
width: 100%;
position: relative;
height: 47px;
padding-top: 10px;
padding-right: 50px;
padding-bottom: 10px;
padding-left: 15px;
border: none;
resize: none;
outline: none;
border: 1px solid #ccc;
color: #888;
border-top: none;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
overflow: hidden;
}
.chat-input>form {
margin-bottom: 0;
}
#chat-input::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #ccc;
}
#chat-input::-moz-placeholder {
/* Firefox 19+ */
color: #ccc;
}
#chat-input:-ms-input-placeholder {
/* IE 10+ */
color: #ccc;
}
#chat-input:-moz-placeholder {
/* Firefox 18- */
color: #ccc;
}
.chat-submit {
position: absolute;
bottom: 3px;
right: 10px;
background: transparent;
box-shadow: none;
border: none;
border-radius: 50%;
color: rgb(209, 159, 20);
width: 35px;
height: 35px;
}
.chat-logs {
padding: 15px;
height: 370px;
overflow-y: scroll;
}
.chat-logs::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #F5F5F5;
}
.chat-logs::-webkit-scrollbar {
width: 5px;
background-color: #F5F5F5;
}
.chat-logs::-webkit-scrollbar-thumb {
background-color: rgb(201, 139, 5);
}
@media only screen and (max-width: 500px) {
.chat-logs {
height: 40vh;
}
}
.chat-msg.user>.msg-avatar img {
width: 45px;
height: 45px;
border-radius: 50%;
float: left;
width: 15%;
}
.chat-msg.self>.msg-avatar img {
width: 45px;
height: 45px;
border-radius: 50%;
float: right;
width: 15%;
}
.cm-msg-text {
background: white;
padding: 10px 15px 10px 15px;
color: #666;
max-width: 75%;
float: left;
margin-left: 10px;
position: relative;
margin-bottom: 20px;
border-radius: 30px;
}
.chat-msg {
clear: both;
}
.chat-msg.self>.cm-msg-text {
float: right;
margin-right: 10px;
background: #5A5EB9;
color: white;
}
.cm-msg-button>ul>li {
list-style: none;
float: left;
width: 50%;
}
.cm-msg-button {
clear: both;
margin-bottom: 70px;
}
</style>
<style>
.form-control{
padding: 20px!important;
font-size: 16px!important;
}
.orange_btn{
color: white;
background: #efb808;
padding: 10px 40px;
}
.orange_btn:hover{
background-color: #f5bd09;color:white;
}
</style>
<!-- background -->
<link rel="stylesheet" href="css/bg.css" type="text/css">
<!-- color -->
<link rel="stylesheet" href="css/color.css" type="text/css">
</head>
<body id="homepage">
<div id="chat-circle" class="btn btn-raised">
<div id="chat-overlay"></div>
<i class="fa fa-comments fa-lg" aria-hidden="true"></i>
</div>
<div class="chat-box">
<div class="chat-box-header">
CSIS Chatbot
<span class="chat-box-toggle"><i class="fa fa-times"></i></span>
</div>
<div class="chat-box-body">
<div class="chat-box-overlay">
</div>
<div class="chat-logs">
</div>
<!--chat-log -->
</div>
<div class="chat-input">
<form>
<input type="text" id="chat-input" placeholder="Send a message..." />
<button type="submit" class="chat-submit" id="chat-submit"><i class="fa fa-paper-plane-o"></i></button>
</form>
</div>
</div>
<div id="wrapper">
<!-- header begin -->
<header>
<div class="info">
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="col"><span class="id-color"><i class="fa fa-map-marker"></i></span>Sambhodhi Retreat, Bodhgaya</div>
<div class="col"><span class="id-color"><i class="fa fa-clock-o"></i></span>March 16-18 2018 PM
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- logo begin -->
<div id="logo">
<a href="#">
<img class="logo" src="images/logo-light.png" style="height:90px ; width:auto" alt="">
<img class="logo-2 logomarg" src="images/logo-light.png" style="height:70px ;align-self:center; width:auto " alt="">
</a>
</div>
<!-- logo close -->
<!-- small button begin -->
<span id="menu-btn"></span>
<!-- small button close -->
<!-- mainmenu begin -->
<nav>
<ul id="mainmenu">
<li><a href="#home">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#venue">Venue</a></li>
<li><a href="#speakers">Speakers</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#registration">Registration</a></li>
<li><a id = "music" href="#music">Music OFF</a></li>
<!-- <li><a href="#schedule">Schedule</a></li> -->
</ul>
</nav>
</div>
<!-- mainmenu close -->
</div>
</div>
</header>
<!-- header close -->
<!-- content begin -->
<div id="content" class="no-bottom no-top">
<div id="top"></div>
<!-- section begin -->
<section id="section-intro-9" class="full-height no-top no-bottom text-light" data-stellar-background-ratio=".2">
<div class="overlay-bg t50" id="home">
<div class="center-y fadeScroll text-center relative" data-scroll-speed="4">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="spacer-double"></div>
<div class="spacer-double"></div>
<h1 class="ultra-big">CSIS<span class="id-color">'18</span></h1>
<div class="spacer-single"></div>
<div class="subtitle s2"><span><i class="fa fa-calendar-o id-color"></i>March 16th to 18th</span><span><i class="fa fa-map-marker id-color"></i>Sambodhi Retreat, Bodhgaya</span></div>
<div class="spacer-single"></div>
<div class="spacer-single"></div>
<div class="spacer-double"></div>
<div id="defaultCountdown" class="countdown-s1"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-intro-text">
<div class="container" id="about">
<div class="row">
<div class="col-md-12 text-center wow fadeInUp">
<h2>About CSIS</h2>
<p class="lead">The Computer Society India Symposium (CSIS) is one of the remarkable events of the IEEE Computer Society in India and is held annually with the venue being rotated among the various sections of India. The main scope of this symposium is
to bring professionals, speakers, experts, and other academicians so that the participants can interact with and in the process learn. The symposium is generally a 3-day event and includes talks, workshops, and events on a wide array of
domains such as technical, industrial, management, social development and much more. </p>
<div class="spacer-single"></div>
</div>
<div class="col-md-4 text-center wow fadeInUp">
<i class="fa fa-bookmark id-color fa-2x" style="padding-bottom: 15px"></i>
<h3>Professional Development</h3>
<p>Where the participants get a chance to hone their professional and soft skills that is going to give them extra mileage in the process of building a successful career.
</p>
</div>
<div class="col-md-4 text-center wow fadeInUp">
<i class="fa fa-cogs id-color fa-2x " style="padding-bottom: 15px"></i>
<h3>Developing the Society</h3>
<p>IEEE CSIS intends to promote the sense of innovation and technological zeal among the participating delegates.
The symposium provides a platform for the confluence of researchers, innovators and entrepreneurs from various domains to share their knowledge and experiences.</p>
</div>
<div class="col-md-4 text-center wow fadeInUp">
<i class="fa fa-info-circle id-color fa-2x " style="padding-bottom: 15px"></i>
<h3>Technological Innovation</h3>
<p>Where the sessions and the talks by the leading professionals expose the participants to the latest technologies and innovations and inspire them to innovate too.
</p>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-intro-text">
<div class="container" id="about">
<div class="row">
<div class="col-md-12 text-center wow fadeInUp">
<h2>About IEEE Kolkata Section</h2>
<p class="lead">IEEE Kolkata Section’s mission is to spread IEEE Activities to all the remote corners by educational activities, human networking, and to develop technology and its applications for humanitarian challenges. It also aims at enlightening women and students about the innovations and encouraging them to choose engineering and science for building their careers.
Currently the IEEE Kolkata Section extends across West Bengal, Jharkhand, Bihar and Odisha, and brags of around 38 Students Branches, 13 Chapters and 3 Affinity Groups, namely, IEEE Young Professional Affinity Group, IEEE SIGHT, and IEEE Women In Engineering (WIE). The Section works closely and coherently with its branches and affinity groups; not only in technical, education and membership development activities but also in outreach activities which a major focus of this section.
IEEE Kolkata Section received the accolade of 2016 Outstanding Section Membership Recruitment Performance. IEEE CoMSoc Kolkata Chapter received CAA- 2017 CHAPTER ACHIEVEMENT AWARD. IEEE MTT-S Outstanding Chapter Award 2017 was received by IEEE AP/MTT Joint Chapter, Kolkata Section.</p>
<div class="spacer-single"></div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-intro-iem" background: "#8e9eab;" /* fallback for old browsers */>
<div class="container" id="iem">
<div class="row">
<div class="col-md-12 text-center wow fadeInUp back" >
<h2> About IEM IEEE Students Branch </h2>
<p class="lead">The IEEE Student Branch of Institute of Engineering and Management (IEM), Kolkata is one of the most active student branches of the IEEE Kolkata section. The Branch is enthusiastic in carrying out several events for the student members to provide them the facilities in the relevant fields necessary. It aims at organizing events to develop the student's social as well as professional skills and workshops from famous companies that offer adequate knowledge needed for stepping into the industrial world.
</p>
<div class="spacer-single"></div>
</div>
<div class="col-md-4 text-center wow fadeInUp">
<i class="fa fa-graduation-cap id-color fa-2x" style="padding-bottom: 15px"></i>
<h3>Student Activities</h3>
<p>The Branch currently stand with approximately 100 members and will be encouraging more students from various streams to join IEEE in order to boost their career potential. Members of the Branch have recently hosted our maiden event, Technology Awareness Programme (T.A.P.) 2017, which has primarily funded jointly by IEEE Region10 Students Activities Committee and the IEEE Computer Society and was an overwhelming success.
</p>
</div>
<div class="col-md-4 text-center wow fadeInUp">
<i class="fa fa-book id-color fa-2x " style="padding-bottom: 15px"></i>
<h3>Chapters</h3>
<p>The IEEE Student Branch of IEM, Kolkata has four active chapters:
Electron Devices Society (EDS), Computer Society (CS), Women In Engineering (WIE) and Industry Applications Society (IAS).</p>
</div>
<div class="col-md-4 text-center wow fadeInUp">
<i class="fa fa-users id-color fa-2x " style="padding-bottom: 15px"></i>
<h3>Collaboration</h3>
<p>IEM has collaborated with IEEE to organize more than 7 international conferences in recent past at Canada, Thailand and USA.
More than 50 papers has been published in these conferences by IEM students.
</p>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section service begin -->
<section id="section-side-1" class="side-bg right no-padding text-light" data-bgcolor="#243f6a">
<div class="image-container col-md-6 col-md-offset-6 pull-right">
<div class="background-image"></div>
</div>
<div class="container" id="venue">
<div class="row">
<div class="inner-padding">
<div class="col-md-5 wow fadeInLeft" data-wow-delay=".5s">
<h2>Sambodhi Retreat</h2>
<p class="lead">CSIS Venue</p>
<p>It’s a luxury ecotel resort where the visitors can open up to a whole new world of luxurious spiritualism and immerse in the enlightenment land of Lord Buddha. Exquisitely designed rooms, unmatched amenities, organic food, village trails,
swimming pool, splash pool etc. are some of the unique features which makes the stay a memorable one. The early morning sunlight offers an unmatched view of the Mahabodhi temple overlooking river Falgu. The temple is just a few minutes’
walk from the resort through river Falgu and fifteen minutes from the Sujata Garh remains. Sambodhi Retreat is ideally located and approachable by train and the nearest station is 15 kms away, the Gaya junction. Nearest airport is 7
kms away, the Gaya International airport and Patna airport is 122 kms away.
</p>
<div class="spacer-single"></div>
<a href="http://www.sambodhiretreat.org/resort/default.aspx" class="btn-line">Visit Website</a>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</section>
<!-- section service close -->
<!-- section service begin -->
<section id="section-side-2" class="side-bg no-padding text-light" data-bgcolor="#b14141">
<div class="image-container col-md-6 pull-left">
<div class="background-image"></div>
</div>
<div class="container">
<div class="row">
<div class="inner-padding">
<div class="col-md-5 col-md-offset-7 wow fadeInRight" data-wow-delay=".5s">
<h2>The Bodhgaya Experience<span class="id-color">.</span></h2>
<p class="lead">Bodhgaya details</p>
<p>Bodh Gaya, rightfully said the birthplace of Buddhism since under a tree here (now called Bodhi tree), Gautama Buddha, the founder of Buddhism, attained true knowledge is the most holy place for the Buddhists. Most of the Buddhist countries
have their monasteries and temples in this town in Bihar making it a huge tourist attraction for people from all parts of the world so much so that it has been declared the world heritage site by the United Nations a few years back.
Bodh Gaya is well-known for being a place where people come and experience real peace and serenity in spite of it being flooded with tourists throughout the year.</p>
<div class="spacer-single"></div>
<a href="http://whc.unesco.org/en/list/1056" class="btn-line">View Tourism Page</a>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</section>
<!-- section service close -->
<!-- section speakers -->
<section id="section-speakers">
<div class="container relative" id="speakers">
<div class="row">
<div class="col-md-12 text-center">
<h2><span class="id-color">Event</span> Speakers</h2>
<div class="spacer-single"></div>
</div>
<div class="col-md-4 ">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/Mangeshda.jpg">
<span class="overlay-v">
<span style=" font-size-adjust: inherit">Sri Sri Mangeshda is a Karmayogi who has dedicated His life for mental, physical and spiritual well-being of the society through Kriya Yoga. His mission is to awaken and integrate people of all castes, creed and religions on the path of Humanity, by a strong bond of Unconditional Love.
</span>
</span>
</a>
<img src="images/team/speakers/Mangeshda.jpg" class="img-responsive" alt="">
</figure>
<h3>HH Sadguru Yogiraj Sri Sri Dr. Mangeshda
</h3>
<span class="subtitle">Public Figure
</span>
</div>
</div>
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/Surabhi.jpg">
<span class="overlay-v">
<span>Ms. Surabhi gautam is an IAS officer and an Ex-IES officer with All India Rank 1. She has worked as a scientist in the Bhabha Atomic Research Centre. She had also topped the Indian Space and Research Organization exams with AIR 1.
</span>
</a>
<img src="images/team/speakers/Surabhi.jpg" class="img-responsive" alt="">
</figure>
<h3>Ms. Surabhi Gautam
</h3>
<span class="subtitle">IAS officer,Ex IES officer AIR 1,Ex BARC scientist,ISRO AIR 1.
</span>
</div>
</div>
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/sujith.jpg">
<span class="overlay-v">
<span>Dr. Sujit Kumar Biswas is the Chair of the IEEE Kolkata Section that covers four major states of India : West Bengal, Odisha, Bihar and Jharkhand. He is a well known consultant in the field of Power Conversion for the last 25 years. He has received many esteemed awards including, 20th IETE Bimal Bose Award for Outstanding contribution in the area of Power Electronics.
</span>
</a>
<img src="images/team/speakers/sujith.jpg" class="img-responsive" alt="">
</figure>
<h3>Prof. Sujit K Biswas</h3>
<span class="subtitle">Chairperson | IEEE Kolkata Section
</span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/Sarmistha.jpg">
<span class="overlay-v">
<span>Dr. Sarmistha Neogy is a Professor in Dept. of Computer Science & Engineering at Jadavpur University, Kolkata, India. She has published papers in international journals and international/national conferences. She has co-authored 2 books, including a book on Operating Systems. Dr. Neogy has delivered invited talks and lectures in Conferences and Workshops in India.
</span>
</a>
<img src="images/team/speakers/Sarmistha.jpg" class="img-responsive" alt="">
</figure>
<h3>Prof. Sarmistha Neogy</h3>
<span class="subtitle">Chairperson | IEEE CS Chapter Kolkata Section
</span>
</div>
</div>
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/Shekhar.jpg">
<span class="overlay-v">
<span>Dr. Shekhar Verma is the Chair of the IEEE Computer Society Professional Chapter of the Uttar Pradesh section. Currently serving in Indian Institute of Information Technology (IIIT), Allahabad, he is absolutely adored by his students and is given quite respectable positions in the prestigious institute. </span>
</a>
<img src="images/team/speakers/Shekhar.jpg" class="img-responsive" alt="">
</figure>
<h3>Prof. Shekhar Verma
</h3>
<span class="subtitle">Chairperson | IEEE CS Chapter Uttar Pradesh Section.
</span>
</div>
</div>
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/Senthil.jpg">
<span class="overlay-v">
<span>Mr. Senthil Kumar has received top ten most innovative entrepreneur award from honourable IT minister of Telangana KT Rama Rao at Global Entrepreneurship Summit 2017. He has been honoured as the top 5 Technology Explorers in India by Nasscom. He has also worked as a senior software engineer in developing the new smartphone platform called Tizen at Samsung India Software Operation.
</span>
</a>
<img src="images/team/speakers/Senthil.jpg" class="img-responsive" alt="">
</figure>
<h3>Mr. Senthil Kumar
</h3>
<span class="subtitle">Ex-Samsung , Ex-Qualcomm Engineer
</span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/Garima.jpg">
<span class="overlay-v">
<span>An MBA graduate from IIM Lucknow, Garima hails from the town of Selra in Bihar. Presently, she is the founder of Dejawoo School of Innovation, a school aimed not only to impart education but also to develop personalities and culture of innovation and freedom of thought.The school has impacted lives of many people. She is an inspiration for many to follow their passion and test their limit.</span>
</a>
<img src="images/team/speakers/Garima.jpg" class="img-responsive" alt="">
</figure>
<h3>Mrs. Garima Vishal
</h3>
<span class="subtitle">Alumni | IIM Lucknow, Director | Dejawoo School of Innovation
</span>
</div>
</div>
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/Vishnu.jpg">
<span class="overlay-v">
<span>Mr. Vishnu Ks completed the prestigious Google Summer of Code 2017. And he is also representing IIIT-Allahabad and India in its first batch of Github Campus Experts. He is Google code-in organization head this year and outreach mentor. Presently, he is working as full stack developer in Zulip. </span>
</a>
<img src="images/team/speakers/Vishnu.jpg" class="img-responsive" alt="">
</figure>
<h3>Mr. Vishnu Ks
</h3>
<span class="subtitle">Google Code In | Organisation Head ,
Full Stack Developer | Zulip
</span>
</div>
</div>
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/Somak.jpg">
<span class="overlay-v">
<span>
Assistant Professor in the Department of Electronics Engineering at IIT, Varanasi.
He completed his PhD thesis on microwave absorbers and metamaterials in 2015 from
IIT, Kanpur.
He is the recipient of Young Scientist Award in International Symposium on
Electromagnetic Theory, 2013. And he was recently recognised as a Radio Scientist by
the International Union of Radio Science.
</span>
</a>
<img src="images/team/speakers/Somak.jpg" class="img-responsive" alt="">
</figure>
<h3>Dr. Somak Bhattacharya
</h3>
<span class="subtitle">Radio Scientist
</span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 mb30 ">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/Shyamala.jpeg">
<span class="overlay-v">
<span>
Mrs Shyamala Rajaram is Co-Founder and Director at UniMity Solutions, based in Chennai. She is an IIT Madras graduate and the Principal Technology Consultant at Across World Education LLC. She is high expertise in designing and developing solutions using Open Source platforms and in web, mobile and cloud technologies.
</span>
</a>
<img src="images/team/speakers/Shyamala.jpeg" class="img-responsive" alt="">
</figure>
<h3> Mrs Shyamala Rajaram
</h3>
<span class="subtitle">Director and Co-Founder | UniMity Solutions
</span>
</div>
</div>
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/Nikky.jpg">
<span class="overlay-v">
<span>
Nikky Kumar Jha is an Electrical & Electronics Engineer, Sustainable developer, Techpreneur, and Writer. His Inventions include Generation of Electricity from Coal Ash, Very Low cost Solar Computer, House with a rotating roof made up of solar panel, fully solar powered cold storage with rotating roof, Generation of Electricity from coal ash, wearable medical device, Agro-electronics devices, Sun tracker etc. He is the author of the book named MIRACLE MINDS. </span>
</a>
<img src="images/team/speakers/Nikky.jpg" class="img-responsive" alt="">
</figure>
<h3> Nikky Kumar Jha
</h3>
<span class="subtitle"> Paryavaran Ratna | Scientific Advisor | Technoculture Research.
</span>
</div>
</div>
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/maggie.jpg">
<span class="overlay-v">
<span>
IEEE CSIS 2018 is happy to introduce Maggie Inbamuthiah, the Director of Communities, Programs and Business Development at AnitaB.org India. In her role she focuses on building a community of women technologists in India. With 20+ years of experience in building and deploying at different reputable industries, she proves to be a remarkable inspiration for all women across India. She will be conducting a session on "The Bits and Bytes of Building a Tech Career" as a part of the Women In Computing Track.
</a>
<img src="images/team/speakers/maggie.jpg" class="img-responsive" alt="">
</figure>
<h3> Maggie Inbamuthiah
</h3>
<span class="subtitle"> Director, Community, Programs and Business Development (AnitaB.org India)
</span>
</div>
</div>
</div>
<!-- END ROW -->
</div>
</section>
<!-- section begin -->
<section id="section-fun-facts-2" class="no-top no-bottom text-light" data-stellar-background-ratio=".2">
<div class="overlay-bg pt80 pb80">
<div class="container">
<div class="row">
<div class="col-md-3 wow fadeIn" data-wow-delay="0">
<div class="de_count">
<i class="icon_id-2 id-color" data-animation="fadeInDown" data-delay="0"></i>
<h3 class="timer" data-to="300" data-speed="2500">0</h3>
<span>Participants</span>
</div>
</div>
<div class="col-md-3 wow fadeIn" data-wow-delay=".25s">
<div class="de_count">
<i class="icon_easel id-color" data-animation="fadeInDown" data-delay="200"></i>
<h3 class="timer" data-to="6" data-speed="2500">0</h3>
<span>Tracks</span>
</div>
</div>
<div class="col-md-3 wow fadeIn" data-wow-delay=".5s">
<div class="de_count">
<i class="icon_headphones id-color" data-animation="fadeInDown" data-delay="400"></i>
<h3 class="timer" data-to="20" data-speed="2500">0</h3>
<span>Speakers</span>
</div>
</div>
<div class="col-md-3 wow fadeIn" data-wow-delay=".75s">
<div class="de_count">
<i class="icon_globe id-color" data-animation="fadeInDown" data-delay="600"></i>
<h3 class="timer" data-to="15" data-speed="2500">0</h3>
<span>Sessions</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section adcom -->
<section id="section-speakers">
<div class="container relative" id="speakers">
<div class="row">
<div class="col-md-12 text-center">
<h2><span class="id-color">Advisory</span> Committee</h2>
<div class="spacer-single"></div>
</div>
<div class="col-md-4 ">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/adcom/MainakSaha.jpg">
<span class="overlay-v">
<span style=" font-size-adjust: inherit">
Student Branch Mentor | IEM, Kolkata
</span>
</span>
</a>
<img src="images/team/adcom/MainakSaha.jpg" class="img-responsive" alt="">
</figure>
<h3>Mainak Saha
</h3>
<span class="subtitle">Student Branch Mentor | IEM, Kolkata
</span>
</div>
</div>
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/adcom/drhimadrisaha.jpg">
<span class="overlay-v">
<span>
Branch Counsellor | IEM, Kolkata
</span>
</span>
</a>
<img src="images/team/adcom/drhimadrisaha.jpg" class="img-responsive" alt="">
</figure>
<h3>Dr. Himadri Nath Saha
</h3>
<span class="subtitle">Branch Counsellor | IEM, Kolkata
</span>
</div>
</div>
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/adcom/Dr.SatyajitChakrabarti.JPG">
<span class="overlay-v">
<span>
Director | IEM, Kolkata
</span>
</a>
<img src="images/team/adcom/Dr.SatyajitChakrabarti.JPG" class="img-responsive" alt="">
</figure>
<h3>Dr. Satyajit Chakrabarti</h3>
<span class="subtitle">Director | IEM, Kolkata
</span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/adcom/Dr.SarmisthaNeogy.jpg">
<span class="overlay-v">
<span>
Chair | IEEE CS Professional Chapter, Kolkata
</span>
</a>
<img src="images/team/adcom/Dr.SarmisthaNeogy.jpg" class="img-responsive" alt="">
</figure>
<h3>Prof. Sarmistha Neogy</h3>
<span class="subtitle">Chair | IEEE CS Professional Chapter, Kolkata
</span>
</div>
</div>
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/speakers/sujith.jpg">
<span class="overlay-v">
<span>
Chair | IEEE Kolkata
</a>
<img src="images/team/adcom/Dr.SujitKBiswas.png" class="img-responsive" alt="">
</figure>
<h3>Dr. Sujit Kumar Biswas
</h3>
<span class="subtitle">
Chair | IEEE Kolkata
</span>
</div>
</div>
<div class="col-md-4 mb30">
<div class="profile_pic text-center">
<figure class="picframe mb30">
<a class="image-popup" href="images/team/adcom/AravindhanAnbazhagan.jpg">
<span class="overlay-v">
<span>
Chair | IEEE CS India SAC
</span>
</a>
<img src="images/team/adcom/AravindhanAnbazhagan.jpg" class="img-responsive" alt="">
</figure>