-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcitadel.html
2669 lines (2460 loc) · 140 KB
/
citadel.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link href='http://fonts.googleapis.com/css?family=Josefin+Slab:400,700' rel='stylesheet' type='text/css'>
<meta http-equiv=X-UA-Compatible content="IE=edge" />
<meta name=viewport content="width=device-width,initial-scale=1" />
<link rel="stylesheet" type="text/css" href="css/citadel.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<link rel="stylesheet" type="text/css" href="css/overlay.css" />
<link rel="stylesheet" type="text/css" href="css/style_hover_effect.css" />
<link rel="stylesheet" type="text/css" href="css/grid.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/component1.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script type="text/javascript" src="js/modernizr.custom.29473.js"></script>
<script src="js/modernizr.custom-overlay.js"></script>
<script src="js/modernizr.custom1.js"></script>
<script src="js/modernizr.custom.js"></script>
<style>
.btn-lg {
font-size: 40px !important;
font-weight: bold;
}
</style>
</head>
<body>
<div class="schedule">
<a href="./DAKSH DECA SCHEDULE.docx" target="_blank"><img title="Schedule" src="images/schedule.png" width=100 height=100></a>
</div>
<div class="container">
<div id="loader-wrapper">
<div id="loader"></div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
<div class="st-container">
<input type="radio" name="radio-set" id="st-control-1" checked="checked"/>
<a href="#st-panel-1">Workshops</a>
<input type="radio" name="radio-set" id="st-control-2"/>
<a href="#st-panel-2">Events</a>
<input type="radio" name="radio-set" id="st-control-3"/>
<a href="#st-panel-3">Power Talks</a>
<input type="radio" name="radio-set" id="st-control-4"/>
<a href="#st-panel-4">Sponsors</a>
<input type="radio" name="radio-set" id="st-control-5"/>
<a href="#st-panel-5">Contact</a>
<input type="radio" name="radio-set" id="st-control-6" class="top"/>
<a href="#st-panel-6" class="top">Interns Fair</a>
<input type="radio" name="radio-set" id="st-control-7" class="top"/>
<a href="#st-panel-7" class="top">Strut d'auto</a>
<input type="radio" name="radio-set" id="st-control-8" class="top"/>
<a href="#st-panel-8" class="top">Hospitality</a>
<input type="radio" name="radio-set" id="st-control-9" class="top"/>
<a href="#st-panel-9" class="top">Technotainment</a>
<input type="radio" name="radio-set" id="st-control-10" class="top"/>
<a href="#st-panel-10" class="top">Quiz</a>
<input type="radio" name="radio-set" id="st-control-11" class="top"/>
<a href="#st-panel-11" class="top">Shows</a>
<input type="radio" name="radio-set" id="st-control-12"/>
<a href="#st-panel-12">Brainstorm</a>
<div class="st-scroll">
<section class="st-panel" id="st-panel-1">
<div class="st-deco" data-icon="W"></div>
<h2>Workshops</h2>
<p>
<section class="tt-grid-wrapper">
<ul class="tt-grid tt-effect-3dflip tt-effect-delay">
<a data-href="workshop_ornithopter" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/workshops/orni.png"/>
<div class="mask">
<h2>Ornithopter</h2>
<p>Design is not just what it looks like and feels like; design is how it works.</p>
</div>
</div>
</a>
<a data-href="workshop_bridge_design" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/workshops/bridge_design.png"/>
<div class="mask">
<h2>Bridge Design</h2>
<p>Bring out the words in your books into action.</p>
</div>
</div>
</a>
<a data-href="workshop_spy_botics" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/workshops/bot.png"/>
<div class="mask">
<h2>Spy Botics</h2>
<p>Transcend into the world of Robotics!</p>
</div>
</div>
</a>
<a data-href="workshop_rpi" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/workshops/pi.png"/>
<div class="mask">
<h2>Raspberry Pi</h2>
<p>Master your engineering projects with this wonder board.</p>
</div>
</div>
</a>
<a data-href="workshop_big_data" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/workshops/big.png"/>
<div class="mask">
<h2>Big Data</h2>
<p>A stellar opportunity to comprehend how computational bottlenecks.</p>
</div>
</div>
</a>
</ul>
</section>
</p>
</section>
<section class="st-panel" id="st-panel-2">
<div class="st-deco" data-icon="E"></div>
<!-- <input id="select-type-1" name="radio-set-1" type="radio" onclick="clickedOne()" class="ff-selector-type-1" />
<label for="select-type-1" class="ff-label-type-1">Civil</label>
<input id="select-type-2" name="radio-set-1" type="radio" onclick="clickedTwo()" class="ff-selector-type-2" />
<label for="select-type-2" class="ff-label-type-2">Mechanical</label>
<input id="select-type-3" name="radio-set-1" type="radio" onclick="clickedThree()" class="ff-selector-type-3" />
<label for="select-type-3" class="ff-label-type-3">SCBT</label>
<input id="select-type-4" name="radio-set-1" type="radio" onclick="clickedFour()" class="ff-selector-type-4" />
<label for="select-type-4" class="ff-label-type-4">SEEE</label>
<input id="select-type-5" name="radio-set-1" type="radio" onclick="clickedFive()" class="ff-selector-type-5" />
<label for="select-type-5" class="ff-label-type-5">SOC</label> -->
<h2>
<p>
<section class="tt-grid-wrapper container">
<section class="ff-container">
<input id="select-type-1" name="radio-set-1" type="radio" onclick="clickedOne()" class="ff-selector-type-1" />
<label for="select-type-1" class="ff-label-type-1 btn btn-success btn-lg" style="cursor: pointer;">PRAVARTANA</label>
<input id="select-type-2" name="radio-set-1" type="radio" onclick="clickedTwo()" class="ff-selector-type-2" />
<label for="select-type-2" class="ff-label-type-2 btn btn-success btn-lg" style="cursor: pointer;">YANTRIKA</label>
<input id="select-type-3" name="radio-set-1" type="radio" onclick="clickedThree()" class="ff-selector-type-3" />
<label for="select-type-3" class="ff-label-type-3 btn btn-success btn-lg" style="cursor: pointer;">JIVAZASTRA</label>
<input id="select-type-4" name="radio-set-1" type="radio" onclick="clickedFour()" class="ff-selector-type-4" />
<label for="select-type-4" class="ff-label-type-4 btn btn-success btn-lg" style="cursor: pointer;">SAMAYIKA</label>
<input id="select-type-5" name="radio-set-1" type="radio" onclick="clickedFive()" class="ff-selector-type-5" />
<label for="select-type-5" class="ff-label-type-5 btn btn-success btn-lg" style="cursor: pointer;">SAGGANITRA</label>
<div class="clr"></div>
<ul class="tt-grid tt-effect-3dflip tt-effect-delay ff-items">
<div id="type1">
<li class="ff-item-type-1">
<a data-href="civil_bridge_of_spies" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/bridge.png"/>
<div class="mask">
<h2>Bridge of Spies</h2>
<p>History goes hand in hand with construction.</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-1">
<a data-href="civil_water_bearer" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/water.png"/>
<div class="mask">
<h2>Water Bearer</h2>
<p>Water, the elixir of life is available in abundance.</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-1">
<a data-href="civil_clash_of_civilians" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/clash.png"/>
<div class="mask">
<h2>Clash of Civilians</h2>
<p>Dare to cascade your adroitness in recon surveying, geotechnology, planning and estimation.</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-1">
<a data-href="civil_crucible" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/crucible.png"/>
<div class="mask">
<h2>Crucible</h2>
<p>Crucible gets the maven in you up and running.</p>
</div>
</div>
</a>
</li>
</div>
<div id="type2">
<li class="ff-item-type-2">
<a data-href="mechanical_manual_robotics" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/manualrob.png"/>
<div class="mask">
<h2>Manual Robotics</h2>
<p>Ever felt the need to hire a replacement for your chores?</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-2">
<a data-href="mechanical_cobots" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/autonmsrob.png"/>
<div class="mask">
<h2>CoBots</h2>
<p>Fabricate your line follower and gouge out to your designation.</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-2">
<a data-href="mechanical_chassis_design" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/fixdesign.png"/>
<div class="mask">
<h2>Chassis Design</h2>
<p>Get to your nerves and flaunt to the world your exquisite prototype.</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-2">
<a data-href="mechanical_robo_sumo" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/robosumo.png"/>
<div class="mask">
<h2>Robo Sumo</h2>
<p>Gather up your guts and remember that only the fittest survive!</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-2">
<a data-href="mechanical_ornithoper" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/workshops/orni.png"/>
<div class="mask">
<h2>Ornithoper</h2>
<p>This one is unique on its own</p>
</div>
</div>
</a>
</li>
</div>
<div id="type3">
<li class="ff-item-type-3">
<a data-href="scbt_amalgam" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/biom.png"/>
<div class="mask">
<h2>Amalgam</h2>
<p>This is an event to test your grey matter on several streams of biology.</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-3">
<a data-href="scbt_behavorial_sciences" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/beha.png"/>
<div class="mask">
<h2>Behavioral Sciences</h2>
<p>A juncture to bring out all your notions of what’s normal and what’s not!</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-3">
<a data-href="scbt_forensics" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/paleo.png"/>
<div class="mask">
<h2>Forensics</h2>
<p>You can be the next chief of Crime Scene Investigation and expound queer cases on your way!</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-3">
<a data-href="scbt_biomimicry" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/agri.png"/>
<div class="mask">
<h2>Biomimicry</h2>
<p>Have you ever dreamt of guarding your city from external invasions?</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-3">
<a data-href="scbt_heat_exchanger" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/untitled.png"/>
<div class="mask">
<h2>Heat Exchanger</h2>
<p>Transfer heat and smash the turmoil.</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-3">
<a data-href="scbt_chemkwik" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/chem.png"/>
<div class="mask">
<h2>ChemKwik</h2>
<p>Never miss the fun and frolic of Chemical trivia.</p>
</div>
</div>
</a>
</li>
</div>
<div id="type4">
<li class="ff-item-type-4">
<a data-href="seee_glow_green" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/green.png"/>
<div class="mask">
<h2>Glow Green</h2>
<p>Keep up the motto to create a green and clean environment.</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-4">
<a data-href="seee_trap_the_glitch" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/mpmc.png"/>
<div class="mask">
<h2>Trap the Glitch</h2>
<p>Are you good at troubleshooting rather than building circuits?</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-4">
<a data-href="seee_rig_up_real" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/realworld.png"/>
<div class="mask">
<h2>Rig Up Real</h2>
<p>Unleash the electronic potential in you!</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-4">
<a data-href="seee_micromatch" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/debug.png"/>
<div class="mask">
<h2>MicroMatch</h2>
<p>Do real time computing constraints bother you?</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-4">
<a data-href="seee_jammer" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/jammer.png"/>
<div class="mask">
<h2>Jammer</h2>
<p>Force your signal above the rest and watch the signals deviate from their frequency bands!</p>
</div>
</div>
</a>
</li>
</div>
<div id="type5">
<li class="ff-item-type-5">
<a data-href="soc_android_connect" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/android.png"/>
<div class="mask">
<h2>Android Connect</h2>
<p>Why let the idea sit there idle and float through your mind?</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-5">
<a data-href="soc_node_connect" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/nodeconnect.png"/>
<div class="mask">
<h2>Node Connect</h2>
<p>Assess your interest in the world of Networking and master the art of cryptography.</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-5">
<a data-href="soc_agolopedia" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/algo.png"/>
<div class="mask">
<h2>Agolopedia</h2>
<p>Complex problems and puzzles? This is your absolute fit.</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-5">
<a data-href="soc_dope" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/dope.jpg"/>
<div class="mask">
<h2>Daksh Online Programming Event (DOPE)</h2>
<p>Cpmpetitive programming that's driving all those young, coding minds crazy.</p>
</div>
</div>
</a>
</li>
<li class="ff-item-type-5">
<a data-href="soc_juspay_connect" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/events/juspay.png"/>
<div class="mask">
<h2>Juspay Master Mind</h2>
<p>Discover in-built entrepreneur, developer and managing skills in you</p>
</div>
</div>
</a>
</li>
</div>
</ul>
</section>
</section>
</p>
</h2>
</section>
<section class="st-panel" id="st-panel-3">
<div class="st-deco" data-icon="P"></div>
<h2>Power Talks</h2>
<p>
<section class="tt-grid-wrapper">
<ul class="tt-grid tt-effect-3dflip tt-effect-delay">
<a data-href="power_talk_girish" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/power_talks/girish.webp"/>
<div class="mask">
<h2>Girish Mathrubootham</h2>
<p>Passionate entrepreneur and a paradigm of entrepreneurship</p>
</div>
</div>
</a>
<a data-href="power_talk_pawan" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/power_talks/pawan.png"/>
<div class="mask">
<h2>Pawan Agarwal</h2>
<p>CEO of The Mumbai Dabbawalas</p>
</div>
</div>
</a>
<a data-href="power_talk_ramakrishnan" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/power_talks/ram.png"/>
<div class="mask">
<h2>H. Ramakrishnan</h2>
<p>Master your engineering projects with this wonder board.</p>
</div>
</div>
</a>
<a data-href="power_talk_ramesh" class="trigger-overlay" href="#">
<div class="view view-third">
<img src="images/power_talks/ramesh.png"/>
<div class="mask">
<h2>B.N. Ramesh</h2>
<p>I.P.S. Addl DGP, West Bengal and Former Director, CRPF Academy</p>
</div>
</div>
</a>
</ul>
</section>
</p>
</section>
<section class="st-panel" id="st-panel-4">
<div class="st-deco" data-icon="S"></div>
<div class="sponsors">
Title sponsor <br>
<center>
<img src="images/sponsors/freshdesk.png"/>
</center>
Co sponsors <br>
<center>
<img src="images/sponsors/TCS.png"/>
<img src="images/sponsors/TVS.jpg"/>
</center>
Associate Sponsors<br>
<center>
<img src="images/sponsors/aruba.png"/>
<img src="images/sponsors/hp.png"/>
<img src="images/sponsors/4.png" width="300"/>
</center>
Happiness Partner<br>
<center>
<img src="images/sponsors/Coca-Cola.png"/>
</center>
Sound partner
<center>
<img src="images/sponsors/zebronics.png"/>
</center>
Study abroad partner
<center>
<img src="images/sponsors/els.png"/>
</center>
Training partner
<center>
<img src="images/sponsors/uniq.png"/>
</center>
Television partner
<center>
<img src="images/sponsors/news-7.png"/>
</center>
Educational partner
<center>
<img src="images/sponsors/byju.png"/>
</center>
Student partner
<center>
<img src="images/sponsors/magoosh.png"/>
<img src="images/sponsors/princeton-review.png"/>
</center>
Stationary sponsor
<center>
<img src="images/sponsors/itc.png" width="200">
</center>
Hospitality sponsor
<center>
<img src="images/sponsors/Canopy.png" width="300" height="300"/>
</center>
RADIO PARTNER
<center>
<img src="images/sponsors/suryan-fm.png"/>
</center>
Cluster sponsor
<center>
<img src="images/sponsors/juspay.png"/>
</center>
Internsfair partner
<center>
<img src="images/sponsors/lets-intern.png"/>
</center>
Other sponsors
<center>
<img src="images/sponsors/1.png"/>
<img src="images/sponsors/2.png"/>
<img src="images/sponsors/3.png"/>
<img src="images/sponsors/red-fox.png"/>
<img src="images/sponsors/lemon-tree.jpg"/>
</center>
<br>
<br>
<br>
</div>
</section>
<section class="st-panel" id="st-panel-5">
<div class="st-deco" data-icon="C"></div>
<h2>Contact</h2>
<div class="contact-container">
<!-- Top Navigation -->
<section class="color-5">
<nav class="cl-effect-19">
<a href="#"><span data-hover="+91-7373763219 [email protected]"><b>Mayurri PK</b><br><br><i>Student Co-ordinator</i></span></a>
</nav>
<nav class="cl-effect-19">
<a href="#"><span data-hover="+91-9659775251 [email protected]"><b>Vidhyasahar T</b><br><br><i>Student Chairman</i></span></a>
</nav>
<nav class="cl-effect-19">
<a href="#"><span data-hover="+91-9962900126; +91-9443656317; [email protected]"><b>Naren<br>Subanya T</b><br><br><i>Public Relations</i></span></a>
<a href="#"><span data-hover="+91-95663 56614; +91-94875 31232; [email protected]"><b>Teja Devisetti<br>Sanjay Bhat</b><br><br><i>Marketing</i></span></a>
<a href="#"><span data-hover="+91-97912 70580; +91-77085 40979; [email protected]"><b>Lavanya Nemani<br>Sravan T S R</b><br><br><i>Corporate Relations</i></span></a>
<a href="#"><span data-hover="+91-8870029004; +91-8220439896; [email protected]"><b>Chandramouli R<br>Gayathri Mounika</b><br><i>Promotions and Publicity</i></span></a>
<a href="#"><span data-hover="+91-97912 92301; +91-97916 63546; [email protected]"><b>Pranay Bhaskar K<br>Dhanya S</b><br><br><i>Hospitality</i></span></a>
<a href="#"><span data-hover="+91-97890 58726; +91-91763 22968; [email protected]"><b>Drishtii Jaisingh<br>Sai Varun K V</b><br><br><i>Workshops</i></span></a>
<a href="#"><span data-hover="+91-81109 16330; +91-78455 20903; [email protected]"><b>Sai Swaroop<br>Shanthi</b><br><br><i>Logistics and Infra</i></span></a>
<a href="#"><span data-hover="+91-89036 09840; +91-74020 28335; [email protected]"><b>Natraj<br>Uma K</b><br><br><i>Merchandise</i></span></a>
<a href="#"><span data-hover="+91-99525 82982; +91-95662 65560; [email protected]"><b>Irfan Ansari<br>Mahalakshmi K</b><br><br><i>Arts</i></span></a>
<a href="#"><span data-hover="+91-97912 15517; [email protected] "><b>Tarun Subash</b><br><br><br><i>Design</i></span></a>
<a href="#"><span data-hover="+91-97906 17562; +91-94422 93020; [email protected]"><b>Vignesh R<br>Gayathri A</b><br><br><i>Technotainment</i></span></a>
<a href="#"><span data-hover="+91-80989 53530; +91-94880 37673;"><b>Shruthy<br>Suppraja R</b><br><br><i>Interns Fair</i></span></a>
<a href="#"><span data-hover="+91-90439 37991; +91-98658 76534; [email protected]"><b>Suchithra S<br>Nalin Narayan<br>VP Srividya</b><br><i>Media</i></span></a>
<a href="#"><span data-hover="+91-9655881353; [email protected]"><b>Krishna kumar.R</b><br><i><br>Travel and Guest hospitality</i></span></a>
<a href="#"><span data-hover="+91-8807808294;"><b>P S Vishnu</b><br><br><i><br>Crowd Control</i></span></a>
<a href="#"><span data-hover="+91-9444608661; +91-9445843215; [email protected]"><b>MVM Subbiah<br>Kaushik V</b><br><br><i>Web Masters</i></span></a>
</nav>
</section>
</div>
</section>
<section class="st-panel" id="st-panel-6">
<div class="st-deco" data-icon="I"></div>
<h2>Interns Fair</h2>
<div>
<p class="content" align="justify">
Have you ever thought how would it be when your career and passion comes together? If you have, then opportunities are at your doorstep! Internships take up a decisive role in shaping the professional career. “LET’S INTERN” is one of the top rated internships platform that give wings to the imagination and skills of students. It has successfully been hiring people for about 25,000 companies to kick start their corporate career. Have not a second thought to join this purposeful venture where you can find the finest of companies being ready to offer internships! The thirst for knowledge is never less- so wrap up your resumes and get ready to face the challenge!
<br />
<br />
<br>
Contact:<br>
Hariharan:8015024646<br>
Suppraja:9488037673
<br>
<b>For more details:</b> <a href="http://www.letsintern.com/" target="_blank">www.letsintern.com </a>
<br><BR>
<button class="register_button_intern" color="blue">Register</button>
<br><br><br><br>
</p>
</div>
</section>
<section class="st-panel" id="st-panel-7">
<div class="st-deco" data-icon="S"></div>
<h2>Strut d'auto</h2>
<p class="content" style="left:8%;width:84%;">
The sound of a car engine revving up, the uniqueness of automotive engineering and the sheer beauty of its design is staggering. They say a car isn't just a vehicle, it’s an emotion and the person driving it develops a relationship with it. Be it any type of car, the love for cars in general doesn’t run out of fuel. For the all those gear heads and car enthusiasts Daksh DECA presents you "Strut d'auto" from Feb 19 to 21 powered by ‘TATA Motors’ at SASTRA University for the first time ever where you can witness these marvels taking up the stage at the exclusive and elegant auto - expo!! Deck out to see your dream limousines stand before you!
<br />
<br />
<b>Contact:</b><br /> Krishna Kumar: +91 96558 81353
<br>
<br>
Exhibitors
<br>
<img src="images/auto_expo/ae spons.jpg" width="1550">
</p>
</section>
<section class="st-panel" id="st-panel-8">
<div class="st-deco" data-icon="H"></div>
<p>
<div class="hospitality-form">
<a class="overlay-close" onClick="closeMessage()">Close</a>
<form class="hform" method="post" action="#">
<h2>Hospitality Registration</h2><br>
<input type="text" name="hname" id="hname" placeholder="Your Name" class="inputs">
<select style="font-family: 'Ruda', sans-serif; color: #0e83cd; font-size: inherit; background: 0 0; width: 100%; cursor: pointer; padding: 10px; display: block; margin: 15px 10px; letter-spacing: 1px; font-weight: 400; outline: 0; position: relative;" type="text" placeholder="Dept" id="hdepartment" name="hdepartment">
<option selected="selected" style="display:none;">Select Department</option>
<option value="ECE">B.tech ECE</option>
<option value="EEE">B.tech EEE</option>
<option value="EIE">B.tech EIE</option>
<option value="CSE">B.tech CSE</option>
<option value="ICT">B.tech ICT</option>
<option value="IT">B.tech IT</option>
<option value="BioInfo">B.tech Bio Info</option>
<option value="BioTech">B.tech Bio Tech</option>
<option value="BioEngg">B.tech Bio Engineering</option>
<option value="Chemical">B.tech Chemical</option>
<option value="Mechanical">B.tech Mechanical</option>
<option value="Mechatronics">B.tech Mechatronics</option>
<option value="Civil">B.tech Civil</option>
<option value="B.Sc">B.Sc</option>
<option value="M.B.A">M.B.A</option>
<option value="B.A">B.A</option>
<option value="others">Others</option>
</select>
<select style="font-family: 'Ruda', sans-serif; color: #0e83cd; font-size: inherit; background: 0 0; width: 100%; cursor: pointer; padding: 10px; display: block; margin: 15px 10px; letter-spacing: 1px; font-weight: 400; outline: 0; position: relative;" type="text" placeholder="Year" id="hyear" name="hyear">
<option value="1st year">1st year</option>
<option value="2nd year">2nd year</option>
<option value="3rd year">3rd year</option>
<option value="4th year">4th year</option>
<option value="5th year">5th year</option>
</select>
<input type="text" name="hphone" id="hphone" placeholder="Your Contact Number" onkeyup="checkInput(this)" class="inputs">
<input type="email" name="hemail" id="hemail" placeholder="Your Email Address" class="inputs">
<input type="text" name="hcity" id="hcity" placeholder="City" class="inputs">
<input type="text" name="hplace" id="hplace" placeholder="College You Study" class="inputs">
<center><input type="button" name="registerHospitality" id="registerHospitality" value="Register" class="register_button"></center>
</form>
</div>
</p>
</section>
<section class="st-panel" id="st-panel-9">
<div class="st-deco" data-icon="T"></div>
<h2>Technotainment</h2>
<p class="content">
At the end of the day ,fun and happy moments
with friends are the ones to cherish.Daksh deca comforts
you to live these moments by lacing technology with
entertainment for the ulmitae gusto.
Show up to have some fun,create vivid memories and exhibit
your talents to tip yourself with some bounties.<br>
Contact information:<br>Vignesh R:9790617562<br>
Gayathri:8056618180<br><br>
<font color="blue"><b>Daksh Idol</b></font><br>
The ability to be unique lingers in the heart of every
freshman. But the guts to stand out from the crowd is a
rarely possessed feature. We @ Daksh recognise this and
provide you with a stage to exercise them, "DAKSH IDOL".
You don't have to be the king of things but just a jack of
few. Be a part of SASTRA's biggest talent hunt and be
smart enough to win a
smartphone.<br><br>
<!-- <img src="images/stars.jpg" width="500"><br><br> -->Hariharan:8015024646<br><br>
<font color="blue"><b>Connexions</b></font><br>
It looks obscure and vacant with only the dots
but when you connect them you get the clear picture of
what it really is.Humans have the inherent capacity and
intelligence of mapping the ambiguous information into
something significant.Come,connect and put the synapses of
your neurons to test !!!<br><br>
<!-- <img src="images/Connexions_comp.png" width="500"><br><br> -->
Kishore:8015670875<br> Pavithra:9789346790<br><br>
<font color="blue"><b>Dark thrones</b></font><br>
"Let us step into the night and pursue that flightly
temptress,adventure!" -J.K.Rowling<br>
When you least expect it ,the adventure finds you.Protect
your empire,conquer other kingdoms,the battle ground has
been set! When strategy fails,luck comes to the rescue
.This exhilarating game of wits challenges you to be the
ultimate king/queen of the Dark Thrones"<br><br><!-- <img src="images/Dark Thrones_comp.png" width="500"><br><br> -->
Harshith:8754681794<br> Nethra:7708422547<br><br>
<font color="blue"><b>Sherlock</b></font><br>
Enter the world of gluity & glamour.A constant
presence in the world of tabloids,you are now part of what
is to be a catastrophe.Your only chance of survival is to
solve the crime scene and ask for the last parachute on
board.Participate and put your detective skills to test.Get
Sherlocked !!! <br><br>
<!-- <img src="images/Sherlock_comp.png" width="500"><br><br> -->
Swetha:9894079890<br>Shrinedhi:7708478278<br><br>
<font color="blue"><b>Trampoline</b></font><br>
" The harder you
fall the, higher you bounce "<br>
Trampolines not only teach us this fact
of life but more importantly they are a source of fun for
people of all ages.Bring back the child in you with your wings
spread and laugh out loud as you jump up and down the
trampoline.Let's put a smile on your face :)<br><br>
<font color="blue"><b>Oculus Rift</b></font><br>
The possibilities of science and technology
are endless and it continues to amaze us everytime with
something new which is totally unexpected.Oculus is one such
invention which makes it possible to experience
anything,anywhere through virtual reality.Daksh deca
presents you the opportunity to know what it feels like to
use this head-mounted display and know everything around
you !!
<br><br>
<font color="blue"><b>Air Gun</b></font><br>
Guns and rifles can be a boon or a bane but its just
a matter of who has it ,the good or the evil.Shooting is a
handy skill that can be the difference between becoming a
superhero or a victim .So keep calm,reload,Aim and shoot
again.<br><br>
<font color="blue"><b>Archery</b></font><br>
Nothing clears a troubled mind better than shooting
a bow.Aiming a bow and arrow is a exercise which can teach
us patience,composure and concentration more than any
other activity.Know your target and hit them to become the
Arjuna of the past or the Stephen Amell of today. <br><br><br>
</p>
</section>
<section class="st-panel" id="st-panel-10">
<div class="st-deco" data-icon="Q"></div>
<h2>Quiz</h2>
<p class="content">
Quiz has always been an intellect’s religion. DAKSH DECA, in association with Atharva, the quiz club of IIM-Kozhikode powered by Zebronics have come up with 'Spardha – The Daksh Quiz’. This time being the tenth edition of DAKSH, 'Spardha' has spun out across 10 major cities covering most of South India namely Chennai, Bangalore, Hyderabad, Pune, Calicut, Vellore, Coimbatore, Madurai, Guntur and Thanjavur.
With minimum of 50 teams in each regionals, Spardha has now crowned in the quizzing arena. The finalists from each regionals are handpicked to attend the finals which is to be held during DAKSH at SASTRA University.
<br />
<br />
<b>Contact:</b><br /> Koustav Das: +91 72991 04682<br>
<img src="images/sponsors/zebronics.png"/>
<br>
<br>
<br>
</p>
</section>
<section class="st-panel" id="st-panel-11">
<div class="st-deco" data-icon="S"></div>
<h2>Shows</h2>
<p class="content">
<font color="blue"><b>Skeleton dance Crew</b></font><br> "Technology over time becomes an art"
But how cool it is to blend the art of dance and amalgamate it with the technology of radium lights?The Skeleton dance crew of India's GOT talent fame with their skeleton costumes and flawless use of light combined with dance forms such as Popping ,Boying,locking,waving and breaking are a thourough entertainment option.This crew with their 'Tron act' and unerring sense of timing have continued to amaze audiences and keep them spellbound right to the end.<br><br><img src="images/skeleton.jpg" width="600" height="300"><br><br><br>
<font color="blue"><b>Laser Man</b></font><br>
We all like treats,don't we?That is why Daksh deca brings 'The Laserman Show' to bestow us with a visual treat for the audience .Laserman with manipulated laser beams and complex 3D effects are a complete 'Wow factor' for the spectators.This laserhero breaks the conventional and crosses the boundaries with innovativeness,illusion and professionalism . <br> <br><img src="images/laser.jpg" width="400" height="500"><br><br><br>
</p>
</section>
<section class="st-panel" id="st-panel-12">
<div class="st-deco" data-icon="B"></div>
<h2>Brain Storm</h2>
<p class="content">
<font color="blue"><b>Mathrunner by Math Club @ Sastra</b></font><br>
<br>"Pure Mathematics is in its way, the poetry of logical ideas" -Albert Einstein<br>
Put your cerebrum to the litmus test and unsnarl the mathematical artistry to gloss out various conundrum. Dry run your basic math envision and race against time.. Get ready to drain out your grey cells in this battle of numbers and quandary.. Don your logical cloak and drill out the best in you !!!<br><br>
<font align="left"><i>ROUND 1</i>:
Basic math and calculations test within specific time limit.<br><br>
<i>ROUND 2</i>:
Three tasks to be completed based on time, orientating real-time objects to geometrical perception, solving hints and deducing results.<br><br>
<i>ROUND 3</i>:
Surprise round.<br><br></font>
The mathematical and logical abilities of the shortlisted students from the previous round are tested at a higher level than.
<br>Based on the overall performance, two winners are rewarded with exciting cash prizes.<br><br>Contact: Sindhuja: 8056917284<br><br><br>
<font color="blue"><b>Idea/Paper Presentation</b></font><br>
<br>Every second, technology takes a drastic turn inciting new ideas. A thought this second may be a history the next moment. Are you the next brainiac yearning to contribute to this timeless timeline? Here DAKSH presents you the perfect stand to present your ideas.<br><br>
*Exhibit your ideas in an abstract with not more than 150 words to be submitted on or before 14th February(by 11:59 pm)<br><br>
*The shortlisted candidates are expected to give a detailed PowerPoint presentation(if possible with a working model or a simulation) in front of experts in the respective fields
<br><br>*Topics are open to all engineering domains!! Come give it a shot
<br><br>*Maximum of two members per team. Send your abstracts as an attachment in PDF format, along with your name, college name, phone no, email id
<br><br>Email:[email protected]
<br><br>Contact: Kalyan- 8754684663
<br><br><br>
</p>
</section>
</div>
</div>
</div>
<!-- Workshops -->
<div id="workshop_ornithopter" class="overlay overlay-scale">
<a class="overlay-close">Close</a>
<h2>Ornithopter</h2>
<p>“Design is not just what it looks like and feels like; design is how it works”</p><br>
<p>Fascinated by the marvels of aerodynamics? Unearth the Leonardo Da Vinci in you and soar to greater heights with your very own nimbly crafted aircrafts. Experience the art of pioneering an ORNITHOPTER and glide all the way to your destination. This workshop gives you an insight on the concepts and principles involved in the aerodynamics of an ORNITHOPTER and sure to make you airborne. So, what’s the wait? This is your best chance to imitate the nature. Underpin your mastery of fabrication and put your prototype to test!</p>
<div class="big_text">CONDUCTED BY : </div>
<p>Aerotrix (http://www.aerotrix.com/events/ornithopter-workshop-in-sastra-univ-2694)</p>
<br>
<div class="big_text">DATE : </div>
<p>19th – 20th February, 2016.</p>
<br>
<div class="big_text">PARTICIPANTS : </div>
<p>2 per team.</p>
<br>
<div class="big_text">COST : </div>
<p>INR 1980/- per team. (INR 990 per participant)</p>
<br>
<div class="big_text">Participants will be made to work in teams of 2 in the workshop. 1 kit per team will be given during the workshop which is take-home for participants.</div>
<br>
<div class="big_text">Course Outcomes</div>
<ul>
<li align="left">Certification from Ornithopter Zone,</li>
<li align="left">Build and test your own rubber-powered Ornithopter.</li>
<li align="left">Understand the principles of Flight of a bird.</li>
<li align="left">Design a mechanism that imitates a Bird</li>
<li align="left">Competition for Longest Flight</li>
</ul>
<div class="big_text">Course Structure and Topics Covered</div>
<div class="big_text">Theory:</div>
<ul>
<li align="left">Basics of Aerodynamics and flapping-wing flight.</li>
<li align="left">History of Ornithopters.</li>
<li align="left">Types of flapping-wing aircraft.</li>
<li align="left">Understanding the mechanisms involved in design of flapping-wing flight.</li>
<li align="left">Theory behind designing a Radio Controlled Ornithopter.</li>
</ul>
<div class="big_text">Theory:</div>
<ul>
<li align="left">Design own rubber-powered Ornithopter from scratch.</li>
<li align="left">Ornithopter Fabrication sessions.</li>
<li align="left">Test flight /competition session.</li>
</ul>
<div class="big_text">Contact Details:</div>
<ul>
<li align="left">Drishtii Jaisingh - 9789058726</li>
<li align="left">Elangkumaran - 7708474361</li>
</ul>
<center>
<button class="register_button_workshops" value="Ornithopter" id="Ornithopter" onClick="wclic(this)">Register</button>
</center>
</div>
<div id="workshop_bridge_design" class="overlay overlay-scale">
<a class="overlay-close">Close</a>
<h2>Bridge Design</h2>
<p>Stretch your horizon longer and delve deep into the realm of Civil Engineering. Before embarking on to your career, there is a thriving need for all budding Civil Engineers to have meticulous craftsmanship. Rome was not built in a day but you can build your very own ‘Ponte Vicchio’ in a day. Daksh is all set to offer you an enthralling experience to bring out your creativity. The participant gets to enhance his proficiency in applying the concepts of mechanics to bring his very own bridge into existence. Bring out the words in your books into action. You may see your dream journey come true as the blocks fall into place!</p>
<div class="big_text">CODUCTED BY : </div>
<p>CODUCTED BY : Civil Simplified (http://www.civilsimplified.com/events/civil-engg-workshop-in-sastra-univ-2692)</p>
<br>
<div class="big_text">DATE : </div>
<p>19th – 20th February, 2016.</p>
<br>
<div class="big_text">PARTICIPANTS : </div>
<p>2 per team.</p>
<br>
<div class="big_text">COST : </div>
<p>INR 2350/- per team. (INR 1175 per participant)</p>
<br>
<div class="big_text">Participants will be made to work in teams of 2 in the workshop. 1 kit per team will be given during the workshop which is take-home for participants.</div>
<br>
<div class="big_text">Course Highlights</div>
<ul>
<li align="left">Design, Fabricate and Test your own Bridge</li>
<li align="left">Exposure to new technologies involved in Bridge Engineering</li>
<li align="left">Understanding the concepts of different Bridges with case studies</li>