Dflexx3 commited on
Commit
3aa1432
·
verified ·
1 Parent(s): f038901

make it more interactive way with more animation and more creative colors - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +432 -18
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Eximius25
3
- emoji: 🐨
4
- colorFrom: green
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: eximius25
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: green
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,433 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>College Symposium | TechFest 2023</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <style>
14
+ :root {
15
+ --primary: #6c5ce7;
16
+ --secondary: #a29bfe;
17
+ --accent: #fd79a8;
18
+ --dark: #2d3436;
19
+ --light: #f5f6fa;
20
+ }
21
+
22
+ .gradient-bg {
23
+ background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
24
+ animation: gradientShift 8s ease infinite;
25
+ background-size: 200% 200%;
26
+ }
27
+
28
+ @keyframes gradientShift {
29
+ 0% { background-position: 0% 50%; }
30
+ 50% { background-position: 100% 50%; }
31
+ 100% { background-position: 0% 50%; }
32
+ }
33
+ .event-card {
34
+ transition: all 0.3s cubic-bezier(.25,.8,.25,1);
35
+ border-left: 4px solid transparent;
36
+ }
37
+
38
+ .event-card:hover {
39
+ transform: translateY(-8px) scale(1.02);
40
+ box-shadow: 0 14px 28px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.08);
41
+ border-left: 4px solid var(--accent);
42
+ }
43
+ .form-input:focus {
44
+ box-shadow: 0 0 0 3px rgba(253, 121, 168, 0.3);
45
+ border-color: var(--accent);
46
+ }
47
+
48
+ .floating {
49
+ animation: floating 3s ease-in-out infinite;
50
+ }
51
+
52
+ @keyframes floating {
53
+ 0% { transform: translateY(0px); }
54
+ 50% { transform: translateY(-15px); }
55
+ 100% { transform: translateY(0px); }
56
+ }
57
+
58
+ .pulse {
59
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
60
+ }
61
+
62
+ @keyframes pulse {
63
+ 0%, 100% { opacity: 1; }
64
+ 50% { opacity: 0.5; }
65
+ }
66
+ </style>
67
+ </head>
68
+ <body class="font-sans antialiased text-gray-800">
69
+ <!-- Navigation -->
70
+ <nav class="gradient-bg text-white shadow-lg">
71
+ <div class="container mx-auto px-6 py-4">
72
+ <div class="flex items-center justify-between">
73
+ <div class="flex items-center">
74
+ <i data-feather="cpu" class="mr-2"></i>
75
+ <span class="font-semibold text-xl">TechFest 2023</span>
76
+ </div>
77
+ <div class="hidden md:flex space-x-8">
78
+ <a href="#events" class="hover:text-gray-200">Events</a>
79
+ <a href="#schedule" class="hover:text-gray-200">Schedule</a>
80
+ <a href="#register" class="hover:text-gray-200">Register</a>
81
+ <a href="#contact" class="hover:text-gray-200">Contact</a>
82
+ </div>
83
+ <button class="md:hidden focus:outline-none" id="menu-btn">
84
+ <i data-feather="menu"></i>
85
+ </button>
86
+ </div>
87
+ <!-- Mobile Menu -->
88
+ <div class="hidden md:hidden mt-4 pb-2" id="mobile-menu">
89
+ <a href="#events" class="block py-2 hover:text-gray-200">Events</a>
90
+ <a href="#schedule" class="block py-2 hover:text-gray-200">Schedule</a>
91
+ <a href="#register" class="block py-2 hover:text-gray-200">Register</a>
92
+ <a href="#contact" class="block py-2 hover:text-gray-200">Contact</a>
93
+ </div>
94
+ </div>
95
+ </nav>
96
+
97
+ <!-- Hero Section -->
98
+ <header class="gradient-bg text-white py-20 relative overflow-hidden">
99
+ <div class="absolute top-0 left-0 w-full h-full opacity-10">
100
+ <div class="absolute top-1/4 left-1/4 w-32 h-32 rounded-full bg-white floating" style="animation-delay: 0.5s;"></div>
101
+ <div class="absolute top-1/3 right-1/3 w-24 h-24 rounded-full bg-white floating" style="animation-delay: 1s;"></div>
102
+ <div class="absolute bottom-1/4 right-1/4 w-40 h-40 rounded-full bg-white floating" style="animation-delay: 1.5s;"></div>
103
+ </div>
104
+ <div class="container mx-auto px-6 text-center">
105
+ <h1 class="text-4xl md:text-6xl font-bold mb-6" data-aos="fade-down">Annual College Symposium</h1>
106
+ <p class="text-xl md:text-2xl mb-8 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="200">
107
+ Join us for a day of innovation, competition and learning
108
+ </p>
109
+ <div class="flex justify-center space-x-4">
110
+ <a href="#register" class="bg-white text-indigo-800 px-8 py-3 rounded-full font-semibold hover:bg-gray-100 transition duration-300 transform hover:scale-105 active:scale-95 shadow-lg" data-aos="zoom-in" data-aos-delay="400">
111
+ Register Now <i data-feather="arrow-right" class="ml-2 animate-bounce inline"></i>
112
+ </a>
113
+ <a href="#events" class="border-2 border-white text-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:text-indigo-800 transition duration-300 transform hover:scale-105 active:scale-95" data-aos="zoom-in" data-aos-delay="600">
114
+ View Events <i data-feather="chevron-down" class="ml-2 inline"></i>
115
+ </a>
116
+ </div>
117
+ </div>
118
+ </header>
119
+
120
+ <!-- Events Section -->
121
+ <section id="events" class="py-16 bg-gray-50 relative">
122
+ <div class="absolute top-0 left-0 w-full h-full overflow-hidden opacity-5">
123
+ <div class="absolute top-0 left-0 w-full h-full bg-repeat" style="background-image: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\" viewBox=\"0 0 100 100\"><circle cx=\"50\" cy=\"50\" r=\"1\" fill=\"%236c5ce7\"/></svg>');"></div>
124
+ </div>
125
+ <div class="container mx-auto px-6">
126
+ <h2 class="text-3xl font-bold text-center mb-12" data-aos="fade-up">Featured Events</h2>
127
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
128
+ <!-- Event 1 -->
129
+ <div class="bg-white rounded-lg shadow-md overflow-hidden event-card transition duration-300" data-aos="fade-up" data-aos-delay="200">
130
+ <div class="gradient-bg p-4 text-white">
131
+ <h3 class="text-xl font-semibold">Tech Hackathon</h3>
132
+ </div>
133
+ <div class="p-6">
134
+ <p class="text-gray-600 mb-4">24-hour coding marathon to build innovative solutions for real-world problems.</p>
135
+ <div class="flex items-center text-gray-500 mb-2">
136
+ <i data-feather="clock" class="mr-2"></i>
137
+ <span>10:00 AM - Next Day 10:00 AM</span>
138
+ </div>
139
+ <div class="flex items-center text-gray-500">
140
+ <i data-feather="map-pin" class="mr-2"></i>
141
+ <span>Main Auditorium</span>
142
+ </div>
143
+ </div>
144
+ </div>
145
+
146
+ <!-- Event 2 -->
147
+ <div class="bg-white rounded-lg shadow-md overflow-hidden event-card transition duration-300" data-aos="fade-up" data-aos-delay="400">
148
+ <div class="gradient-bg p-4 text-white">
149
+ <h3 class="text-xl font-semibold">Robo Wars</h3>
150
+ </div>
151
+ <div class="p-6">
152
+ <p class="text-gray-600 mb-4">Design and battle your robots in this exciting competition of engineering skills.</p>
153
+ <div class="flex items-center text-gray-500 mb-2">
154
+ <i data-feather="clock" class="mr-2"></i>
155
+ <span>2:00 PM - 5:00 PM</span>
156
+ </div>
157
+ <div class="flex items-center text-gray-500">
158
+ <i data-feather="map-pin" class="mr-2"></i>
159
+ <span>Engineering Block</span>
160
+ </div>
161
+ </div>
162
+ </div>
163
+
164
+ <!-- Event 3 -->
165
+ <div class="bg-white rounded-lg shadow-md overflow-hidden event-card transition duration-300" data-aos="fade-up" data-aos-delay="600">
166
+ <div class="gradient-bg p-4 text-white">
167
+ <h3 class="text-xl font-semibold">Paper Presentation</h3>
168
+ </div>
169
+ <div class="p-6">
170
+ <p class="text-gray-600 mb-4">Present your research papers to a panel of esteemed judges and academicians.</p>
171
+ <div class="flex items-center text-gray-500 mb-2">
172
+ <i data-feather="clock" class="mr-2"></i>
173
+ <span>9:30 AM - 12:30 PM</span>
174
+ </div>
175
+ <div class="flex items-center text-gray-500">
176
+ <i data-feather="map-pin" class="mr-2"></i>
177
+ <span>Seminar Hall</span>
178
+ </div>
179
+ </div>
180
+ </div>
181
+ </div>
182
+ </div>
183
+ </section>
184
+
185
+ <!-- Schedule Section -->
186
+ <section id="schedule" class="py-16 bg-white">
187
+ <div class="container mx-auto px-6">
188
+ <h2 class="text-3xl font-bold text-center mb-12" data-aos="fade-up">Event Schedule</h2>
189
+ <div class="max-w-4xl mx-auto">
190
+ <div class="flex flex-col md:flex-row border-b-2 border-gray-200 py-4" data-aos="fade-up">
191
+ <div class="md:w-1/4 font-semibold text-indigo-700">9:00 AM - 9:30 AM</div>
192
+ <div class="md:w-3/4">Registration & Breakfast</div>
193
+ </div>
194
+ <div class="flex flex-col md:flex-row border-b-2 border-gray-200 py-4" data-aos="fade-up" data-aos-delay="100">
195
+ <div class="md:w-1/4 font-semibold text-indigo-700">9:30 AM - 10:30 AM</div>
196
+ <div class="md:w-3/4">Inauguration Ceremony</div>
197
+ </div>
198
+ <div class="flex flex-col md:flex-row border-b-2 border-gray-200 py-4" data-aos="fade-up" data-aos-delay="200">
199
+ <div class="md:w-1/4 font-semibold text-indigo-700">10:30 AM - 1:30 PM</div>
200
+ <div class="md:w-3/4">Technical Workshops (Parallel Sessions)</div>
201
+ </div>
202
+ <div class="flex flex-col md:flex-row border-b-2 border-gray-200 py-4" data-aos="fade-up" data-aos-delay="300">
203
+ <div class="md:w-1/4 font-semibold text-indigo-700">1:30 PM - 2:30 PM</div>
204
+ <div class="md:w-3/4">Lunch Break</div>
205
+ </div>
206
+ <div class="flex flex-col md:flex-row border-b-2 border-gray-200 py-4" data-aos="fade-up" data-aos-delay="400">
207
+ <div class="md:w-1/4 font-semibold text-indigo-700">2:30 PM - 5:30 PM</div>
208
+ <div class="md:w-3/4">Competitions & Events</div>
209
+ </div>
210
+ <div class="flex flex-col md:flex-row py-4" data-aos="fade-up" data-aos-delay="500">
211
+ <div class="md:w-1/4 font-semibold text-indigo-700">6:00 PM - 7:00 PM</div>
212
+ <div class="md:w-3/4">Prize Distribution & Closing Ceremony</div>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ </section>
217
+
218
+ <!-- Registration Form -->
219
+ <section id="register" class="py-16 gradient-bg text-white relative overflow-hidden">
220
+ <div class="absolute top-0 left-0 w-full h-full opacity-5">
221
+ <div class="absolute top-0 left-0 w-full h-full bg-repeat" style="background-image: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\"><circle cx=\"10\" cy=\"10\" r=\"1\" fill=\"%23ffffff\"/></svg>');"></div>
222
+ </div>
223
+ <div class="container mx-auto px-6">
224
+ <h2 class="text-3xl font-bold text-center mb-12" data-aos="fade-up">Registration Form</h2>
225
+ <form id="registrationForm" class="max-w-2xl mx-auto bg-white rounded-lg shadow-xl overflow-hidden p-6 text-gray-800" data-aos="zoom-in">
226
+ <div class="grid md:grid-cols-2 gap-6">
227
+ <div>
228
+ <label for="name" class="block text-gray-700 font-medium mb-2">Full Name</label>
229
+ <input type="text" id="name" name="name" required class="w-full px-4 py-2 border rounded-lg form-input focus:outline-none focus:border-indigo-500">
230
+ </div>
231
+ <div>
232
+ <label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label>
233
+ <input type="email" id="email" name="email" required class="w-full px-4 py-2 border rounded-lg form-input focus:outline-none focus:border-indigo-500">
234
+ </div>
235
+ <div>
236
+ <label for="phone" class="block text-gray-700 font-medium mb-2">Phone Number</label>
237
+ <input type="tel" id="phone" name="phone" required class="w-full px-4 py-2 border rounded-lg form-input focus:outline-none focus:border-indigo-500">
238
+ </div>
239
+ <div>
240
+ <label for="college" class="block text-gray-700 font-medium mb-2">College Name</label>
241
+ <input type="text" id="college" name="college" required class="w-full px-4 py-2 border rounded-lg form-input focus:outline-none focus:border-indigo-500">
242
+ </div>
243
+ </div>
244
+ <div class="mt-6">
245
+ <label class="block text-gray-700 font-medium mb-2">Events to Participate</label>
246
+ <div class="space-y-2">
247
+ <label class="flex items-center">
248
+ <input type="checkbox" name="events" value="hackathon" class="rounded text-indigo-600 focus:ring-indigo-500">
249
+ <span class="ml-2">Tech Hackathon</span>
250
+ </label>
251
+ <label class="flex items-center">
252
+ <input type="checkbox" name="events" value="robo_wars" class="rounded text-indigo-600 focus:ring-indigo-500">
253
+ <span class="ml-2">Robo Wars</span>
254
+ </label>
255
+ <label class="flex items-center">
256
+ <input type="checkbox" name="events" value="paper_presentation" class="rounded text-indigo-600 focus:ring-indigo-500">
257
+ <span class="ml-2">Paper Presentation</span>
258
+ </label>
259
+ <label class="flex items-center">
260
+ <input type="checkbox" name="events" value="workshop" class="rounded text-indigo-600 focus:ring-indigo-500">
261
+ <span class="ml-2">Technical Workshop</span>
262
+ </label>
263
+ </div>
264
+ </div>
265
+ <div class="mt-8">
266
+ <button type="submit" class="w-full gradient-bg text-white py-3 px-6 rounded-lg font-semibold hover:opacity-90 transition duration-300">
267
+ Submit Registration
268
+ </button>
269
+ </div>
270
+ </form>
271
+ </div>
272
+ </section>
273
+
274
+ <!-- Contact Section -->
275
+ <section id="contact" class="py-16 bg-gray-50">
276
+ <div class="container mx-auto px-6">
277
+ <h2 class="text-3xl font-bold text-center mb-12" data-aos="fade-up">Contact Us</h2>
278
+ <div class="max-w-4xl mx-auto grid md:grid-cols-2 gap-8">
279
+ <div data-aos="fade-right">
280
+ <h3 class="text-xl font-semibold mb-4">Organizing Committee</h3>
281
+ <p class="text-gray-600 mb-6">For any queries regarding the symposium events, registration or schedule, please contact our organizing committee members.</p>
282
+ <div class="space-y-3">
283
+ <div class="flex items-center">
284
+ <i data-feather="mail" class="mr-3 text-indigo-600"></i>
285
+ <span>techfest2023@college.edu</span>
286
+ </div>
287
+ <div class="flex items-center">
288
+ <i data-feather="phone" class="mr-3 text-indigo-600"></i>
289
+ <span>+91 9876543210</span>
290
+ </div>
291
+ <div class="flex items-center">
292
+ <i data-feather="map-pin" class="mr-3 text-indigo-600"></i>
293
+ <span>Main Campus, College Road, City - 600001</span>
294
+ </div>
295
+ </div>
296
+ </div>
297
+ <div data-aos="fade-left">
298
+ <h3 class="text-xl font-semibold mb-4">Send us a message</h3>
299
+ <form class="space-y-4">
300
+ <div>
301
+ <input type="text" placeholder="Your Name" class="w-full px-4 py-2 border rounded-lg form-input focus:outline-none focus:border-indigo-500">
302
+ </div>
303
+ <div>
304
+ <input type="email" placeholder="Your Email" class="w-full px-4 py-2 border rounded-lg form-input focus:outline-none focus:border-indigo-500">
305
+ </div>
306
+ <div>
307
+ <textarea placeholder="Your Message" rows="4" class="w-full px-4 py-2 border rounded-lg form-input focus:outline-none focus:border-indigo-500"></textarea>
308
+ </div>
309
+ <button type="submit" class="gradient-bg text-white py-2 px-6 rounded-lg font-semibold hover:opacity-90 transition duration-300">
310
+ Send Message
311
+ </button>
312
+ </form>
313
+ </div>
314
+ </div>
315
+ </div>
316
+ </section>
317
+
318
+ <!-- Footer -->
319
+ <footer class="gradient-bg text-white py-8">
320
+ <div class="container mx-auto px-6">
321
+ <div class="flex flex-col md:flex-row justify-between items-center">
322
+ <div class="mb-4 md:mb-0">
323
+ <div class="flex items-center">
324
+ <i data-feather="cpu" class="mr-2"></i>
325
+ <span class="font-semibold text-lg">TechFest 2023</span>
326
+ </div>
327
+ <p class="mt-2 text-sm text-gray-200">Annual College Symposium</p>
328
+ </div>
329
+ <div class="flex space-x-6">
330
+ <a href="#" class="hover:text-gray-300">
331
+ <i data-feather="facebook"></i>
332
+ </a>
333
+ <a href="#" class="hover:text-gray-300">
334
+ <i data-feather="twitter"></i>
335
+ </a>
336
+ <a href="#" class="hover:text-gray-300">
337
+ <i data-feather="instagram"></i>
338
+ </a>
339
+ <a href="#" class="hover:text-gray-300">
340
+ <i data-feather="linkedin"></i>
341
+ </a>
342
+ </div>
343
+ </div>
344
+ <div class="border-t border-gray-700 mt-6 pt-6 text-center text-sm text-gray-300">
345
+ <p>© 2023 College Symposium. All rights reserved.</p>
346
+ </div>
347
+ </div>
348
+ </footer>
349
+
350
+ <!-- Success Modal -->
351
+ <div id="successModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
352
+ <div class="bg-white rounded-lg p-8 max-w-md mx-4" data-aos="zoom-in">
353
+ <div class="text-center">
354
+ <div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-4">
355
+ <i data-feather="check" class="text-green-600 w-8 h-8"></i>
356
+ </div>
357
+ <h3 class="text-2xl font-semibold text-gray-800 mb-2">Registration Successful!</h3>
358
+ <p class="text-gray-600 mb-6">Thank you for registering for TechFest 2023. We've sent a confirmation email to your registered address.</p>
359
+ <button id="closeModal" class="gradient-bg text-white py-2 px-6 rounded-lg font-semibold hover:opacity-90 transition duration-300">
360
+ Close
361
+ </button>
362
+ </div>
363
+ </div>
364
+ </div>
365
+
366
+ <script>
367
+ // Initialize AOS animations with more options
368
+ AOS.init({
369
+ duration: 1000,
370
+ once: false,
371
+ mirror: true,
372
+ easing: 'ease-out-back'
373
+ });
374
+
375
+ // Scroll reveal animations
376
+ document.querySelectorAll('section').forEach((section, index) => {
377
+ section.style.transition = 'all 0.5s ease-out';
378
+ section.style.transform = 'translateY(20px)';
379
+ section.style.opacity = '0';
380
+
381
+ const observer = new IntersectionObserver((entries) => {
382
+ entries.forEach(entry => {
383
+ if (entry.isIntersecting) {
384
+ entry.target.style.transform = 'translateY(0)';
385
+ entry.target.style.opacity = '1';
386
+ }
387
+ });
388
+ }, { threshold: 0.1 });
389
+
390
+ observer.observe(section);
391
+ });
392
+
393
+ // Hover effects for buttons
394
+ document.querySelectorAll('a, button').forEach(btn => {
395
+ btn.addEventListener('mouseenter', () => {
396
+ btn.style.transform = 'scale(1.05)';
397
+ });
398
+ btn.addEventListener('mouseleave', () => {
399
+ btn.style.transform = 'scale(1)';
400
+ });
401
+ });
402
+
403
+ // Mobile menu toggle
404
+ const menuBtn = document.getElementById('menu-btn');
405
+ const mobileMenu = document.getElementById('mobile-menu');
406
+
407
+ menuBtn.addEventListener('click', () => {
408
+ mobileMenu.classList.toggle('hidden');
409
+ feather.replace();
410
+ });
411
+
412
+ // Form submission
413
+ const registrationForm = document.getElementById('registrationForm');
414
+ const successModal = document.getElementById('successModal');
415
+ const closeModal = document.getElementById('closeModal');
416
+
417
+ registrationForm.addEventListener('submit', (e) => {
418
+ e.preventDefault();
419
+ // Here you would typically send the form data to a server
420
+ // For demo purposes, we'll just show the success modal
421
+ successModal.classList.remove('hidden');
422
+ });
423
+
424
+ closeModal.addEventListener('click', () => {
425
+ successModal.classList.add('hidden');
426
+ registrationForm.reset();
427
+ });
428
+
429
+ // Replace icons
430
+ feather.replace();
431
+ </script>
432
+ </body>
433
  </html>