-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1182 lines (992 loc) · 51.5 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">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>STUDENT SYMPOSIUM | Computational Intelligence and Smart Communication</title>
<link href="assets/images/logo/smvitm-logo.png" rel="icon" type="image/x-icon" />
<!--==================== WEBSITE META TAGS ====================-->
<meta name="title" content="STUDENT SYMPOSIUM | Computational Intelligence and Smart Communication" />
<meta name="description" content="Join the Student Symposium 2024 at SMVITM, Bantakal, on December 20-21, 2024. Showcase research, exchange ideas, and explore themes in Computational Intelligence, Smart Communication, Materials, Energy, and Environment. Open to BE/BTech students." />
<meta name="keywords" content="Student Symposium 2024, SMVITM Symposium, Computational Intelligence, Smart Communication, Materials Conference, Energy and Environment, Academic Symposium, Research Presentations, Poster Presentations, BE/BTech Students" />
<meta name="author" content="Anuswar" />
<link rel="canonical" href="/index.html" />
<!--==================== OPEN GRAPH / FACEBOOK META TAGS ====================-->
<meta property="og:title" content="STUDENT SYMPOSIUM | Computational Intelligence and Smart Communication" />
<meta property="og:description" content="Join the Student Symposium 2024 at SMVITM, Bantakal, on December 20-21, 2024. Showcase research, exchange ideas, and explore themes in Computational Intelligence, Smart Communication, Materials, Energy, and Environment. Open to BE/BTech students." />
<meta property="og:image" content="assets/images/home/smvitm-3.jpg" />
<meta property="og:url" content="/index.html">
<meta property="og:type" content="website">
<meta property="og:site_name" content="STUDENT SYMPOSIUM">
<!--==================== TWITTER META TAGS ====================-->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://sode-edu.in/student_symposium/" />
<meta property="twitter:title" content="STUDENT SYMPOSIUM | Computational Intelligence and Smart Communication" />
<meta property="twitter:description" content="Join the Student Symposium 2024 at SMVITM, Bantakal, on December 20-21, 2024. Showcase research, exchange ideas, and explore themes in Computational Intelligence, Smart Communication, Materials, Energy, and Environment. Open to BE/BTech students." />
<meta property="twitter:image" content="assets/images/home/smvitm-3.jpg" />
<!-- manifest Link Tag -->
<link rel="manifest" href="/manifest.json">
<!-- Robots Meta Tag -->
<meta name="robots" content="index, follow" />
<!-- Apple Touch Icon Link Tag -->
<link rel="apple-touch-icon" href="assets/images/logo/smvitm-logo.png" />
<!--==================== DATA BREADCRUMBS ====================-->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://sode-edu.in/student_symposium/#home"
},
{
"@type": "ListItem",
"position": 2,
"name": "About",
"item": "https://sode-edu.in/student_symposium/#about"
},
{
"@type": "ListItem",
"position": 3,
"name": "Schedule",
"item": "https://sode-edu.in/student_symposium/#schedule"
},
{
"@type": "ListItem",
"position": 4,
"name": "Theme",
"item": "https://sode-edu.in/student_symposium/#theme"
},
{
"@type": "ListItem",
"position": 5,
"name": "Submission Guidelines",
"item": "https://sode-edu.in/student_symposium/#submission-guidelines"
},
{
"@type": "ListItem",
"position": 6,
"name": "Registration",
"item": "https://sode-edu.in/cisc/#registration"
},
{
"@type": "ListItem",
"position": 9,
"name": "Contact",
"item": "https://sode-edu.in/cisc/#contact"
}
]
}
</script>
<!--==================== STRUCTURED DATA ====================-->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "STUDENT SYMPOSIUM",
"startDate": "2024-12-20",
"endDate": "2024-12-21",
"eventSchedule": {
"date": [
"2024-12-20",
"2024-12-21"
],
"SymposiumDates": "2024-12-20, 2024-12-21",
"abstractSubmissionDeadline": "2024-12-15"
},
"description": "Join the Student Symposium 2024 at SMVITM, Bantakal, on December 20-21, 2024. Showcase research, exchange ideas, and explore themes in Computational Intelligence, Smart Communication, Materials, Energy, and Environment. Open to BE/BTech students.",
"keywords": "Student Symposium 2024, SMVITM Symposium, Computational Intelligence, Smart Communication, Materials Conference, Energy and Environment, Academic Symposium, Research Presentations, Poster Presentations, BE/BTech Students",
"location": {
"@type": "Place",
"name": "Shri Madhwa Vadiraja Institute of Technology and Management",
"address": {
"@type": "PostalAddress",
"streetAddress": "Vishwothamanagara, Bantakal",
"addressLocality": "Udupi",
"postalCode": "574115",
"addressCountry": "IN"
},
"telephone": "+91 9482440940",
"email": "symposium@sode-edu.in"
},
"url": "https://sode-edu.in/student_symposium/",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"eventType": "Academic Conference",
"audience": {
"@type": "Audience",
"audienceType": "BE/BTech Students"
},
"offers": {
"@type": "Offer",
"url": "https://sode-edu.in/student_symposium/#registration",
"priceCurrency": "INR",
"price": "₹500",
"eligibleRegion": "BE/BTech Students"
},
"topics": [
"Computational Intelligence and Smart Communication",
"Materials, Energy, Environment & Manufacturing Sciences"
],
"contactPoint": {
"@type": "ContactPoint",
"contactType": "Customer Service",
"telephone": "+91 9482440940",
"email": "symposium@sode-edu.in"
},
"organizer": {
"@type": "Organization",
"name": "Shri Madhwa Vadiraja Institute of Technology and Management",
"contactPoint": {
"@type": "ContactPoint",
"name": "Dr. Shilpa Kamath S",
"position": "Organizing Committee",
"telephone": "+91 9482440940",
"email": "shilpa.ec@sode-edu.in"
}
},
"sameAs": [
"https://x.com/SmvitM",
"https://www.facebook.com/officialsmvitm",
"https://www.linkedin.com/company/shri-madhwa-vadiraja-institute-of-technology-and-management/",
"https://www.instagram.com/smvitm.sode/",
"https://www.youtube.com/SMVITMBANTAKAL"
]
}
</script>
<!--==================== GOOGLE FONTS ====================-->
<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=Nunito:wght@400;600;700;800&family=Rubik:wght@400;500;600;700&display=swap" rel="stylesheet" />
<!--==================== STYLE SHEETS ====================-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<link href="assets/css/library/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="assets/css/style.css" rel="stylesheet" />
<!--==================== JAVASCRIPT ====================-->
<script defer src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"></script>
<script defer src="https://unpkg.com/scrollreveal"></script>
<script defer src="https://unpkg.com/scrollreveal@4.0.0/dist/scrollreveal.min.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/@wessberg/aspect-ratio@latest/dist/aspect-ratio.min.js"></script>
<script defer src="js/script.js"></script>
</head>
<body>
<!--==================== PRELOADER ====================-->
<section id="spinner" class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner"></div>
</section>
<!--=============== TOP BAR ===============-->
<section class="container-fluid bg-dark px-5 d-none d-lg-block top_bar" id="home">
<div class="row gx-0">
<div class="left_anim col-lg-8 text-center text-lg-start mb-2 mb-lg-0">
<div class="d-inline-flex align-items-center" style="height: 45px">
<small class="me-3 text-light">
<i class="fa fa-map-marker-alt me-2"></i>
<a class="top-bar" href="https://maps.app.goo.gl/EnfFBYmdF53Vrv998" target="_blank">SMVITM, Vishwothamanagara, Bantakal</a>
</small>
<small class="me-3 text-light">
<i class="fa fa-phone-alt me-2"></i>
<a class="top-bar" href="tel:+919482440940">Mob: +91 94824 40940</a>
</small>
<small class="text-light d-flex align-items-center">
<i class="fa fa-envelope-open me-2"></i>
<a class="top-bar" href="mailto:symposium@sode-edu.in">symposium@sode-edu.in</a>
</small>
</div>
</div>
<div class="col-lg-4 text-center text-lg-end">
<div class="d-inline-flex align-items-center" style="height: 45px">
<a target="_blank" class="btn-primary btn-lg me-2 btn btn-sm btn-light btn-sm-square rounded-circle me-2 d-flex justify-content-center align-items-center" href="https://twitter.com/SmvitM" style="background-color: #000000; border-color: #000000">
<i class="fab fa-twitter fw-normal text-white"></i>
</a>
<a target="_blank" class="btn-primary btn-lg me-2 btn btn-sm btn-light btn-sm-square rounded-circle me-2 d-flex justify-content-center align-items-center" href="https://www.facebook.com/officialsmvitm" style="background-color: #4267b2; border-color: #4267b2">
<i class="fab fa-facebook-f fw-normal text-white"></i>
</a>
<a target="_blank" class="btn btn-primary btn-lg me-2 btn-sm btn-light btn-sm-square rounded-circle me-2 d-flex justify-content-center align-items-center" href="https://www.linkedin.com/company/shri-madhwa-vadiraja-institute-of-technology-and-management/" style="background-color: #0077b5; border-color: #0077b5">
<i class="fab fa-linkedin-in fw-normal text-white"></i>
</a>
<a target="_blank" class="btn btn-primary btn-lg me-2 btn-sm btn-light btn-sm-square rounded-circle me-2 d-flex justify-content-center align-items-center" href="https://www.instagram.com/smvitm.sode/" style="background-color: #e4405f; border-color: #e4405f">
<i class="fab fa-instagram fw-normal text-white"></i>
</a>
<a target="_blank" class="btn btn-primary btn-lg me-2 btn-sm btn-light btn-sm-square rounded-circle d-flex justify-content-center align-items-center" href="https://www.youtube.com/SMVITMBANTAKAL" style="background-color: #ff0000; border-color: #ff0000">
<i class="fab fa-youtube fw-normal text-white"></i>
</a>
</div>
</div>
</div>
</section>
<!--=============== HEADER ===============-->
<section id="header">
<header class="header container-fluid">
<div class="nav container-fluid">
<a href="index.html" class="header-container logo d-flex align-items-center">
<div class="d-flex justify-content-center align-items-center">
<img src="assets/images/logo/student-symposium-logo.png" alt="CISC-2024 logo" class="img-fluid main-logo" />
</div>
</a>
<div class="non navbar-nav ms-auto py-0 d-flex flex-row gap-3">
<a href="#home" class="nav-item nav-link">Home</a>
<a href="#about" class="nav-item nav-link">About</a>
<a href="#schedule" class="nav-item nav-link">Schedule</a>
<a href="#theme" class="nav-item nav-link">Theme</a>
<a href="#submission-guidelines" class="nav-item nav-link">Submission Guidelines</a>
<a href="#registration" class="nav-item nav-link">Registration</a>
<a href="#contact" class="nav-item nav-link">Contact</a>
</div>
<div class="nav-icons d-flex justify-content-center mt-2">
<div class="search">
<span class="icon2">
<i class="fa fa-bars menuBtn"></i>
</span>
</div>
</div>
</div>
</header>
<!-- Menu -->
<div id="menu" class="menu container-fluid">
<nav class="nav-container">
<div>
<br />
<div class="nav-list">
<div class="nav-items">
<h3 class="nav-subtitle">Quick links</h3>
<a href="#home" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-home nav-icon"></i>
<span class="nav-name">Home</span>
</a>
<a href="#about" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-info-circle nav-icon"></i>
<span class="nav-name">About</span>
</a>
<a href="#schedule" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-calendar nav-icon"></i>
<span class="nav-name">Schedule</span>
</a>
<a href="#theme" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-palette nav-icon"></i>
<span class="nav-name">Theme</span>
</a>
<a href="#submission-guidelines" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-file-alt nav-icon"></i>
<span class="nav-name">Submission Guidelines</span>
</a>
<a href="#registration" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-user-plus nav-icon"></i>
<span class="nav-name">Registration</span>
</a>
<a href="#contact" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-envelope nav-icon"></i>
<span class="nav-name">Contact</span>
</a>
</div>
</div>
<br />
<div class="nav-list">
<div class="nav-items">
<h3 class="nav-subtitle">Policies</h3>
<a target="_blank" href="pages/terms-and-conditions.html" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-file-contract nav-icon"></i>
<span class="nav-name">Terms and Conditions</span>
</a>
<a target="_blank" href="pages/Privacy-Policy.html" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-user-shield nav-icon"></i>
<span class="nav-name">Privacy Policy</span>
</a>
<a target="_blank" href="pages/sitemap.html" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-sitemap nav-icon"></i>
<span class="nav-name">Sitemap</span>
</a>
</div>
</div>
<br />
<div class="nav-list">
<div class="nav-items">
<h3 class="nav-subtitle">Contact</h3>
<a href="tel:+919482440940" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-phone-alt nav-icon"></i>
<span class="nav-name">Mob: +91 94824 40940</span>
</a>
<a href="mailto:symposium@sode-edu.in" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-envelope-open nav-icon"></i>
<span class="nav-name">symposium@sode-edu.in</span>
</a>
</div>
</div>
</div>
</nav>
</div>
<!-- Overlay -->
<div id="overlay" class="overlay container-fluid"></div>
</section>
<!--=============== BANNER ===============-->
<section class="slider-banner" id="home">
<div class="swiper slider mySwiper">
<div class="swiper-wrapper">
<!-- Slide 1 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-1.jpg" />
</div>
<!-- Slide 2 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-2.jpg" />
</div>
<!-- Slide 3 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-3.jpg" />
</div>
<!-- Slide 4 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-4.jpg" />
</div>
<!-- Slide 5 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-5.jpg" />
</div>
<!-- Slide 6 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-6.jpg" />
</div>
<!-- Slide 7 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-7.jpg" />
</div>
<!-- Slide 7 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-7.jpg" />
</div>
<!-- Slide 8 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-8.jpg" />
</div>
</div>
<!-- Carousel Caption -->
<div class="carousel-caption">
<div style="margin-top: 80px;" class="p-33">
<h5 class="text-uppercase mb-3 text-primary">
As Part of International Conference
<a href="https://sode-edu.in/cisc/" target="_blank" class="conference-link text-primary">CISC</a> &
<a href="https://sode-edu.in/meems/" target="_blank" class="conference-link text-primary">MEEMS</a>
</h5>
<h1 class="display-1 mb-md-4">STUDENT SYMPOSIUM</h1>
<h2 class="mb-3">20th and 21st December 2024</h2>
<a id="submissionguidelines" href="#submission-guidelines" class="btn btn-primary py-md-3 px-md-5 me-3" style="border-radius: 30px;">Submission Guidelines</a>
<a id="registrationn" href="#registration" class="btn btn-outline-light py-md-3 px-md-5" style="border-radius: 30px;">Registration</a>
</div>
</div>
</section>
<!--=============== ABOUT ===============-->
<section class="container-fluid py-5" id="about" style="background-size: cover; background-position: center">
<div class="container-fluid py-5">
<div class="section-title text-center position-relative pb-3 mb-5 mx-auto" style="max-width: 800px">
<h1 class="fw-bold text-primary text-uppercase">About Us</h1>
<h4 class="mb-0">Computational Intelligence and Smart Communication</h4>
<h4 class="mb-0">Materials, Energy, Environment & Manufacturing Sciences</h4>
</div>
<div class="container-fluid" style="background-size: cover; background-position: center; background-color: #ffffff; max-width: 1300px; border-radius: 10px; padding: 20px;">
<!-- container 1 -->
<div class="container-fluid py-5">
<div class="row align-items-center g-5">
<div class="col-lg-7 p-lg-4 about-text text-center" style="background: rgba(223, 198, 198, 0.8); padding: 20px; border-radius: 30px;">
<h1 class="mb-3"><b>ABOUT SMVITM</b></h1>
<p class="mb-4" style="text-align: justify; line-height: 1.6">
Established in the year 2010, under the aegis of Shri Sode
Vadiraja Mutt Education Trust, Udupi, Shri Madhwa Vadiraja
Institute of Technology & Management (SMVITM) has emerged
as a promising institution in the region. With its highly motivated
and qualified faculty, excellent infrastructure and distinctive
learner-centric facilities, the institute has become the most
sought after engineering institute in the region. Adding a
feather to its cap, SMVITM, was accredited by NAAC with A-grade.
<br /><br />
Admiring the objective of providing valued-added and holistic
engineering education to the needy students of rural belt at
affordable cost, former President Dr. APJ Abdul Kalam made a
prestigious visit to the college in 2014, and interacted with the
students. Many other eminent personalities too have visited the
college and appreciated its dedication towards education and
research.
</p>
</div>
<div class="col-lg-5 about-image text-center d-none d-lg-block">
<div class="polaroid polaroid-left">
<img class="polaroid-image" src="assets/images/about/about-1.jpg" alt="About SMVITM" />
<div class="caption">SMVITM Campus</div>
</div>
</div>
</div>
</div>
</div>
<!-- container 2 -->
<div class="container-fluid py-5">
<div class="row align-items-center g-5">
<!-- For larger devices (lg, xl), show the image -->
<div class="col-lg-5 d-flex justify-content-center about-image text-center d-none d-lg-block">
<div class="polaroid">
<img class="polaroid-image" src="assets/images/about/about-2.jpg" alt="CISC 2024" />
<div class="caption">ABOUT SYMPOSIUM</div>
</div>
</div>
<!-- For all devices, including smaller ones, show the text -->
<div class="col-lg-7 about-text text-center p-lg-4" style="background-color: rgba(223, 198, 198, 0.8); padding: 20px; border-radius: 30px;">
<div class="row g-5">
<div class="col-lg-12 text-center">
<h1 class="mb-2"><b>ABOUT SYMPOSIUM</b></h1>
</div>
</div>
<p class="mb-4" style="text-align: justify; line-height: 1.6">
A Student Symposium, held as part of an CISC & MEEMS, offers a unique platform for young scholars to
showcase their research, exchange ideas, and engage with experts in their fields. Such events
foster intellectual growth, promote interdisciplinary collaboration, and provide networking
opportunities with peers and professionals. Participants present papers, posters, and innovative
projects, receiving valuable feedback to refine their work. These symposia also encourage critical
thinking, public speaking skills, and exposure to global academic trends. By engaging in discussions
and workshops, students gain insights into emerging challenges and advancements, enriching their academic
journey and preparing them for future career endeavors.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=============== SCHEDULE ===============-->
<section class="container-fluid py-5" id="schedule" style="background-size: cover; background-position: center">
<div class="section-title text-center position-relative py-5 pb-3 mb-5 mx-auto" style="max-width: 1150px">
<h1 class="fw-bold text-primary text-uppercase">Symposium-2024 Schedule</h1>
<h4 class="mb-0">The dates to be remembered</h4>
</div>
<div class="container-fluid schedule-container top-anim" style="background-size: cover; background-position: center; background-color: #eef9ff !important; border: 1px solid #ccc; padding: 20px; max-width: 1300px; border-radius: 10px;">
<div class="row g-5 text-center">
<div class="col-lg-8 text-center d-flex align-items-center justify-content-center">
<div class="row g-5 text-center">
<div class="col-12">
<h4 class="mb-0 text-center fw-bold" style="color: #000">
Abstract Submission Deadline:
<span style="color: #ff0000"> 15 Dec 2024</span>
</h4>
</div>
<br />
<div class="col-12" style="margin: 10px;">
<h4 class="mb-0 text-center fw-bold" style="color: #000">
Symposium Dates:
<span style="color: #ff0000">20th & 21st Dec 2024</span>
</h4>
</div>
</div>
</div>
<div class="col-lg-4 d-none d-lg-block">
<div class="row g-7">
<div class="col-lg-12" style="display: flex; align-items: flex-start; justify-content: center; margin-top: 70;">
<img class="rounded" src="assets/images/logo/smvitm-t-logo.png" style="object-fit: cover; max-height: 300px; max-width: 100%; border-radius: 30px;" />
</div>
</div>
</div>
</div>
</div>
</section>
<!--=============== THEME ===============-->
<section class="container-fluid py-5" id="theme">
<div class="container py-5">
<div class="section-title text-center position-relative pb-3 mb-5 mx-auto" style="max-width: 600px;">
<h1 class="fw-bold text-primary text-uppercase">Theme</h1>
<h4 class="mb-0">
This year's symposium invites students to explore and present research that aligns with our theme:
</h4>
</div>
<div class="row justify-content-center g-4">
<!-- First Card -->
<div class="col-lg-5 col-md-6 wow slideInUp top-anim">
<div class="card bg-dark text-center text-white" style="border-radius: 15px;">
<div class="card-body py-5">
<div class="service-icon mb-4">
<i class="fa fa-brain text-blue fa-3x"></i>
</div>
<h4 class="card-title text-primary mb-3">Computational Intelligence and Smart Communication</h4>
<p class="card-text"></p>
</div>
</div>
</div>
<!-- Second Card -->
<div class="col-lg-5 col-md-6 wow slideInUp top-anim">
<div class="card bg-dark text-center text-white" style="border-radius: 15px;">
<div class="card-body py-5">
<div class="service-icon mb-4">
<i class="fa fa-leaf text-green fa-3x"></i>
</div>
<h4 class="card-title text-primary mb-3">Materials, Energy, Environment & Manufacturing Sciences</h4>
<p class="card-text"></p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==================== SUNMISSION GUIDELINES ====================-->
<section class="container-fluid py-5" id="submission-guidelines" style="background-size: cover; background-position: center">
<div class="section-title text-center position-relative pb-3 mb-5 mx-auto" style="max-width: 1150px">
<h1 class="fw-bold text-primary text-uppercase">Submission Guidelines</h1>
</div>
<div class="container-fluid top-anim" style="background-size: cover; background-position: center; background-color: #eef9ff !important; border: 1px solid #ccc; padding: 20px; max-width: 1300px; border-radius: 10px;">
<div class="py-5" style="max-width: 100%; background-size: cover">
<br />
<p class="top-anim mb-0" style="color: black">
We encourage students from diverse academic backgrounds to participate and contribute to an
interdisciplinary dialogue. Whether you are presenting your latest research or showcasing a
creative endeavour, your participation will enrich the conversation and broaden the impact of
the symposium.
</p>
<br />
<p class="top-anim mb-0" style="color: red">
<b>
* Only original work will be accepted
</b>
</p>
<br />
<h6 class="top-anim fw-bold text-primary text-uppercase">Abstract Submission:</h6>
<p class="top-anim mb-0" style="color: black">
Submit an abstract of no more than 300 words by 15 Dec 2024. The abstract should clearly
outline the research question, methodology, and expected outcomes of the work.
</p>
<br />
<h6 class="top-anim fw-bold text-primary text-uppercase">Presentation Formats:</h6>
<p class="top-anim mb-0" style="color: black;">
Participants will present their work in one of the following formats:
</p>
<ul class="top-anim presentation-formats" style="color: black; padding-left: 20px;">
<li>PowerPoint Presentations (7 minutes)</li>
<li>Poster Presentations (7 minutes)</li>
</ul>
<br />
<p class="top-anim mb-0" style="color: red">
<b>
* poster size should be A1
</b>
</p>
<br />
<h6 class="top-anim fw-bold text-primary text-uppercase">Presentation Language:</h6>
<p class="top-anim mb-0" style="color: black">
Presentation will be delivered in English language only.
</p>
<br>
<p class="top-anim mb-0" style="color: red">
<b>
Best power point presentation and poster presentation will be awarded under each theme.
</b>
</p>
</div>
</div>
</section>
<!--==================== SPEAKERS ====================-->
<section class="container-fluid py-5" id="speakers">
<div class="container py-5">
<div class="container-fluid" style="background-size: cover; background-position: center">
<div class="section-title text-center position-relative pb-3 mb-5 mx-auto" style="max-width: 1150px">
<h1 class="fw-bold text-primary text-uppercase">Keynote Address</h1>
<h4 class="mb-0">Details of the Keynote speakers</h4>
</div>
</div>
<div style="margin-bottom: 50px" class="swiper custom-swiper top-anim">
<!-- slide container -->
<div class="swiper-wrapper">
<!-- slide 1 -->
<div class="swiper-slide custom-swiper-slide">
<div class="testimonial-item card my-4">
<div class="d-flex flex-column align-items-center border-bottom pt-4 pb-3 px-4">
<img class="img-fluid rounded-circle mb-3" src="assets/images/contact/Dr-Arunachala-U-Chandavar.jpg" alt="Dr Arunachala U Chandavar" />
<div class="text-center">
<h5 class="text-primary card-title mb-2">Dr Arunachala U Chandavar</h5>
<p class="card-text">Professor and Head Dept. of Mechanical & Industrial Engineering, MIT Manipal</p>
</div>
</div>
</div>
</div>
<!-- slide 2 -->
<div class="swiper-slide custom-swiper-slide">
<div class="testimonial-item my-4">
<div class="d-flex flex-column align-items-center border-bottom pt-4 pb-3 px-4">
<img class="img-fluid rounded-circle mb-3" src="assets/images/contact/Dr-Shubhavardhan.jpeg" alt="Dr Shubhavardhan" />
<div class="text-center">
<h5 class="text-primary mb-2">Dr Shubhavardhan</h5>
<p class="card-text">Lecturer, Dept. of Engineering Technology SETU, Ireland</p>
</div>
</div>
</div>
</div>
<!-- slide 3 -->
<div class="swiper-slide custom-swiper-slide">
<div class="testimonial-item my-4">
<div class="d-flex flex-column align-items-center border-bottom pt-4 pb-3 px-4">
<img class="img-fluid rounded-circle mb-3" src="assets/images/contact/Dr.-John-Kiran-Anthony.jpg" alt="Dr. John Kiran Anthony" />
<div class="text-center">
<h5 class="text-primary mb-2">Dr. John Kiran Anthony</h5>
<p class="card-text">Senior Scientist, Titan Company Ltd.</p>
</div>
</div>
</div>
</div>
<!-- slide 4 -->
<div class="swiper-slide custom-swiper-slide">
<div class="testimonial-item my-4">
<div class="d-flex flex-column align-items-center border-bottom pt-4 pb-3 px-4">
<img class="img-fluid rounded-circle mb-3" src="assets/images/contact/Dr.-B.-P-Lakshmikantha.png" alt="Dr. B. P Lakshmikantha" />
<div class="text-center">
<h5 class="text-primary mb-1">Dr. B. P Lakshmikantha</h5>
<p class="card-text">Joint Director Watershed Development Department, GoK</p>
</div>
</div>
</div>
</div>
<!-- slide 5 -->
<div class="swiper-slide custom-swiper-slide">
<div class="testimonial-item my-4">
<div class="d-flex flex-column align-items-center border-bottom pt-4 pb-3 px-4">
<img class="img-fluid rounded-circle mb-3"src="assets/images/contact/Dr-Krushna-Chandra-Gouda.png" alt="Dr Krushna Chandra Gouda" />
<div class="text-center">
<h5 class="text-primary mb-1">Dr Krushna Chandra Gouda</h5>
<p class="card-text">Senior Principal Scientist CSIR-4PI, NAL, Bengaluru</p>
</div>
</div>
</div>
</div>
<!-- slide 6 -->
<div class="swiper-slide custom-swiper-slide">
<div class="testimonial-item my-4">
<div class="d-flex flex-column align-items-center border-bottom pt-4 pb-3 px-4">
<img class="img-fluid rounded-circle mb-3"src="assets/images/contact/Dr.-Dileep-A.D..jpg" alt="Dr. Dileep A.D." />
<div class="text-center">
<h5 class="text-primary mb-1">Dr. Dileep A.D.</h5>
<p class="card-text">Associate Professor & HOD, Dept. of CSE, IIT Dharwad</p>
</div>
</div>
</div>
</div>
<!-- slide 7 -->
<div class="swiper-slide custom-swiper-slide">
<div class="testimonial-item my-4">
<div class="d-flex flex-column align-items-center border-bottom pt-4 pb-3 px-4">
<img class="img-fluid rounded-circle mb-3"src="assets/images/contact/Dr.-Sneha-Hegde.jpeg" alt="Dr. Sneha Hegde" />
<div class="text-center">
<h5 class="text-primary mb-1">Dr. Sneha Hegde</h5>
<p class="card-text">Post Doctoral Researcher Ecole Centrale de Lyon, Ecullly, France</p>
</div>
</div>
</div>
</div>
<!-- slide 8 -->
<div class="swiper-slide custom-swiper-slide">
<div class="testimonial-item my-4">
<div class="d-flex flex-column align-items-center border-bottom pt-4 pb-3 px-4">
<img class="img-fluid rounded-circle mb-3"src="assets/images/contact/Dr.-Shubhakar-Kalya.jpg" alt="Dr. Shubhakar Kalya" />
<div class="text-center">
<h5 class="text-primary mb-1">Dr. Shubhakar Kalya</h5>
<p class="card-text">Eng. Product Development, Singapore University of Tech. & Design</p>
</div>
</div>
</div>
</div>
</div>
<!-- Navigation buttons -->
<div style="color: #0077b5" class="swiper-button-next"></div>
<div style="color: #0077b5" class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!--==================== REGISTRACTION ====================-->
<section class="container-fluid registration-section" id="registration">
<div class="container-fluid py-5">
<div class="section-title text-center position-relative pb-3 mb-5 mx-auto" style="max-width: 1150px">
<h1 class="fw-bold text-primary text-uppercase">Registration</h1>
<div class="text-center mx-auto">
<p class="mb-0">
We welcome submissions from undergraduate BE/BTech students.
</p>
</div>
</div>
<div class="row g-4 justify-content-center">
<div class="col-lg-4 col-md-6 col-sm-12 top-anim">
<div class="registration-card">
<div class="card-header">Bank Account Details</div>
<div class="card-content">
<p>
SB A/c number: <span class="highlight">0822500100622201</span><br />
A/c Name: <span class="highlight">SMVIT-NC</span><br />
Bank: <span class="highlight">Karnataka Bank Ltd.</span><br />
Branch: <span class="highlight">Bantakal</span><br />
IFSC: <span class="highlight">KARB0000082</span>
</p>
</div>
<div class="card-header">Registration Fee</div>
<div class="card-content">
<p>
BE/BTech Students - <span class="highlight">₹500</span>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 top-anim">
<div class="registration-card">
<div class="card-header">QR Code</div>
<div class="card-content text-center">
<img src="assets/images/conference_payment_QR_code.jpg" alt="Bank QR Code" class="img-fluid" />
</div>
</div>
</div>
</div>
<div class="form-container">
<iframe id="googleForm"
src="https://docs.google.com/forms/d/e/1FAIpQLSfP73Str_9o0utpXO_W_1XVN1oREvTE-FyfDd3vNttAjBhCAw/viewform?embedded=true"
frameborder="0"
marginheight="0"
marginwidth="0">Loading…</iframe>
</div>
</div>
</section>
<!--==================== CONTACT ====================-->
<section class="container-fluid py-5" id="contact">
<div class="container py-5">
<div class="row g-3 top-anim">
<div class="col-lg-6 col-md-8">
<div class="bg-dark rounded d-flex flex-column text-left" style="color: white">
<div class="border-bottom py-4 px-5 mb-4 text-center">
<h4 class="text-primary">CONFERENCE DETAILS</h4>
<br />
<p class="card-text">
<a class="top-bar" style="font-size: 18px" href="https://sode-edu.in/faculties/dr-shilpa-kamath-s/" target="_blank">
Dr. Shilpa Kamath S
<br />
<span class="text-muted">Organizing Committee</span>
</a>
</p>
<small class="text-muted">
<span id="content1">
Mobile:
<a href="tel:+919482440940">
+91 9482 440940
</a>
</span>
<span id="content1">
Email:
<a href="mailto:shilpa.ec@sode-edu.in">
shilpa.ec@sode-edu.in
</a>
</span>
<br />
</small>
</div>
<div class="border-bottom py-4 px-5 mb-4 text-center">
<h4 class="text-primary">Accomodation Details</h4>
<small class="normal">
<span id="content1">
<a class="top-bar" target="_blank" href="https://maps.app.goo.gl/zGRyRmH5gauqZAyv6">
Shri Madhwa Vadiraja Institute of Technology and
Management Vishwothamanagara, Bantakal, Udupi - 574115
</a>
</span>
<span id="content1">
Email:
<a class="top-bar" href="mailto:symposium@sode-edu.in">
symposium@sode-edu.in
</a>
</span>
<span id="content1">
Mob:
<a class="top-bar" href="tel:+919611615001">
+91 96116 15001
</a>
</span>
</small>
</div>
</div>
</div>
<div class="col-lg-6 col-md-8">
<div class="bg-dark rounded d-flex flex-column text-left">
<div class="border-bottom py-4 px-5 mb-4 text-center">
<h4 class="text-primary">Locate Us</h4>
<div class="mapouter">
<div class="gmap_canvas">
<iframe src="https://maps.google.com/maps?q=shri%20madhwa%20vadiraja%20institute%20of%20technology%20and%20&t=k&z=14&ie=UTF8&iwloc=&output=embed" frameborder="0" style="width: 90%; height: 250px"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==================== FOOTER ====================-->
<section class="container-fluid bg-dark text-light mt-5">
<div class="container">
<div class="row gx-5">
<div class="col-lg-4 col-md-10 footer-about">
<div class="d-flex flex-column align-items-center justify-content-center text-center h-100 bg-primary p-4 top-anim">
<a class="navbar-brand">
<div class="header-container logo d-flex justify-content-center mb-2">
<a href="index.html" class="header-container logo d-flex align-items-center">
<div class="d-flex justify-content-center align-items-center">
<img src="assets/images/logo/student-symposium-logo.png" alt="CISC-2024 logo" class="img-fluid main-logo" />
</div>
</a>
</div>
</a>
<p class="mt-3 mb-4">About the conference</p>
</div>
</div>