-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
1725 lines (1546 loc) · 111 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="en-US" dir="ltr">
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- ===============================================-->
<!-- Document Title-->
<!-- ===============================================-->
<title>SIAM-JUIT</title>
<link rel="shortcut icon" href="assets/img/black1.ico">
<!-- ===============================================-->
<!-- Favicons-->
<!-- ===============================================-->
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicons/favicon-16x16.png">
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicons/favicon.ico">
<link rel="manifest" href="https://prium.github.io/reign-IV/v5.0.0/assets/img/favicons/manifest.json">
<meta name="msapplication-TileImage" content="assets/img/favicons/mstile-150x150.html">
<meta name="theme-color" content="#ffffff">
<script src="vendors/overlayscrollbars/OverlayScrollbars.min.js"></script>
<meta name="theme-color" content="#ffffff">
<script src="vendors/overlayscrollbars/OverlayScrollbars.min.js"></script>
<!-- ===============================================-->
<!-- Stylesheets-->
<!-- ===============================================-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link href="vendors/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="assets/css/theme.min.css" rel="stylesheet"/>
<link href="assets/css/user.min.css" rel="stylesheet"/>
<link href="assets/css/fa.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com/">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin="">
<link href="https://fonts.googleapis.com/css2?family=Arvo:wght@100;200;300;400;500;600;700;900&family=Montserrat:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<style>
.nav-item{
width: 100%;
height: 100%;
text-align: left;
}
</style>
</head>
<body data-bs-spy="scroll" data-bs-target="#navbar-one-page" data-bs-offset="66.1">
<!-- ===============================================-->
<!-- Main Content-->
<!-- ===============================================-->
<main class="main" id="top">
<nav class="navbar navbar-expand-lg navbar-dark navbar-theme fixed-top py-0" data-navbar-on-scroll="data-navbar-on-scroll">
<div class="container"><a class="navbar-brand fw-normal ls-2" href="#"><img class="logo-siam" src="assets/img/black2.png"></a>
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto" id="navbar-one-page">
<li class="nav-item"><a class="nav-link" href="#about-us"> <span class="nav-link-text">About</span></a></li>
<li class="nav-item"><a class="nav-link" href="#announce"> <span class="nav-link-text">Announcements</span></a></li>
<li class="nav-item"><a class="nav-link" href="#events"> <span class="nav-link-text">Events</span></a></li>
<!--
<li class="nav-item"><a class="nav-link" href="#portfolio"> <span class="nav-link-text">Portfolio</span></a></li>
-->
<li class="nav-item"><a class="nav-link" href="#team"><span class="nav-link-text">Team</span></a></li>
<li class="nav-item"><a class="nav-link" href="assets/docs/Rules of Procedure SIAM JUIT.pdf" target="_blank"><span class="nav-link-text">ROP</span></a></li>
<li class="nav-item" style="white-space: nowrap;"><a class="nav-link" href="founding_officers.html" target="_blank"><span class="nav-link-text">FOUNDING OFFICERS</span></a></li>
<!--<li class="nav-item"><a class="nav-link" href="#blog"><span class="nav-link-text">Article</span></a></li>-->
<li class="nav-item"><a class="nav-link" href="#contact"><span class="nav-link-text">Contact</span></a></li>
</ul>
</div>
</div>
</nav>
<section class="text-center overflow-hidden py-0" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="bg-holder overlay overlay-2 parallax" style="background-image:url(assets/img/headers/header1.jpg);" data-rellax-percentage="0.5"></div>
<!--/.bg-holder-->
<div class="header-overlay"></div>
<div class="container">
<div class="d-flex flex-center vh-100">
<div class="header-overlay"></div>
<div class="header-text">
<div class="overflow-hidden">
<h1 class="display-3 text-white fs-5 fs-md-7" data-zanim-xs='{"duration":2,"delay":0}'>SIAM JUIT</h1>
</div>
<div class="overflow-hidden">
<p class="text-uppercase text-400 ls-3 mt-2" data-zanim-xs='{"duration":2,"delay":0.1}'>SOCIETY FOR INDUSTRIAL AND <br class="d-block d-md-none"> APPLIED MATHEMATICS </p>
</div>
<div data-zanim-xs='{"from":{"opacity":0,"y":30},"to":{"opacity":1,"y":0},"duration":1.5,"delay":0.5}'><a class="btn btn-sm btn-outline-light hvr-sweep-top mt-5 px-4" href="#about-us">A JUIT Student Chapter</a></div>
</div>
</div>
<div class="header-indicator-down"><a class="indicator indicator-down opacity-75" href="#about-us"><span class="indicator-arrow indicator-arrow-one" data-zanim-xs='{"from":{"opacity":0,"y":30},"to":{"opacity":1,"y":0},"ease":"Back.easeOut","duration":1,"delay":1.5}'></span></a></div>
</div>
</section>
<!-- ============================================-->
<!-- <section> begin ============================-->
<section class="pt-3 pt-lg-5 pb-6 pb-lg-8 text-center" style="scroll-margin-top:-25px" id="about-us">
<div class="container">
<div class="row mb-4" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="col">
<div class="overflow-hidden">
<h2 class="fs-sm-5 mb-2" data-zanim-xs='{"duration":0.5,"delay":0}'>about us</h2>
</div>
<div class="overflow-hidden">
</div>
<div class="overflow-hidden">
<hr class="hr-short border-black" data-zanim-xs='{"duration":0.5,"delay":0.2}' />
</div>
</div>
</div>
<div class="row align-items-center">
<div class="col-md-4 text-md-end">
<h5 class="ls-2 mb-3">SIAM</h5>
<p class="mb-0">Society for Industrial and Applied Mathematics (SIAM) is an international community with over 14,000 members and almost 500 worldwide academic, research and development, government, and military organisations as institutional members. Some of the reputed student chapters include the Massachusetts Institute of Technology, Harvard University, Imperial College London and Stanford University. SIAM was incorporated in 1952 as a non-profit organisation to convey and implement useful mathematical knowledge for practical, industrial and scientific use. Since then SIAM has been successfully fostering the development of applied mathematics and computational sciences.</p>
</div>
<div class="col-md-4 px-lg-4 my-4 my-md-0"><img class="rounded w-100 w-sm-75 w-md-100" src="assets/img/black1.png" alt="" /></div>
<div class="col-md-4 text-md-start">
<h5 class="ls-2 mb-3">SIAM-JUIT</h5>
<p class="mb-0">SIAM-JUIT is the sixth student chapter of SIAM to be established in India, with the previously established ones being in IISc Bangalore, DTU Delhi, IIT Guwahati. SIAM-JUIT aims to provide the means to the students to excel in the fields that follow an interdisciplinary approach and bridge the gap between classroom knowledge and real-world applications. It provides the students with a platform to brainstorm, freely exchange ideas and work various aspects of mathematics related to their disciplines. It strives to enable the students to push past the boundaries of curriculum and widen their horizons through talks with experts and seasoned professionals, projects, research and industrial exposure.</p>
</div>
</div>
</div><!-- end of .container-->
</section><!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section class="pt-3 pt-lg-5 pb-6 pb-lg-8 text-center">
<div class="bg-holder" style="background-image:url(assets/img/headers/header1.jpg);background-position: 63% 50%;"></div>
<div class="container">
<div class="row justify-content-center" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="col-lg-6">
<div class="row align-items-center">
<div class="embed-responsive embed-responsive-16by9">
<h2 class="font-base text-white fw-bold mb-0 fs-3 lh-1"><span class="d-block" data-zanim-xs='{"from":{"opacity":0,"x":-30},"to":{"opacity":1,"x":0},"duration":1.5,"delay":0}'>Why Join Siam?</span>
</h2></br>
</br>
</div>
<div style="height: 300px">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/ydE_ilhvjmM" width="100%" height="100%" allowfullscreen = "allowfullscreen"></iframe>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section>
<div class="container">
<div class="row text-center mb-4" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="col">
<div class="overflow-hidden">
<h2 class="fs-sm-5 mb-2" data-zanim-xs='{"duration":0.5,"delay":0}'>Our Mission</h2>
</div>
<div class="overflow-hidden">
</div>
<div class="overflow-hidden">
<hr class="hr-short bg-black" data-zanim-xs='{"duration":1,"delay":0.2}' />
</div>
</div>
</div>
<div class="row text-center text-md-start">
<div class="col-sm-6 col-md-4 px-lg-4 pt-md-3 pt-lg-0 pb-lg-4 h-100 feature-item position-relative">
<h5 class="ps-lg-3">Breaking the mold</h5>
<hr class="hr-feature d-block d-sm-none bg-black mt-0 mb-2" />
<div class="border-lg-top border-lg-end py-lg-3 ps-lg-0 line-indicator line-indicator-top line-indicator-top-1">
<div class="checked-indicator checked-indicator-top"><span class="fas fa-check" data-fa-transform="shrink-2"></span></div>
<p class="px-lg-3 mb-0">Changing the general perception around the field of computational mathematics on our campus community, sister Jaypee universities as well as nearby scholastic circuits/circles.</p>
</div>
</div>
<div class="col-sm-6 col-md-4 px-lg-4 pt-3 pt-sm-0 pt-md-3 pt-lg-0 pb-lg-4 h-100 feature-item position-relative">
<h5 class="ps-lg-3">infusion in campus culture</h5>
<hr class="hr-feature d-block d-sm-none border-black mt-0 mb-2" />
<div class="border-lg-top border-lg-end py-lg-3 ps-lg-0 line-indicator line-indicator-top line-indicator-top-2">
<div class="checked-indicator checked-indicator-top"><span class="fas fa-check" data-fa-transform="shrink-2"></span></div>
<p class="px-lg-3 mb-md-0">Infusing the skills, prowess and understanding related to the field of applied and computational mathematics in JUIT students and faculty.</p>
</div>
</div>
<div class="col-sm-6 col-md-4 px-lg-4 pt-3 pt-lg-0 pb-lg-4 h-100 feature-item position-relative">
<h5 class="ps-lg-3">Fostering and nurturing</h5>
<hr class="hr-feature d-block d-sm-none border-black mt-0 mb-2" />
<div class="border-lg-top border-lg-end py-lg-3 ps-lg-0 line-indicator line-indicator-top line-indicator-top-3">
<div class="checked-indicator checked-indicator-top"><span class="fas fa-check" data-fa-transform="shrink-2"></span></div>
<p class="px-lg-3 mb-md-0">Introducing, nurturing and promoting new research and development aims, aspirations and objectives related to the field at JUIT.</p>
</div>
</div>
<div class="col-12 my-3 d-none d-md-block">
<div class="row justify-content-center">
<div class="col-10 p-0"><img class="w-100" src="assets/img/illustration/process-image-6.png" alt="" /></div>
</div>
</div>
<div class="col-sm-6 col-md-4 px-lg-4 pt-3 pt-lg-4 feature-item position-relative">
<div class="border-lg-bottom border-lg-end pt-0 py-lg-3 line-indicator line-indicator-bottom line-indicator-bottom-1">
<div class="checked-indicator checked-indicator-bottom"><span class="fas fa-check" data-fa-transform="shrink-2"></span></div>
<h5 class="mb-lg-0 ps-lg-3">Creating a network </h5>
<hr class="hr-feature d-block d-sm-none border-black mt-0 mb-2" />
</div>
<p class="px-lg-3 pt-lg-3 mb-md-0">Establishing and connecting with computer science and applied mathematics professionals, innovators, scientists and industry leaders .</p>
</div>
<div class="col-sm-6 col-md-4 pt-3 pt-lg-4 px-lg-4 feature-item position-relative">
<div class="border-lg-bottom border-lg-end pt-0 py-lg-3 line-indicator line-indicator-bottom line-indicator-bottom-2">
<div class="checked-indicator checked-indicator-bottom"><span class="fas fa-check" data-fa-transform="shrink-2"></span></div>
<h5 class="mb-lg-0 ps-lg-3">Annual symposium</h5>
<hr class="hr-feature d-block d-sm-none border-black mt-0 mb-2" />
</div>
<p class="px-lg-3 pt-lg-3 mb-0">Hosting an annual symposium to offer exposure to students as well as keep up with the latest innovations in the field.</p>
</div>
<div class="col-sm-6 col-md-4 pt-3 pt-lg-4 px-lg-4 feature-item position-relative">
<div class="border-lg-bottom border-lg-end pt-0 py-lg-3 line-indicator line-indicator-bottom line-indicator-bottom-3">
<div class="checked-indicator checked-indicator-bottom"><span class="fas fa-check" data-fa-transform="shrink-2"></span></div>
<h5 class="mb-lg-0 ps-lg-3">seminars & conferences</h5>
<hr class="hr-feature d-block d-sm-none border-black mt-0 mb-2" />
</div>
<p class="px-lg-3 pt-lg-3 mb-0">Organising seminars, conventions and conferences in which we plan to invite experts in the area of computer science & applied mathematics to talk about their research.</p>
</div>
</div>
</div><!-- end of .container-->
</section><!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<!--
<section class="py-7 text-center" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="bg-holder overlay" style="background-image:url(assets/img/juitb1.jpg);"></div>
<div class="container">
<div class="row mb-4">
<div class="col">
<div class="overflow-hidden">
<h2 class="fs-sm-5 text-white mb-1 mb-lg-2" data-zanim-xs='{"duration":0.5,"delay":0}'>do you know</h2>
</div>
<div class="overflow-hidden">
<p class="fs--1 text-uppercase text-white ls-1 mb-0" data-zanim-xs='{"duration":0.5,"delay":0.1}'>some cool facts about SIAM</p>
</div>
<div class="overflow-hidden">
<hr class="hr-short bg-white" data-zanim-xs='{"duration":0.5,"delay":0.2}' />
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="row">
<div class="col-md-4 mb-4 mb-lg-0">
<div class="overflow-hidden"><img class="fun-fact-icon mb-2" src="assets/img/icons/graduation-cap.svg" alt="" /></div>
<div class="overflow-hidden">
<h3 class="text-white font-base fw-normal mb-1" data-countup='{"endValue":213}'>0</h3>
</div>
<div class="overflow-hidden">
<p class="text-uppercase text-white fw-semi-bold ls-2 mb-0">Student Chapter Internationally</p>
</div>
</div>
<div class="col-md-4 mb-4 mb-lg-0">
<div class="overflow-hidden"><img class="fun-fact-icon mb-2" src="assets/img/icons/users-alt.svg" alt="" /></div>
<div class="overflow-hidden">
<h3 class="text-white font-base fw-normal mb-1" data-countup='{"endValue":12104}'>0</h3>
</div>
<div class="overflow-hidden">
<p class="text-uppercase text-white fw-semi-bold ls-2 mb-0">Members worldwide</p>
</div>
</div>
<div class="col-md-4">
<div class="overflow-hidden"><img class="fun-fact-icon mb-2" src="assets/img/icons/infinity.svg" alt="" /></div>
<div class="overflow-hidden">
<h3 class="text-white font-base fw-normal mb-1" data-countup='{"endValue":18}'>0</h3>
</div>
<div class="overflow-hidden">
<p class="text-uppercase text-white fw-semi-bold ls-2 mb-0">Peer-Reviewed Journals</p>
</div>
</div>
</div>
</div>
</div>
</div> </section>
-->
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<!--
<section class="text-center" id="services">
<div class="container">
<div class="row mb-4" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="col">
<div class="overflow-hidden">
<h2 class="fs-md-5" data-zanim-xs='{"duration":0.5,"delay":0}'>Our Events</h2>
<h2 class="fs-md-5" data-zanim-xs='{"duration":1,"delay":0}'>Coming Soon!</h2>
</div>
<div class="overflow-hidden">
<p class="fs--1 text-uppercase text-black ls-1 mb-0" data-zanim-xs='{"duration":1.5,"delay":0.1}'>we plan, design, build and market high quality products</p>
</div>
<div class="overflow-hidden">
<hr class="hr-short bg-black opacity-100" data-zanim-xs='{"duration":1.5,"delay":0.2}' />
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-lg-4 mb-3" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="overflow-hidden">
<div class="service-item p-3 p-md-4 h-100">
<div class="overflow-hidden">
<div class="px-4" data-zanim-xs='{"duration":1.5,"delay":"0"}'><img class="service-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/icons/fountain-pen.svg" alt="" /></div>
</div>
<div class="overflow-hidden">
<h5 class="fw-normal ls-3 mb-2" data-zanim-xs='{"duration":1.5,"delay":"0.1"}'>Graphic design</h5>
</div>
<div class="overflow-hidden">
<p class="fw-normal" data-zanim-xs='{"duration":1.5,"delay":"0.2"}'>We have a graphic design team with <br class="d-block d-sm-none"> a good name in the industry for our <br class="d-block d-sm-none"> unique and modern graphic designs.</p>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 mb-3" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="overflow-hidden">
<div class="service-item p-3 p-md-4 h-100">
<div class="overflow-hidden">
<div class="px-4" data-zanim-xs='{"duration":1.5,"delay":"0.2"}'><img class="service-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/icons/pear.svg" alt="" /></div>
</div>
<div class="overflow-hidden">
<h5 class="fw-normal ls-3 mb-2" data-zanim-xs='{"duration":1.5,"delay":"0.30000000000000004"}'>brand identity</h5>
</div>
<div class="overflow-hidden">
<p class="fw-normal" data-zanim-xs='{"duration":1.5,"delay":"0.4"}'>We will create your brand identity with <br class='d-block d-sm-none'> our dedication and hard work. Our team <br class='d-block d-sm-none'> is always ready to take the challenge.</p>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 mb-3" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="overflow-hidden">
<div class="service-item p-3 p-md-4 h-100">
<div class="overflow-hidden">
<div class="px-4" data-zanim-xs='{"duration":1.5,"delay":"0.3"}'><img class="service-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/icons/export.svg" alt="" /></div>
</div>
<div class="overflow-hidden">
<h5 class="fw-normal ls-3 mb-2" data-zanim-xs='{"duration":1.5,"delay":"0.4"}'>Cloud Storage</h5>
</div>
<div class="overflow-hidden">
<p class="fw-normal" data-zanim-xs='{"duration":1.5,"delay":"0.5"}'>We have developed a cutting edge <br class='d-block d-sm-none'> system that automates our tasks that <br class='d-block d-sm-none'> often get put on the back-burner.</p>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 mb-3" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="overflow-hidden">
<div class="service-item p-3 p-md-4 h-100">
<div class="overflow-hidden">
<div class="px-4" data-zanim-xs='{"duration":1.5,"delay":"0.3"}'><img class="service-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/icons/light-bulb.svg" alt="" /></div>
</div>
<div class="overflow-hidden">
<h5 class="fw-normal ls-3 mb-2" data-zanim-xs='{"duration":1.5,"delay":"0.4"}'>creative theme</h5>
</div>
<div class="overflow-hidden">
<p class="fw-normal" data-zanim-xs='{"duration":1.5,"delay":"0.5"}'>We build outstanding and user-friendly <br class='d-block d-sm-none'> bootstrap themes with best UX which <br class='d-block d-sm-none'> works in all platforms and browsers.</p>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 mb-3" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="overflow-hidden">
<div class="service-item p-3 p-md-4 h-100">
<div class="overflow-hidden">
<div class="px-4" data-zanim-xs='{"duration":1.5,"delay":"0.4"}'><img class="service-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/icons/pie-chart.svg" alt="" /></div>
</div>
<div class="overflow-hidden">
<h5 class="fw-normal ls-3 mb-2" data-zanim-xs='{"duration":1.5,"delay":"0.5"}'>making strategy</h5>
</div>
<div class="overflow-hidden">
<p class="fw-normal" data-zanim-xs='{"duration":1.5,"delay":"0.6000000000000001"}'>Our strategy making process is <br class='d-block d-sm-none'> efficient by which we can create <br class='d-block d-sm-none'> businesses that will sustain in the future.</p>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 mb-3" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="overflow-hidden">
<div class="service-item p-3 p-md-4 h-100">
<div class="overflow-hidden">
<div class="px-4" data-zanim-xs='{"duration":1.5,"delay":"0.5"}'><img class="service-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/icons/wifi.svg" alt="" /></div>
</div>
<div class="overflow-hidden">
<h5 class="fw-normal ls-3 mb-2" data-zanim-xs='{"duration":1.5,"delay":"0.6"}'>Network Setup</h5>
</div>
<div class="overflow-hidden">
<p class="fw-normal" data-zanim-xs='{"duration":1.5,"delay":"0.7"}'>We provide the latest secured network <br class='d-block d-sm-none'> solutions to our all customers using <br class='d-block d-sm-none'> service from proven technology.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>--><!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section class="py-6" id = "announce">
<div class="bg-holder overlay overlay-1" style="background-image:url(assets/img/juitb1.jpg);background-position: top;"></div>
<!--/.bg-holder-->
<div class="container">
<div class="row">
<div class="col-12 mb-4 text-center" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="overflow-hidden">
<h2 class="fs-md-5 text-white" data-zanim-xs='{"duration":1.5,"delay":0}'>Latest Announcements</h2>
</div>
<div class="overflow-hidden">
</div>
<div class="overflow-hidden">
<hr class="hr-short bg-white" data-zanim-xs='{"duration":0.5,"delay":0.2}' />
</div>
</div>
<div class="col-lg-12 px-lg-4">
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item"><a class="nav-link fs-0 text-white ls-1 active" id="home-tab" data-bs-toggle="tab" href="#tab-home" role="tab" aria-controls="tab-home" aria-selected="true">SIAM Council 2022-23</a></li>
<li class="nav-item" style="padding-top: 20px;"><a class="nav-link fs-0 text-white ls-1" id="profile-tab" data-bs-toggle="tab" href="#tab-profile" role="tab" aria-controls="tab-profile" aria-selected="false">SIAM COUNCIL 2023-24</a></li>
<li class="nav-item" style="padding-top: 20px;"><a class="nav-link fs-0 text-white ls-1" id="profile-tab" data-bs-toggle="tab" href="#tab-advisory" role="tab" aria-controls="tab-profile" aria-selected="false">Faculty Advisory Committee</a></li>
<li class="nav-item" style="padding-top: 20px;"><a class="nav-link fs-0 text-white ls-1" id="profile-tab" data-bs-toggle="tab" href="#tab-mom" role="tab" aria-controls="tab-profile" aria-selected="false">Minutes of Meetings</a></li>
<li class="nav-item" style="padding-top: 20px;"><a class="nav-link fs-0 text-white ls-1" id="profile-tab" data-bs-toggle="tab" href="#nomination" role="tab" aria-controls="tab-profile" aria-selected="false">Nomination Form</a></li>
</ul>
<div class="tab-content pt-4" id="myTabContent">
<div class="tab-pane fade show active" id="tab-home" role="tabpanel" aria-labelledby="home-tab">
<div class="d-flex align-items-center">
<div class="flex-1 ms-3 text-light"><p>SIAM JUIT Student chapter has been established under the Faculty Advisor Prof. (Dr.) Vivek Kumar Sehgal, Head of Department CSE & IT. The council elected to lead the chapter for this tenure is attached. </p>
<a class="btn btn-outline-light hvr-sweep-top btn-sm mt-5 mt-lg-4 mb-2" href="assets/docs/SIAM Council 2022-23.pdf" target="_blank">Open Document</a>
</div>
</div>
</div>
<div class="tab-pane fade" id="tab-profile" role="tabpanel" aria-labelledby="profile-tab">
<div class="d-flex align-items-center">
<div class="flex-1 ms-3 text-light"><p>In accordance with Article VI, Section-8 of Rules of Procedure, Elections were conducted on 23/01/2023 and the council elected to lead the chapter for this tenure is attached.</p>
<a class="btn btn-outline-light hvr-sweep-top btn-sm mt-5 mt-lg-4 mb-2" href="assets/docs/SIAM Council 2023-24.pdf" target="_blank">Open Document</a>
</div>
</div>
</div>
<div class="tab-pane fade" id="tab-advisory" role="tabpanel" aria-labelledby="profile-tab">
<div class="d-flex align-items-center">
<div class="flex-1 ms-3 text-light"><p>Faculty advisory committee has been established and faculty members have been appointed as advisors for the SIAM chapter of JUIT.</p>
<a class="btn btn-outline-light hvr-sweep-top btn-sm mt-5 mt-lg-4 mb-2" href="assets/docs/SIAM Faculty Advisory Committee.pdf" target="_blank">Open Document</a>
</div>
</div>
</div>
<div class="tab-pane fade" id="tab-mom" role="tabpanel" aria-labelledby="profile-tab">
<div class="d-flex align-items-center">
<div class="flex-1 ms-3 text-light"><p>Minutes of Meetings held by Executive Committee and Faculty Advisory Committee</p>
<a class="btn btn-outline-light hvr-sweep-top btn-sm mt-5 mt-lg-4 mb-2" href="mom.html" target="_blank">Head to MOM</a>
</div>
</div>
</div>
<div class="tab-pane fade" id="nomination" role="tabpanel" aria-labelledby="profile-tab">
<div class="d-flex align-items-center">
<div class="flex-1 ms-3 text-light"><p>Nomination form for election of student officers of tenure 2023-24.</p>
<a class="btn btn-outline-light hvr-sweep-top btn-sm mt-5 mt-lg-4 mb-2" href="assets/docs/Nomination-form.pdf" target="_blank">Open Document</a>
</div>
</div>
</div>
</div>
</div>
</div><!-- end of .container-->
</section><!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section id = "events">
<div class="container">
<div class="row">
<div class="col mb-4 text-center" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="overflow-hidden">
<h2 class="fs-md-5" data-zanim-xs='{"duration":1.5,"delay":0}'>Events</h2>
</div>
<div class="overflow-hidden">
<hr class="hr-short bg-black" data-zanim-xs='{"duration":1.5,"delay":0.2}' />
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-9 px-5">
<div class="d-flex process-item border-dashed-start border-600 pb-5" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="process-icon-circle"><img class="process-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/medical-result.svg" alt="" /></div>
<div class="flex-1 ms-4 ms-sm-5">
<h5 class="ls-2"><span class="bg-white pe-3">Orientation 12th October</span></h5>
<p class="mb-0 pe-lg-5" data-zanim-xs='{"from":{"opacity":0},"to":{"opacity":1},"duration":1,"delay":0.2}'>The orientation will mark the beginning of the new term, where the scope, mission and vision of the chapter will be delivered to the campus students and faculty. The orientation will be conducted by the current officers and attended by all the faculty members of JUIT as well.</p>
</div>
</div>
<div class="d-flex process-item border-dashed-start border-600 border-md-start-0 border-md-dashed-end pb-5" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="flex-1 position-relative ms-4 ms-sm-5 ms-md-0 me-md-5">
<h5 class="text-md-end"><span class="bg-white ps-md-3">Distinguished Speaker seminar </span><span class="process-devider border-end-0 start-0"></span></h5>
<p class="mb-0 text-md-end ps-lg-6" data-zanim-xs='{"from":{"opacity":0},"to":{"opacity":1},"duration":1,"delay":0.3}'> The Chapter has a Distinguished Speaker Seminar Series which enables the members to gain exposure and wisdom directly from the best in academics and industry. Under this initiative renowned personalities who have achieved success in both academic and professional spheres share their wisdom and insights with the Chapter members. The seminars are conducted around the clock, throughout the tenure.</p>
</div>
<div class="process-icon-circle"><img class="process-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/web-programming.svg" alt="" /></div>
</div>
<div class="d-flex process-item border-dashed-start border-600 pb-5" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<!-- <div class="process-icon-circle"><img class="process-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/medical-result.svg" alt="" /></div> -->
<div class="process-icon-circle"><img class="process-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/web-programming.svg" alt="" /></div>
<div class="flex-1 ms-4 ms-sm-5">
<h5 class="ls-2"><span class="bg-white pe-3">Distinguished Speaker Seminar by Dr. Mark of IBM Research
</span></h5>
<p class="mb-0 pe-lg-5" data-zanim-xs='{"from":{"opacity":0},"to":{"opacity":1},"duration":1,"delay":0.2}'>On November 29 (Tuesday) the SIAM JUIT chapter successfully conducted the foremost seminar of its Distinguished Speaker Seminar Series, the front-running events of the Student Chapter. The seminar was attended by the Vice-Chancellor Prof. (Dr.) Rajendra Kumar Sharma, Dean (Academics and Research) Prof. (Dr.) Ashok Kumar Gupta, Founding Faculty Advisor Prof. (Dr.) Vivek Kumar Sehgal and other faculty members of the University. The seminar concluded with a Q&A session with the attendees, where both the faculty and the students asked their queries and discussed a few interesting applications of the discipline.
</p>
<div class="container-youtube-frame" style="margin-top: 2rem;">
<iframe class="responsive-iframe-youtube-link" src="https://www.youtube.com/embed/AZ6T1Sf4ESg"></iframe>
</div>
<!-- <iframe width="650" height="315"
src="https://www.youtube.com/embed/AZ6T1Sf4ESg" class="youtube-video-src">
</iframe> -->
</div>
</div>
<!-- <div class="d-flex process-item border-dashed-start border-600 pb-5" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="process-icon-circle"><img class="process-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/technical-support.svg" alt="" /></div>
<div class="flex-1 position-relative ms-4 ms-sm-5"><span class="process-devider border-start-0 end-0"></span>
<h5 class="ls-2"><span class="bg-white pe-3">Testing & Fixing</span></h5>
<p class="mb-0 pe-lg-5" data-zanim-xs='{"from":{"opacity":0},"to":{"opacity":1},"duration":1,"delay":0.2}'>After building your product, we will review your product with our talented testing team. In these steps, we will test your product with different data set and conditions. Also, this phase is essential for fixing design and development issues. </p>
</div>
</div> -->
<div class="d-flex process-item border-dashed-start border-600 border-md-start-0 border-md-dashed-end pb-5" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="flex-1 position-relative ms-4 ms-sm-5 ms-md-0 me-md-5">
<h5 class="text-md-end"><span class="bg-white ps-md-3">SEMINAR BY DR. BONITA SANDERS <br> <em>[LEADER, MATHS SOFTWARE GROUP, APPLIED AND COMPUTATIONAL MATHEMATICS DIVISION(ACMD)]</em></span><span class="process-devider border-end-0 start-0"></span></h5>
<p class="mb-0 text-md-end ps-lg-5" data-zanim-xs='{"from":{"opacity":0},"to":{"opacity":1},"duration":1,"delay":0.3}'> On January 11 (Wednesday) the SIAM JUIT chapter successfully conducted the 2<sup>nd</sup> seminar of its Distinguished Speaker Seminar Series. The seminar was attended by the Vice-Chancellor Prof. (Dr.) Rajendra Kumar Sharma, Dean (Academics and Research) Prof. (Dr.) Ashok Kumar Gupta, Founding Faculty Advisor Prof. (Dr.) Vivek Kumar Sehgal and other faculty members of the University. This session was quite informative for all the attendees, as Dr. Bonita shared the details and the specifics of the ongoing research in computational and applied mathematics at the National Institute of Standards and Technology, US Department of Commerce.The seminar concluded with a Q&A session with the attendees, where both the faculty and the students asked their queries and discussed a few interesting applications of the discipline.
</p>
<div class="container-youtube-frame" style="margin-top: 2rem;">
<iframe class="responsive-iframe-youtube-link" src="https://www.youtube.com/embed/d4wOazHixmM"></iframe>
</div>
</div>
<div class="process-icon-circle"><img class="process-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/web-programming.svg" alt="" /></div>
</div>
<div class="d-flex process-item border-dashed-start border-600 pb-5" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<!-- <div class="process-icon-circle"><img class="process-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/medical-result.svg" alt="" /></div> -->
<div class="process-icon-circle"><img class="process-icon" src="https://prium.github.io/reign-IV/v5.0.0/assets/img/line-icons/web-programming.svg" alt="" /></div>
<div class="flex-1 ms-4 ms-sm-5">
<h5 class="ls-2"><span class="bg-white pe-3">Distinguished Speaker Seminar by Dr. Charles Allen Butler<br><em>[President and Chair of the Board of Directors, Daniel H. Wagner Associates, Inc. ]</em>
</span></h5>
<p class="mb-0 pe-lg-5" data-zanim-xs='{"from":{"opacity":0},"to":{"opacity":1},"duration":1,"delay":0.2}'>On February 6 (Monday) the SIAM JUIT chapter successfully conducted the 3<sup>rd</sup> seminar of its Distinguished Speaker Seminar Series. The seminar was attended by the Vice-Chancellor Prof. (Dr.) Rajendra Kumar Sharma, Founding Faculty Advisor Prof. (Dr.) Vivek Kumar Sehgal and other faculty members of the University. In the starting of the seminar, He talked about job and career opportunities in Mathematics. He told the relation between working style in industry and Academia. After that he talked about how to prepare for a big career. He also told about the internship in the Network of National Laboratories.
The seminar concluded with a Q&A session with the attendees, where both the faculty and the students asked their queries and discussed a few interesting applications of the discipline.
</p>
<div class="container-youtube-frame" style="margin-top: 2rem;">
<iframe class="responsive-iframe-youtube-link" src="https://www.youtube.com/embed/d8j48kADKz8"></iframe>></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<!--
<section class="py-6 text-center bg-1100 bg-white" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="container">
<div class="overflow-hidden">
<h3 class="font-base text-black fw-bold" data-zanim-xs='{"duration":0.5,"delay":0}'>Latest News</h3>
</div>
<div data-zanim-xs='{"from":{"opacity":0,"y":30},"to":{"opacity":1,"y":0},"duration":0.5,"delay":0.1}'><a class="btn btn-sm btn-outline-dark hvr-sweep-top mt-3" target="_blank" href="https://himachaltonite.com/education/sixth-siam-chapter-of-india-established-in-juit/">Sixth SIAM Chapter of India Established in JUIT</a></div>
</div>
</section>
-->
<!-- <section> close ============================-->
<!-- ============================================-->
<!--
<section class="testimonial text-center" id= "faculty">
<div class="bg-holder overlay overlay-0" style="background-image:url(assets/img/backgrounds/testimonial.jpg);"></div>
<div class="container">
<div class="row">
<div class="col mb-4" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="overflow-hidden">
<h2 class="fw-bold fs-md-5 text-white" data-zanim-xs='{"delay":0}'>Founding Faculty Advisor</h2>
</div>
<div class="overflow-hidden">
<hr class="hr-short bg-black" data-zanim-xs='{"delay":0.2}' />
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-10">
<div class="row justify-content-center">
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4" style="width: 400px;">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/viveksehgal.jpg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.juit.ac.in/faculty.php?id=254&dep=cse&page=0" target="_blank"><span class="fab fa-internet-explorer" data-fa-transform="grow-3"></span></a></li>
<li class="list-inline-item"><a class="text-white" href="https://dblp.org/pid/11/5677.html" target="_blank"><span class="fab fa-wpexplorer" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h5 class=" text-white mt-2 mb-1">Prof. (DR.) Vivek Kumar Sehgal</h5>
<h6 class="ls-1 text-white">Professor and Head CSE&IT</h6>
</div>
</div>
</div>
</div>
</section>--><!-- <section> close ============================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section class="text-center" id="team">
<div class="container">
<div class="row">
<div class="col mb-4" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="overflow-hidden">
<h2 class="fs-md-5" data-zanim-xs='{"delay":0}'>Team</h2>
</div>
<div class="overflow-hidden">
<p class="fs--1 text-uppercase text-black ls-1 mb-0 fw-bold" data-zanim-xs='{"delay":0.1}' style="padding-top: 20px;">Founding Faculty Advisor</p>
</div>
<div class="overflow-hidden">
<hr class="hr-short bg-black" data-zanim-xs='{"delay":0.2}' />
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-10">
<div class="row justify-content-center">
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4" style="width: 400px;">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/viveksehgal.jpeg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.juit.ac.in/faculty.php?id=254&dep=cse&page=0" target="_blank"><span class="fab fa-internet-explorer" data-fa-transform="grow-3"></span></a></li>
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/vivekkumarsehgal/ " target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
<li class="list-inline-item"><a class="text-white" href="https://dblp.org/pid/11/5677.html" target="_blank"><span class="fab fa-wpexplorer" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h5 class=" text-black mt-2 mb-1">Prof. (DR.) Vivek Kumar Sehgal</h5>
<h6 class="ls-1 text-black">Professor & Head of Dept. of CSE&IT</h6>
<a class="btn btn-outline-dark hvr-sweep-top btn-sm mt-5 mt-lg-4 mb-2" href="faculty.html" target="_blank">Faculty Advisory Committee</a>
</div>
</div>
</div>
</div>
<div class="overflow-hidden">
<h6 class="fs--1 text-uppercase text-black ls-1 mb-0 fw-bold" data-zanim-xs='{"delay":0.1}'>Officers 2023-24</h6>
</div>
<div class="overflow-hidden">
<hr class="hr-short bg-black" data-zanim-xs='{"delay":0.2}' />
</div>
<div class="row justify-content-center">
<div class="col-lg-10">
<div class="row justify-content-center">
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/Shambhavi.jpeg" class="w-10" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/shambhavi-singh-130465279/ " target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
<li class="list-inline-item"><a class="text-white" href="mailto: [email protected]"><span class="fas fa-envelope" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Shambhavi Singh</h6>
<h6 class="ls-1">President</h6>
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/Harsh.jpeg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/harsh-raj-15321624a/" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
<li class="list-inline-item"><a class="text-white" href="mailto: [email protected]" target="_blank"><span class="fas fa-envelope" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Harsh Raj</h6>
<h6 class="ls-1">Vice President</h6>
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/Ankush.jpeg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/ankush---singh-/" target="_blank"><span class="fab fa-instagram" data-fa-transform="grow-3"></span></a></li>
<li class="list-inline-item"><a class="text-white" href="mailto: [email protected]" target="_blank"><span class="fas fa-envelope" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Ankush Singh</h6>
<h6 class="ls-1">Secretary</h6>
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4 mb-lg-0">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/Vanshi.jpeg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/vanshi-goyal-148382272/" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Vanshi Goyal</h6>
<h6 class="ls-1">Joint Secretary</h6>
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4 mb-lg-0">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/Aman.jpeg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/aman-shrivastava-366414227/" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Aman Shrivastava</h6>
<h6 class="ls-1">Treasurer</h6>
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/Divyansh.jpeg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/divyansh-sehgal03/" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Divyansh Sehgal</h6>
<h6 class="ls-1">Webmaster</h6>
</div>
<div class="overflow-hidden">
<h6 class="fs--1 text-black ls-1 mb-0 fw-bold" data-zanim-xs='{"delay":0.1}'>P<span class="text-lowercase">h</span>D Mentor</h6>
</div>
<div class="overflow-hidden">
<hr class="hr-short bg-black" data-zanim-xs='{"delay":0.2}' />
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4 mb-lg-0">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/himashu.jpg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/himanshu-dhumrash-bbab7b21b/?originalSubdomain=in" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Himanshu Dhumrash</h6>
</div>
<!-- <div class="row justify-content-center">
<div class="col-lg-10">
<div class="row justify-content-center">
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/achyut.jpeg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/achyuttiwari/" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
<li class="list-inline-item"><a class="text-white" href="mailto: [email protected]"><span class="fas fa-envelope" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Achyut Tiwari</h6>
<h6 class="ls-1"> Founding President</h6>
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/ashima.jfif" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/ashima-pal/" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
<li class="list-inline-item"><a class="text-white" href="mailto: [email protected]" target="_blank"><span class="fas fa-envelope" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Ashima Pal</h6>
<h6 class="ls-1">Vice President</h6>
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/biswa.jpeg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/suveer-sharma-a6ba261ba/" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
<li class="list-inline-item"><a class="text-white" href="mailto: [email protected]" target="_blank"><span class="fas fa-envelope" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Suveer Sharma</h6>
<h6 class="ls-1">Secretary</h6>
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4 mb-lg-0">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/dev.jfif" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/devtyagi/" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Dev Tyagi</h6>
<h6 class="ls-1">Treasurer</h6>
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4 mb-lg-0">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/himashu.jpg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/himanshu-dhumrash-bbab7b21b/?originalSubdomain=in" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Himanshu Dhunrash</h6>
<h6 class="ls-1">PhD Mentor</h6>
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4 mb-lg-0">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/aryan.jpeg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/aryanchugh/" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Aryan Chugh</h6>
<h6 class="ls-1">Head of Research</h6>
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4 mb-lg-0">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/aishani.jfif" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/aishanipachauri/" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3" ></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Aishani Pachauri</h6>
<h6 class="ls-1">head of Operations</h6>
</div>
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4 mb-lg-0">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/piyush.jpeg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="https://www.linkedin.com/in/piyush-singh-519b1b1ab/" target="_blank"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1">Piyush Singh</h6>
<h6 class="ls-1">Webmaster</h6>
</div> -->
<!--
<div class="col-6 col-md-3 col-lg-3 px-2 team-item mb-4 mb-lg-0">
<div class="hoverbox w-75 rounded-circle overflow-hidden mx-auto"><img class="img-fluid" src="assets/img/team/10.jpg" alt="" />
<div class="hoverbox-content">
<div class="d-flex align-items-end justify-content-center h-100">
<ul class="list-inline team-item-social-icons">
<li class="list-inline-item"><a class="text-white" href="#!"><span class="fab fa-linkedin-in" data-fa-transform="grow-3"></span></a></li>
<li class="list-inline-item"><a class="text-white" href="#!"><span class="fab fa-youtube" data-fa-transform="grow-3"></span></a></li>
</ul>
</div>
</div>
</div>
<h6 class="fw-bold mt-2 mb-1"><a class="text-black" href="#!">Gemma Whelan</a></h6>
<h6 class="ls-1">Software Engineer</h6>
</div>
-->
</div>
</div>
</div>
</div><!-- end of .container-->
</section><!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<!--
<section class="text-center pb-3" id="portfolio">
<div class="container-fluid">
<div class="row justify-content-center" data-zanim-timeline="{}" data-zanim-trigger="scroll">
<div class="col-12 mb-4">
<div class="overflow-hidden">
<h2 class="fs-md-5 mb-2" data-zanim-xs='{"duration":0.5,"delay":0}'>Recent events Highlights</h2>
<h2 class="fs-md-5 mb-2" data-zanim-xs='{"duration":0.5,"delay":0}'>Coming Soon!</h2>
</div>
<div class="overflow-hidden">
<p class="fs--1 text-uppercase text-black ls-1 mb-0" data-zanim-xs='{"duration":1.5,"delay":0.1}'>successful projects, happy clients, great results</p>
</div>
<div class="overflow-hidden">
<hr class="hr-short bg-black opacity-100" data-zanim-xs='{"duration":1.5,"delay":0.2}' />
</div>
</div>
</div>
<ul class="nav font-sans-serif mb-3 justify-content-center" data-filter-nav="data-filter-nav">
<li class="nav-item"><a class="isotope-nav text-uppercase font-base active" href="#!" data-filter="*">all</a></li>
<li class="nav-item"> <a class="isotope-nav text-uppercase font-base" href="#!" data-filter=".photography">Photography</a></li>
<li class="nav-item"> <a class="isotope-nav text-uppercase font-base" href="#!" data-filter=".design">Design</a></li>
<li class="nav-item"> <a class="isotope-nav text-uppercase font-base" href="#!" data-filter=".mobile">Mobile</a></li>
<li class="nav-item"> <a class="isotope-nav text-uppercase font-base" href="#!" data-filter=".marketing">Marketing </a></li>
</ul>
<div class="row g-3 mt-3" data-rp-isotope='{"layoutMode":"packery"}'>
<div class="col-sm-6 col-lg-4 px-2 isotope-item design" data-zanim-xs='{"delay":0}'>
<div class="hoverdir-item my-0" data-zanim-xs='{"duration":1.5,"animation":"zoom-in","delay":0}'>
<div class="hoverdir-item-content"><a class="d-block" href="https://prium.github.io/reign-IV/v5.0.0/pages/work-single.html"><img class="img-fluid rounded" src="assets/img/projects/1.jpg" alt="" />
<div class="hoverdir-text">
<h3 class="text-white lh-1 fs-2">Website Design</h3>
<p class="ls-1 mb-0 text-700">Multipurpose HTML template <br> with bootstrap 5</p>