-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTechSponsor.html
More file actions
677 lines (653 loc) · 32.6 KB
/
Copy pathTechSponsor.html
File metadata and controls
677 lines (653 loc) · 32.6 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Technical Sponsors | MetaSphere 2026</title>
<link rel="stylesheet" href="/Style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<script src="https://unpkg.com/lucide@latest"></script>
<link
href="https://unpkg.com/aos@2.3.1/dist/aos.css"
rel="stylesheet"
/>
<!-- AOS JS -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<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;
}
</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="pt-32 pb-16 md:pt-40 md:pb-20 bg-orange-50">
<div
class="max-w-5xl mx-auto text-center px-4"
data-aos="fade-up"
data-aos-duration="2000"
>
<h1
class="text-4xl md:text-6xl font-extrabold text-gray-900 leading-tight"
>
Technical <span class="gradient-text">Sponsors</span>
</h1>
<p class="mt-4 text-lg text-gray-600 max-w-3xl mx-auto">
We are grateful for the generous support of our sponsors
and partners.
</p>
</div>
</section>
<main class="flex justify-center items-start m-10 min-h-[75vh]">
<div class="flex flex-col lg:flex-row gap-8 w-full max-w-7xl">
<div
data-aos="fade-up"
data-aos-delay="200"
data-aos-duration="2000"
class="grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-3 gap-6 flex-grow"
>
<div
class="bg-orange-100 p-6 rounded-2xl flex flex-col gap-6 items-center justify-center shadow-md transition-transform hover:scale-105 h-full"
>
<img
src="Assets/techSponsor5.jpg"
alt="Sponsor"
class="w-32 h-32 object-contain rounded-2xl"
/>
<h1
class="text-center text-lg font-bold text-gray-800 leading-tight"
>
Indian Society for Technical Education, WB
Section
</h1>
</div>
<div
class="bg-orange-100 p-6 rounded-2xl flex flex-col gap-6 items-center justify-center shadow-md transition-transform hover:scale-105 h-full"
>
<img
src="Assets/techSponsor1.png"
alt="Sponsor"
class="w-32 h-32 object-contain rounded-2xl"
/>
<h1
class="text-center text-lg font-bold text-gray-800 leading-tight"
>
Asia-Pacific Artificial Intelligence Association
(AΑΙΑ), Kolkata Branch
</h1>
</div>
<div
class="bg-orange-100 p-6 rounded-2xl flex flex-col gap-6 items-center justify-center shadow-md transition-transform hover:scale-105 h-full"
>
<img
src="Assets/techSponsor2.jpg"
alt="Sponsor"
class="w-32 h-32 object-contain rounded-2xl"
/>
<h1
class="text-center text-lg font-bold text-gray-800 leading-tight"
>
IEM Centre of Excellence for Cloud Computing &
IoT
</h1>
</div>
<div
class="bg-orange-100 p-6 rounded-2xl flex flex-col gap-6 items-center justify-center shadow-md transition-transform hover:scale-105 h-full"
>
<img
src="Assets/techSponsor3.jpg"
alt="Sponsor"
class="w-32 h-32 object-contain rounded-2xl"
/>
<h1
class="text-center text-lg font-bold text-gray-800 leading-tight"
>
Computer Society of India, Kolkata Section
</h1>
</div>
<div
class="bg-orange-100 p-6 rounded-2xl flex flex-col gap-6 items-center justify-center shadow-md transition-transform hover:scale-105 h-full"
>
<img
src="Assets/techSponsor4.jpg"
alt="Sponsor"
class="w-32 h-32 object-contain rounded-2xl"
/>
<h1
class="text-center text-lg font-bold text-gray-800 leading-tight"
>
The Institution of Electronics and
Telecommunication Engineers, Kolkata chapter
</h1>
</div>
</div>
<aside
class="w-full lg:w-[350px] shrink-0 space-y-6"
data-aos="fade-left"
data-aos-duration="2000"
>
<div
class="bg-white border border-gray-100 p-6 rounded-2xl shadow-lg"
>
<h3
class="text-xl font-bold text-gray-900 border-b pb-3 mb-4"
>
Important Deadlines
</h3>
<ul class="space-y-4 text-base text-gray-600">
<li class="grid grid-cols-2 gap-2 items-start">
<span class="leading-tight"
>Full paper submission :</span
>
<strong class="text-gray-800 text-right"
>30th June, 2026</strong
>
</li>
<li class="grid grid-cols-2 gap-2 items-start">
<span class="leading-tight"
>Acceptance notification :</span
>
<strong class="text-gray-800 text-right"
>5th August, 2026</strong
>
</li>
<li class="grid grid-cols-2 gap-2 items-start">
<span class="leading-tight"
>Early bird registration :</span
>
<strong class="text-gray-800 text-right"
>8th August, 2026</strong
>
</li>
<li class="grid grid-cols-2 gap-2 items-start">
<span class="leading-tight"
>Registration Close:</span
>
<strong class="text-gray-800 text-right"
>12th August, 2026</strong
>
</li>
<li class="grid grid-cols-2 gap-2 items-start">
<span class="leading-tight"
>Camera ready paper submission:</span
>
<strong class="text-gray-800 text-right"
>16th August, 2026</strong
>
</li>
<li
class="grid grid-cols-2 gap-2 items-start pt-2 border-t border-gray-50"
>
<span class="leading-tight font-medium"
>Conference date:</span
>
<strong class="text-orange-600 text-right"
>21st & 22nd August, 2026</strong
>
</li>
</ul>
</div>
<div class="sticky top-24 sm:top-28">
<div
class="bg-white border border-gray-200 p-4 rounded-xl shadow-md"
>
<div
class="flex items-center justify-between gap-4"
>
<h3
class="text-xs uppercase tracking-tighter text-orange-500 font-bold whitespace-nowrap"
>
Starts In:
</h3>
<div
id="countdown-container"
class="flex items-center gap-2"
>
<div class="flex items-center gap-1">
<span
id="days"
class="text-xl font-bold text-gray-900"
>00</span
>
<span
class="text-[10px] font-semibold text-gray-500 uppercase"
>D</span
>
</div>
<span class="text-gray-300 font-light"
>:</span
>
<div class="flex items-center gap-1">
<span
id="hours"
class="text-xl font-bold text-gray-900"
>00</span
>
<span
class="text-[10px] font-semibold text-gray-500 uppercase"
>H</span
>
</div>
<span class="text-gray-300 font-light"
>:</span
>
<div class="flex items-center gap-1">
<span
id="minutes"
class="text-xl font-bold text-gray-900"
>00</span
>
<span
class="text-[10px] font-semibold text-gray-500 uppercase"
>M</span
>
</div>
<span class="text-gray-300 font-light"
>:</span
>
<div class="flex items-center gap-1">
<span
id="seconds"
class="text-xl font-bold text-gray-900"
>00</span
>
<span
class="text-[10px] font-semibold text-gray-500 uppercase"
>S</span
>
</div>
</div>
</div>
</div>
</div>
</aside>
</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>
// Initialize Lucide Icons
lucide.createIcons();
AOS.init();
// 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"));
}
});
</script>
<script src="script.js"></script>
</body>
</html>