-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1413 lines (1370 loc) · 82 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="UTF-8">
<meta name="description" content="IEEE AISSYC '22">
<meta name="keywords" content="IEEE Jadavpur University Presents, IEEE AISSYC '22,">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>AICSSYC 2022</title>
<link rel="icon" type="image/x-icon" href="/img/x1.png">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Work+Sans:400,500,600,700,800,900&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap" rel="stylesheet">
<!-- Css Styles -->
<link rel="stylesheet" href="css/footer1.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="css/elegant-icons.css" type="text/css">
<link rel="stylesheet" href="css/owl.carousel.min.css" type="text/css">
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="css/slicknav.min.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
</head>
<body>
<!-- Page Preloder -->
<div id="preloder">
<div class="loader"></div>
</div>
<!-- Header Section Begin -->
<header class="header-section">
<div class="container">
<div class="logo">
<a href="./index.html">
<img src="img/AICSSYC3 (1).png" alt="" height="40" width="150%">
</a>
</div>
<div class="nav-menu">
<nav class="mainmenu mobile-menu">
<ul>
<li><a href="#about">About</a></li>
<li><a href="#tracks">Tracks</a></li>
<li><a href="#speakers">Speakers</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#pricing" class="blink_me">Pricing</a></li>
<li><a href="#blog">Location</a></li>
<li><a href="#all__sponsors">Sponsors</a></li>
<li><a href="#contact">Contacts</a></li>
<li><a href="#faq">FAQs</a></li>
</ul>
</nav>
<!-- <a href="#" class="primary-btn top-btn"><i class="fa fa-ticket"></i> Ticket</a> -->
</div>
<div id="mobile-menu-wrap"></div>
</div>
</header>
<!-- Header End -->
<!-- Hero Section Begin -->
<section class="hero-section set-bg" data-setbg="img/landing__page__bg.jpg">
<!-- <center>
<img src="/img/AICSSYC3 (1).png" height="300px" width="300px" alt="">
</center> -->
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="hero-text my-5 pb-5">
<span style="font-size: 1.2rem;"> <a href="https://ieee-jaduniv.in" style="color: #fff;">IEEE
Jadavpur University Student Branch </a></span> <br> <br>
<span style="font-size: 1rem; margin-left: 6vw;">PRESENTS</span><br>
<img src="img/AICSSYC3 (1).png" alt="" height="120" width="300">
<h2>Where Tech<br /> is without LIMITS</h2>
<span>17 to 19 December, 2022</span> <br><br><br><br>
<!-- <a href="/form.html" class="primary-btn">Register</a> -->
<span style="font-size: 1.2rem;"> <a href="https://ieee-jaduniv.in" style="color: #fff;"><b>
Registrations are now closed!! <b></b></a></span> <br> <br>
</div>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
<!-- Counter Section Begin -->
<section class="counter-section bg-gradient">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="counter-text">
<span>Conference Date</span><br>
<h3 style="font-weight:500;">17th - 19th </h3>
<h3> December, 2022</h3>
</div>
</div>
<div class="col-lg-8">
<div class="cd-timer" id="countdown">
<div class="cd-item">
<span>43</span>
<p>Days</p>
</div>
<div class="cd-item">
<span>00</span>
<p>Hours</p>
</div>
<div class="cd-item">
<span>00</span>
<p>Minutes</p>
</div>
<div class="cd-item">
<span>00</span>
<p>Seconds</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Counter Section End -->
<!-- Home About Section Begin -->
<section id="about" class="home-about-section spad set-bg reveal" data-setbg="img/website_bg.jpg">
<div class="container">
<!-- <div class="row"> -->
<!-- <div class="col-lg-6"> -->
<div class="ha-text">
<h2>About Conference</h2>
<p>All India IEEE Computer Society Student & Young Professional Congress unites the members and
representatives of various IEEE student branches across India, as well as numerous
enterprising pupils too. It is a chance for everyone to engage in
thought-provoking discussions on technological stacks, participate in industrial
application tracks and also learn the importance of IEEE in industrial and
academic level. This event marks the spirit of cognition and research.</p>
<ul>
<li>
<div data-aos="fade-right"><span class="icon_check"></span> Panel Discussions</div>
</li>
<li>
<div data-aos="fade-left"><span class="icon_check"></span> Technological Seminars</div>
</li>
<li>
<div data-aos="fade-right"><span class="icon_check"></span> Hands-on Experience</div>
</li>
<li>
<div data-aos="fade-left"><span class="icon_check"></span> Educative Getaway</div>
</li>
</ul>
<!-- <a href="#" class="ha-btn">Discover Now</a> -->
</div>
<!-- </div> -->
<!-- </div> -->
</div>
</section>
<!-- Home About Section End -->
<!-- Tracks Section Begins -->
<section id="tracks">
<div class="ha-text">
<h2>Event Tracks</h2>
</div>
<div class="container">
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="img/Event Tracks/leadership.png" alt="Card image cap">
<div class="card-body" data-aos="fade-up" data-aos-duration="1000">
<h5 class="card-title"><b>Leadership</b></h5>
<p class="card-text">
Leadership - Aspire today. Inspire tomorrow.
AICSSYC '22 will be the perfect platform to look within and seek out the budding leader
inside you. Equipped with an exclusive roadmap received from established leaders themselves,
chisel out your own path and hone the dormant leadership skills in your personality!
</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="img/Event Tracks/technology.png" alt="Card image cap">
<div class="card-body" data-aos="fade-up" data-aos-duration="1000">
<h5 class="card-title"><b>Technology</b></h5>
<p class="card-text">Technology - With the world being taken over by the technological
revolution in every sphere, be sure to gain the perfect insights here, on how to be one of
those who know how to keep moving the giant wheel of technology for the betterment of the
society. Learn from the best of the technocrats assembled under the same sky and beyond the
four walls of a room.
</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="img/Event Tracks/handson.png" alt="Card image cap">
<div class="card-body" data-aos="fade-up" data-aos-duration="1000">
<h5 class="card-title"><b>Hands On</b></h5>
<p class="card-text">Hands-on - Set your mind to brilliant projects and connect the dots
yourself, with the illuminating guidance of the professionals who will be assembled
at AICSSYC '22. Let your mind soar beyond the periphery of theoretical knowledge, as
you solve real-life problems with your own hands and minds. That is the true road to
success!
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Tracks Section Ends -->
<!-- Team Member Section Begin -->
<section id="speakers" class="team-member-section">
<div class="container">
<div class="row"> <!-- First Row -->
<div class="col-lg-12">
<div class="section-title">
<h2>Who’s speaking</h2>
<p>These are our communicators, you can see each person information</p>
</div>
</div>
</div>
</div>
<div class="all__speakers container">
<div class="row">
<div class="member-item set-bg col-md-3" data-setbg="img/team-member/MohamedRawidean.jpg"
data-aos="flip-up">
<div class="mi-social">
<div class="mi-social-inner bg-gradient">
<!-- <a href="#" target="_blank"><i class="fa fa-facebook"></i></a> -->
<!-- <a href="#"><i class="fa fa-instagram"></i></a> -->
<!-- <a href="#"><i class="fa fa-twitter"></i></a> -->
<a href="https://my.linkedin.com/in/mohamed-rawidean-mohd-kassim-977580200?trk=public_profile_browsemap"
target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="mi-text">
<h5>Mohamed Rawidean Modh Kassim</h5>
<span>R&D Manager, MIMOS Berhard</span>
</div>
</div>
<div class="member-item set-bg col-md-3" data-setbg="img/team-member/eric.jpg" data-aos="flip-up">
<div class="mi-social">
<div class="mi-social-inner bg-gradient">
<a href="https://www.facebook.com/eric.berkowitz.31" target="_blank"><i
class="fa fa-facebook"></i></a>
<!-- <a href="#"><i class="fa fa-instagram"></i></a> -->
<a href="https://mobile.twitter.com/ericb1269"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/ericberkowitz/" target="_blank"><i
class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="mi-text">
<h5>Eric Berkowitz</h5>
<span>Marketing Leader, IEEE CS</span>
</div>
</div>
<div class="member-item set-bg col-md-3" data-setbg="img/team-member/Sivam.jpeg" data-aos="flip-up">
<div class="mi-social">
<div class="mi-social-inner bg-gradient">
<a href="https://www.facebook.com/shivam.abhilash" target="_blank"><i
class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/shivamabhilash/" target="_blank"><i
class="fa fa-instagram"></i></a>
<a href="https://mobile.twitter.com/shivamabhilash"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/shivam-1996/" target="_blank"><i
class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="mi-text">
<h5>Shivam Abhilash</h5>
<span>Vice Chair, IEEE CS SYP</span>
</div>
</div>
<div class="member-item set-bg col-md-3" data-setbg="img/team-member/NitaPatel.png" data-aos="flip-up">
<div class="mi-social">
<div class="mi-social-inner bg-gradient">
<!-- <a href="#" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a> -->
<a href="https://www.linkedin.com/in/nitapatel73" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="mi-text">
<h5>Nita Patel</h5>
<span>President, IEEE CS</span>
</div>
</div>
</div>
<div class="row"> <!-- Second Row -->
<div class="member-item set-bg col-md-3" data-setbg="img/team-member/ArijitHazra.png"
data-aos="flip-up">
<div class="mi-social">
<div class="mi-social-inner bg-gradient">
<!-- <a href="*" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a> -->
<a href="https://www.linkedin.com/in/thinkerarijithajra" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="mi-text">
<h5>Arijit Hazra</h5>
<span>CEO, Think Again Lab</span>
</div>
</div>
<div class="member-item set-bg col-md-3" data-setbg="img/team-member/pratay.jpeg" data-aos="flip-up">
<div class="mi-social">
<div class="mi-social-inner bg-gradient">
<!-- <a href="*" target="_blank"><i
class="fa fa-facebook"></i></a> -->
<!-- <a href="*" target="_blank"><i
class="fa fa-instagram"></i></a> -->
<!-- <a href="#"><i class="fa fa-twitter"></i></a> -->
<a href="https://www.linkedin.com/in/pratyay-mukherjee-77075930" target="_blank"><i
class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="mi-text">
<h5>Pratyay Mukherjee</h5>
<span>Senior Director of Research, SupraOracles</span>
</div>
</div>
<div class="member-item set-bg col-md-3" data-setbg="img/team-member/Sandip.jpeg" data-aos="flip-up">
<div class="mi-social">
<div class="mi-social-inner bg-gradient">
<!-- <a href="#" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a> -->
<a href="https://www.linkedin.com/in/sandip-chakraborty-iitkgp" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="mi-text">
<h5>Sandip Chakraborty</h5>
<span>Prof CSE dept, IIT KGP</span>
</div>
</div>
<div class="member-item set-bg col-md-3" data-setbg="img/team-member/Saptarshi.jpeg" data-aos="flip-up">
<div class="mi-social">
<div class="mi-social-inner bg-gradient">
<!-- <a href="#" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a> -->
<a href="https://www.linkedin.com/in/sapt3" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="mi-text">
<h5>Saptarshi Ghosh</h5>
<span>Design Engg, Intel</span>
</div>
</div>
</div>
<div class="row">
<div class="member-item set-bg col-md-3" data-setbg="" data-aos="flip-up">
<!-- just for space adjustment -->
</div>
<div class="member-item set-bg col-md-3" data-setbg="img/team-member/Sarbani.jpeg"
data-aos="flip-up">
<div class="mi-social">
<div class="mi-social-inner bg-gradient">
<!-- <a href="*" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a> -->
<a href="https://www.linkedin.com/in/sarbani-roy-33986a61" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="mi-text">
<h5>Sarbani Roy</h5>
<span>Prof CSE dept, JU</span>
</div>
</div>
<div class="member-item set-bg col-md-3" data-setbg="img/team-member/Shamik.jpeg" data-aos="flip-up">
<div class="mi-social">
<div class="mi-social-inner bg-gradient">
<!-- <a href="*" target="_blank"><i
class="fa fa-facebook"></i></a> -->
<!-- <a href="*" target="_blank"><i
class="fa fa-instagram"></i></a> -->
<!-- <a href="#"><i class="fa fa-twitter"></i></a> -->
<a href="https://www.linkedin.com/in/shamik-guha/" target="_blank"><i
class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="mi-text">
<h5>Shamik Guha</h5>
<span>CEO, Altor Helmets</span>
</div>
</div>
<!-- <div class="member-item set-bg col-md-3" data-setbg="" data-aos="flip-up">
<div class="mi-social">
<div class="mi-social-inner bg-gradient">
<a href="#" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/nitapatel73" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="mi-text">
<h5>Nita Patel</h5>
<span>Speaker</span>
</div>
</div> -->
</div>
</div>
</section>
<!-- Team Member Section End -->
<!-- Schedule Section Begin -->
<section id="schedule" class="schedule-section spad">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h2>Our Schedule</h2>
<p>Do not miss anything about the event</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="schedule-tab">
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#tabs-1" role="tab">
<h5>Day 1</h5>
<p>December 17, 2022</p>
</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tabs-2" role="tab">
<h5>Day 2</h5>
<p>December 18, 2022</p>
</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tabs-3" role="tab">
<h5>Day 3</h5>
<p>December 19, 2022</p>
</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div class="tab-pane active" id="tabs-1" role="tabpanel">
<div class="st-content">
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="sc-pic">
<img src="img/Timeline/Inaugeration_logo.png" alt="">
</div>
</div>
<div class="col-lg-5">
<div class="sc-text">
<h4>Inaguration</h4>
<p>Welcoming all the delegates and participants to a noteworthy,
educative experience with utmost comfort, luxury and pleasure.
</p>
</div>
</div>
<div class="col-lg-4">
<ul class="sc-widget">
<li><i class="fa fa-clock-o"></i> 10:00 AM - 10:30 AM</li>
<li><i class="fa fa-map-marker"></i> Sun City Resort, Mandarmani
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="st-content">
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="sc-pic">
<img src="img/Timeline/keynote.png" alt="">
</div>
</div>
<div class="col-lg-5">
<div class="sc-text">
<h4>Keynote Speeches</h4>
<p>Keynote speeches: Enjoy three days of inspiring speeches from
various dignitaries and creative minds across the world. </p>
</div>
</div>
<div class="col-lg-4">
<ul class="sc-widget">
<li><i class="fa fa-clock-o"></i> 10:30 AM - 12:30 PM</li>
<li><i class="fa fa-map-marker"></i> Sun City Resort, Mandarmani
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="st-content">
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="sc-pic">
<img src="img/Timeline/Panel_D.png" alt="">
</div>
</div>
<div class="col-lg-5">
<div class="sc-text">
<h4>Panel Discussion</h4>
<p>Panel discussion: Join us for an informative session with
industry experts . </p>
</div>
</div>
<div class="col-lg-4">
<ul class="sc-widget">
<li><i class="fa fa-clock-o"></i> 2:30 PM - 5:00 PM</li>
<li><i class="fa fa-map-marker"></i> Sun City Resort, Mandarmani
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="tabs-2" role="tabpanel">
<div class="st-content">
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="sc-pic">
<img src="img/Timeline/keynote1.png" alt="">
</div>
</div>
<div class="col-lg-5">
<div class="sc-text">
<h4>CS Keynote Speeches</h4>
<p>Computer Society Keynote speeches: Industrial leads addressing
the attendees on the impact of IEEE CS on main scale industry.
</p>
</div>
</div>
<div class="col-lg-4">
<ul class="sc-widget">
<li><i class="fa fa-clock-o"></i> 10:00 AM - 11:00 AM</li>
<li><i class="fa fa-map-marker"></i>Sun City Resort, Mandarmani
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="st-content">
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="sc-pic">
<img src="img/Timeline/Seminar.png" alt="">
</div>
</div>
<div class="col-lg-5">
<div class="sc-text">
<h4>Technology Seminars</h4>
Technology Seminars- Seminars depicting the potentiality of science
and technology in today's world.
</div>
</div>
<div class="col-lg-4">
<ul class="sc-widget">
<li><i class="fa fa-clock-o"></i> 11:30 AM - 2:00 PM</li>
<li><i class="fa fa-map-marker"></i> Sun City Resort, Mandarmani
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="st-content">
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="sc-pic">
<img src="img/Timeline/tech hands on.png" alt="">
</div>
</div>
<div class="col-lg-5">
<div class="sc-text">
<h4>Technology Hands-on</h4>
<p>Technology hands on- Get ready to tap into your own creativity
and replicate a real world experience through technology. </p>
</div>
</div>
<div class="col-lg-4">
<ul class="sc-widget">
<li><i class="fa fa-clock-o"></i> 3:30 PM - 5:30 PM</li>
<li><i class="fa fa-map-marker"></i> Sun City Resort, Mandarmani
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="tabs-3" role="tabpanel">
<div class="st-content">
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="sc-pic">
<img src="img/Timeline/keynote 1.png" alt="">
</div>
</div>
<div class="col-lg-5">
<div class="sc-text">
<h4>SYP Keynote Speech</h4>
SYP Keynote Speech- Oration by SYP delegates on dealing with
interesting topics in diverse technical fields.
</div>
</div>
<div class="col-lg-4">
<ul class="sc-widget">
<li><i class="fa fa-clock-o"></i> 9:30 AM - 10:30 AM</li>
<li><i class="fa fa-map-marker"></i> Sun City Resort, Mandarmani
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="st-content">
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="sc-pic">
<img src="img/Timeline/closing speech.png" alt="">
</div>
</div>
<div class="col-lg-5">
<div class="sc-text">
<h4>Closing Keynote Speeches</h4>
<p>Closing Keynote Speeches: Bringing an end to the grand event by
some Keynote speeches. </p>
</div>
</div>
<div class="col-lg-4">
<ul class="sc-widget">
<li><i class="fa fa-clock-o"></i> 10:30 AM - 11:00 AM</li>
<li><i class="fa fa-map-marker"></i> Sun City Resort, Mandarmani
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="st-content">
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="sc-pic">
<img src="img/Timeline/closing.png" alt="">
</div>
</div>
<div class="col-lg-5">
<div class="sc-text">
<h4>Valedictory Function</h4>
<p>Valedictorian Function: Farewell to this year's event with prize
distribution and Thanksgiving.</p>
</div>
</div>
<div class="col-lg-4">
<ul class="sc-widget">
<li><i class="fa fa-clock-o"></i> 11:00 AM - 11:30 AM</li>
<li><i class="fa fa-map-marker"></i> Sun City Resort, Mandarmani
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Schedule Section End -->
<!-- Pricing Section Begin -->
<section id="pricing" class="pricing-section set-bg spad" style="background-size: cover;position: relative;
overflow: hidden; background-repeat: no-repeat; background-attachment: fixed;" data-setbg="img/pricing-bg.jpg">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h2>Student Registration</h2>
<p>Get your event ticket plan</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-4 col-md-8">
<div class="price-item">
<span id="tnc-trig" onmouseover="mouseOver()" onmouseout="mouseOut()"
style="color: #000; margin-left: -150px;">*Terms and Conditions</span>
<div id="tnc"
style="z-index:19999999; position: relative; background-color: rgb(98, 146, 194); border-radius: 5%; margin-bottom: -250px; display: none; ">
The tickets include hotel rooms, breakfast, lunch, dinner, event tickets, recreational
activities and for the entire 3 days at a 4 Star resort. The pricing has
been heavily subsidised for our participants with over 60% less than normal rates at any
standard luxury retreat. Also, the payment is not required upfront. It’s only necessary if
you get shortlisted for Phase - 2. Please note, submitting this form doesn’t guarantee
selection to Phase - 2 due to the huge volume of applications.
</div>
<h4>Non IEEE Members</h4>
<div class="pi-price">
<h2><span>₹</span> 3500</h2><br>
<!-- <h3 style="color: #fff; size: 1.2 rem;"><s><span>₹</span>3900</s></h3> -->
</div>
<ul class="px-3 pb-3">
<li>Three Days Congress Ticket</li>
<li>Registration Kit,Technical Sessions,Hands-on Workshops</li>
<li>Accomodation (Check-in on 17th December & Check-out on 19th December)</li>
<li>Meals and snacks inclusive of the gala dinner</li>
<li>Access to socials and fun activities</li>
<li>T-shirts, Goodies Registration kit and Networking</li>
<li>Access to various Resort amenities like Pool and Boating (subject to Resort's rules and
regulations)</li>
</ul>
<!-- <a href="#" class="price-btn">Get Ticket <span class="arrow_right"></span></a> -->
</div>
</div>
<div class="col-lg-4 col-md-8">
<div class="price-item">
<span id="tnc-trig1" onmouseover="mouseOver1()" onmouseout="mouseOut1()"
style="color: #000; margin-left: -150px;">*Terms and Conditions</span>
<div id="tnc1"
style="z-index:19999999; position: relative; background-color: rgb(98, 146, 194); border-radius: 5%; margin-bottom: -250px; display: none;">
The tickets include hotel rooms, breakfast, lunch, dinner, event tickets, recreational
activities and for the entire 3 days at a 4 Star resort. The pricing has
been heavily subsidised for our participants with over 60% less than normal rates at any
standard luxury retreat. Also, the payment is not required upfront. It’s only necessary if
you get shortlisted for Phase - 2. Please note, submitting this form doesn’t guarantee
selection to Phase - 2 due to the huge volume of applications.
</div>
<!-- <div class="tr-tag">
<i class="fa fa-star"></i>
</div> -->
<h4>IEEE Members</h4>
<div class="pi-price">
<h2><span>₹</span> 3250</h2><br>
<!-- <h3 style="color: #fff; size: 1.2 rem;"><s><span>₹</span>3500</s></h3> -->
</div>
<ul class="px-3 pb-3">
<li>Three Days Congress Ticket</li>
<li>Registration Kit,Technical Sessions,Hands-on Workshops</li>
<li>Accomodation (Check-in on 17th December & Check-out on 19th December)</li>
<li>Meals and snacks inclusive of the gala dinner</li>
<li>Access to socials and fun activities</li>
<li>T-shirts, Goodies Registration kit and Networking</li>
<li>Access to various Resort amenities like Pool and Boating (subject to Resort's rules and
regulations)</li>
</ul>
<!-- <a href="#" class="price-btn">Get Ticket <span class="arrow_right"></span></a> -->
</div>
</div>
<div class="col-lg-4 col-md-8">
<div class="price-item">
<span id="tnc-trig2" onmouseover="mouseOver2()" onmouseout="mouseOut2()"
style="color: #000; margin-left: -150px;">*Terms and Conditions</span>
<div id="tnc2"
style="z-index:19999999; position: relative; background-color: rgb(98, 146, 194); border-radius: 5%; margin-bottom: -250px; display: none;">
The tickets include hotel rooms, breakfast, lunch, dinner, event tickets, recreational
activities and for the entire 3 days at a 4 Star resort. The pricing has
been heavily subsidised for our participants with over 60% less than normal rates at any
standard luxury retreat. Also, the payment is not required upfront. It’s only necessary if
you get shortlisted for Phase - 2. Please note, submitting this form doesn’t guarantee
selection to Phase - 2 due to the huge volume of applications.
</div>
<h4>IEEE CS Members</h4>
<div class="pi-price">
<h2><span>₹</span> 3000</h2><br>
<!-- <h3 style="color: #fff; size: 1.2 rem;"><s><span>₹</span>3250</s></h3> -->
</div>
<ul class="px-3 pb-3">
<li>Three Days Congress Ticket</li>
<li>Registration Kit,Technical Sessions,Hands-on Workshops</li>
<li>Accomodation (Check-in on 17th December & Check-out on 19th December)</li>
<li>Meals and snacks inclusive of the gala dinner</li>
<li>Access to socials and fun activities</li>
<li>T-shirts, Goodies Registration kit and Networking</li>
<li>Access to various Resort amenities like Pool and Boating (subject to Resort's rules and
regulations)</li>
</ul>
<!-- <a href="#" class="price-btn">Get Ticket <span class="arrow_right"></span></a> -->
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title my-2 py-5">
<h2>Young Professionals Registration</h2>
<p>Get your event ticket plan</p>
</div>
</div>
</div>
<div class="row justify-content-center py-5">
<div class="col-lg-4 col-md-8">
<div class="price-item">
<span id="tnc-trig3" onmouseover="mouseOver3()" onmouseout="mouseOut3()"
style="color: #000; margin-left: -150px;">*Terms and Conditions</span>
<div id="tnc3"
style="z-index: 19999999; position: relative; background-color: rgb(98, 146, 194); border-radius: 5%; margin-bottom: -250px; display: none;">
The tickets include hotel rooms, breakfast, lunch, dinner, event tickets, recreational
activities and for the entire 3 days at a 4 Star resort. The pricing has
been heavily subsidised for our participants with over 60% less than normal rates at any
standard luxury retreat. Also, the payment is not required upfront. It’s only necessary if
you get shortlisted for Phase - 2. Please note, submitting this form doesn’t guarantee
selection to Phase - 2 due to the huge volume of applications.
</div>
<h4 style="font-size: 1.2rem;">Non IEEE YOUNG PROFESSIONALS</h4>
<div class="pi-price">
<h2><span>₹</span> 5000</h2><br>
<!-- <h3 style="color: #fff; size: 1.2 rem;"><s><span>₹</span>5150</s></h3> -->
</div>
<ul class="px-3 pb-3">
<li>Three Days Congress Ticket</li>
<li>Registration Kit,Technical Sessions,Hands-on Workshops</li>
<li>Accomodation (Check-in on 17th December & Check-out on 19th December)</li>
<li>Meals and snacks inclusive of the gala dinner</li>
<li>Access to socials and fun activities</li>
<li>T-shirts, Goodies Registration kit and Networking</li>
<li>Access to various Resort amenities like Pool and Boating (subject to Resort's rules and
regulations)</li>
</ul>
</div>
</div>
<div class="col-lg-4 col-md-8">
<div class="price-item">
<span id="tnc-trig4" onmouseover="mouseOver4()" onmouseout="mouseOut4()"
style="color: #000; margin-left: -150px;">*Terms and Conditions</span>
<div id="tnc4"
style="z-index: 19999999; position: relative; background-color: rgb(98, 146, 194); border-radius: 5%; margin-bottom: -250px; display: none;">
The tickets include hotel rooms, breakfast, lunch, dinner, event tickets, recreational
activities and for the entire 3 days at a 4 Star resort. The pricing has
been heavily subsidised for our participants with over 60% less than normal rates at any
standard luxury retreat. Also, the payment is not required upfront. It’s only necessary if
you get shortlisted for Phase - 2. Please note, submitting this form doesn’t guarantee
selection to Phase - 2 due to the huge volume of applications.
</div>
<h4 style="font-size: 1.2rem;">IEEE YOUNG PROFESSIONALS</h4>
<div class="pi-price">
<h2><span>₹</span> 4500</h2><br>
<!-- <h3 style="color: #fff; size: 1.2 rem;"><s><span>₹</span>4750</s></h3> -->
</div>
<ul class="px-3 pb-3">
<li>Three Days Congress Ticket</li>
<li>Registration Kit,Technical Sessions,Hands-on Workshops</li>
<li>Accomodation (Check-in on 17th December & Check-out on 19th December)</li>
<li>Meals and snacks inclusive of the gala dinner</li>
<li>Access to socials and fun activities</li>
<li>T-shirts, Goodies Registration kit and Networking</li>
<li>Access to various Resort amenities like Pool and Boating (subject to Resort's rules and
regulations)</li>
</ul>
</div>
</div>
<div class="col-lg-4 col-md-8">
<div class="price-item">
<span id="tnc-trig5" onmouseover="mouseOver5()" onmouseout="mouseOut5()"
style="color: #000; margin-left: -150px;">*Terms and Conditions</span>
<div id="tnc5"
style="z-index: 19999999; position: relative; background-color: rgb(98, 146, 194); border-radius: 5%; margin-bottom: -250px; display: none;">
The tickets include hotel rooms, breakfast, lunch, dinner, event tickets, recreational
activities and for the entire 3 days at a 4 Star resort. The pricing has
been heavily subsidised for our participants with over 60% less than normal rates at any
standard luxury retreat. Also, the payment is not required upfront. It’s only necessary if
you get shortlisted for Phase - 2. Please note, submitting this form doesn’t guarantee
selection to Phase - 2 due to the huge volume of applications.
</div>
<h4 style="font-size: 1.2rem;">IEEE CS YOUNG PROFESSIONALS</h4>
<div class="pi-price">
<h2><span>₹</span> 4250</h2><br>
<!-- <h3 style="color: #fff; size: 1.2 rem;"><s><span>₹</span>4500</s></h3> -->
</div>
<ul class="px-3 pb-3">
<li>Three Days Congress Ticket</li>
<li>Registration Kit,Technical Sessions,Hands-on Workshops</li>
<li>Accomodation (Check-in on 17th December & Check-out on 19th December)</li>
<li>Meals and snacks inclusive of the gala dinner</li>
<li>Access to socials and fun activities</li>
<li>T-shirts, Goodies Registration kit and Networking</li>
<li>Access to various Resort amenities like Pool and Boating (subject to Resort's rules and
regulations)</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section End -->
<!-- latest BLog Section Begin -->
<section id="blog" class="latest-blog spad">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h1 style="font-size: 40px;"><b>Event Location</b></h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="section-title">
<h2 style="text-align: left; font-size: 30px;">Sun City Resort</h2>
<p style="text-align: left; font-size: 24px;">Mandarmani</p>
</div>
<div data-aos="fade-right" style="margin-top: -38px;">
<p>Any event can be great by the ambience of the place where it happens. A place
sets
the environment as well as the mood of the participants. Without further ado we bring you
the
venue for the AICSSYC. ‘Suncity Resort Mandarmani’. As it said that the best
lessons
learned are those that are taught outside the four walls of classroom so here we bring you a
whole new beautiful classroom where you can enjoy learning, experience a whole new adventure
and
know many people from all around the country. So join us in this learning vacation revolving
around amazing sunset view, steamy bonfire, placid strolling along the beach, provoking
keynote
speeches, captivating workshops and much more. </p>
</div>
</div>
<div class="col-lg-6">
<div class="latest-item set-bg" data-setbg="img/Venue/2.png" data-aos="flip-right">
<!-- <div class="li-tag">Experience</div>
<div class="li-text">
<h5><a href="./blog-details.html">All users on MySpace will know that there are millions of people out there.</a></h5>
<span><i class="fa fa-clock-o"></i> 19th May, 2019</span>
</div> -->
</div>
<div class="latest-item set-bg" data-setbg="img/Venue/3.png" data-aos="flip-right">
<!-- <div class="li-tag">Marketing</div>
<div class="li-text">
<h5><a href="./blog-details.html">A Pocket PC is a handheld computer, which features many of the same capabilities.</a></h5>
<span><i class="fa fa-clock-o"></i> 19th May, 2019</span>
</div> -->
</div>
</div>
</div>
<iframe class="reveal active"
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d14833.211948712278!2d87.667256!3d21.652068!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x8617e2ecd08a4c2e!2sSun%20City%20Resort%20Mandarmani!5e0!3m2!1sen!2sin!4v1577480038473!5m2!1sen!2sin"
width="600" height="300" frameborder="0"
style="width:100%; border:0px solid #222; background-color: #12114a;" allowfullscreen="">
</iframe>
<div class="jumbotron row location-details" style="background-color: transparent;--bs-gutter-x:0rem;">
<div class="reachlocation-info col-lg-4" data-aos="zoom-out" style="text-align: center;">
<div class="img-box my-2 mt-5" style="font-size: 50px; text-align: center;"><i
class="fa fa-bus fa-gradient" style="font-size: 70px;"></i>
</div>
<span class="sec-title fs-1" style="font-weight: 600;">Nearest Bus Stand</span>
<span class="text fs-3"><br>
Chowlkhola Bus Stand. <br>
Distance: 1.1 km (By auto) <br>
</span>
</div>
<div class="reachlocation-info col-lg-4" data-aos="zoom-out" style="text-align: center;">
<div class="img-box my-2 mt-5" style="font-size: 50px; text-align: center; "><i
class="fa fa-plane fa-gradient" style="font-size: 70px;"></i></div>
<span class="sec-title fs-1" style="font-weight: 600;">
Nearest Airport
</span>
<span class="text fs-3"><br>Kolkata Airport <br>
Distance: 184 km <br>
Time: 3.5 hours <br>
Taxis/Cabs/Buses
</span>
</div>
<div class="reachlocation-info col-lg-4" data-aos="zoom-out" style="text-align: center;">
<div class="img-box my-2 mt-5" style="font-size: 50px; text-align: center;"><i
class="fa fa-train fa-gradient" style="font-size: 70px;"></i></div>
<span class="sec-title fs-1" style="font-weight: 600;">Nearest Railway Station</span>
<span class="text fs-3"> <br>Digha Railway Station <br>
Distance: 34.4 km <br>
Time: 1.5 hours
</span>
</div>
</div>
</section>
<!-- latest BLog Section End -->
<!-- Newslatter Section Begin -->
<!-- <section class="newslatter-section">
<div class="container">