-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1117 lines (1035 loc) · 68.5 KB
/
index.html
File metadata and controls
1117 lines (1035 loc) · 68.5 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
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" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UnicornXMedia | Founder Visibility Platform</title>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect width='100' height='100' fill='black'/><text x='50' y='70' font-size='50' font-family='sans-serif' font-weight='bold' fill='white' text-anchor='middle'>UX</text></svg>">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['"Plus Jakarta Sans"', 'sans-serif'],
},
colors: {
corporate: {
900: '#0B1120',
800: '#111827',
100: '#F3F4F6'
},
accent: '#2563EB'
}
}
}
}
</script>
<style>
/* Custom Cursor */
body {
cursor: none;
}
.cursor-dot, .cursor-outline {
position: fixed;
top: 0;
left: 0;
transform: translate(-50%, -50%);
border-radius: 50%;
z-index: 9999;
pointer-events: none;
}
.cursor-dot {
width: 8px;
height: 8px;
background-color: #2563EB;
}
.cursor-outline {
width: 40px;
height: 40px;
border: 2px solid rgba(37, 99, 235, 0.5);
transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.cursor-hover .cursor-outline {
width: 60px;
height: 60px;
background-color: rgba(37, 99, 235, 0.1);
border-color: rgba(37, 99, 235, 0.8);
}
.glass-nav {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hover-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.archive-img {
transition: transform 0.5s ease;
}
.archive-item:hover .archive-img {
transform: scale(1.1);
}
.mobile-menu {
display: none;
}
.mobile-menu.active {
display: block;
}
/* Scroll Reveal Animation */
.reveal {
opacity: 0;
transform: translateY(40px);
transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
@media (max-width: 768px) {
.hover-card:hover { transform: translateY(-2px); }
body { cursor: auto; }
.cursor-dot, .cursor-outline { display: none; }
}
/* Performance Optimizations */
.archive-item, .cursor-dot, .cursor-outline {
will-change: transform, opacity;
}
.archive-item {
transform: translateZ(0);
backface-visibility: hidden;
}
</style>
</head>
<body class="bg-corporate-100 text-corporate-900 antialiased overflow-x-hidden">
<!-- Custom Cursor -->
<div class="cursor-dot"></div>
<div class="cursor-outline"></div>
<nav class="fixed w-full z-50 glass-nav transition-all duration-300">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-20">
<a href="index.html" class="flex-shrink-0 flex items-center gap-2">
<div class="w-10 h-10 bg-black text-white flex-shrink-0 flex items-center justify-center font-bold text-xl tracking-tighter">UX</div>
<span class="font-bold text-xl tracking-tight">UnicornXMedia</span>
</a>
<div class="hidden md:flex space-x-8 items-center">
<a href="#services" class="text-gray-600 hover:text-accent font-semibold transition">Services</a>
<a href="#live-event" class="text-gray-600 hover:text-accent font-semibold transition">Live Events</a>
<a href="#archive" class="text-gray-600 hover:text-accent font-semibold transition">Events</a>
<a href="podcasts.html" class="text-gray-600 hover:text-accent font-semibold transition">Podcasts</a>
<a href="#contact" class="text-gray-600 hover:text-accent font-semibold transition">Contact</a>
<a href="#apply" class="bg-corporate-900 text-white px-6 py-2.5 rounded-full font-semibold hover:bg-accent transition shadow-lg">Apply Now</a>
</div>
<button id="mobileMenuBtn" class="md:hidden text-gray-600 hover:text-accent">
<i class="fa-solid fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobileMenu" class="mobile-menu md:hidden bg-white border-t border-gray-200 py-4">
<div class="flex flex-col space-y-4">
<a href="#services" class="text-gray-600 hover:text-accent font-semibold transition px-4">Services</a>
<a href="#live-event" class="text-gray-600 hover:text-accent font-semibold transition px-4">Live Events</a>
<a href="#archive" class="text-gray-600 hover:text-accent font-semibold transition px-4">Events</a>
<a href="podcasts.html" class="text-gray-600 hover:text-accent font-semibold transition px-4">Podcasts</a>
<a href="#contact" class="text-gray-600 hover:text-accent font-semibold transition px-4">Contact</a>
<a href="#apply" class="bg-corporate-900 text-white px-6 py-2.5 rounded-full font-semibold hover:bg-accent transition shadow-lg mx-4 text-center">Apply Now</a>
</div>
</div>
</div>
</nav>
<section class="pt-32 pb-20 lg:pt-48 lg:pb-32 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto text-center reveal">
<h1 class="text-5xl md:text-7xl font-extrabold tracking-tight mb-6 leading-tight">
Become <span class="text-transparent bg-clip-text bg-gradient-to-r from-accent to-blue-400">Impossible</span> to Ignore.
</h1>
<p class="mt-4 max-w-2xl mx-auto text-xl text-gray-500 mb-10">
The premier Founder Visibility Platform. We get founders and investors featured, seen, and positioned through high-tier media, curated events, and strategic podcasts.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#services" class="bg-corporate-900 text-white px-8 py-4 rounded-full font-bold text-lg hover:bg-accent transition shadow-xl">Explore Opportunities</a>
<a href="#live-event" class="bg-white text-corporate-900 border border-gray-200 px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-50 transition shadow-sm">View Current Event</a>
</div>
</section>
<section class="bg-white border-y border-gray-200 py-16 reveal">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center divide-x divide-gray-100">
<div class="p-4">
<div class="text-4xl md:text-5xl font-extrabold text-accent mb-2"><span class="counter" data-target="5">0</span>B+</div>
<div class="text-sm font-semibold text-gray-500 uppercase tracking-wider">Organic Reach</div>
</div>
<div class="p-4">
<div class="text-4xl md:text-5xl font-extrabold text-accent mb-2"><span class="counter" data-target="500">0</span>+</div>
<div class="text-sm font-semibold text-gray-500 uppercase tracking-wider">Media Placements</div>
</div>
<div class="p-4">
<div class="text-4xl md:text-5xl font-extrabold text-accent mb-2"><span class="counter" data-target="100">0</span>+</div>
<div class="text-sm font-semibold text-gray-500 uppercase tracking-wider">Celebrities</div>
</div>
<div class="p-4">
<div class="text-4xl md:text-5xl font-extrabold text-accent mb-2"><span class="counter" data-target="29">0</span>M+</div>
<div class="text-sm font-semibold text-gray-500 uppercase tracking-wider">Interactions</div>
</div>
</div>
</div>
</section>
<section id="services" class="py-24 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 reveal">
<div class="mb-16">
<h2 class="text-3xl font-bold mb-4">Core Opportunities</h2>
<div class="w-20 h-1 bg-accent"></div>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-white rounded-2xl p-8 hover-card border border-gray-100">
<div class="w-14 h-14 bg-blue-50 text-accent rounded-xl flex items-center justify-center text-2xl mb-6">
<i class="fa-solid fa-newspaper"></i>
</div>
<h3 class="text-2xl font-bold mb-3">PR Features</h3>
<p class="text-gray-500 mb-6">Story creation and strategic distribution across 500+ premium media platforms to build unshakeable credibility and authority.</p>
<a href="#apply" class="apply-link text-accent font-bold hover:underline flex items-center gap-2" data-form-type="pr">Apply for PR <i class="fa-solid fa-arrow-right"></i></a>
</div>
<div class="bg-white rounded-2xl p-8 hover-card border border-gray-100">
<div class="w-14 h-14 bg-blue-50 text-accent rounded-xl flex items-center justify-center text-2xl mb-6">
<i class="fa-solid fa-microphone-lines"></i>
</div>
<h3 class="text-2xl font-bold mb-3">Podcast Features</h3>
<p class="text-gray-500 mb-6">Get matched with top-tier podcasts. Engage in value-driven motivational sessions to build a loyal, community-centric audience.</p>
<a href="podcasts.html" class="text-accent font-bold hover:underline flex items-center gap-2">Book a Podcast <i class="fa-solid fa-arrow-right"></i></a>
</div>
<div class="bg-white rounded-2xl p-8 hover-card border border-gray-100">
<div class="w-14 h-14 bg-blue-50 text-accent rounded-xl flex items-center justify-center text-2xl mb-6">
<i class="fa-solid fa-bolt"></i>
</div>
<h3 class="text-2xl font-bold mb-3">Live Events</h3>
<p class="text-gray-500 mb-6">Exclusive access and networking at curated, high-impact industry events alongside founders, brands, and industry leaders.</p>
<a href="archive.html" class="text-accent font-bold hover:underline flex items-center gap-2">View Events <i class="fa-solid fa-arrow-right"></i></a>
</div>
</div>
</section>
<!-- Live Event Section -->
<section id="live-event" class="bg-corporate-900 text-white py-24 relative overflow-hidden reveal">
<div class="absolute top-0 right-0 -translate-y-12 translate-x-1/3 opacity-10">
<i class="fa-solid fa-star text-[400px]"></i>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="flex items-center gap-3 mb-4">
<span id="le-badge" class="bg-red-500 text-white text-xs font-bold px-3 py-1 rounded-full uppercase tracking-widest animate-pulse">Live Now</span>
<span class="text-gray-400 font-semibold tracking-wide">Edition 5</span>
</div>
<div class="grid lg:grid-cols-2 gap-8 items-start">
<!-- Left Column - Event Details -->
<div class="space-y-6">
<h2 id="le-title" class="text-3xl md:text-4xl font-extrabold">Pinkvilla Screen & Style Icons 2026</h2>
<p id="le-desc" class="text-lg text-gray-300 leading-relaxed">
The flagship awards of the global lifestyle and entertainment media hub. Recognizing the crème de la crème of global superstars, business moguls, and fashion icons.
</p>
<!-- Event Details -->
<ul class="space-y-3">
<li class="flex items-center gap-3 text-gray-300">
<i class="fa-solid fa-calendar text-accent text-lg w-5"></i>
<span class="font-semibold">25th March 2026</span>
</li>
<li class="flex items-center gap-3 text-gray-300">
<i class="fa-solid fa-location-dot text-accent text-lg w-5"></i>
<span class="font-semibold">JW Marriott, Juhu, Mumbai</span>
</li>
<li class="flex items-center gap-3 text-gray-300">
<i class="fa-solid fa-users text-accent text-lg w-5"></i>
<span class="font-semibold">Curated Founders & Industry Leaders</span>
</li>
<li class="flex items-center gap-3 text-gray-300">
<i class="fa-solid fa-bullhorn text-accent text-lg w-5"></i>
<span class="font-semibold">OTT, TV & OOH Amplification</span>
</li>
</ul>
<!-- Collapsible Celebrity Guest List -->
<div class="bg-gray-800/50 rounded-xl border border-gray-700 overflow-hidden">
<button id="guestListToggle" class="w-full p-4 flex items-center justify-between hover:bg-gray-800/70 transition">
<h4 class="text-lg font-bold">Confirmed Celebrity Guests (14)</h4>
<i class="fa-solid fa-chevron-down text-accent transition-transform" id="guestListIcon"></i>
</button>
<div id="guestListContent" class="hidden p-4 pt-0">
<div class="grid grid-cols-2 gap-2 text-sm">
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Akshay Kumar</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Varun Dhawan</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Ajay Devgan</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Suniel Shetty</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Arjun Rampal</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Kiara Advani</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Kriti Sanon</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Tamannaah Bhatia</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Huma Qureshi</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Mira Kapoor</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Aneet Padda</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Ahaan Pandey</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Hina Khan</div>
<div class="flex items-center gap-2"><i class="fa-solid fa-star text-accent text-xs"></i> Rupali Ganguly</div>
</div>
</div>
</div>
<!-- Deliverables -->
<div class="bg-gray-800/30 p-4 rounded-xl">
<h4 class="font-bold mb-3">What You Get</h4>
<ul class="space-y-2 text-sm text-gray-300">
<li class="flex items-center gap-2"><i class="fa-solid fa-check text-accent"></i> 2 Award presentations on stage</li>
<li class="flex items-center gap-2"><i class="fa-solid fa-check text-accent"></i> 2 Reels on Instagram & Facebook</li>
<li class="flex items-center gap-2"><i class="fa-solid fa-check text-accent"></i> 2 Static posts on Instagram & Facebook</li>
<li class="flex items-center gap-2"><i class="fa-solid fa-check text-accent"></i> 2 Articles on Pinkvilla.com</li>
<li class="flex items-center gap-2"><i class="fa-solid fa-check text-accent"></i> Red Carpet presence</li>
<li class="flex items-center gap-2"><i class="fa-solid fa-check text-accent"></i> 1 VIP pass included</li>
</ul>
</div>
</div>
<!-- Right Column - Tall Phone-Sized Video -->
<div class="flex items-center justify-center">
<div class="w-full max-w-sm lg:max-w-md">
<div class="aspect-[9/16] bg-gray-800 rounded-2xl border border-gray-700 overflow-hidden shadow-2xl relative">
<video id="eventVideo" autoplay muted loop playsinline preload="auto" class="w-full h-full object-cover">
<source src="assets/videos/vid1.mp4" type="video/mp4">
<source src="assets/videos/vid2.mp4" type="video/mp4">
</video>
<div class="absolute inset-0 bg-gradient-to-t from-corporate-900/60 to-transparent pointer-events-none"></div>
</div>
</div>
</div>
</div>
<!-- Centered Apply Button -->
<div class="text-center mt-12">
<a href="#apply" id="le-btn" data-form-type="attend" class="apply-link inline-block bg-accent text-white px-8 py-4 rounded-full font-bold text-lg hover:bg-blue-500 transition shadow-[0_0_20px_rgba(37,99,235,0.4)]">Attend</a>
</div>
</div>
</section>
<!-- Archive Section with Sponsor Experience -->
<section id="archive" class="py-24 bg-white reveal">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-end mb-12">
<div>
<h2 class="text-4xl font-extrabold mb-4">Sponsor Experience</h2>
<div class="w-20 h-1 bg-accent mb-6"></div>
<p class="text-xl text-gray-600 font-semibold">“See how brands are positioned, experienced, and remembered at our events.”</p>
</div>
</div>
<!-- Sponsor Experience Videos -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-10 mb-16">
<div class="space-y-4">
<div class="aspect-video rounded-2xl overflow-hidden shadow-2xl border border-gray-100">
<video id="sponsor-vid-1" class="w-full h-full object-cover sponsor-video" controls playsinline>
<source src="assets/videos/sponsor-video-1.mp4" type="video/mp4">
</video>
</div>
<p class="text-gray-500 font-medium italic text-center">High-energy event environment designed to maximize brand visibility and audience engagement</p>
</div>
<div class="space-y-4">
<div class="aspect-video rounded-2xl overflow-hidden shadow-2xl border border-gray-100">
<video id="sponsor-vid-2" class="w-full h-full object-cover sponsor-video" controls playsinline>
<source src="assets/videos/sponsor-video-2.mp4" type="video/mp4">
</video>
</div>
<p class="text-gray-500 font-medium italic text-center">Strategic sponsor integration across uring continuous brand exposure</p>
</div>
</div>
<!-- Context Text Block -->
<div class="max-w-3xl mx-auto bg-gray-50 rounded-3xl p-8 md:p-12 mb-16 border border-gray-100 shadow-sm">
<div class="grid md:grid-cols-1 gap-6 text-lg text-gray-700">
<div class="flex items-start gap-4">
<div class="w-2 h-2 bg-accent rounded-full mt-2.5 flex-shrink-0"></div>
<p>Sponsor branding integrated across stage, audience zones, and media capture</p>
</div>
<div class="flex items-start gap-4">
<div class="w-2 h-2 bg-accent rounded-full mt-2.5 flex-shrink-0"></div>
<p>Designed for both on-ground visibility and digital amplification</p>
</div>
<div class="flex items-start gap-4">
<div class="w-2 h-2 bg-accent rounded-full mt-2.5 flex-shrink-0"></div>
<p>Focused on recall, not just placement</p>
</div>
</div>
</div>
<div class="mb-12">
<h2 class="text-4xl font-extrabold mb-4">Events</h2>
<div class="w-20 h-1 bg-accent"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- GIS 2025 -->
<div class="archive-item h-64 rounded-2xl group cursor-pointer relative overflow-hidden shadow-sm hover:shadow-xl transition">
<img src="assets/images/events/Events I Covered/GIS 2025 - Observed how such displays attract and engage crowds/1.jpg" alt="GIS 2025" class="archive-img w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/20 to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex flex-col justify-end p-6">
<h3 class="text-white font-bold text-xl mb-1">GIS 2025</h3>
<p class="text-gray-300 text-sm">Bhopal • Feb 2025</p>
</div>
</div>
<!-- CEO Summit -->
<div class="archive-item h-64 rounded-2xl group cursor-pointer relative overflow-hidden shadow-sm hover:shadow-xl transition">
<img src="assets/images/events/Events I Organized/CEO Summit 2024/Audience Engagement.JPG" alt="CEO Summit 2024" class="archive-img w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/20 to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex flex-col justify-end p-6">
<h3 class="text-white font-bold text-xl mb-1">CEO Summit 2024</h3>
<p class="text-gray-300 text-sm">Mumbai • 2024</p>
</div>
</div>
<!-- Viksit Bharat (Covered) -->
<div class="archive-item h-64 rounded-2xl group cursor-pointer relative overflow-hidden shadow-sm hover:shadow-xl transition lg:col-span-1 md:col-span-1">
<img src="assets/images/events/Events I Covered/India Mission to Viksit Bharat 2025/01.jpg" alt="Viksit Bharat 2025" class="archive-img w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/20 to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex flex-col justify-end p-6">
<h3 class="text-white font-bold text-xl mb-1">Viksit Bharat 2025</h3>
<p class="text-gray-300 text-sm">Delhi • 2025 • Covered</p>
</div>
</div>
</div>
<div class="text-center mt-16 space-y-8">
<p class="text-2xl font-bold text-corporate-900 max-w-3xl mx-auto leading-tight italic">
“We don’t just host events—we create environments where brands are seen, experienced, and remembered.”
</p>
<div class="pt-4">
<a href="archive.html" class="bg-corporate-900 text-white px-10 py-4 rounded-full font-bold hover:bg-accent transition shadow-xl">Explore Full Gallery</a>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-24 bg-corporate-100 reveal">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Get In Touch</h2>
<div class="w-20 h-1 bg-accent mx-auto"></div>
</div>
<div class="grid md:grid-cols-2 gap-12">
<div class="bg-white rounded-2xl p-8 border border-gray-100">
<h3 class="text-2xl font-bold mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex items-center gap-4">
<div class="w-12 h-12 bg-blue-50 rounded-xl flex items-center justify-center">
<i class="fa-solid fa-phone text-accent text-xl"></i>
</div>
<div>
<div class="text-sm text-gray-500 font-semibold">Phone</div>
<a href="tel:+919625363995" class="text-lg font-bold text-corporate-900 hover:text-accent transition">+91 9625363995</a>
</div>
</div>
<div class="flex items-center gap-4">
<div class="w-12 h-12 bg-blue-50 rounded-xl flex items-center justify-center">
<i class="fa-solid fa-envelope text-accent text-xl"></i>
</div>
<div>
<div class="text-sm text-gray-500 font-semibold">Email</div>
<a href="mailto:contact@unicornxmedia.com" class="text-lg font-bold text-corporate-900 hover:text-accent transition">contact@unicornxmedia.com</a>
</div>
</div>
<div class="flex items-center gap-4">
<div class="w-12 h-12 bg-blue-50 rounded-xl flex items-center justify-center">
<i class="fa-solid fa-location-dot text-accent text-xl"></i>
</div>
<div>
<div class="text-sm text-gray-500 font-semibold">Location</div>
<div class="text-lg font-bold text-corporate-900">Delhi, India</div>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-2xl p-8 border border-gray-100">
<h3 class="text-2xl font-bold mb-6">Send a Message</h3>
<form id="contactForm" class="space-y-4">
<input type="text" name="name" placeholder="Your Name" required class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:outline-none focus:border-accent transition">
<input type="email" name="email" placeholder="Your Email" required class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:outline-none focus:border-accent transition">
<textarea name="message" rows="4" placeholder="Your Message" required class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:outline-none focus:border-accent transition resize-none"></textarea>
<button type="submit" class="w-full bg-accent text-white py-3 rounded-lg font-bold hover:bg-blue-600 transition">Send Message</button>
<p id="contactMessage" class="text-center text-sm"></p>
</form>
</div>
</div>
</div>
</section>
<!-- Dynamic Application Form -->
<section id="apply" class="py-24 bg-gradient-to-br from-gray-50 to-blue-50 reveal">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-4xl font-bold mb-4">Apply Now</h2>
<div class="w-20 h-1 bg-accent mx-auto mb-6"></div>
<p class="text-gray-600 text-lg">Choose your opportunity and let's amplify your story</p>
</div>
<!-- Toggle Buttons -->
<div class="flex flex-wrap justify-center gap-4 mb-10">
<button type="button" class="application-toggle active px-8 py-3 rounded-full font-bold transition-all shadow-md" data-form="pr">
<i class="fa-solid fa-newspaper mr-2"></i>PR Campaign
</button>
<button type="button" class="application-toggle px-8 py-3 rounded-full font-bold transition-all shadow-md" data-form="event">
<i class="fa-solid fa-calendar-days mr-2"></i>Host an Event
</button>
<button type="button" class="application-toggle px-8 py-3 rounded-full font-bold transition-all shadow-md" data-form="podcast">
<i class="fa-solid fa-microphone mr-2"></i>Be on Podcast
</button>
<button type="button" class="application-toggle px-8 py-3 rounded-full font-bold transition-all shadow-md" data-form="attend">
<i class="fa-solid fa-ticket mr-2"></i>Attend Event
</button>
</div>
<form id="applicationForm" class="bg-white rounded-2xl p-8 lg:p-12 shadow-xl border border-gray-100">
<input type="hidden" name="applicationType" id="applicationType" value="pr">
<!-- Common Fields -->
<div class="grid md:grid-cols-2 gap-6 mb-6">
<div>
<label class="block text-sm font-bold text-gray-700 mb-2">Full Name *</label>
<input type="text" name="fullName" required class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white">
</div>
<div>
<label class="block text-sm font-bold text-gray-700 mb-2">Email Address *</label>
<input type="email" name="email" required class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white">
</div>
</div>
<div class="grid md:grid-cols-2 gap-6 mb-6">
<div>
<label class="block text-sm font-bold text-gray-700 mb-2">Company / Brand *</label>
<input type="text" name="company" required class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white">
</div>
<div>
<label class="block text-sm font-bold text-gray-700 mb-2">Phone Number *</label>
<input type="tel" name="phone" required class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white">
</div>
</div>
<!-- PR Campaign Fields -->
<div id="prFields" class="form-section">
<div class="mb-6">
<label class="block text-sm font-bold text-gray-700 mb-2">PR Campaign Goal *</label>
<select name="prGoal" class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white">
<option value="">Select your goal</option>
<option value="Brand Awareness">Brand Awareness</option>
<option value="Product Launch">Product Launch</option>
<option value="Thought Leadership">Thought Leadership</option>
<option value="Crisis Management">Crisis Management</option>
<option value="Investor Relations">Investor Relations</option>
</select>
</div>
<div class="mb-6">
<label class="block text-sm font-bold text-gray-700 mb-2">Tell Us Your Story *</label>
<textarea name="prStory" rows="4" class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white resize-none" placeholder="What makes your story newsworthy?"></textarea>
</div>
</div>
<!-- Event Hosting Fields -->
<div id="eventFields" class="form-section hidden">
<div class="mb-6">
<label class="block text-sm font-bold text-gray-700 mb-2">Event Type *</label>
<select name="eventType" class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white">
<option value="">Select event type</option>
<option value="Product Launch">Product Launch</option>
<option value="Networking Event">Networking Event</option>
<option value="Conference">Conference</option>
<option value="Award Ceremony">Award Ceremony</option>
<option value="Panel Discussion">Panel Discussion</option>
</select>
</div>
<div class="grid md:grid-cols-2 gap-6 mb-6">
<div>
<label class="block text-sm font-bold text-gray-700 mb-2">Expected Attendees *</label>
<input type="number" name="attendees" class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white" placeholder="e.g., 200">
</div>
<div>
<label class="block text-sm font-bold text-gray-700 mb-2">Preferred Date *</label>
<input type="date" name="eventDate" class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white">
</div>
</div>
<div class="mb-6">
<label class="block text-sm font-bold text-gray-700 mb-2">Event Details *</label>
<textarea name="eventDetails" rows="4" class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white resize-none" placeholder="Describe your event vision"></textarea>
</div>
</div>
<!-- Podcast Fields -->
<div id="podcastFields" class="form-section hidden">
<div class="mb-6">
<label class="block text-sm font-bold text-gray-700 mb-2">Your Role/Title *</label>
<input type="text" name="role" class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white" placeholder="e.g., CEO, Founder">
</div>
<div class="mb-6">
<label class="block text-sm font-bold text-gray-700 mb-2">Industry/Sector *</label>
<select name="industry" class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white">
<option value="">Select industry</option>
<option value="Technology">Technology</option>
<option value="Finance">Finance</option>
<option value="Healthcare">Healthcare</option>
<option value="E-commerce">E-commerce</option>
<option value="SaaS">SaaS</option>
<option value="Education">Education</option>
<option value="Other">Other</option>
</select>
</div>
<div class="mb-6">
<label class="block text-sm font-bold text-gray-700 mb-2">Your Story & Expertise *</label>
<textarea name="podcastStory" rows="4" class="w-full px-4 py-3 border border-gray-200 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent transition bg-white resize-none" placeholder="What unique insights can you share?"></textarea>
</div>
<div class="mb-6">
<label class="block text-sm font-bold text-gray-700 mb-2">Preferred Podcast Topics</label>
<div class="grid grid-cols-2 gap-3">
<label class="flex items-center gap-2">
<input type="checkbox" name="topics" value="Startup Journey" class="w-4 h-4 text-accent rounded">
<span class="text-sm">Startup Journey</span>
</label>
<label class="flex items-center gap-2">
<input type="checkbox" name="topics" value="Fundraising" class="w-4 h-4 text-accent rounded">
<span class="text-sm">Fundraising</span>
</label>
<label class="flex items-center gap-2">
<input type="checkbox" name="topics" value="Scaling" class="w-4 h-4 text-accent rounded">
<span class="text-sm">Scaling</span>
</label>
<label class="flex items-center gap-2">
<input type="checkbox" name="topics" value="Leadership" class="w-4 h-4 text-accent rounded">
<span class="text-sm">Leadership</span>
</label>
<label class="flex items-center gap-2">
<input type="checkbox" name="topics" value="Innovation" class="w-4 h-4 text-accent rounded">
<span class="text-sm">Innovation</span>
</label>
<label class="flex items-center gap-2">
<input type="checkbox" name="topics" value="Marketing" class="w-4 h-4 text-accent rounded">
<span class="text-sm">Marketing</span>
</label>
</div>
</div>
</div>
<!-- Attend Event Fields -->
<div id="attendFields" class="form-section hidden">
<div class="mb-6">
<p class="text-sm text-gray-500 font-semibold mb-4 text-center">Your Name, Email, Phone, and Company info from above will be used to register you for the event.</p>
</div>
</div>
<div class="mb-6">
<label class="flex items-start gap-2 text-sm text-gray-600">
<input type="checkbox" name="terms" required class="mt-1 w-4 h-4 text-accent rounded">
<span>I agree to the <a href="terms.html" class="text-accent hover:underline font-semibold">Terms & Conditions</a> and <a href="terms.html#privacy" class="text-accent hover:underline font-semibold">Privacy Policy</a></span>
</label>
</div>
<button type="submit" class="w-full bg-gradient-to-r from-corporate-900 to-accent text-white py-4 rounded-lg font-bold hover:shadow-2xl transition-all transform hover:scale-[1.02]">
<i class="fa-solid fa-paper-plane mr-2"></i>Submit Application
</button>
<p id="formMessage" class="mt-4 text-center text-sm font-semibold"></p>
</form>
</div>
</section>
<!-- Newsletter Section -->
<section class="py-20 bg-gradient-to-br from-indigo-600 via-purple-600 to-pink-500 reveal relative overflow-hidden">
<!-- Animated Background Elements -->
<div class="absolute inset-0 opacity-20">
<div class="absolute top-10 left-10 w-72 h-72 bg-white rounded-full blur-3xl animate-pulse"></div>
<div class="absolute bottom-10 right-10 w-96 h-96 bg-blue-300 rounded-full blur-3xl animate-pulse" style="animation-delay: 1s;"></div>
</div>
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center relative z-10">
<div class="mb-6">
<span class="inline-block bg-white/20 backdrop-blur-sm text-white px-4 py-2 rounded-full text-sm font-bold uppercase tracking-wider">
📬 Newsletter
</span>
</div>
<h3 class="text-4xl md:text-5xl font-extrabold text-white mb-4 leading-tight">
Don't Miss Out on <span class="text-yellow-300">Exclusive</span> Opportunities
</h3>
<p class="text-white/90 mb-10 text-lg md:text-xl max-w-2xl mx-auto">
Get founder stories, event invitations, PR tips, and podcast opportunities delivered straight to your inbox every week.
</p>
<form id="newsletterForm" class="flex flex-col sm:flex-row gap-4 max-w-xl mx-auto">
<div class="flex-1 relative">
<i class="fa-solid fa-envelope absolute left-6 top-1/2 transform -translate-y-1/2 text-gray-400"></i>
<input type="email" name="newsletter_email" required placeholder="Enter your email address" class="w-full pl-14 pr-6 py-5 rounded-full focus:ring-4 focus:ring-white/50 focus:outline-none text-gray-800 font-medium shadow-xl">
</div>
<button type="submit" class="bg-white text-purple-600 px-10 py-5 rounded-full font-bold hover:bg-yellow-300 hover:text-purple-700 transition-all shadow-xl transform hover:scale-105 hover:shadow-2xl">
<i class="fa-solid fa-rocket mr-2"></i>Subscribe Now
</button>
</form>
<p class="text-white/80 text-sm mt-6">
<i class="fa-solid fa-shield-halved mr-1"></i>
We respect your privacy. Unsubscribe anytime.
</p>
</div>
</section>
<footer class="bg-corporate-100 border-t border-gray-200 py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<!-- Brand -->
<div class="md:col-span-1">
<div class="flex items-center gap-2 mb-4">
<div class="w-10 h-10 bg-black text-white flex-shrink-0 flex items-center justify-center font-bold text-xl tracking-tighter">UX</div>
<span class="font-bold text-xl tracking-tight text-corporate-900">UnicornXMedia</span>
</div>
<p class="text-gray-500 text-sm">
Amplifying founder stories through strategic PR, events, and media partnerships.
</p>
</div>
<!-- Quick Links -->
<div>
<h4 class="font-bold text-corporate-900 mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#services" class="text-gray-500 hover:text-accent transition">Services</a></li>
<li><a href="#live-event" class="text-gray-500 hover:text-accent transition">Live Events</a></li>
<li><a href="podcasts.html" class="text-gray-500 hover:text-accent transition">Podcasts</a></li>
<li><a href="archive.html" class="text-gray-500 hover:text-accent transition">Events</a></li>
</ul>
</div>
<!-- Services -->
<div>
<h4 class="font-bold text-corporate-900 mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#services" class="text-gray-500 hover:text-accent transition">PR Campaigns</a></li>
<li><a href="#services" class="text-gray-500 hover:text-accent transition">Event Management</a></li>
<li><a href="podcasts.html" class="text-gray-500 hover:text-accent transition">Podcast Features</a></li>
</ul>
</div>
<!-- Contact -->
<div>
<h4 class="font-bold text-corporate-900 mb-4">Contact</h4>
<ul class="space-y-2 text-gray-500 text-sm">
<li class="flex items-center gap-2">
<i class="fa-solid fa-phone text-accent"></i>
<span>+91 9625363995</span>
</li>
<li class="flex items-center gap-2">
<i class="fa-solid fa-envelope text-accent"></i>
<span>contact@unicornxmedia.com</span>
</li>
<li class="flex items-center gap-2">
<i class="fa-solid fa-location-dot text-accent"></i>
<span>Delhi, India</span>
</li>
</ul>
<div class="flex space-x-3 mt-4">
<a href="#" class="w-10 h-10 rounded-full bg-white border border-gray-200 flex items-center justify-center text-gray-600 hover:text-accent hover:border-accent transition">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white border border-gray-200 flex items-center justify-center text-gray-600 hover:text-accent hover:border-accent transition">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white border border-gray-200 flex items-center justify-center text-gray-600 hover:text-accent hover:border-accent transition">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<!-- Bottom Bar -->
<div class="border-t border-gray-200 pt-8 flex flex-col md:flex-row justify-between items-center gap-4">
<div class="text-gray-500 text-sm">
© 2026 UnicornXMedia. All rights reserved.
</div>
<div class="flex gap-6 text-sm">
<a href="terms.html" class="text-gray-500 hover:text-accent transition">Terms & Conditions</a>
<a href="terms.html#privacy" class="text-gray-500 hover:text-accent transition">Privacy Policy</a>
</div>
</div>
</div>
</footer>
<!-- Live Event Popup -->
<div id="liveEventPopup"
class="fixed inset-0 bg-black/60 backdrop-blur-sm z-50 flex items-center justify-center p-4"
style="display: none;">
<div
class="bg-gradient-to-br from-corporate-900 to-gray-900 text-white rounded-3xl max-w-2xl w-full mx-4 shadow-2xl transform transition-all animate-fade-in relative overflow-hidden">
<!-- Close Button -->
<div id="popupTimer" class="absolute top-4 right-16 w-8 h-8 bg-blue-100/30 text-white font-bold rounded-full flex items-center justify-center text-sm font-mono z-10">5</div>
<button id="closePopup"
class="absolute top-4 right-4 w-10 h-10 bg-white/10 hover:bg-white/20 rounded-full flex items-center justify-center transition z-10">
<i class="fa-solid fa-times text-xl"></i>
</button>
<!-- Decorative Elements -->
<div class="absolute top-0 right-0 -translate-y-12 translate-x-1/3 opacity-10 pointer-events-none">
<i class="fa-solid fa-star text-[300px]"></i>
</div>
<div class="p-6 md:p-8 relative z-10">
<div class="flex items-center gap-3 mb-4">
<span
class="bg-red-500 text-white text-xs font-bold px-3 py-1 rounded-full uppercase tracking-widest animate-pulse">Live
Now</span>
<span id="popup-edition" class="text-gray-400 font-semibold tracking-wide">Edition 5</span>
</div>
<h2 id="popup-title" class="text-4xl md:text-5xl font-extrabold mb-4 leading-tight">
Pinkvilla Screen & Style Icons 2026
</h2>
<div class="flex flex-wrap gap-4 mb-6 text-sm">
<div class="flex items-center gap-2">
<i class="fa-solid fa-calendar text-accent"></i>
<span>March 25, 2026</span>
</div>
<div class="flex items-center gap-2">
<i class="fa-solid fa-location-dot text-accent"></i>
<span>JW Marriott, Mumbai</span>
</div>
<div class="flex items-center gap-2">
<i class="fa-solid fa-users text-accent"></i>
<span>500+ Attendees</span>
</div>
</div>
<p id="popup-desc" class="text-gray-300 text-lg mb-8 leading-relaxed">
Join India's most prestigious celebration of style, entertainment, and influence. Network with
14 celebrity guests, top founders, and industry leaders in an exclusive evening of recognition
and opportunity.
</p>
<div class="flex flex-col sm:flex-row gap-4">
<a href="#live-event"
class="bg-accent hover:bg-blue-600 text-white px-8 py-4 rounded-full font-bold transition shadow-lg text-center">
<i class="fa-solid fa-ticket mr-2"></i>View Full Details
</a>
<a href="#apply" id="applyFromPopup" data-form-type="attend"
class="apply-link bg-white/10 hover:bg-white/20 text-white px-8 py-4 rounded-full font-bold transition border border-white/20 text-center">
<i class="fa-solid fa-paper-plane mr-2"></i>Attend
</a>
</div>
</div>
</div>
</div>
<script src="assets/js/main.js"></script>
<script>
(function() {
// Live Event Popup Functionality
const liveEventPopup = document.getElementById('liveEventPopup');
const closePopupBtn = document.getElementById('closePopup');
const applyFromPopupBtn = document.getElementById('applyFromPopup');
// Show popup on page load with 5-second countdown (Once per session)
window.addEventListener('load', () => {
if (sessionStorage.getItem('liveEventPopupShown')) return;
setTimeout(() => {
if (liveEventPopup) {
liveEventPopup.style.display = 'flex';
liveEventPopup.style.animation = 'fadeIn 0.3s ease-in';
sessionStorage.setItem('liveEventPopupShown', 'true');
let timeLeft = 5;
const timerEl = document.getElementById('popupTimer');
const countdown = setInterval(() => {
timeLeft--;
if (timerEl) timerEl.textContent = timeLeft;
if (timeLeft <= 0) {
clearInterval(countdown);
liveEventPopup.style.animation = 'fadeOut 0.3s ease-out';
setTimeout(() => {
liveEventPopup.style.display = 'none';
}, 300);
}
}, 1000);
}
}, 500);
});
// Close popup on button click
if (closePopupBtn && liveEventPopup) {
closePopupBtn.addEventListener('click', () => {
liveEventPopup.style.animation = 'fadeOut 0.3s ease-out';
setTimeout(() => {
liveEventPopup.style.display = 'none';
}, 300);
});
}
// Close popup when clicking outside
if (liveEventPopup) {
liveEventPopup.addEventListener('click', (e) => {
if (e.target === liveEventPopup) {
liveEventPopup.style.animation = 'fadeOut 0.3s ease-out';
setTimeout(() => {
liveEventPopup.style.display = 'none';
}, 300);
}
});
}
// Handle apply from popup button
if (applyFromPopupBtn) {
applyFromPopupBtn.addEventListener('click', (e) => {
e.preventDefault();
liveEventPopup.style.display = 'none';
// Assuming 'liveEvent' object is available in this scope with event data
// This code block is intended to dynamically update the popup content
// It's placed here as per instruction, but typically would be called when showing the popup.
const popupTitle = document.querySelector('#liveEventPopup h2');
if (popupTitle) {
// These properties (liveEvent.title, etc.) are assumed to exist
// and would need to be populated from an actual event data source.
// For this faithful edit, we're adding the code as provided.
popupTitle.textContent = liveEvent.title;
document.querySelector('#liveEventPopup .text-gray-400').textContent = liveEvent.edition || '';
const popupDetails = document.querySelector('#liveEventPopup .flex-wrap');
if (popupDetails) {
popupDetails.innerHTML = `
<div class="flex items-center gap-2">
<i class="fa-solid fa-calendar text-accent"></i>
<span>${liveEvent.display_date}</span>
</div>
<div class="flex items-center gap-2">
<i class="fa-solid fa-location-dot text-accent"></i>
<span>${liveEvent.location}</span>
</div>
`;
}
const popupDesc = document.querySelector('#liveEventPopup p.text-gray-300');
if (popupDesc) popupDesc.textContent = liveEvent.description;
}
const target = document.getElementById('apply');
if (target) {
target.scrollIntoView({ behavior: 'smooth' });
}
});
}
// Add CSS animations
const style = document.createElement('style');
style.textContent = `
@keyframes fadeIn {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
}
@keyframes fadeOut {
from { opacity: 1; transform: scale(1); }
to { opacity: 0; transform: scale(0.95); }
}
`;
document.head.appendChild(style);
})();
</script>
<!-- Submission Success Popup -->
<div id="successPopup" class="fixed inset-0 bg-black/60 backdrop-blur-sm z-[60] flex items-center justify-center p-4" style="display: none;">
<div class="bg-white rounded-3xl p-8 max-w-sm w-full text-center shadow-2xl transform transition-all animate-fade-in relative">
<div id="countdownTimer" class="absolute top-4 right-16 w-8 h-8 bg-blue-100/50 text-blue-600 font-bold rounded-full flex items-center justify-center text-sm font-mono">5</div>
<button onclick="document.getElementById('successPopup').style.display = 'none'; clearInterval(window.countdownInterval); clearTimeout(window.successTimeout);" class="absolute top-4 right-4 w-8 h-8 bg-gray-100 hover:bg-gray-200 rounded-full flex items-center justify-center transition">
<i class="fa-solid fa-times text-gray-600"></i>
</button>
<div class="w-16 h-16 bg-green-100 text-green-500 rounded-full flex items-center justify-center text-3xl mx-auto mb-4">
<i class="fa-solid fa-check"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-2">Thank You!</h3>
<p class="text-gray-600 font-medium">Your submission has been received. Our team will get back to you shortly.</p>
</div>
</div>
<script>
async function loadDynamicContent() {
try {
// Fetch Events and Settings
const [eventsRes, settingsRes] = await Promise.all([
fetch(`admin_api.php?action=fetch_events&t=${Date.now()}`),
fetch(`admin_api.php?action=fetch_settings&t=${Date.now()}`)
]);
const eventsData = await eventsRes.json();
const settingsData = await settingsRes.json();
if (eventsData.success && eventsData.events) {
const allEvents = eventsData.events;
const liveEvent = allEvents.find(e => e.is_live);
const featuredIds = (settingsData.success && settingsData.settings) ? (settingsData.settings.homepage_featured_events || []) : [];
const featuredEvents = allEvents.filter(e => featuredIds.includes(e.id));
// 1. Update Live Event Section
if (liveEvent) {
const leTitle = document.getElementById('le-title');
const leDesc = document.getElementById('le-desc');
if (leTitle) leTitle.textContent = liveEvent.title;
if (leDesc) leDesc.textContent = liveEvent.description;
const editionSpan = document.querySelector('#live-event .text-gray-400');
if (editionSpan) editionSpan.textContent = liveEvent.edition || '';
// Update details
const detailsList = document.querySelector('#live-event ul');
if (detailsList) {
detailsList.innerHTML = `
<li class="flex items-center gap-3 text-gray-300">
<i class="fa-solid fa-calendar text-accent text-lg w-5"></i>
<span class="font-semibold">${liveEvent.display_date}</span>
</li>
<li class="flex items-center gap-3 text-gray-300">
<i class="fa-solid fa-location-dot text-accent text-lg w-5"></i>
<span class="font-semibold">${liveEvent.location}</span>
</li>
${liveEvent.category ? `
<li class="flex items-center gap-3 text-gray-300">
<i class="fa-solid fa-tags text-accent text-lg w-5"></i>