-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1996 lines (1753 loc) · 119 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 name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RCSC'25</title>
<link rel="icon" href="img/event_logo.png">
<link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script type="text/javascript" src="https://cdn.emailjs.com/sdk/3.6.2/email.min.js"></script>
<script type="text/javascript">
(function() {
emailjs.init("YOUR_USER_ID");
})();
</script>
<script>
document.getElementById('contactForm').addEventListener('submit', function(event) {
event.preventDefault();
emailjs.sendForm('YOUR_SERVICE_ID', 'YOUR_TEMPLATE_ID', this)
.then(function() {
alert('Message sent successfully!');
}, function(error) {
alert('Failed to send message. Error: ' + JSON.stringify(error));
});
});
</script>
<script>
module.exports = {
theme: {
extend: {
animation: {
'loop-scroll': 'loop-scroll 50s linear infinite',
'running-code': 'running-code 20s linear infinite',
},
keyframes: {
'loop-scroll': {
from: { transform: 'translateX(0)' },
to: { transform: 'translateX(-100%)' },
},
'running-code': {
'0%': { transform: 'translateY(0)' },
'100%': { transform: 'translateY(-100%)' },
},
},
colors: {
futuristic: {
primary: '#00FFFF',
secondary: '#0F0F0F',
accent: '#FF00FF',
},
},
fontSize: {
'xxs': '0.625rem',
'3xl': '1.75rem',
},
fontWeight: {
hairline: '100',
extrabold: '800',
},
},
},
plugins: [],
};
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
body {
font-family: "Zilla Slab", serif;
color:black;
}
body::-webkit-scrollbar {
display: none;
}
.carousel {
width: 100%;
height: 300px;
background-color: #000;
margin-top: 20px;
}
.text-light {
font-weight: lighter;
}
.expand-transition {
transition: max-height 0.5s ease-out;
overflow: hidden;
}
.expand-transition.collapsed {
max-height: 0;
}
.expand-transition.expanded {
max-height: 1000px; /* Adjust based on content height */
}
.background-grid {
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
background-size: 50px 50px;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -0.5;
animation: grid-fade 10s ease-in-out infinite;
}
.code-animation {
font-family: 'Courier New', Courier, monospace;
white-space: pre;
overflow: hidden;
height: 100%;
color: rgba(255, 255, 255, 0.8);
animation: running-code 20s linear infinite;
display: flex;
flex-direction: column;
gap: 0;
padding-right: 20px;
box-sizing: border-box;
}
@keyframes scroll {
0% { transform: translateX(100%); }
100% { transform: translateX(-80%); }
}
.animate-scroll {
display: flex;
animation: scroll 12s linear infinite;
}
a {
pointer-events: auto;
}
header {
background: linear-gradient(to right, lightblue, white, lightblue);
}
header div {
white-space: nowrap;
}
@keyframes running-code {
0% {
transform: translateY(0);
}
100% {
transform: translateY(calc(-100% + 1em));
}
}
.custom-blur {
filter: blur(1.5px);
}
.overlay-image {
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 25%;
background: url('img/overlay.png') no-repeat center center;
background-size: cover;
opacity: 0.2;
pointer-events: none;
}
#dropdownNavbar {
z-index: 1000; /* Ensure it is on top */
}
#dropdownNavbar {
pointer-events: auto; /* Ensure pointer events are enabled */
}
.carousel {
width: 100%;
height: 300px;
background-color: black;
margin-top: 20px;
}
.text-light {
font-weight: lighter;
}
.animate-loop-scroll {
animation: loop-scroll 20s linear infinite;
}
@keyframes loop-scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
</style>
<script type="module">
import preline from 'https://cdn.jsdelivr.net/npm/[email protected]/+esm'
</script>
<script>
function toggleContent(expandedId, button) {
const expandedContent = document.getElementById(expandedId);
if (expandedContent.classList.contains('hidden')) {
expandedContent.classList.remove('hidden');
button.textContent = "Read Less";
} else {
expandedContent.classList.add('hidden');
button.textContent = "Read More";
}
}
</script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
</head>
<body>
<!-- Registration -->
<div id="default-modal" tabindex="-1" aria-hidden="true"
class="hidden overflow-y-auto overflow-x-hidden fixed top-0 right-0 left-0 z-50 justify-center items-center w-full md:inset-0 h-[calc(100%-1rem)] max-h-full">
<div class="relative p-4 w-full max-w-2xl max-h-full">
<!-- Modal content -->
<div class="relative bg-white rounded-lg shadow">
<!-- Modal header -->
<div class="flex items-center justify-between p-4 md:p-5 border-b rounded-t">
<h3 class="text-xl font-semibold text-gray-900">
Registration
</h3>
<button type="button"
class="text-gray-400 bg-transparent hover:bg-gray-200 hover:text-gray-900 rounded-lg text-sm w-8 h-8 ms-auto inline-flex justify-center items-center"
data-modal-hide="default-modal">
<svg class="w-3 h-3" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 14 14">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m1 1 6 6m0 0 6 6M7 7l6-6M7 7l-6 6" />
</svg>
<span class="sr-only">Close modal</span>
</button>
</div>
<!-- Modal body -->
<div class="p-4 md:p-5 space-y-4">
<div>
<h5 class="font-bold text-lg mb-2">Registration Fees:</h5>
<table class="table-auto text-sm border-collapse border border-gray-500 w-full">
<thead class="text-center text-base">
<tr>
<th class="border-2 border-gray-500 py-4">Category</th>
<th class="border-2 border-gray-500 py-4">Indian delegates<br>(in Rupees)</th>
<th class="border-2 border-gray-500 py-4">Foreign delegates<br>(in USD)</th>
</tr>
</thead>
<tbody>
<tr>
<td class="border-2 border-gray-500 pl-4 py-1">Attendees</td>
<td class="border-2 border-gray-500 text-center">Rs. 3500 + 18% GST</td>
<td class="border-2 border-gray-500 text-center">$80</td>
</tr>
<tr>
<td class="border-2 border-gray-500 pl-4 py-1">Student/Research Scholars</td>
<td class="border-2 border-gray-500 text-center">Rs. 7500 + 18% GST</td>
<td class="border-2 border-gray-500 text-center">$200</td>
</tr>
<tr>
<td class="border-2 border-gray-500 pl-4 py-1">Faculty</td>
<td class="border-2 border-gray-500 text-center">Rs. 8500 + 18% GST</td>
<td class="border-2 border-gray-500 text-center">$250</td>
</tr>
<tr>
<td class="border-2 border-gray-500 pl-4 py-1">Author from Industry</td>
<td class="border-2 border-gray-500 text-center">Rs. 9500 + 18% GST</td>
<td class="border-2 border-gray-500 text-center">$300</td>
</tr>
</tbody>
</table>
</div>
<div>
<h5 class="font-bold text-lg mb-2">Mode of Payment:</h5>
<p class="text-sm text-gray-700 mb-2">All payments should be made through online electronic
transfer in the account of conference with following detail:</p>
<div class="flex justify-center">
<table class="table-auto text-sm">
<tbody>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">Beneficiary Name</td>
<td class="border-b-2 border-gray-300 py-1">National Institute of
Technology Sikkim</td>
</tr>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">Account No</td>
<td class="border-b-2 border-gray-300 py-1">11111111111</td>
</tr>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">Branch</td>
<td class="border-b-2 border-gray-300 py-1">SBI Ravangla</td>
</tr>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">IFSC Code</td>
<td class="border-b-2 border-gray-300 py-1">SBIN0000000</td>
</tr>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">CIF No.</td>
<td class="border-b-2 border-gray-300 py-1">00000000000</td>
</tr>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">MICR Code</td>
<td class="border-b-2 border-gray-300 py-1">000000000</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Modal footer -->
<div class="flex items-center p-4 md:p-5 border-t border-gray-200 rounded-b dark:border-gray-600">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfUptALLTvWPE9mK-7wPIN7Z3eFQ9cRmWw3NhC0yWL8YZuZ3w/viewform" target="_blank" rel="noopener noreferrer"
class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">
Register
</a>
</div>
</div>
</div>
</div>
<!-- Header -->
<nav class="bg-white border-gray-200">
<div class="flex flex-wrap items-center justify-between mx-11 p-4">
<a href="#" class="flex items-center space-x-8 rtl:space-x-reverse">
<img src="img/event_logo.png" width="100" height="100" alt="Event Logo" />
<img src="img/college-logo.png" alt="College Logo" width="65" height="65">
</a>
<div class="hidden w-full md:block md:w-auto" id="navbar-multi-level">
<ul
class="flex flex-col font-medium p-4 md:p-0 mt-4 border border-gray-100 rounded-lg bg-gray-50 md:space-x-8 rtl:space-x-reverse md:flex-row md:mt-0 md:border-0 md:bg-white">
<li>
<a href="#" class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700" aria-current="page">Home</a>
</li>
<li>
<a href="#aboutus"
class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700">About</a>
</li>
<li>
<a href="#committees"
class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700">Committees</a>
</li>
<li>
<a href="#speakers"
class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700">Speakers</a>
</li>
<li>
<a href="#callforsponser"
class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700">Sponsorships</a>
</li>
<li>
<button id="dropdownNavbarLink1" data-dropdown-toggle="dropdownNavbar"
class="flex items-center justify-between w-full py-4 px-1 text-gray-500 hover:bg-transparent border-0 hover:text-blue-700">Program
<svg class="w-2.5 h-2.5 ms-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 10 6">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" d="m1 1 4 4 4-4" />
</svg>
</button>
<!-- Dropdown menu -->
<div id="dropdownNavbar"
class="z-10 hidden font-normal bg-white divide-y divide-gray-100 rounded-lg shadow w-64">
<ul class="py-2 text-sm text-gray-700 space-y-1">
<li><a href="#papers1" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Call for Papers</a></li>
<li><a href="./Files/Poster.pptx" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Call for Poster</a></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSf9_ZGWvDPY5czm_0tbTbUC8PejVLDpMo3HIFH62x6RbrVTSQ/viewform"
target="_blank" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">
Call for Reviewer
</a></li>
<li><a href="#callforsponser" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Call for Sponsorship</a></li>
<li><a href="/guidlines.html" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Guidelines for Authors</a></li>
<li><a href="#imp_dates" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Important Dates</a></li>
</ul>
</div>
</li>
<li>
<button id="dropdownNavbarLink2" data-dropdown-toggle="dropdownNavbar2"
class="flex items-center justify-between w-full py-4 px-1 text-gray-500 hover:bg-transparent border-0 hover:text-blue-700">Contact
<svg class="w-2.5 h-2.5 ms-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 10 6">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" d="m1 1 4 4 4-4" />
</svg>
</button>
<!-- Dropdown menu -->
<div id="dropdownNavbar2"
class="z-10 hidden font-normal bg-white divide-y divide-gray-100 rounded-lg shadow w-64">
<ul class="py-2 text-sm text-gray-700 space-y-1">
<li>
<a href="#howtoreach"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">
Contact Us
</a>
</li>
<li>
<a href="#howtoreach"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">
How to Reach Us
</a>
</li>
</ul>
</div>
</li>
<li>
<button id="dropdownNavbarLink3" data-dropdown-toggle="dropdownNavbar3"
class="flex items-center justify-between w-full py-4 px-1 text-gray-500 hover:bg-transparent border-0 hover:text-blue-700">Downloads
<svg class="w-2.5 h-2.5 ms-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 10 6">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" d="m1 1 4 4 4-4" />
</svg>
</button>
<!-- Dropdown menu -->
<div id="dropdownNavbar3" class="z-10 hidden font-normal bg-white divide-y divide-gray-100 rounded-lg shadow w-64">
<ul class="py-2 text-sm text-gray-700 space-y-1" aria-labelledby="dropdownLargeButton">
<li>
<a href="./Files/Conference_Brochure.pdf" download class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">
Brochure
</a>
</li>
</ul>
</div>
</li>
<li>
<button data-modal-target="default-modal" data-modal-toggle="default-modal"
class="block py-2 px-3 text-gray-900 font-bold rounded-full border-4 border-blue-500 hover:bg-blue-500 hover:text-white transition ease-in-out delay-150">Registration</button>
</li>
</ul>
</div>
</div>
</nav>
<marquee class="py-4 bg-gray-400 text-xl text-white">
Submission Deadline: 31st January 2025
Acceptance Date: 10th March 2025
Conference Dates: 10th - 12th April 2025
</marquee>
<!-- Hero Section -->
<section class="overflow-hidden -translate-y-2">
<div class="relative h-[600px]">
<img class="object-cover h-[600px] w-full" src="img/hero.jpg" alt="Hero Image">
<div class="absolute inset-0 bg-gray-700 opacity-60"></div>
<div class="absolute inset-0 flex flex-col items-center justify-center">
<p class="text-white font-bold text-3xl text-center mb-4">
International Conference on Robotics, Communication and Soft Computing
</p>
<img class="mb-4" width="200px" height="200px" src="img/college-logo.png" alt="College Logo">
<p class="text-white font-black text-4xl mb-4">RCSC' 2025</p>
<p class="text-white text-lg mb-4 font-medium">10th - 12th April 2025</p>
<p class="text-white text-sm mb-4 font-bold">Organized By</p>
<p class="text-white text-xl font-extrabold">National Institute of Technology Sikkim</p>
<p class="text-white text-lg font-bold">Ravangla, Sikkim - 737139, India</p>
</div>
<div class="absolute left-0 top-0 h-screen w-1/4 custom-blur">
<div class="code-animation p-4">
<code>
import numpy as np;<br>
import pandas as pd;<br>
import tensorflow as tf;<br>
from sklearn.model_selection import train_test_split;<br>
from sklearn.metrics import accuracy_score;<br>
from tensorflow.keras.models import Sequential;<br>
from tensorflow.keras.layers import Dense, Dropout;<br>
from tensorflow.keras.utils import to_categorical;<br><br>
// Load and preprocess dataset<br>
data = pd.read_csv('data/ai_conference_data.csv');<br>
X = data.drop('label', axis=1).values;<br>
y = data['label'].values;<br>
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42);<br>
y_train = to_categorical(y_train);<br>
y_test = to_categorical(y_test);<br><br>
// Build the neural network model<br>
model = Sequential();<br>
model.add(Dense(64, activation='relu', input_shape=(X_train.shape[1],)));<br>
model.add(Dropout(0.5));<br>
model.add(Dense(32, activation='relu'));<br>
model.add(Dropout(0.5));<br>
model.add(Dense(y_train.shape[1], activation='softmax'));<br>
model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy']);<br><br>
// Train the model<br>
history = model.fit(X_train, y_train, epochs=50, batch_size=32, validation_data=(X_test, y_test));<br><br>
// Evaluate the model<br>
y_pred = model.predict(X_test);<br>
y_pred_labels = np.argmax(y_pred, axis=1);<br>
y_true_labels = np.argmax(y_test, axis=1);<br>
accuracy = accuracy_score(y_true_labels, y_pred_labels);<br>
console.log(`Model accuracy: ${accuracy * 100:.2f}%`);<br><br>
// Function to make predictions<br>
function makePrediction(inputData) {<br>
inputData = np.array(inputData).reshape(1, -1);<br>
const prediction = model.predict(inputData);<br>
const predictedClass = np.argmax(prediction, axis=1);<br>
return predictedClass;<br>
}<br><br>
// Evaluate the model<br>
y_pred = model.predict(X_test);<br>
y_pred_labels = np.argmax(y_pred, axis=1);<br>
y_true_labels = np.argmax(y_test, axis=1);<br>
accuracy = accuracy_score(y_true_labels, y_pred_labels);<br>
console.log(`Model accuracy: ${accuracy * 100:.2f}%`);<br><br>
// Example prediction<br>
const sampleData = X_test[0];<br>
const prediction = makePrediction(sampleData);<br>
console.log(`Predicted class for sample data: ${prediction[0]}`);<br>
// More AI and ML code snippets can be added here<br>
</code>
</div>
</div>
</section>
<!-- About Us -->
<section class="mt-10" id="aboutus">
<div class="flex mx-auto max-w-7xl gap-8">
<!-- About Event -->
<div class="container mx-auto border-2 border-gray-300 rounded-3xl p-10 shadow-2xl">
<h2 class="font-medium text-5xl text-center mb-8 border-b-1 border-gray-100">About Us</h2>
<img src="img/about-us-image.jpg" alt="About Us Image" class="mb-5 w-full h-auto" />
<!-- About Us Content -->
<div class="flex gap-14">
<div class="flex flex-col items-start gap-2">
<p id="aboutUsContent" class="text-gray-700 text-justify text-lg ">
The objective of Robotics, Communication and Soft Computing is to provide a common platform to researchers, academicians, scientists and industrialists who are working in the area of Robotics and Automation, System Control, Information and Communication, Image Processing, Artificial Intelligence/ Computational Intelligence, etc.
</p>
<div id="expandedContent" class="hidden">
<p class="text-gray-700 text-justify text-lg">
The aim of the conference is to highlight the most recent advances, problems and challenges as well as to present the latest outcomes in related fields with a connection to scientific research and its practical applications. The main purpose of RCSC 2025 is to bring together experts, leading researchers and developers to share knowledge, exchange their views and ideas in the fields of above-mentioned areas. This conference especially encourages participation from the young researchers and invite them to present their work on this platform.
</p>
</div>
<button
class="px-3 py-2 rounded text-white border-4 border-blue-400 shadow-blue-400/50 transition-all duration-700 bg-blue-400 hover:text-blue-500 hover:bg-transparent hover:border-blue-500"
onclick="toggleContent('expandedContent', this)">Read More</button>
</div>
</div>
</div>
<!-- Sponsor, Dates, Registration -->
<div class="container mx-auto border-2 border-gray-300 rounded-3xl p-10 shadow-2xl max-w-md">
<!-- Sponsor -->
<div class="mb-16">
<h2 class="font-medium text-4xl border-b-1 border-gray-100">Sponsors</h2>
<div class="bg-[#921b1f] h-1 max-w-[50%] mb-6"></div>
<p>To be updated soon </p>
<!-- <img src="#" alt="Sponsor" class="mb-6">-->
</div>
<!-- Dates -->
<h2 class="font-medium text-4xl border-b-1 border-gray-100" id="imp_dates">Important Dates</h2>
<div class="bg-[#921b1f] h-1 max-w-[75%] mb-6"></div>
<ol class="relative border-s border-gray-200 translate-x-6">
<li class="mb-10 ms-6">
<span
class="absolute flex items-center justify-center w-6 h-6 bg-blue-900 rounded-full -start-3 ring-8 ring-[#f5f5f5]">
<svg class="w-2.5 h-2.5 text-blue-300" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="currentColor" viewBox="0 0 20 20">
<path
d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z" />
</svg>
</span>
<h3 class="flex items-center mb-1 text-lg font-semibold text-gray-900 ">Submission Deadline
</h3>
<p class="mb-4 text-base font-normal text-gray-500 dark:text-gray-400">31st January 2025</p>
</li>
<li class="mb-10 ms-6">
<span
class="absolute flex items-center justify-center w-6 h-6 bg-blue-900 rounded-full -start-3 ring-8 ring-[#f5f5f5]">
<svg class="w-2.5 h-2.5 text-blue-300" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="currentColor" viewBox="0 0 20 20">
<path
d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z" />
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-900 ">Acceptance Date</h3>
<p class="text-base font-normal text-gray-500 dark:text-gray-400">10th March 2025</p>
</li>
<li class="ms-6">
<span
class="absolute flex items-center justify-center w-6 h-6 bg-blue-900 rounded-full -start-3 ring-8 ring-[#f5f5f5]">
<svg class="w-2.5 h-2.5 text-blue-300" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="currentColor" viewBox="0 0 20 20">
<path
d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z" />
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-900 ">Conference Dates</h3>
<p class="text-base font-normal text-gray-500 dark:text-gray-400">10th - 12th April 2025</p>
</li>
</ol>
<div class="mt-8">
<h2 class="font-medium text-4xl border-b-1 border-gray-100">Publisher</h2>
<div class="bg-[#921b1f] h-1 max-w-[50%] mb-6"></div>
<p>Elsevier (Awaiting Confirmation) </p>
<!-- <img src="#" alt="Sponsor" class="mb-6">-->
</div>
</div>
</div>
<!-- About Sikkim and College -->
<div class="flex flex-col max-w-7xl mx-auto gap-16">
<!-- About Sikkim Section -->
<div class="mx-auto mt-10 border border-gray-300 rounded-3xl p-8 shadow-lg max-w-7xl">
<h2 class="font-semibold text-4xl text-center mb-6 border-b pb-4 border-gray-200">About Sikkim</h2>
<img src="img/images.jpg" alt="About Sikkim" class="h-[500px] w-full object-cover rounded-2xl mb-6">
<div class="flex flex-col gap-6">
<p class="text-gray-700 text-justify text-lg leading-relaxed">
Discover the natural beauty and cultural richness of Sikkim. Nestled in the Himalayas, Sikkim offers breathtaking landscapes, vibrant festivals, and warm hospitality. Explore its serene monasteries, lush valleys, and adventure trails that make it a paradise for travelers and nature enthusiasts. Ravangla, a picturesque town in southern Sikkim, is one of the most serene and beautiful destinations in the state. Perched at an altitude of 7,000 feet, Ravangla offers stunning views of the snow-capped peaks of the Eastern Himalayas, including Kanchenjunga, Pandim, and Siniolchu.
</p>
<div id="aboutSikkimContent" class="hidden">
<p class="text-gray-700 text-justify text-lg leading-relaxed">
The town is a gateway to some of the most scenic treks in Sikkim and is surrounded by dense forests, verdant tea gardens, and quaint villages. One of the major attractions in Ravangla is the Buddha Park (Tathagata Tsal), which features a magnificent 130-foot statue of Lord Buddha. The park is a peaceful place, perfect for meditation and reflection, with beautifully landscaped gardens and panoramic views of the mountains. The area around Ravangla is also rich in biodiversity, making it a great spot for birdwatching, especially in places like the Maenam Wildlife Sanctuary.
</p>
</div>
<button class="px-4 py-2 rounded-full text-white bg-green-500 hover:bg-green-600 transition duration-300"
onclick="toggleContent('aboutSikkimContent', this)">Read More</button>
</div>
</div>
<!-- About College Section -->
<div class="mx-auto mt-16 border border-gray-300 rounded-3xl p-8 shadow-lg max-w-7xl">
<h2 class="font-semibold text-4xl text-center mb-6 border-b pb-4 border-gray-200">About College</h2>
<img src="img/nitsikkim.jpg" alt="About College" class="h-[400px] w-full object-cover rounded-2xl mb-6">
<div class="flex flex-col gap-6">
<p class="text-gray-700 text-justify text-lg leading-relaxed">
NIT Sikkim is a public engineering and research institution near the city of Ravangla, Sikkim, India. It is one of the 31 NITs in India and has been declared as an Institute of National Importance by the Government of India. It is an autonomous institute functioning under the aegis of the Ministry of Education, Government of India. NIT Sikkim is one among the ten newly sanctioned National Institutes of Technology by the Government of India under the 11th Five-year Plan, 2009.
</p>
<div id="aboutCollegeContent" class="hidden">
<p class="text-gray-700 text-justify text-lg leading-relaxed">
NIT Sikkim started functioning in August 2010. Currently, it is being operated from a temporary campus at the Barfung Block, Ravangla Sub-Division of Namchi district. Ravangla campus is surrounded by great scenic beauty. It is likely to continue its activities at Ravangla campus until its permanent campus comes up at Khamdong, Sikkim. All courses and examinations are conducted in the English language as the only mode of instruction. NIT Sikkim offers a 4-year Bachelor of Technology (B.Tech.) programme in various engineering fields, as well as a 2-year Master of Technology (M.Tech.), Master of Science (M.Sc.) and Ph.D. Programmes. Admissions to undergraduate programmes are taken through IIT-JEE (Mains). Admission to the postgraduate courses is through the GATE/JAM.
</p>
</div>
<button class="px-4 py-2 rounded-full text-white bg-purple-500 hover:bg-purple-600 transition duration-300"
onclick="toggleContent('aboutCollegeContent', this)">Read More</button>
</div>
</div>
</div>
</section>
<!-- Topics -->
<section id="papers1">
<div class="container mt-12 mx-auto border-2 border-gray-300 rounded-3xl p-10 shadow-2xl max-w-7xl">
<h2 class="font-medium text-5xl text-center mb-8 border-b-2 border-gray-200">Topics of Event</h2>
<!-- Slider -->
<div data-hs-carousel='{ "loadingClasses": "opacity-0", "isAutoPlay": true }' class="relative">
<div class="hs-carousel relative overflow-hidden w-full min-h-96 bg-white rounded-lg">
<div
class="hs-carousel-body absolute top-0 bottom-0 start-0 flex flex-nowrap transition-transform duration-700 opacity-0">
<div class="hs-carousel-slide">
<div class="flex justify-start h-full bg-gray-100 gap-10">
<img src="img/Robotics_andMechatronics.jpg" alt="Robotics_andMechatronics"
style="height: 384px; width: 384px;">
<span class="self-start text-gray-800 transition duration-700">
<h2 class="font-bold text-3xl mb-4 mt-10">Robotics & Mechatronics</h2>
<div class="flex flex-col text-lg gap-2">
<p><b>➼</b> Robotics Control & Navigation</p>
<p><b>➼</b> Robot Perception & Sensing</p>
<p><b>➼</b> Human-Robot Interaction</p>
<p><b>➼</b> Robotics Applications & Systems</p>
<p><b>➼</b> Mechatronic System Design</p>
<p><b>➼</b> Intelligent Control Systems</p>
<p><b>➼</b> Robotic Hardware & Mechanism</p>
</div>
</span>
</div>
</div>
<div class="hs-carousel-slide">
<div class="flex justify-start h-full bg-gray-100 gap-10">
<img src="img/Artificial_intelegence.jpg" alt="Artificial_intelegence"
style="height: 384px; width: 384px;">
<span class="self-start text-4xl text-gray-800 transition duration-700">
<h2 class="font-bold text-3xl mb-4 mt-10">Artificial Intelligence</h2>
<div class="flex flex-col gap-2 text-lg">
<p><b>➼</b> Supervised Learning</p>
<p><b>➼</b> Unsupervised Learning</p>
<p><b>➼</b> Reinforcement Learning</p>
<p><b>➼</b> Neural Networks</p>
<p><b>➼</b> Natural Language Processing (NLP)</p>
<p><b>➼</b> Text Classification</p>
<p><b>➼</b> Sentiment Analysis</p>
<p><b>➼</b> Computer Vision</p>
<p><b>➼</b> AI Ethics, Fairness & Bias</p>
</div>
</span>
</div>
</div>
<div class="hs-carousel-slide">
<div class="flex justify-start h-full bg-gray-100 gap-10">
<img src="img/system_controlandoptimization.jpg" alt="system_controlandoptimization"
style="height: 384px; width: 384px;">
<span class="self-start text-4xl text-gray-800 transition duration-700">
<h2 class="font-bold text-3xl mb-4 mt-10">System Control & Optimizations</h2>
<div class="flex flex-col gap-2 text-lg">
<p><b>➼</b> Control Theory & Techniques</p>
<p><b>➼</b> Multi-Agent Systems & Distributed Control</p>
<p><b>➼</b> Stochastic Control & Estimation</p>
<p><b>➼</b> Optimization Algorithms and Techniques</p>
<p><b>➼</b> System Identification & Parameter Estimation</p>
<p><b>➼</b> Adaptive & Learning Control Systems</p>
<p><b>➼</b> Knowledge Base Management Systems (KBMS)</p>
</div>
</span>
</div>
</div>
<div class="hs-carousel-slide">
<div class="flex justify-start h-full bg-gray-100 gap-10">
<img src="img/expert_system.jpg" alt="..." style="height: 384px; width: 384px;">
<span class="self-start text-4xl text-gray-800 transition duration-700">
<h2 class="font-bold text-3xl mb-4 mt-10">Expert System</h2>
<div class="flex flex-col gap-2 text-lg">
<p><b>➼</b> Knowledge Representation & Acquisition</p>
<p><b>➼</b> Rule-Based Systems</p>
<p><b>➼</b> Ontologies & Semantic Networks</p>
<p><b>➼</b> Inference Engines & Reasoning</p>
<p><b>➼</b> Decision Support Systems</p>
<p><b>➼</b> Bias & Fairness in Expert Systems</p>
<p><b>➼</b> Knowledge Base Management Systems (KBMS)</p>
</div>
</span>
</div>
</div>
<div class="hs-carousel-slide">
<div class="flex justify-start h-full bg-gray-100 gap-10">
<img src="img/informatin_communicationtechnology.jpg"
alt="informatin_communicationtechnology" style="height: 384px; width: 384px;">
<span class="self-start text-4xl text-gray-800 transition duration-700">
<h2 class="font-bold text-3xl mb-4 mt-10">Information and Communication Technology
</h2>
<div class="flex flex-col gap-2 text-lg">
<p><b>➼</b> Telecommunication Networks & Systems</p>
<p><b>➼</b> Internet of Things (IoT) and Smart Cities</p>
<p><b>➼</b> Cloud Computing & Virtualization</p>
<p><b>➼</b> Cybersecurity and Privacy</p>
<p><b>➼</b> Software Defined Networks</p>
<p><b>➼</b> 5G/6G</p>
</div>
</span>
</div>
</div>
<div class="hs-carousel-slide">
<div class="flex justify-start h-full bg-gray-100 gap-10">
<img src="img/image_processing_example.jpg" alt="image_processing_example"
style="height: 384px; width: 384px;">
<span class="self-start text-4xl text-gray-800 transition duration-700">
<h2 class="font-bold text-3xl mb-4 mt-10">Image Processing</h2>
<div class="flex flex-col gap-2 text-lg">
<p><b>➼</b> Image Enhancement</p>
<p><b>➼</b> Image Restoration</p>
<p><b>➼</b> Image Segmentation</p>
<p><b>➼</b> Feature Extraction and Representation</p>
<p><b>➼</b> Object Detection & Recognition</p>
<p><b>➼</b> Biomedical Image Analysis</p>
<p><b>➼</b> Remote Sensing Image Processing</p>
<p><b>➼</b> Real-Time Image Processing</p>
</div>
</span>
</div>
</div>
<div class="hs-carousel-slide">
<div class="flex justify-start h-full bg-gray-100 gap-10">
<img src="img/Ai_in controlapplication.jpg" alt="Ai_incontrol application"
style="height: 384px; width: 384px;">
<span class="self-start text-4xl text-gray-800 transition duration-700">
<h2 class="font-bold text-3xl mb-4 mt-10">AI in Control Application</h2>
<div class="flex flex-col gap-2 text-lg">
<p><b>➼</b> Model-Free Control Methods</p>
<p><b>➼</b> Model-Based Control with Machine Learning</p>
<p><b>➼</b> Deep Learning in Control Systems</p>
<p><b>➼</b> Machine Learning for Non-linear control</p>
<p><b>➼</b> Interpretability & Explainability in Learned Control
Systems</p>
</div>
</span>
</div>
</div>
<div class="hs-carousel-slide">
<div class="flex justify-start h-full bg-gray-100 gap-10">
<img src="img/softcomputing.jpg" alt="softcomputing "
style="height: 384px; width: 384px;">
<span class="self-start text-4xl text-gray-800 transition duration-700">
<h2 class="font-bold text-3xl mb-4 mt-10">Soft Computing/Computational Intelligence
</h2>
<div class="flex flex-col gap-2 text-lg">
<p><b>➼</b> Fuzzy Systems</p>
<p><b>➼</b> Evolutionary Algorithms</p>
<p><b>➼</b> Swarm Intelligence</p>
<p><b>➼</b> Rough Sets and Granular Computing</p>
<p><b>➼</b> Metaheuristic Optimization</p>
<p><b>➼</b> Multi-Objective Optimization</p>
<p><b>➼</b> Explainable and Interpretable Soft Computing</p>
<p><b>➼</b> Bio-Inspired Computing</p>
</div>
</span>
</div>
</div>
</div>
</div>
<button type="button"
class="hs-carousel-prev hs-carousel:disabled:opacity-50 disabled:pointer-events-none absolute inset-y-0 start-0 inline-flex justify-center items-center w-[46px] h-full text-gray-800 hover:bg-gray-800/10 rounded-s-lg">
<span class="text-2xl" aria-hidden="true">
<svg class="flex-shrink-0 size-5" xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="m15 18-6-6 6-6"></path>
</svg>
</span>
<span class="sr-only">Previous</span>
</button>
<button type="button"
class="hs-carousel-next hs-carousel:disabled:opacity-50 disabled:pointer-events-none absolute inset-y-0 end-0 inline-flex justify-center items-center w-[46px] h-full text-gray-800 hover:bg-gray-800/10 rounded-e-lg">
<span class="sr-only">Next</span>
<span class="text-2xl" aria-hidden="true">
<svg class="flex-shrink-0 size-5" xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="m9 18 6-6-6-6"></path>
</svg>
</span>
</button>
</div>
</div>
</section>
<!-- Keynote Speakers -->
<section id="speakers">
<div class="container mt-12 mx-auto border-2 border-gray-300 rounded-3xl p-10 shadow-2xl max-w-7xl">
<h2 class="font-medium text-5xl text-center mb-8 border-b-2 border-gray-200">Keynote Speakers</h2>
<div class="grid grid-cols-3 place-content-between place-items-center gap-10">
<div class="text-center bg-white border border-gray-300 rounded-lg shadow-lg overflow-hidden w-[275px]">
<img src="img/Keynote Speakers/Prof. Xiao-Zhi Gao.jpg" class="w-full h-[250px] object-cover" alt="Prof. Xiao-Zhi Gao">
<div class="p-4">
<p class="font-bold text-xl mb-2 pt-4">Prof. Xiao-Zhi Gao</p>
<p class="mb-4 text-gray-700">Professor</p>
<p class="mb-4 text-gray-700">University of Eastern Finland</p>
<a href="#" class="text-gray-400 hover:text-blue-500 fa-xl"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="text-center bg-white border border-gray-300 rounded-lg shadow-lg overflow-hidden w-[275px]">
<img src="img/Keynote Speakers/Prof. Shubhendu Bhasin.jpg" class="w-full h-[250px] object-cover" alt="Prof. Shubhendu Bhasin">
<div class="p-4">
<p class="font-bold text-xl mb-2 pt-4">Prof. Shubhendu Bhasin</p>
<p class="mb-4 text-gray-700">Professor</p>
<p class="mb-4 text-gray-700">IIT Delhi</p>
<a href="#" class="text-gray-400 hover:text-blue-500 fa-xl"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="text-center bg-white border border-gray-300 rounded-lg shadow-lg overflow-hidden w-[275px]">
<img src="img/Keynote Speakers/Prof. Nishchal K. Verma.jpg" class="w-full h-[250px] object-cover" alt="Prof. Nischal K Verma">
<div class="p-4">
<p class="font-bold text-xl mb-2 pt-4">Prof. Nishchal K. Verma</p>
<p class="mb-4 text-gray-700">Professor</p>
<p class="mb-4 text-gray-700">IIT Kanpur</p>
<a href="#" class="text-gray-400 hover:text-blue-500 fa-xl"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="text-center bg-white border border-gray-300 rounded-lg shadow-lg overflow-hidden w-[275px]">
<img src="img/Keynote Speakers/Dr. Damodar Reddy Edla.png" class="w-full h-[250px] object-cover" alt="Dr. Damodar Reddy Edla">
<div class="p-4">
<p class="font-bold text-xl mb-2 pt-4">Dr. Damodar Reddy Edla</p>
<p class="mb-4 text-gray-700">Associate Professor</p>
<p class="mb-4 text-gray-700">NIT Goa</p>
<a href="#" class="text-gray-400 hover:text-blue-500 fa-xl"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<!-- <div class="text-center">
<img src="https://placehold.co/250">
<div class="border-l-2 border-r-2 border-b-2 border-black rounded-b-md">
<p class="font-bold text-xl mb-2 pt-4">Name</p>
<p class="mb-4">Designation</p>
<a href="#" class="text-gray-400 hover:text-blue-500 fa-xl"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="text-center">
<img src="https://placehold.co/250">
<div class="border-l-2 border-r-2 border-b-2 border-black rounded-b-md">
<p class="font-bold text-xl mb-2 pt-4">Name</p>
<p class="mb-4">Designation</p>
<a href="#" class="text-gray-400 hover:text-blue-500 fa-xl"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="text-center">
<img src="https://placehold.co/250">
<div class="border-l-2 border-r-2 border-b-2 border-black rounded-b-md">
<p class="font-bold text-xl mb-2 pt-4">Name</p>
<p class="mb-4">Designation</p>
<a href="#" class="text-gray-400 hover:text-blue-500 fa-xl"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="text-center">
<img src="https://placehold.co/250">
<div class="border-l-2 border-r-2 border-b-2 border-black rounded-b-md">
<p class="font-bold text-xl mb-2 pt-4">Name</p>
<p class="mb-4">Designation</p>
<a href="#" class="text-gray-400 hover:text-blue-500 fa-xl"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="text-center">
<img src="https://placehold.co/250">
<div class="border-l-2 border-r-2 border-b-2 border-black rounded-b-md">
<p class="font-bold text-xl mb-2 pt-4">Name</p>
<p class="mb-4">Designation</p>
<a href="#" class="text-gray-400 hover:text-blue-500 fa-xl"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div> -->
</div>
</section>
<!-- Committee -->
<section id="committees">
<div class="mt-12 mx-auto border-2 border-gray-300 rounded-3xl p-10 shadow-2xl max-w-7xl h-full">
<h2 class="font-medium text-5xl text-center mb-8 border-b-2 border-gray-200">Committee</h2>
<div class="flex justify-around">
<div class="">
<div class="flex flex-col gap-y-8">
<button onclick="showDiv(2)" id="bttn2" class="bttn py-3 pr-12 text-left pl-2 bg-blue-300 rounded-r-xl">Patron</button>
<button onclick="showDiv(3)" id="bttn3" class="bttn py-3 pr-12 text-left pl-2 bg-blue-300 rounded-r-xl">Conveners</button>
<button onclick="showDiv(4)" id="bttn4" class="bttn py-3 pr-12 text-left pl-2 rounded-r-xl">Advisory</button>
<button onclick="showDiv(5)" id="bttn5" class="bttn py-3 pr-12 text-left pl-2 rounded-r-xl">Technical Program</button>
<button onclick="showDiv(10)" id="bttn10" class="bttn py-3 pr-12 text-left pl-2 rounded-r-xl">Local Advisory Committee</button>