-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
487 lines (465 loc) · 28.6 KB
/
Copy pathindex.html
File metadata and controls
487 lines (465 loc) · 28.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
<!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>Akhil C | Embedded & Full-Stack Developer</title>
<!-- Tailwind CSS Play CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#0ea5e9',
secondary: '#6366f1',
dark: '#0f172a',
light: '#f8fafc',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
}
}
}
</script>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
body {
background-color: #0f172a;
color: #f8fafc;
overflow-x: hidden;
}
#canvas-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
z-index: -1;
pointer-events: none;
}
.glass-card {
background: rgba(15, 23, 42, 0.7);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
</style>
</head>
<body class="selection:bg-primary selection:text-white">
<div id="canvas-container"></div>
<!-- Navigation -->
<nav class="fixed top-0 w-full z-50 glass-card px-6 py-4 flex justify-between items-center">
<div class="text-2xl font-bold bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">
AKHIL.C
</div>
<div class="hidden md:flex space-x-8 text-sm font-medium">
<a href="#hero" class="hover:text-primary transition-colors">Home</a>
<a href="#expertise" class="hover:text-primary transition-colors">Expertise</a>
<a href="#projects" class="hover:text-primary transition-colors">Projects</a>
<a href="#resume" class="hover:text-primary transition-colors">Resume</a>
<a href="#services" class="hover:text-primary transition-colors">Services</a>
<a href="#mentorship" class="hover:text-primary transition-colors">Mentorship</a>
<a href="#contact" class="hover:text-primary transition-colors">Contact</a>
</div>
<button class="md:hidden">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
</nav>
<!-- Sections Overlay -->
<main class="relative z-10">
<!-- Hero Section -->
<section id="hero" class="min-h-screen flex flex-col justify-center px-6 md:px-24">
<div class="max-w-4xl">
<!-- Profile Image -->
<div class="mb-8 opacity-0 hero-fade">
<div
class="relative w-32 h-32 md:w-40 md:h-40 rounded-full p-1 bg-gradient-to-r from-primary to-secondary">
<img src="https://github.com/akhilzz.png" alt="Profile"
class="w-full h-full rounded-full object-cover border-4 border-dark shadow-xl shadow-primary/20">
</div>
</div>
<h2 class="text-primary font-semibold tracking-widest mb-4 opacity-0 hero-fade">EMBEDDED SOFTWARE
DEVELOPER</h2>
<h1 class="text-5xl md:text-8xl font-bold mb-6 opacity-0 hero-fade">Building the <span
class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">Future</span>
of Intelligence.</h1>
<p class="text-lg md:text-xl text-slate-400 max-w-2xl mb-10 opacity-0 hero-fade">
Bridging hardware logic and software performance. Specialized in ESP32, Firmware Design, and
Interactive Web Experiences.
</p>
<div class="flex space-x-4 opacity-0 hero-fade">
<a href="#projects"
class="bg-primary hover:bg-primary/80 px-8 py-3 rounded-full font-semibold transition-all shadow-lg shadow-primary/20">View
Projects</a>
<a href="#contact"
class="glass-card px-8 py-3 rounded-full font-semibold hover:bg-white/5 transition-all">Get in
Touch</a>
</div>
</div>
</section>
<!-- Expertise Section -->
<section id="expertise" class="min-h-screen py-24 px-6 md:px-24 bg-dark/50">
<h2 class="text-4xl font-bold mb-16 text-center">Expertise & <span class="text-primary">Skills</span></h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="glass-card p-8 rounded-2xl hover:border-primary/50 transition-all group">
<div
class="w-12 h-12 bg-primary/20 rounded-lg flex items-center justify-center mb-6 text-primary group-hover:scale-110 transition-transform">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9 3v2m6-2v2M9 19v2m6-2v2M5 9H3m2 6H3m18-6h-2m2 6h-2M7 19h10a2 2 0 002-2V7a2 2 0 00-2-2H7a2 2 0 00-2 2v10a2 2 0 002 2zM9 9h6v6H9V9z">
</path>
</svg>
</div>
<h3 class="text-xl font-bold mb-4">Embedded Systems</h3>
<p class="text-slate-400 text-sm mb-6">Expertise in firmware development, hardware-to-cloud
integration, and RTOS-based solutions.</p>
<ul class="text-xs flex flex-wrap gap-2">
<li class="bg-white/5 px-2 py-1 rounded">C++ / Arduino</li>
<li class="bg-white/5 px-2 py-1 rounded">ESP32 & RTOS</li>
<li class="bg-white/5 px-2 py-1 rounded">Firmware Design</li>
</ul>
</div>
<div class="glass-card p-8 rounded-2xl hover:border-secondary/50 transition-all group">
<div
class="w-12 h-12 bg-secondary/20 rounded-lg flex items-center justify-center mb-6 text-secondary group-hover:scale-110 transition-transform">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"></path>
</svg>
</div>
<h3 class="text-xl font-bold mb-4">Web Development</h3>
<p class="text-slate-400 text-sm mb-6">Building robust full-stack applications and immersive 3D web
experiences.</p>
<ul class="text-xs flex flex-wrap gap-2">
<li class="bg-white/5 px-2 py-1 rounded">Laravel / PHP</li>
<li class="bg-white/5 px-2 py-1 rounded">React / Three.js</li>
<li class="bg-white/5 px-2 py-1 rounded">PostgreSQL</li>
</ul>
</div>
<div class="glass-card p-8 rounded-2xl hover:border-white/30 transition-all group">
<div
class="w-12 h-12 bg-white/10 rounded-lg flex items-center justify-center mb-6 text-white group-hover:scale-110 transition-transform">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z">
</path>
</svg>
</div>
<h3 class="text-xl font-bold mb-4">Desktop Tools</h3>
<p class="text-slate-400 text-sm mb-6">Developing cross-platform desktop applications for
performance-critical systems.</p>
<ul class="text-xs flex flex-wrap gap-2">
<li class="bg-white/5 px-2 py-1 rounded">Python / PyQt</li>
<li class="bg-white/5 px-2 py-1 rounded">System Interfacing</li>
<li class="bg-white/5 px-2 py-1 rounded">UI/UX Design</li>
</ul>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="min-h-screen py-24 px-6 md:px-24">
<h2 class="text-4xl font-bold mb-16 text-center">Featured <span
class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">Projects</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-12">
<!-- Project 1: pH Meter -->
<a href="https://github.com/akhilzz/ph-meter-system" target="_blank"
class="project-card group cursor-pointer block">
<div
class="relative overflow-hidden rounded-2xl aspect-video bg-slate-800 mb-6 border border-white/5">
<div
class="absolute inset-0 bg-gradient-to-br from-primary/20 to-secondary/20 group-hover:opacity-100 opacity-60 transition-opacity">
</div>
<div
class="absolute inset-0 flex items-center justify-center text-4xl font-black text-white/5 pointer-events-none uppercase">
pH Meter</div>
</div>
<h3 class="text-2xl font-bold mb-2 group-hover:text-primary transition-colors">pH Meter System</h3>
<p class="text-slate-400 mb-4 text-sm">Embedded system for precision pH monitoring with data
logging.</p>
<div class="flex space-x-3">
<span class="text-xs font-mono text-primary">#Embedded</span>
<span class="text-xs font-mono text-secondary">#C++</span>
</div>
</a>
<!-- Project 2: Qml Desktop -->
<a href="https://github.com/akhilzz/QmlDeskopApplication" target="_blank"
class="project-card group cursor-pointer block">
<div
class="relative overflow-hidden rounded-2xl aspect-video bg-slate-800 mb-6 border border-white/5">
<div
class="absolute inset-0 bg-gradient-to-br from-secondary/20 to-primary/20 group-hover:opacity-100 opacity-60 transition-opacity">
</div>
<div
class="absolute inset-0 flex items-center justify-center text-4xl font-black text-white/5 pointer-events-none uppercase">
QML App</div>
</div>
<h3 class="text-2xl font-bold mb-2 group-hover:text-secondary transition-colors">QML Desktop App
</h3>
<p class="text-slate-400 mb-4 text-sm">High-performance desktop application using QML and C++.</p>
<div class="flex space-x-3">
<span class="text-xs font-mono text-primary">#QML</span>
<span class="text-xs font-mono text-secondary">#CPP</span>
</div>
</a>
<!-- Project 3: Campus Recruitment -->
<a href="https://github.com/akhilzz/campus-recruitment-system" target="_blank"
class="project-card group cursor-pointer block">
<div
class="relative overflow-hidden rounded-2xl aspect-video bg-slate-800 mb-6 border border-white/5">
<div
class="absolute inset-0 bg-gradient-to-br from-indigo-500/10 to-purple-500/10 group-hover:opacity-100 opacity-60 transition-opacity">
</div>
<div
class="absolute inset-0 flex items-center justify-center text-4xl font-black text-white/5 pointer-events-none uppercase">
Recruitment</div>
</div>
<h3 class="text-2xl font-bold mb-2 group-hover:text-indigo-400 transition-colors">Campus Recruitment
</h3>
<p class="text-slate-400 mb-4 text-sm">Streamlined platform for college hiring and student
management.</p>
<div class="flex space-x-3">
<span class="text-xs font-mono text-primary">#Laravel</span>
<span class="text-xs font-mono text-secondary">#PostgreSQL</span>
</div>
</a>
<!-- Project 4: Dicentree -->
<a href="https://github.com/akhilzz/dicentree" target="_blank"
class="project-card group cursor-pointer block">
<div
class="relative overflow-hidden rounded-2xl aspect-video bg-slate-800 mb-6 border border-white/5">
<div
class="absolute inset-0 bg-gradient-to-br from-teal-500/10 to-blue-500/10 group-hover:opacity-100 opacity-60 transition-opacity">
</div>
<div
class="absolute inset-0 flex items-center justify-center text-4xl font-black text-white/5 pointer-events-none uppercase">
Dicentree</div>
</div>
<h3 class="text-2xl font-bold mb-2 group-hover:text-teal-400 transition-colors">Dicentree</h3>
<p class="text-slate-400 mb-4 text-sm">Decentralized platform or system for innovative data
management.</p>
<div class="flex space-x-3">
<span class="text-xs font-mono text-primary">#Blockchain</span>
<span class="text-xs font-mono text-secondary">#Web3</span>
</div>
</a>
<!-- Project 5: My Portfolio -->
<a href="https://github.com/akhilzz/myportfolio" target="_blank"
class="project-card group cursor-pointer block">
<div
class="relative overflow-hidden rounded-2xl aspect-video bg-slate-800 mb-6 border border-white/5">
<div
class="absolute inset-0 bg-gradient-to-br from-pink-500/10 to-orange-500/10 group-hover:opacity-100 opacity-60 transition-opacity">
</div>
<div
class="absolute inset-0 flex items-center justify-center text-4xl font-black text-white/5 pointer-events-none uppercase">
Portfolio</div>
</div>
<h3 class="text-2xl font-bold mb-2 group-hover:text-orange-400 transition-colors">3D Portfolio</h3>
<p class="text-slate-400 mb-4 text-sm">Interactive 3D web experience built with Three.js and GSAP.
</p>
<div class="flex space-x-3">
<span class="text-xs font-mono text-primary">#ThreeJS</span>
<span class="text-xs font-mono text-secondary">#GSAP</span>
</div>
</a>
</div>
</section>
<!-- Resume Section -->
<section id="resume" class="py-24 px-6 md:px-24 bg-dark/20">
<div
class="glass-card p-12 rounded-3xl max-w-4xl mx-auto flex flex-col md:flex-row gap-12 items-center text-center md:text-left">
<div class="flex-1">
<h2 class="text-4xl font-bold mb-6">Professional <span class="text-primary">Resume</span></h2>
<p class="text-slate-400 mb-8">Download my full resume to learn more about my experience, education,
and technical certifications.</p>
<div class="flex flex-wrap justify-center md:justify-start gap-4">
<a href="resume.pdf" target="_blank"
class="bg-primary hover:bg-primary/80 px-8 py-3 rounded-full font-semibold transition-all shadow-lg shadow-primary/20 flex items-center space-x-2">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z">
</path>
</svg>
<span>View Online</span>
</a>
<a href="resume.pdf" download
class="glass-card border-primary/30 px-8 py-3 rounded-full font-semibold hover:bg-white/5 transition-all flex items-center space-x-2">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"></path>
</svg>
<span>Download PDF</span>
</a>
</div>
</div>
<div
class="w-32 h-32 md:w-48 md:h-48 border-4 border-primary/20 rounded-2xl flex items-center justify-center text-primary rotate-3">
<svg class="w-20 h-20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z">
</path>
</svg>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-24 px-6 md:px-24 bg-dark/50">
<div class="max-w-6xl mx-auto">
<h2 class="text-4xl font-bold mb-16 text-center text-white">Freelance <span
class="text-primary">Services</span></h2>
<p class="text-center text-slate-400 max-w-2xl mx-auto mb-16">I am available for freelance work based on
client requirements. Let's merge hardware logic with modern software.</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div
class="glass-card p-8 rounded-xl hover:-translate-y-2 transition-transform border-b-2 border-primary/50">
<h4 class="font-bold mb-3 text-lg">Web Development</h4>
<p class="text-sm text-slate-400">Scalable full-stack apps with Laravel & React.</p>
</div>
<div
class="glass-card p-8 rounded-xl hover:-translate-y-2 transition-transform border-b-2 border-secondary/50">
<h4 class="font-bold mb-3 text-lg">Desktop Apps</h4>
<p class="text-sm text-slate-400">Performant cross-platform tools with Python/Qt.</p>
</div>
<div
class="glass-card p-8 rounded-xl hover:-translate-y-2 transition-transform border-b-2 border-teal-500/50">
<h4 class="font-bold mb-3 text-lg">Mobile Development</h4>
<p class="text-sm text-slate-400">Responsive mobile-first web applications.</p>
</div>
<div
class="glass-card p-8 rounded-xl hover:-translate-y-2 transition-transform border-b-2 border-orange-500/50">
<h4 class="font-bold mb-3 text-lg">Embedded & UI</h4>
<p class="text-sm text-slate-400">UI-driven firmware and ESP32 optimization.</p>
</div>
</div>
</div>
</section>
<!-- Teaching & Mentorship Section -->
<section id="mentorship" class="py-24 px-6 md:px-24">
<div class="max-w-6xl mx-auto">
<h2 class="text-4xl font-bold mb-16 text-center text-white">Teaching & <span
class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">Mentorship</span>
</h2>
<p class="text-center text-slate-400 max-w-3xl mx-auto mb-16">Providing training and classes for
students and professionals. Transforming complex concepts into practical knowledge.</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="glass-card p-10 rounded-3xl group">
<h4 class="text-2xl font-bold mb-6 text-primary">Fundamentals</h4>
<p class="text-slate-400 text-sm">Building a strong base in programming logic and core concepts
for beginners.</p>
</div>
<div class="glass-card p-10 rounded-3xl group border-primary/20">
<h4 class="text-2xl font-bold mb-6 text-secondary">Intermediate</h4>
<p class="text-slate-400 text-sm">Diving deeper into frameworks, architecture, and system
integration.</p>
</div>
<div class="glass-card p-10 rounded-3xl group">
<h4 class="text-2xl font-bold mb-6 text-teal-400">Advanced</h4>
<p class="text-slate-400 text-sm">Mastering performance optimization, multithreading, and
scalable systems.</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-24 px-6 md:px-24">
<div class="glass-card p-12 rounded-3xl max-w-4xl mx-auto flex flex-col md:flex-row gap-12 items-center">
<div class="flex-1">
<h2 class="text-4xl font-bold mb-6">Let's <span class="text-primary">Connect</span></h2>
<p class="text-slate-400 mb-8">Ready to bring your hardware to life or build something amazing?
Reach out and let's discuss your next project.</p>
<div class="space-y-4 font-mono text-sm">
<div class="flex items-center space-x-3 text-slate-300">
<span class="text-primary">GitHub:</span>
<a href="https://github.com/akhilzz" class="hover:text-primary underline">@akhilzz</a>
</div>
<div class="flex items-center space-x-3 text-slate-300">
<span class="text-primary">LinkedIn:</span>
<a href="https://linkedin.com/in/akhil-c-029376230"
class="hover:text-primary underline">akhil-c</a>
</div>
</div>
</div>
<script type="text/javascript">
var submitted = false;
function showModal() {
const modal = document.getElementById('success-modal');
modal.classList.remove('hidden');
// Small delay to allow display:block to apply before opacity transition
setTimeout(() => {
modal.classList.remove('opacity-0');
modal.children[0].classList.remove('scale-90', 'opacity-0');
}, 10);
}
function closeModal() {
const modal = document.getElementById('success-modal');
modal.classList.add('opacity-0');
modal.children[0].classList.add('scale-90', 'opacity-0');
setTimeout(() => {
modal.classList.add('hidden');
}, 300);
}
</script>
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;"
onload="if(submitted) {showModal(); document.getElementById('contact-form').reset(); submitted=false;}"></iframe>
<form id="contact-form"
action="https://docs.google.com/forms/u/0/d/e/1FAIpQLSdyGflBoykHVBwgHjN47HQ5JHeGZ90QRXhH0D07PgPFs3329Q/formResponse"
method="POST" target="hidden_iframe" onsubmit="submitted=true;" class="flex-1 space-y-4 w-full">
<input type="text" name="entry.183353409" placeholder="Name" required
class="w-full bg-white/5 border border-white/10 px-4 py-3 rounded-lg focus:border-primary focus:outline-none transition-colors">
<input type="email" name="entry.1003114063" placeholder="Email" required
class="w-full bg-white/5 border border-white/10 px-4 py-3 rounded-lg focus:border-primary focus:outline-none transition-colors">
<textarea name="entry.1111654105" placeholder="Message" rows="4" required
class="w-full bg-white/5 border border-white/10 px-4 py-3 rounded-lg focus:border-primary focus:outline-none transition-colors"></textarea>
<button type="submit"
class="w-full bg-primary hover:bg-primary/80 py-4 rounded-lg font-bold transition-all">Send
Message</button>
</form>
</div>
</section>
<!-- Success Modal -->
<div id="success-modal"
class="fixed inset-0 z-[10000] flex items-center justify-center bg-dark/80 backdrop-blur-sm hidden opacity-0 transition-opacity duration-300">
<div
class="glass-card p-8 rounded-2xl max-w-sm w-full mx-4 text-center transform scale-90 opacity-0 transition-all duration-300 border border-primary/30 shadow-2xl shadow-primary/20">
<div
class="w-16 h-16 bg-primary/20 rounded-full flex items-center justify-center text-primary mx-auto mb-6">
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
</svg>
</div>
<h3 class="text-2xl font-bold mb-2">Success!</h3>
<p class="text-slate-400 mb-6">Your message has been sent successfully. I'll get back to you soon.</p>
<button onclick="closeModal()"
class="w-full bg-primary hover:bg-primary/80 py-3 rounded-xl font-bold transition-all">
Close
</button>
</div>
</div>
<footer class="py-12 border-t border-white/5 text-center text-slate-500 text-sm">
© 2026 Akhil C. Built with Three.js & Passion.
</footer>
</main>
<!-- Dependencies -->
<script async src="https://unpkg.com/es-module-shims@1.6.3/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.160.0/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.160.0/examples/jsm/"
}
}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollTrigger.min.js"></script>
<!-- Main Script -->
<script type="module" src="main.js"></script>
</body>
</html>