-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAdvisoryCommittee.html
More file actions
824 lines (791 loc) · 39.3 KB
/
Copy pathAdvisoryCommittee.html
File metadata and controls
824 lines (791 loc) · 39.3 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Advisory Committee | MetaSphere 2026</title>
<link rel="stylesheet" href="/Style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Hind+Siliguri:wght@400;600&display=swap"
rel="stylesheet"
/>
<script src="https://unpkg.com/lucide@latest"></script>
<link
rel="stylesheet"
href="https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.datatables.net/responsive/2.5.0/css/responsive.dataTables.min.css"
/>
<style>
body {
font-family: "Inter", sans-serif;
background-color: #fffbf5;
color: #1a202c;
}
.gradient-text {
background: linear-gradient(45deg, #f97316, #d946ef);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}
.font-bengali {
font-family: "Hind Siliguri", sans-serif;
}
/* Custom Styles for DataTables to match the theme */
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
color: #1a202c;
border: 1px solid #e2e8f0;
border-radius: 0.5rem;
padding: 0.5rem 0.75rem;
transition: all 0.2s ease-in-out;
}
.dataTables_wrapper .dataTables_length select:focus,
.dataTables_wrapper .dataTables_filter input:focus {
outline: none;
border-color: #f97316;
box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.3);
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
padding: 0.5em 1em;
margin-left: 2px;
border-radius: 0.5rem;
transition: all 0.2s ease-in-out;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
background: #f97316;
color: white !important;
border: 1px solid #f97316;
}
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
color: #4a5568;
}
#committeeTable thead {
background-color: #fef3c7;
/* A light orange to match the theme */
}
#customLength {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
background-position: right 0.5rem center;
background-repeat: no-repeat;
background-size: 1.5em 1.5em;
padding-right: 2.5rem;
}
</style>
</head>
<body class="antialiased">
<div class="main-container">
<header
class="top-0 left-0 right-0 z-50 bg-black/30 backdrop-blur-lg shadow-md relative"
>
<!-- Banner Section -->
<div class="relative">
<img
src="Assets/003.svg"
alt="Conference Banner"
class="w-full h- object-cover"
/>
<!-- Optional dark overlay for readability -->
<div class="absolute inset-0"></div>
</div>
<!-- Navigation Bar -->
<div
class="max-w-7xl mx-auto flex justify-between items-center px-4 sm:px-6 py-3"
>
<!-- Logo -->
<div class="flex flex-col space-x-2">
<span class="text-lg sm:text-xl font-bold text-white"
>MetaSphere 2026</span
>
<!-- <span class="text-xs text-white "> Global Conference on Cloud, Virtualization & Metaverse</span> -->
</div>
<!-- Desktop Nav -->
<div class="hidden md:flex items-center">
<nav
class="flex items-center space-x-5 text-sm font-medium"
>
<a
href="/index.html"
class="text-white hover:text-orange-400 transition"
>Home</a
>
<!-- Authors Dropdown -->
<div class="relative">
<button
onclick="toggleDropdown('authorsDropdown')"
class="text-white hover:text-orange-400 flex items-center"
>
Authors
<i
data-lucide="chevron-down"
class="w-3.5 h-3.5 ml-1"
></i>
</button>
<div
id="authorsDropdown"
class="absolute mt-2 w-48 bg-white rounded-md shadow-lg py-1 hidden z-50"
>
<a
href="/CallPapers.html"
class="block px-4 py-2 text-gray-700 hover:bg-orange-100"
>Call For Papers</a
>
<a
href="/PaperSubmit.html"
class="block px-4 py-2 text-gray-700 hover:bg-orange-100"
>Paper Submission</a
>
</div>
</div>
<a
href="/technical-programs.html"
class="text-white hover:text-orange-400 transition"
>Technical Programs</a
>
<a
href="/registration.html"
class="text-white hover:text-orange-400 transition"
>Registration</a
>
<a
href="/Keynote_Speaker.html"
class="text-white hover:text-orange-400 transition"
>Keynote Speakers</a
>
<!-- Committee Dropdown -->
<div class="relative">
<button
onclick="
toggleDropdown('committeeDropdown')
"
class="text-white hover:text-orange-400 flex items-center"
>
Committee
<i
data-lucide="chevron-down"
class="w-3.5 h-3.5 ml-1"
></i>
</button>
<div
id="committeeDropdown"
class="absolute mt-2 w-48 bg-white rounded-md shadow-lg py-1 hidden z-50"
>
<a
href="/scientific-committee.html"
class="block px-4 py-2 text-gray-700 hover:bg-orange-100"
>Scientific Committee</a
>
<a
href="/AdvisoryCommittee.html"
class="block px-4 py-2 text-gray-700 hover:bg-orange-100"
>Advisory Committee</a
>
<a
href="/TechCommittee.html"
class="block px-4 py-2 text-gray-700 hover:bg-orange-100"
>Technical Programs Committee</a
>
<a
href="/AAIA.html"
class="block px-4 py-2 text-gray-700 hover:bg-orange-100"
>AAIA Committee</a
>
</div>
</div>
<a
href="/TechSponsor.html"
class="text-white hover:text-orange-400 transition"
>Technical Sponsors</a
>
<a
href="/Contact.html"
class="text-white hover:text-orange-400 transition"
>Contact</a
>
</nav>
<!-- Register Button -->
<a
href="/registration.html"
class="ml-6 px-4 py-1.5 rounded-md text-sm font-semibold shadow-md transition bg-orange-500 text-white hover:bg-orange-600"
>
Register Now
</a>
</div>
<!-- Mobile Hamburger -->
<button
onclick="toggleMobileMenu()"
class="md:hidden p-2 rounded-md text-white hover:bg-orange-400"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="26"
height="26"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="4" x2="20" y1="12" y2="12" />
<line x1="4" x2="20" y1="6" y2="6" />
<line x1="4" x2="20" y1="18" y2="18" />
</svg>
</button>
</div>
<!-- Mobile Menu -->
<div
id="mobileMenu"
class="md:hidden hidden bg-black/70 text-white px-6 py-4 space-y-4"
>
<a href="/index.html" class="block hover:text-orange-400"
>Home</a
>
<a
href="/CallPapers.html"
class="block hover:text-orange-400"
>Call for Papers</a
>
<a
href="/Keynote_Speaker.html"
class="block hover:text-orange-400"
>Keynote Speakers</a
>
<a
href="/PaperSubmit.html"
class="block hover:text-orange-400"
>Paper Submission</a
>
<a
href="/technical-programs.html"
class="block hover:text-orange-400"
>Technical Programs</a
>
<a
href="/registration.html"
class="block hover:text-orange-400"
>Registration</a
>
<a
href="/scientific-committee.html"
class="block hover:text-orange-400"
>Scientific Committee</a
>
<a
href="/AdvisoryCommittee.html"
class="block hover:text-orange-400"
>Advisory Committee</a
>
<a
href="/TechCommittee.html"
class="block hover:text-orange-400"
>Technical Program Committee</a
>
<a href="/AAIA.html" class="block hover:text-orange-400"
>AAIA Committee</a
>
<a
href="/TechSponsor.html"
class="block hover:text-orange-400"
>Technical Sponsors</a
>
<a href="/Contact.html" class="block hover:text-orange-400"
>Contact</a
>
<a
href="/registration.html"
class="block bg-orange-500 text-center rounded-md py-2 text-sm font-semibold hover:bg-orange-600"
>Register Now</a
>
</div>
</header>
<section
class="relative pt-32 pb-20 sm:pt-60 sm:pb-24 overflow-hidden"
>
<div
id="video-slideshow"
class="absolute top-0 left-0 w-full h-full z-0"
>
<video
autoplay
loop
muted
class="absolute top-0 left-0 w-full h-full object-cover transition-opacity duration-1000 ease-in-out opacity-100"
>
<source src="/Assets/submit.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</div>
<div
class="absolute top-0 left-0 w-full h-full bg-gradient-to-t from-[#FFFBF5] via-[#FFFBF5]/80 to-transparent z-10"
></div>
<div
class="relative max-w-5xl mx-auto text-center px-4 z-20"
data-aos="fade-up"
data-aos-duration="2000"
>
<div class="max-w-5xl mx-auto text-center px-4">
<h1
class="text-4xl md:text-6xl font-extrabold text-gray-900 leading-tight"
>
Advisory
<span class="gradient-text">Committee</span>
</h1>
<p class="mt-4 text-lg text-gray-600 max-w-3xl mx-auto">
Meet the members of our esteemed Advisory Committee.
</p>
</div>
</div>
</section>
<main class="mb-12">
<div class="max-w-5xl mx-auto px-4">
<table
id="committeeTable"
class="display"
style="width: 100%"
>
<thead>
<tr>
<th class="text-left p-4">Name</th>
<th class="text-left p-4">Affiliation</th>
</tr>
</thead>
<tbody>
<tr>
<td>Dr. Prasanth Aruchamy</td>
<td>Vel Tech University, Chennai, India</td>
</tr>
<tr>
<td>Shashi Kant Gupta</td>
<td>
Lincoln University College, Petaling Jaya,
Selangor, Malaysia
</td>
</tr>
<tr>
<td>Gaurav Gupta</td>
<td>Shoolini University</td>
</tr>
<tr>
<td>Dr. Tushar Hrishikesh Jaware</td>
<td>
R. C. Patel Institute of Technology, Shirpur
</td>
</tr>
<tr>
<td>Dr. C. Kishor Kumar Reddy</td>
<td>
Stanley College of Engineering and
Technology for Women, India
</td>
</tr>
<tr>
<td>Dr. Varun Chand H</td>
<td>
College of Engineering, Perumon, Kerala,
India
</td>
</tr>
<tr>
<td>Er. Kritika</td>
<td>Independent</td>
</tr>
<tr>
<td>Deeksha Dwivedi</td>
<td>Leslie’s USA</td>
</tr>
<tr>
<td>Mainak Adhikari</td>
<td>
School of Data Science, Indian Institute of
Science Education and Research,
Thiruvananthapuram
</td>
</tr>
<tr>
<td>Chintan M. Bhatt</td>
<td>University of Wollongong: India</td>
</tr>
<tr>
<td>Dr. Arijit Roy</td>
<td>
Indian Institute of Technology, Patna, India
</td>
</tr>
<tr>
<td>Mirvari Gazanfarli</td>
<td>
Department of Business Management,
Azerbaijan State University of Economics
(UNEC), Baku, Azerbaijan
</td>
</tr>
<tr>
<td>Ramya Mandava</td>
<td>
Georgia Institute of Technology, Georgia,
USA
</td>
</tr>
<tr>
<td>Dr. Jyotsna Kumar Mandal</td>
<td>Kalyani University, West Bengal, India</td>
</tr>
<tr>
<td>Sanjaya Kumar Panda</td>
<td>NIT Warangal, India</td>
</tr>
<tr>
<td>Shailja Gupta</td>
<td>ADP</td>
</tr>
<tr>
<td>Meetu Malhotra</td>
<td>
Harrisburg University of Science and
Technology, PA, USA
</td>
</tr>
<tr>
<td>Dr. Debashis De</td>
<td>MAKAUT, West Bengal, India</td>
</tr>
<tr>
<td>Dr. Mohamed Lahby</td>
<td>
University Hassan II, Higher Normal School
of Casablanca, Morocco
</td>
</tr>
<!-- Distinguished Professors -->
<tr>
<td>Prof. Sankar K. Pal</td>
<td>
Indian Statistical Institute, Kolkata, India
</td>
</tr>
<tr>
<td>Prof. Nikhil Ranjan Pal</td>
<td>
Indian Statistical Institute, Kolkata, India
</td>
</tr>
<tr>
<td>Prof. Ujjwal Maulik</td>
<td>Jadavpur University, India</td>
</tr>
<tr>
<td>Prof. Anupam Basu</td>
<td>
Indian Institute of Technology, Kharagpur,
India
</td>
</tr>
<tr>
<td>Prof. Amit Konar</td>
<td>Jadavpur University, India</td>
</tr>
<tr>
<td>Prof. Bidyut Baran Chaudhuri</td>
<td>
Indian Statistical Institute, Kolkata, India
</td>
</tr>
<tr>
<td>Prof. Sushmita Mitra</td>
<td>
Indian Statistical Institute, Kolkata, India
</td>
</tr>
<tr>
<td>Prof. Bijaya Ketan Panigrahi</td>
<td>
Indian Institute of Technology, Delhi, India
</td>
</tr>
<tr>
<td>Prof. Ponnuthurai Nagaratnam</td>
<td>
Nanyang Technological University, Singapore
</td>
</tr>
<tr>
<td>Prof. Elizabeth C. Behrman</td>
<td>Wichita State University, USA</td>
</tr>
<tr>
<td>Prof. Rajkumar Buyya</td>
<td>The University of Melbourne, Australia</td>
</tr>
<tr>
<td>Prof. Saman K. Halgamuge</td>
<td>The University of Melbourne, Australia</td>
</tr>
<tr>
<td>Prof. Aboul Ella Hassanien</td>
<td>Cairo University, Egypt</td>
</tr>
<tr>
<td>Prof. Mario Koeppen</td>
<td>Kyushu Institute of Technology, Japan</td>
</tr>
<tr>
<td>Prof. Rudolf Kruse</td>
<td>
Otto-von-Guericke University, Magdeburg,
Germany
</td>
</tr>
<tr>
<td>Prof. Janusz Kacpryzk</td>
<td>Polish Academy of Sciences, Poland</td>
</tr>
<tr>
<td>Prof. Bhabani P. Sinha</td>
<td>
Indian Statistical Institute, Kolkata, India
</td>
</tr>
<tr>
<td>Prof. Malay Kumar Kundu</td>
<td>
Indian Statistical Institute, Kolkata, India
</td>
</tr>
</tbody>
</table>
</div>
</main>
<!-- <main class="py-20 md:py-28">
<div class="max-w-7xl mx-auto px-4">
<div class="bg-white p-6 sm:p-8 rounded-2xl shadow-lg border border-gray-100">
<div class="mb-6">
<h2 class="text-3xl font-bold text-gray-900">Advisory Committee Members</h2>
<h3 class="font-bengali text-2xl text-orange-600 mt-1">উপদেষ্টা কমিটির সদস্যবৃন্দ</h3>
<p class="mt-4 text-gray-600">Their strategic guidance and vision are invaluable to the success of MetaSphere 2026.</p>
</div>
<div class="flex flex-col lg:flex-row gap-4 justify-between items-center mb-6 p-4 bg-orange-50/50 rounded-lg">
<div class="flex flex-col sm:flex-row items-center gap-4">
<div class="flex items-center gap-2 text-sm text-gray-700 font-semibold">
<label for="customLength">Show</label>
<select id="customLength" class="rounded-md border-gray-300 shadow-sm focus:border-orange-300 focus:ring focus:ring-orange-200 focus:ring-opacity-50">
<option value="10">10</option>
<option value="25">25</option>
<option value="50">50</option>
<option value="-1">All</option>
</select>
<span>Entries</span>
</div>
<div id="nationality-toggle" class="flex items-center rounded-lg shadow-sm bg-white border border-gray-300 text-sm font-semibold">
<button type="button" id="allBtn" class="px-4 py-2 rounded-l-md transition-colors active">All</button>
<button type="button" id="nationalBtn" class="px-4 py-2 border-l border-r transition-colors">National <span class="font-bengali font-normal">(জাতীয়)</span></button>
<button type="button" id="internationalBtn" class="px-4 py-2 rounded-r-md transition-colors">International <span class="font-bengali font-normal">(আন্তর্জাতিক)</span></button>
<style>#nationality-toggle button.active { background-color: #F97316; color: white; }</style>
</div>
</div>
<div class="relative w-full sm:w-64">
<input type="text" id="customSearch" class="pl-10 pr-4 py-2 w-full rounded-md border-gray-300 shadow-sm focus:border-orange-300 focus:ring focus:ring-orange-200 focus:ring-opacity-50" placeholder="Search members...">
<i data-lucide="search" class="absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-gray-400"></i>
</div>
</div>
<div class="rounded-xl overflow-hidden border border-gray-200">
<table id="committeeTable" class="display responsive nowrap" style="width:100%;">
<thead>
<tr>
<th>Name</th>
<th>Affiliation</th>
<th>Nationality</th>
</tr>
</thead>
<tbody>
<tr><td>Prof. Dr. A. K. Sen</td><td>IIT Delhi</td><td>India</td></tr>
<tr><td>Prof. Elena Petrova</td><td>University of Munich</td><td>Germany</td></tr>
<tr><td>Dr. Hiroshi Tanaka</td><td>University of Tokyo</td><td>Japan</td></tr>
<tr><td>Dr. Susan Richards</td><td>MIT</td><td>USA</td></tr>
<tr><td>Prof. (Dr.) B. C. Roy</td><td>Jadavpur University</td><td>India</td></tr>
<tr><td>Dr. Chen Wei</td><td>Tsinghua University</td><td>China</td></tr>
<tr><td>Prof. David Adebayo</td><td>University of Lagos</td><td>Nigeria</td></tr>
<tr><td>Dr. Sanghamitra Bandyopadhyay</td><td>Indian Statistical Institute</td><td>India</td></tr>
<tr><td>Dr. Carlos Silva</td><td>University of São Paulo</td><td>Brazil</td></tr>
<tr><td>Dr. Fiona Murray</td><td>University of Cambridge</td><td>UK</td></tr>
<tr><td>Prof. Anil K. Gupta</td><td>IIM Ahmedabad</td><td>India</td></tr>
</tbody>
</table>
</div>
</div>
</div>
</main> -->
<footer class="bg-gray-800 text-gray-300">
<div class="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:px-8">
<div
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"
>
<div class="md:col-span-2 lg:col-span-2">
<div
class="flex items-center space-x-3 mb-4 border-b-2 border-b-white"
>
<span class="text-2xl font-bold text-white"
>MetaSphere 2026</span
>
</div>
<p
style="text-align: justify"
class="text-sm text-gray-400 max-w-lg"
>
MetaSphere 2026 is the premier global conference
bridging the future of Cloud, Virtualization,
and the Metaverse. We are dedicated to fostering
innovation, connecting experts, and exploring
the next digital frontier, all from the cultural
heart of Kolkata.
</p>
</div>
<div>
<h4 class="font-semibold text-white mb-4">
Quick Links
</h4>
<ul class="space-y-2 text-sm">
<li>
<a
href="index.html"
class="hover:text-orange-400 transition-colors"
>Home</a
>
</li>
<li>
<a
href="CallPapers.html"
class="hover:text-orange-400 transition-colors"
>Call For Papers</a
>
</li>
<li>
<a
href="/scientific-committee.html"
class="hover:text-orange-400 transition-colors"
>Scientific Committee</a
>
</li>
<li>
<a
href="/AdvisoryCommittee.html"
class="hover:text-orange-400 transition-colors"
>Advisory Committee</a
>
</li>
<li>
<a
href="/TechCommittee.html"
class="hover:text-orange-400 transition-colors"
>Technical Program Committee</a
>
</li>
<li>
<a
href="/Keynote_Speaker.html"
class="hover:text-orange-400 transition-colors"
>Keynote Speakers</a
>
</li>
<li>
<a
href="/registration.html"
class="hover:text-orange-400 transition-colors"
>Registration</a
>
</li>
</ul>
</div>
<div>
<h4 class="font-semibold text-white mb-4">
Contact & Venue
</h4>
<div class="text-sm space-y-2">
<p class="font-bold">IEM Ashram Building</p>
<p class="text-gray-400">
GN-34/2, Sector V, Bidhannagar, Kolkata,
West Bengal 700091
</p>
<a
href="mailto:metaSphere2026@iem.edu.in"
class="block hover:text-orange-400 transition-colors pt-2"
>metaSphere2026@iem.edu.in</a
>
<a
href="tel:+918981774023"
class="block hover:text-orange-400 transition-colors"
>+91 898 177 4023</a
>
</div>
<div class="mt-4 rounded-lg overflow-hidden">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3670.123456789!2d88.4296927!3d22.5701392!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a0275b23d77ee27%3A0xcd498ec0d7bf6f54!2sInstitute%20of%20Engineering%20and%20Management%20(Ashram%20Building)!5e0!3m2!1sen!2sin!4v1690000000000"
width="100%"
height="150"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
>
</iframe>
</div>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-700 text-center">
<p class="text-sm text-gray-400">
© 2026 MetaSphere Conference Committee. All
Rights Reserved.
</p>
</div>
</div>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script>
<script src="script.js"></script>
<script>
// Initialize Lucide Icons
lucide.createIcons();
// Dropdown Menu Logic
function toggleDropdown(id) {
const dropdown = document.getElementById(id);
const isHidden = dropdown.classList.contains("hidden");
document
.querySelectorAll("nav .absolute")
.forEach((el) => el.classList.add("hidden"));
if (isHidden) {
dropdown.classList.remove("hidden");
}
}
document.addEventListener("click", function (event) {
const nav = document.querySelector("nav");
if (nav && !nav.contains(event.target)) {
document
.querySelectorAll("nav .absolute")
.forEach((el) => el.classList.add("hidden"));
}
});
// DataTables Initialization and Custom Controls
$(document).ready(function () {
$("#committeeTable").DataTable({
pageLength: 10,
responsive: true,
language: {
search: "Filter members:",
lengthMenu: "Show _MENU_ entries",
},
});
});
</script>
</body>
</html>