-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathrollout.html
1376 lines (1275 loc) · 72.6 KB
/
rollout.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" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="AI-generated website">
<meta name="theme-color" content="#ffffff">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="robots" content="index, follow">
<!-- Performance optimization: Preload critical resources -->
<link rel="preload" href="https://cdn.tailwindcss.com" as="script">
<link rel="preload"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap"
as="style">
<!-- {headerScripts} -->
<!-- Core CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
50: '#f8f8f8',
100: '#e8e8e8',
200: '#d3d3d3',
300: '#a3a3a3',
400: '#737373',
500: '#525252',
600: '#404040',
700: '#262626',
800: '#171717',
900: '#0a0a0a',
950: '#030303',
},
secondary: {
50: '#f8f8f8',
100: '#e8e8e8',
200: '#d3d3d3',
300: '#a3a3a3',
400: '#737373',
500: '#525252',
600: '#404040',
700: '#262626',
800: '#171717',
900: '#0a0a0a',
950: '#030303',
},
accent: {
50: '#f8f8f8',
100: '#e8e8e8',
200: '#d3d3d3',
300: '#a3a3a3',
400: '#737373',
500: '#525252',
600: '#404040',
700: '#262626',
800: '#171717',
900: '#0a0a0a',
950: '#030303',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif'],
heading: ['Montserrat', 'Inter', 'system-ui', 'sans-serif'],
},
spacing: {
'18': '4.5rem',
'22': '5.5rem',
'30': '7.5rem',
},
maxWidth: {
'8xl': '88rem',
'9xl': '96rem',
},
animation: {
'fade-in': 'fadeIn 0.5s ease-in',
'fade-out': 'fadeOut 0.5s ease-out',
'slide-up': 'slideUp 0.5s ease-out',
'slide-down': 'slideDown 0.5s ease-out',
'slide-left': 'slideLeft 0.5s ease-out',
'slide-right': 'slideRight 0.5s ease-out',
'scale-in': 'scaleIn 0.5s ease-out',
'scale-out': 'scaleOut 0.5s ease-out',
'spin-slow': 'spin 3s linear infinite',
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'bounce-slow': 'bounce 3s infinite',
'float': 'float 3s ease-in-out infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
fadeOut: {
'0%': { opacity: '1' },
'100%': { opacity: '0' },
},
slideUp: {
'0%': { transform: 'translateY(20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
slideDown: {
'0%': { transform: 'translateY(-20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
slideLeft: {
'0%': { transform: 'translateX(20px)', opacity: '0' },
'100%': { transform: 'translateX(0)', opacity: '1' },
},
slideRight: {
'0%': { transform: 'translateX(-20px)', opacity: '0' },
'100%': { transform: 'translateX(0)', opacity: '1' },
},
scaleIn: {
'0%': { transform: 'scale(0.9)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
},
scaleOut: {
'0%': { transform: 'scale(1.1)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
},
aspectRatio: {
'portrait': '3/4',
'landscape': '4/3',
'ultrawide': '21/9',
},
},
},
variants: {
extend: {
opacity: ['disabled'],
cursor: ['disabled'],
backgroundColor: ['active', 'disabled'],
textColor: ['active', 'disabled'],
},
},
}
</script>
<!-- Utilities and Components -->
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/alpinejs/3.13.3/cdn.min.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/apexcharts/3.45.1/apexcharts.min.js"></script>
<!-- Optimized Font Loading -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap"
rel="stylesheet">
<!-- Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Base Styles -->
<style>
* {
-ms-overflow-style: none;
/* IE and Edge */
scrollbar-width: none;
/* Firefox */
}
/* Webkit browsers like Chrome, Safari, newer Edge */
*::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 0px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #666;
}
/* Remove tap highlight on mobile */
* {
-webkit-tap-highlight-color: transparent;
}
/* Improve text rendering */
body {
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Focus outline styles */
:focus-visible {
outline: 2px solid currentColor;
outline-offset: 2px;
}
/* Print styles */
@media print {
.no-print {
display: none !important;
}
a[href]:after {
content: " (" attr(href) ")";
}
}
</style>
<!-- Enhanced Image Handler -->
<script>
document.addEventListener('DOMContentLoaded', () => {
const imageObserver = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const img = entry.target;
if (img.dataset.src) {
const tempImage = new Image();
tempImage.onload = () => {
img.src = img.dataset.src;
img.classList.remove('opacity-0');
img.classList.add('opacity-100');
};
tempImage.src = img.dataset.src;
img.removeAttribute('data-src');
observer.unobserve(img);
}
}
});
}, {
rootMargin: '50px 0px',
threshold: 0.01
});
const loadImage = (img) => {
if ('loading' in HTMLImageElement.prototype) {
img.loading = 'lazy';
}
img.classList.add('transition-opacity', 'duration-300', 'opacity-0');
img.onerror = () => {
const width = img.getAttribute('width') || img.clientWidth || 300;
const height = img.getAttribute('height') || img.clientHeight || 200;
img.src = `https://placehold.co/${width}x${height}/DEDEDE/555555?text=Image+Unavailable`;
img.alt = 'Image unavailable';
img.classList.remove('opacity-0');
img.classList.add('opacity-100', 'error-image');
};
if (img.dataset.src) {
imageObserver.observe(img);
} else {
img.classList.remove('opacity-0');
img.classList.add('opacity-100');
}
};
document.querySelectorAll('img[data-src], img:not([data-src])').forEach(loadImage);
// Watch for dynamically added images
new MutationObserver((mutations) => {
mutations.forEach(mutation => {
mutation.addedNodes.forEach(node => {
if (node.nodeType === 1) {
if (node.tagName === 'IMG') {
loadImage(node);
}
node.querySelectorAll('img').forEach(loadImage);
}
});
});
}).observe(document.body, {
childList: true,
subtree: true
});
});
// Performance monitoring
if ('performance' in window && 'PerformanceObserver' in window) {
// Create performance observer
const observer = new PerformanceObserver((list) => {
const entries = list.getEntries();
entries.forEach((entry) => {
if (entry.entryType === 'largest-contentful-paint') {
// console.log(`LCP: ${entry.startTime}ms`);
}
if (entry.entryType === 'first-input') {
// console.log(`FID: ${entry.processingStart - entry.startTime}ms`);
}
if (entry.entryType === 'layout-shift') {
// console.log(`CLS: ${entry.value}`);
}
});
});
// Observe performance metrics
observer.observe({ entryTypes: ['largest-contentful-paint', 'first-input', 'layout-shift'] });
// Log basic performance metrics
window.addEventListener('load', () => {
const timing = performance.getEntriesByType('navigation')[0];
console.log({
'DNS Lookup': timing.domainLookupEnd - timing.domainLookupStart,
'TCP Connection': timing.connectEnd - timing.connectStart,
'DOM Content Loaded': timing.domContentLoadedEventEnd - timing.navigationStart,
'Page Load': timing.loadEventEnd - timing.navigationStart
});
});
}
// Handle offline/online status
window.addEventListener('online', () => {
document.body.classList.remove('offline');
console.log('Connection restored');
});
window.addEventListener('offline', () => {
document.body.classList.add('offline');
console.log('Connection lost');
});
</script>
</head>
<body class="antialiased text-gray-800 min-h-screen flex flex-col">
<!-- Skip to main content link for accessibility -->
<a href="#main-content"
class="sr-only focus:not-sr-only focus:absolute focus:top-0 focus:left-0 focus:z-50 focus:p-4 focus:bg-white focus:text-black">
Skip to main content
</a>
<!-- Header -->
<header class="relative z-50 bg-white dark:bg-gray-900">
<!-- Header content goes here -->
</header>
<!-- Main content area -->
<main id="main-content" class="flex-1 relative ">
<!-- Content will be injected here -->
</main>
<!-- {bodyScripts} -->
</body>
</html>
<element id="f05112ea-dd96-4b28-a3ab-1d68a2529638" data-section-id="f05112ea-dd96-4b28-a3ab-1d68a2529638">
<htmlCode>
<div id="root">
<nav id="navbar" class="fixed w-full z-50 bg-neutral-900/95 backdrop-blur-sm border-b border-neutral-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-10 w-10" src="https://vjdataquesters.vercel.app/dq_logo.png" alt="VJ DataQuesters Logo">
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-4">
<a href="#hero"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
<a href="#about"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">About</a>
<a href="#activities"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Activities</a>
<a href="#projects"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Projects</a>
<a href="#team"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Team</a>
<a href="#events"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Events</a>
<a href="#resources"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Resources</a>
<a href="#contact"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Contact</a>
</div>
</div>
</div>
<div class="-mr-2 flex md:hidden">
<button type="button"
class="hamburger inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-neutral-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-neutral-800 focus:ring-white">
<span class="sr-only">Open main menu</span>
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</div>
<div class="mobile-menu hidden md:hidden">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3 bg-neutral-900 animate__animated animate__fadeIn">
<a href="#hero"
class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Home</a>
<a href="#about"
class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">About</a>
<a href="#activities"
class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Activities</a>
<a href="#projects"
class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Projects</a>
<a href="#team"
class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Team</a>
<a href="#events"
class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Events</a>
<a href="#resources"
class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Resources</a>
<a href="#contact"
class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Contact</a>
</div>
</div>
</nav>
<script>
const hamburger = document.querySelector('.hamburger');
const mobileMenu = document.querySelector('.mobile-menu');
hamburger.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
document.querySelector('html').classList.toggle('overflow-hidden');
});
const links = document.querySelectorAll('.mobile-menu a');
links.forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
document.querySelector('html').classList.remove('overflow-hidden');
});
});
</script>
</div>
</htmlCode>
</element>
<element id="e5105d62-6f86-4ff3-8ba1-ea896a59fd01" data-section-id="e5105d62-6f86-4ff3-8ba1-ea896a59fd01">
<htmlCode>
<div id="root">
<section id="hero" class="pt-16 min-h-screen bg-neutral-900 relative overflow-hidden">
<div class="absolute inset-0 bg-[#0f323f]/50 z-10"></div>
<div class="absolute inset-0 z-0">
<div class="relative w-full h-full">
<img src="https://vjdataquesters.vercel.app/homeimages/img1.jpg" alt="Background"
class="absolute w-full h-full object-cover opacity-40">
</div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-20 pt-20">
<div class="text-center">
<h1
class="text-4xl tracking-tight font-bold text-white sm:text-5xl md:text-6xl animate__animated animate__fadeInDown">
<span class="block">VJ DATA QUESTERS</span>
<span class="block text-2xl md:text-3xl mt-3 text-gray-300">VNRVJIET, Hyderabad</span>
</h1>
<p
class="mt-3 max-w-md mx-auto text-base text-gray-300 sm:text-lg md:mt-5 md:text-xl md:max-w-3xl animate__animated animate__fadeIn animate__delay-1s">
Differentiated by inputs / Integrated by outputs
</p>
<div class="mt-10 animate__animated animate__fadeInUp animate__delay-1s">
<div class="rounded-md">
<a href="#about"
class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-[#0f323f] hover:bg-[#0f323f]/80 md:py-4 md:text-lg md:px-10 transition-all duration-300 animate-pulse">
Explore More
</a>
</div>
</div>
</div>
<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 animate-bounce">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3">
</path>
</svg>
</div>
</div>
<div class="absolute bottom-0 left-0 right-0 h-32 bg-gradient-to-t from-neutral-900 to-transparent z-10"></div>
</section>
</div>
</htmlCode>
</element>
<element id="e8fd4042-945e-4540-a273-cb188cf525dd" data-section-id="e8fd4042-945e-4540-a273-cb188cf525dd">
<htmlCode>
<div id="root">
<section id="about" class="py-20 bg-neutral-100">
<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 text-neutral-900 sm:text-4xl animate__animated animate__fadeInUp">
About VJDQ
</h2>
<div class="mt-2 h-1 w-20 bg-[#0f323f] mx-auto rounded"></div>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div class="animate__animated animate__fadeInLeft">
<img src="https://vjdataquesters.vercel.app/dq_logo.png" alt="VJ DataQuesters Logo"
class="w-full max-w-md mx-auto rounded-lg shadow-2xl transform hover:scale-105 transition-transform duration-300">
</div>
<div class="space-y-6 animate__animated animate__fadeInRight">
<p class="text-lg text-neutral-700 leading-relaxed">
Welcome to our Data Science Club, the premier hub for data science enthusiasts at our college.
Established with the vision of driving innovation and collaboration, our club serves as the central
point for all data science-related activities on campus.
</p>
<p class="text-lg text-neutral-700 leading-relaxed">
We provide comprehensive guidance on projects, offer certifications for both students and faculty, and
keep our members informed about the latest industry trends and real-world applications of data science.
</p>
<div class="mt-8 grid grid-cols-2 gap-4">
<div class="bg-white p-4 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300">
<img
src="https://img.icons8.com/external-flaticons-lineal-color-flat-icons/48/external-data-science-data-analytics-flaticons-lineal-color-flat-icons-5.png"
alt="Data Science Icon" class="w-12 h-12 mx-auto mb-2">
<h3 class="text-center text-neutral-900 font-semibold">Expert Guidance</h3>
</div>
<div class="bg-white p-4 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300">
<img
src="https://img.icons8.com/external-flaticons-lineal-color-flat-icons/48/external-competitions-dance-flaticons-lineal-color-flat-icons.png"
alt="Competition Icon" class="w-12 h-12 mx-auto mb-2">
<h3 class="text-center text-neutral-900 font-semibold">Competitions</h3>
</div>
</div>
<button
class="mt-8 px-6 py-3 bg-[#0f323f] text-white rounded-md hover:bg-[#0f323f]/80 transition-colors duration-300 flex items-center gap-2">
Join Our Community
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd"
d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd" />
</svg>
</button>
</div>
</div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 mt-20">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="animate__animated animate__fadeIn">
<div class="text-4xl font-bold text-[#0f323f]">500+</div>
<div class="text-neutral-600 mt-2">Active Members</div>
</div>
<div class="animate__animated animate__fadeIn animate__delay-1s">
<div class="text-4xl font-bold text-[#0f323f]">50+</div>
<div class="text-neutral-600 mt-2">Events Conducted</div>
</div>
<div class="animate__animated animate__fadeIn animate__delay-2s">
<div class="text-4xl font-bold text-[#0f323f]">30+</div>
<div class="text-neutral-600 mt-2">Projects Completed</div>
</div>
<div class="animate__animated animate__fadeIn animate__delay-3s">
<div class="text-4xl font-bold text-[#0f323f]">100%</div>
<div class="text-neutral-600 mt-2">Success Rate</div>
</div>
</div>
</div>
</section>
</div>
</htmlCode>
</element>
<element id="626f0113-dfdb-4c25-813d-c72e5af0d560" data-section-id="626f0113-dfdb-4c25-813d-c72e5af0d560">
<htmlCode>
<div id="root">
<section id="activities" class="py-20 bg-neutral-900">
<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 text-white sm:text-4xl animate__animated animate__fadeInUp">
What we do?
</h2>
<div class="mt-2 h-1 w-20 bg-[#0f323f] mx-auto rounded"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Card 1 -->
<div
class="bg-neutral-800 rounded-lg p-6 hover:transform hover:scale-105 transition-all duration-300 animate__animated animate__fadeInUp">
<div class="bg-[#0f323f]/20 rounded-full p-3 w-16 h-16 flex items-center justify-center mb-6">
<img
src="https://img.icons8.com/external-flaticons-lineal-color-flat-icons/48/external-data-science-data-analytics-flaticons-lineal-color-flat-icons-5.png"
alt="Data Science" class="w-10 h-10">
</div>
<h3 class="text-xl font-semibold text-white mb-4">Data Science Workshops</h3>
<p class="text-gray-400">Hands-on workshops covering various aspects of data science, from basics to
advanced concepts.</p>
</div>
<!-- Card 2 -->
<div
class="bg-neutral-800 rounded-lg p-6 hover:transform hover:scale-105 transition-all duration-300 animate__animated animate__fadeInUp animate__delay-1s">
<div class="bg-[#0f323f]/20 rounded-full p-3 w-16 h-16 flex items-center justify-center mb-6">
<img
src="https://img.icons8.com/external-flaticons-lineal-color-flat-icons/48/external-hackathon-ux-and-ui-icons-flaticons-lineal-color-flat-icons-2.png"
alt="Hackathons" class="w-10 h-10">
</div>
<h3 class="text-xl font-semibold text-white mb-4">Hackathons</h3>
<p class="text-gray-400">Competitive events where participants solve real-world problems using data
science.</p>
</div>
<!-- Card 3 -->
<div
class="bg-neutral-800 rounded-lg p-6 hover:transform hover:scale-105 transition-all duration-300 animate__animated animate__fadeInUp animate__delay-2s">
<div class="bg-[#0f323f]/20 rounded-full p-3 w-16 h-16 flex items-center justify-center mb-6">
<img src="https://img.icons8.com/color/48/video-conference.png" alt="Webinars" class="w-10 h-10">
</div>
<h3 class="text-xl font-semibold text-white mb-4">Webinars</h3>
<p class="text-gray-400">Online sessions with industry experts sharing insights and experiences.</p>
</div>
<!-- Card 4 -->
<div
class="bg-neutral-800 rounded-lg p-6 hover:transform hover:scale-105 transition-all duration-300 animate__animated animate__fadeInUp">
<div class="bg-[#0f323f]/20 rounded-full p-3 w-16 h-16 flex items-center justify-center mb-6">
<img
src="https://img.icons8.com/external-flaticons-lineal-color-flat-icons/48/external-competitions-dance-flaticons-lineal-color-flat-icons.png"
alt="Contests" class="w-10 h-10">
</div>
<h3 class="text-xl font-semibold text-white mb-4">Contests</h3>
<p class="text-gray-400">Regular competitions to test and improve your data science skills.</p>
</div>
<!-- Card 5 -->
<div
class="bg-neutral-800 rounded-lg p-6 hover:transform hover:scale-105 transition-all duration-300 animate__animated animate__fadeInUp animate__delay-1s">
<div class="bg-[#0f323f]/20 rounded-full p-3 w-16 h-16 flex items-center justify-center mb-6">
<img
src="https://img.icons8.com/external-flaticons-flat-flat-icons/64/external-seminar-activism-flaticons-flat-flat-icons-2.png"
alt="Guest lectures" class="w-10 h-10">
</div>
<h3 class="text-xl font-semibold text-white mb-4">Guest lectures</h3>
<p class="text-gray-400">Interactive sessions with industry professionals and academic experts.</p>
</div>
<!-- Card 6 -->
<div
class="bg-neutral-800 rounded-lg p-6 hover:transform hover:scale-105 transition-all duration-300 animate__animated animate__fadeInUp animate__delay-2s">
<div class="bg-[#0f323f]/20 rounded-full p-3 w-16 h-16 flex items-center justify-center mb-6">
<img src="https://img.icons8.com/cotton/64/events--v2.png" alt="Fun events" class="w-10 h-10">
</div>
<h3 class="text-xl font-semibold text-white mb-4">Fun events</h3>
<p class="text-gray-400">Engaging activities that make learning data science enjoyable.</p>
</div>
</div>
<div class="text-center mt-12">
<button
class="bg-[#0f323f] text-white px-8 py-3 rounded-md hover:bg-[#0f323f]/80 transition-colors duration-300 animate__animated animate__fadeInUp animate__delay-3s">
View All Activities
</button>
</div>
</div>
</section>
</div>
</htmlCode>
</element>
<element id="bc1e44cc-47af-4d42-b96b-4d16117c8a66" data-section-id="bc1e44cc-47af-4d42-b96b-4d16117c8a66">
<htmlCode>
<div id="root">
<section id="projects" class="py-20 bg-neutral-100">
<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 text-neutral-900 sm:text-4xl animate__animated animate__fadeInUp">
Our Projects
</h2>
<div class="mt-2 h-1 w-20 bg-[#0f323f] mx-auto rounded"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div
class="bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-2xl transition-shadow duration-300 animate__animated animate__fadeInUp">
<div class="relative h-48 overflow-hidden">
<img src="https://vjdataquesters.vercel.app/homeimages/img1.jpg" alt="Project 1"
class="w-full h-full object-cover transform hover:scale-110 transition-transform duration-500">
</div>
<div class="p-6">
<h3 class="text-xl font-semibold text-neutral-900 mb-2">Sentiment Analysis</h3>
<p class="text-neutral-600 mb-4">Real-time sentiment analysis of social media data using machine
learning algorithms.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-[#0f323f]/10 text-[#0f323f] rounded-full text-sm">Python</span>
<span class="px-3 py-1 bg-[#0f323f]/10 text-[#0f323f] rounded-full text-sm">NLP</span>
<span class="px-3 py-1 bg-[#0f323f]/10 text-[#0f323f] rounded-full text-sm">ML</span>
</div>
</div>
</div>
<!-- Project 2 -->
<div
class="bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-2xl transition-shadow duration-300 animate__animated animate__fadeInUp animate__delay-1s">
<div class="relative h-48 overflow-hidden">
<img src="https://vjdataquesters.vercel.app/homeimages/img2.jpg" alt="Project 2"
class="w-full h-full object-cover transform hover:scale-110 transition-transform duration-500">
</div>
<div class="p-6">
<h3 class="text-xl font-semibold text-neutral-900 mb-2">Image Classification</h3>
<p class="text-neutral-600 mb-4">Deep learning model for accurate image classification and object
detection.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-[#0f323f]/10 text-[#0f323f] rounded-full text-sm">TensorFlow</span>
<span class="px-3 py-1 bg-[#0f323f]/10 text-[#0f323f] rounded-full text-sm">CNN</span>
<span class="px-3 py-1 bg-[#0f323f]/10 text-[#0f323f] rounded-full text-sm">Deep Learning</span>
</div>
</div>
</div>
<!-- Project 3 -->
<div
class="bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-2xl transition-shadow duration-300 animate__animated animate__fadeInUp animate__delay-2s">
<div class="relative h-48 overflow-hidden">
<img src="https://vjdataquesters.vercel.app/homeimages/img3.jpg" alt="Project 3"
class="w-full h-full object-cover transform hover:scale-110 transition-transform duration-500">
</div>
<div class="p-6">
<h3 class="text-xl font-semibold text-neutral-900 mb-2">Predictive Analytics</h3>
<p class="text-neutral-600 mb-4">Time series forecasting for business metrics and market trends.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-[#0f323f]/10 text-[#0f323f] rounded-full text-sm">R</span>
<span class="px-3 py-1 bg-[#0f323f]/10 text-[#0f323f] rounded-full text-sm">Time Series</span>
<span class="px-3 py-1 bg-[#0f323f]/10 text-[#0f323f] rounded-full text-sm">Statistics</span>
</div>
</div>
</div>
</div>
<div class="mt-12 text-center animate__animated animate__fadeInUp">
<button
class="inline-flex items-center px-6 py-3 bg-[#0f323f] text-white rounded-md hover:bg-[#0f323f]/80 transition-colors duration-300">
View All Projects
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 ml-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd"
d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd" />
</svg>
</button>
</div>
</div>
</section>
</div>
</htmlCode>
</element>
<element id="dfad7d98-c8a2-4072-88ef-5492c18598b8" data-section-id="dfad7d98-c8a2-4072-88ef-5492c18598b8">
<htmlCode>
<div id="root">
<section id="team" class="py-20 bg-neutral-900">
<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 text-white sm:text-4xl animate__animated animate__fadeInUp">
Our Team
</h2>
<div class="mt-2 h-1 w-20 bg-[#0f323f] mx-auto rounded"></div>
</div>
<div class="flex flex-col items-center space-y-10">
<!-- Lead Team -->
<div class="w-full">
<h3 class="text-2xl font-semibold text-white text-center mb-8 animate__animated animate__fadeInUp">
Leadership</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Team Member 1 -->
<div
class="bg-neutral-800 rounded-xl p-6 text-center transform hover:scale-105 transition-all duration-300 animate__animated animate__fadeInUp">
<div class="relative w-32 h-32 mx-auto mb-4">
<div class="absolute inset-0 bg-[#0f323f] rounded-full animate-pulse"></div>
<div
class="absolute inset-0 bg-gradient-to-br from-[#0f323f] to-transparent opacity-50 rounded-full">
</div>
<img src="https://vjdataquesters.vercel.app/dq_logo.png" alt="Team Member"
class="w-full h-full object-cover rounded-full border-4 border-[#0f323f]">
</div>
<h4 class="text-xl font-semibold text-white mb-2">Faculty Advisor</h4>
<p class="text-gray-400 mb-4">Dr. John Doe</p>
<div class="flex justify-center space-x-3">
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<span class="sr-only">LinkedIn</span>
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
<path
d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z" />
</svg>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<span class="sr-only">GitHub</span>
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
</svg>
</a>
</div>
</div>
<!-- Team Member 2 -->
<div
class="bg-neutral-800 rounded-xl p-6 text-center transform hover:scale-105 transition-all duration-300 animate__animated animate__fadeInUp animate__delay-1s">
<div class="relative w-32 h-32 mx-auto mb-4">
<div class="absolute inset-0 bg-[#0f323f] rounded-full animate-pulse"></div>
<div
class="absolute inset-0 bg-gradient-to-br from-[#0f323f] to-transparent opacity-50 rounded-full">
</div>
<img src="https://vjdataquesters.vercel.app/dq_logo.png" alt="Team Member"
class="w-full h-full object-cover rounded-full border-4 border-[#0f323f]">
</div>
<h4 class="text-xl font-semibold text-white mb-2">President</h4>
<p class="text-gray-400 mb-4">Jane Smith</p>
<div class="flex justify-center space-x-3">
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<span class="sr-only">LinkedIn</span>
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
<path
d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z" />
</svg>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<span class="sr-only">GitHub</span>
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
</svg>
</a>
</div>
</div>
<!-- Team Member 3 -->
<div
class="bg-neutral-800 rounded-xl p-6 text-center transform hover:scale-105 transition-all duration-300 animate__animated animate__fadeInUp animate__delay-2s">
<div class="relative w-32 h-32 mx-auto mb-4">
<div class="absolute inset-0 bg-[#0f323f] rounded-full animate-pulse"></div>
<div
class="absolute inset-0 bg-gradient-to-br from-[#0f323f] to-transparent opacity-50 rounded-full">
</div>
<img src="https://vjdataquesters.vercel.app/dq_logo.png" alt="Team Member"
class="w-full h-full object-cover rounded-full border-4 border-[#0f323f]">
</div>
<h4 class="text-xl font-semibold text-white mb-2">Vice President</h4>
<p class="text-gray-400 mb-4">Mike Johnson</p>
<div class="flex justify-center space-x-3">
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<span class="sr-only">LinkedIn</span>
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
<path
d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z" />
</svg>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<span class="sr-only">GitHub</span>
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<button
class="mt-12 px-8 py-3 bg-[#0f323f] text-white rounded-md hover:bg-[#0f323f]/80 transition-all duration-300 animate__animated animate__fadeInUp">
View Full Team
</button>
</div>
</div>
</section>
</div>
</htmlCode>
</element>
<element id="042aae8a-00c8-4ec2-8c7b-a39fc2c1c771" data-section-id="042aae8a-00c8-4ec2-8c7b-a39fc2c1c771">
<htmlCode>
<div id="root">
<section id="events" class="py-20 bg-neutral-100">
<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 text-neutral-900 sm:text-4xl animate__animated animate__fadeInUp">
Glimpses
</h2>
<div class="mt-2 h-1 w-20 bg-[#0f323f] mx-auto rounded"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Event 1 -->
<div class="group relative overflow-hidden rounded-xl animate__animated animate__fadeInUp">
<img src="https://vjdataquesters.vercel.app/homeimages/img1.jpg" alt="Event 1"
class="w-full h-64 object-cover transform group-hover:scale-110 transition-transform duration-500">
<div
class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-90 transition-opacity duration-300">
<div class="absolute bottom-0 left-0 right-0 p-6">
<h3 class="text-xl font-semibold text-white mb-2">Data Science Workshop</h3>
<p class="text-gray-300 text-sm">Hands-on workshop on machine learning fundamentals</p>
<span class="inline-block mt-4 px-4 py-2 bg-[#0f323f] text-white text-sm rounded-full">View
Details</span>
</div>
</div>
</div>
<!-- Event 2 -->
<div
class="group relative overflow-hidden rounded-xl animate__animated animate__fadeInUp animate__delay-1s">
<img src="https://vjdataquesters.vercel.app/homeimages/img2.jpg" alt="Event 2"
class="w-full h-64 object-cover transform group-hover:scale-110 transition-transform duration-500">
<div
class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-90 transition-opacity duration-300">
<div class="absolute bottom-0 left-0 right-0 p-6">
<h3 class="text-xl font-semibold text-white mb-2">Hackathon 2023</h3>
<p class="text-gray-300 text-sm">24-hour coding challenge with amazing prizes</p>
<span class="inline-block mt-4 px-4 py-2 bg-[#0f323f] text-white text-sm rounded-full">View
Details</span>
</div>
</div>
</div>
<!-- Event 3 -->
<div
class="group relative overflow-hidden rounded-xl animate__animated animate__fadeInUp animate__delay-2s">
<img src="https://vjdataquesters.vercel.app/homeimages/img3.jpg" alt="Event 3"
class="w-full h-64 object-cover transform group-hover:scale-110 transition-transform duration-500">
<div
class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-90 transition-opacity duration-300">
<div class="absolute bottom-0 left-0 right-0 p-6">
<h3 class="text-xl font-semibold text-white mb-2">Tech Talk Series</h3>
<p class="text-gray-300 text-sm">Industry experts sharing their experiences</p>
<span class="inline-block mt-4 px-4 py-2 bg-[#0f323f] text-white text-sm rounded-full">View
Details</span>
</div>
</div>
</div>
</div>
<!-- Event Timeline -->
<div class="mt-20">
<h3 class="text-2xl font-semibold text-center mb-12 animate__animated animate__fadeInUp">Upcoming Events
</h3>
<div class="relative">
<!-- Timeline Line -->
<div class="absolute left-1/2 transform -translate-x-1/2 w-1 h-full bg-[#0f323f]"></div>
<!-- Timeline Items -->
<div class="space-y-12">
<!-- Timeline Item 1 -->
<div class="relative flex items-center justify-between animate__animated animate__fadeInLeft">
<div class="w-5/12 pr-8 text-right">
<h4 class="text-xl font-semibold">Python Bootcamp</h4>
<p class="text-neutral-600 mt-2">Learn Python fundamentals for Data Science</p>
<span class="text-sm text-[#0f323f] font-semibold">25th December 2023</span>
</div>
<div class="absolute left-1/2 transform -translate-x-1/2 w-4 h-4 bg-[#0f323f] rounded-full"></div>
<div class="w-5/12 pl-8"></div>
</div>
<!-- Timeline Item 2 -->
<div class="relative flex items-center justify-between animate__animated animate__fadeInRight">
<div class="w-5/12 pr-8"></div>
<div class="absolute left-1/2 transform -translate-x-1/2 w-4 h-4 bg-[#0f323f] rounded-full"></div>
<div class="w-5/12 pl-8">
<h4 class="text-xl font-semibold">AI Workshop</h4>
<p class="text-neutral-600 mt-2">Introduction to Artificial Intelligence</p>
<span class="text-sm text-[#0f323f] font-semibold">1st January 2024</span>
</div>
</div>
<!-- Timeline Item 3 -->
<div class="relative flex items-center justify-between animate__animated animate__fadeInLeft">
<div class="w-5/12 pr-8 text-right">
<h4 class="text-xl font-semibold">DataQuest 2024</h4>
<p class="text-neutral-600 mt-2">Annual Data Science Competition</p>
<span class="text-sm text-[#0f323f] font-semibold">15th January 2024</span>
</div>
<div class="absolute left-1/2 transform -translate-x-1/2 w-4 h-4 bg-[#0f323f] rounded-full"></div>
<div class="w-5/12 pl-8"></div>
</div>
</div>
</div>