-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
554 lines (511 loc) Β· 28.6 KB
/
index.html
File metadata and controls
554 lines (511 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Software Engineer Portfolio - Building Modern Web Applications">
<meta name="author" content="Samuel Araya">
<title>Samuel Araya - Software Engineer</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<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=Space+Grotesk:wght@300;400;600;700&family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- Background Effects -->
<canvas id="matrix-rain"></canvas>
<div class="grid-bg"></div>
<div class="scanline"></div>
<!-- CPU Chip Background Animation -->
<div class="cpu-container">
<svg viewBox="0 0 800 800" xmlns="http://www.w3.org/2000/svg">
<!-- Central CPU Core -->
<rect class="cpu-core" x="300" y="300" width="200" height="200" rx="10" />
<text x="400" y="405" class="cpu-label" text-anchor="middle">CPU</text>
<!-- Corner Mounting Holes -->
<circle class="mounting-hole" cx="320" cy="320" r="8" />
<circle class="mounting-hole" cx="480" cy="320" r="8" />
<circle class="mounting-hole" cx="320" cy="480" r="8" />
<circle class="mounting-hole" cx="480" cy="480" r="8" />
<!-- Connection Pins - Top -->
<rect class="pin" x="330" y="280" width="8" height="20" />
<rect class="pin" x="360" y="280" width="8" height="20" />
<rect class="pin" x="390" y="280" width="8" height="20" />
<rect class="pin" x="420" y="280" width="8" height="20" />
<rect class="pin" x="450" y="280" width="8" height="20" />
<!-- Connection Pins - Bottom -->
<rect class="pin" x="330" y="500" width="8" height="20" />
<rect class="pin" x="360" y="500" width="8" height="20" />
<rect class="pin" x="390" y="500" width="8" height="20" />
<rect class="pin" x="420" y="500" width="8" height="20" />
<rect class="pin" x="450" y="500" width="8" height="20" />
<!-- Connection Pins - Left -->
<rect class="pin" x="280" y="330" width="20" height="8" />
<rect class="pin" x="280" y="360" width="20" height="8" />
<rect class="pin" x="280" y="390" width="20" height="8" />
<rect class="pin" x="280" y="420" width="20" height="8" />
<rect class="pin" x="280" y="450" width="20" height="8" />
<!-- Connection Pins - Right -->
<rect class="pin" x="500" y="330" width="20" height="8" />
<rect class="pin" x="500" y="360" width="20" height="8" />
<rect class="pin" x="500" y="390" width="20" height="8" />
<rect class="pin" x="500" y="420" width="20" height="8" />
<rect class="pin" x="500" y="450" width="20" height="8" />
<!-- Circuit Traces - Green -->
<path class="trace-green" d="M 334,280 L 334,200 L 150,200 L 150,100" style="animation-delay: 0s" />
<path class="trace-green" d="M 364,280 L 364,180 L 250,180 L 250,80" style="animation-delay: 0.5s" />
<path class="trace-green" d="M 394,280 L 394,160 L 600,160 L 600,90" style="animation-delay: 1s" />
<path class="trace-green" d="M 424,280 L 424,140 L 650,140 L 650,110" style="animation-delay: 1.5s" />
<path class="trace-green" d="M 454,280 L 454,200 L 700,200 L 700,100" style="animation-delay: 2s" />
<path class="trace-green" d="M 334,520 L 334,600 L 150,600 L 150,700" style="animation-delay: 2.5s" />
<path class="trace-green" d="M 364,520 L 364,620 L 250,620 L 250,720" style="animation-delay: 3s" />
<path class="trace-green" d="M 394,520 L 394,640 L 600,640 L 600,710" style="animation-delay: 3.5s" />
<!-- Circuit Traces - Blue -->
<path class="trace-blue" d="M 280,334 L 200,334 L 200,250 L 100,250" style="animation-delay: 0.25s" />
<path class="trace-blue" d="M 280,394 L 180,394 L 180,500 L 90,500" style="animation-delay: 0.75s" />
<path class="trace-blue" d="M 520,334 L 600,334 L 600,250 L 700,250" style="animation-delay: 1.25s" />
<path class="trace-blue" d="M 520,394 L 620,394 L 620,500 L 710,500" style="animation-delay: 1.75s" />
<!-- Connection Nodes -->
<circle class="pin node" cx="150" cy="100" r="5" style="animation-delay: 0s" />
<circle class="pin node" cx="250" cy="80" r="5" style="animation-delay: 0.5s" />
<circle class="pin node" cx="600" cy="90" r="5" style="animation-delay: 1s" />
<circle class="pin node" cx="650" cy="110" r="5" style="animation-delay: 1.5s" />
<circle class="pin node" cx="700" cy="100" r="5" style="animation-delay: 2s" />
<circle class="pin node" cx="150" cy="700" r="5" style="animation-delay: 2.5s" />
<circle class="pin node" cx="250" cy="720" r="5" style="animation-delay: 3s" />
<circle class="pin node" cx="600" cy="710" r="5" style="animation-delay: 3.5s" />
<circle class="pin node" cx="100" cy="250" r="5" style="animation-delay: 0.25s" />
<circle class="pin node" cx="90" cy="500" r="5" style="animation-delay: 0.75s" />
<circle class="pin node" cx="700" cy="250" r="5" style="animation-delay: 1.25s" />
<circle class="pin node" cx="710" cy="500" r="5" style="animation-delay: 1.75s" />
</svg>
</div>
<!-- Loading Screen -->
<div id="loading-screen" class="loading-screen">
<div class="loading-content">
<div class="terminal-boot">
<p class="boot-line">> Initializing portfolio.exe...</p>
<p class="boot-line">> Loading modules...</p>
<p class="boot-line">> Establishing connection...</p>
<p class="boot-line">> System ready.</p>
</div>
</div>
</div>
<!-- Scroll to Top Button -->
<button id="scroll-top" class="scroll-top" aria-label="Scroll to top">
<span>β</span>
</button>
<!-- Header -->
<header>
<div class="container">
<div class="header-content">
<div class="logo">
<span class="logo-prefix">></span> SAMUEL_ARAYA<span class="cursor">_</span>
</div>
<button class="hamburger" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
<nav class="nav-menu">
<a href="#hero" class="nav-link"><span class="bracket-left">[ </span>Home<span class="bracket-right"> ]</span></a>
<a href="#about" class="nav-link"><span class="bracket-left">[ </span>About<span class="bracket-right"> ]</span></a>
<a href="#experience" class="nav-link"><span class="bracket-left">[ </span>Experience<span class="bracket-right"> ]</span></a>
<a href="#education" class="nav-link"><span class="bracket-left">[ </span>Education<span class="bracket-right"> ]</span></a>
<a href="#projects" class="nav-link"><span class="bracket-left">[ </span>Projects<span class="bracket-right"> ]</span></a>
<a href="#tech" class="nav-link"><span class="bracket-left">[ </span>Skills<span class="bracket-right"> ]</span></a>
<a href="#contact" class="nav-link"><span class="bracket-left">[ </span>Contact<span class="bracket-right"> ]</span></a>
<div class="social-links">
<a href="https://github.com/yourusername" class="social-icon" target="_blank" rel="noopener noreferrer" aria-label="GitHub">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path>
</svg>
</a>
<a href="https://linkedin.com/in/yourusername" class="social-icon" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path>
<rect x="2" y="9" width="4" height="12"></rect>
<circle cx="4" cy="4" r="2"></circle>
</svg>
</a>
<a href="https://twitter.com/yourusername" class="social-icon" target="_blank" rel="noopener noreferrer" aria-label="Twitter">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path>
</svg>
</a>
</div>
</nav>
</div>
</div>
</header>
<!-- Hero Section -->
<section id="hero" class="hero">
<div class="container">
<div class="terminal-line">$ whoami</div>
<h1 class="hero-title">SAMUEL ARAYA</h1>
<p class="hero-description">
Full-stack developer passionate about building scalable web applications
and solving complex problems with clean, efficient code.
</p>
<div class="hero-buttons">
<a href="#contact" class="cta-button">
<span>Get In Touch</span>
</a>
<a href="#" class="cta-button cta-secondary" download>
<span>β Download Resume</span>
</a>
</div>
</div>
</section>
<!-- Section Divider -->
<div class="section-divider">
<div class="divider-line"></div>
</div>
<!-- Section Divider -->
<div class="section-divider">
<div class="divider-line"></div>
</div>
<!-- About Section -->
<section id="about" class="services">
<div class="container">
<div class="section-header">
<div class="section-subtitle">// About Me</div>
<h2 class="section-title">WHO I AM</h2>
</div>
<div class="about-content" style="max-width: 800px; margin: 0 auto;">
<p style="font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem;">
I'm a passionate software engineer with 5+ years of experience building modern web applications.
I specialize in full-stack development, with a focus on creating scalable, user-friendly solutions
that solve real-world problems.
</p>
<p style="font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.8);">
When I'm not coding, you'll find me exploring new technologies, contributing to open-source projects,
or writing technical blog posts to share knowledge with the developer community.
</p>
</div>
</div>
</section>
<!-- Section Divider -->
<div class="section-divider">
<div class="divider-line"></div>
</div>
<!-- Work Experience Section -->
<section id="experience" class="services">
<div class="container">
<div class="section-header">
<div class="section-subtitle">// Career Path</div>
<h2 class="section-title">WORK EXPERIENCE</h2>
</div>
<div class="services-grid">
<div class="service-card">
<div class="service-number">[May 2025 - August 2025]</div>
<h3>Full Stack Software Engineer Intern</h3>
<p style="color: var(--secondary); font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; margin-bottom: 1rem;">Microsoft</p>
<p>Lead development of cloud-native applications serving 1M+ users. Architected microservices infrastructure, mentored junior developers, and implemented CI/CD pipelines that reduced deployment time by 60%.</p>
<div style="margin-top: 1rem;">
<span style="font-size: 0.85rem; color: var(--primary); font-family: 'JetBrains Mono', monospace;">React β’ Node.js β’ AWS β’ Kubernetes</span>
</div>
</div>
<div class="service-card">
<div class="service-number">[May 2023 - May 2025]</div>
<h3>SOFTWARE ENGINEERING INTERN</h3>
<p style="color: var(--secondary); font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; margin-bottom: 1rem;">SOUTHERN CALIFORNIA EDISON</p>
<p>Developed responsive web applications and RESTful APIs for diverse clients. Participated in code reviews, wrote comprehensive unit tests, and contributed to technical documentation and best practices.</p>
<div style="margin-top: 1rem;">
<span style="font-size: 0.85rem; color: var(--primary); font-family: 'JetBrains Mono', monospace;">JavaScript β’ Node.js β’ MongoDB β’ Git</span>
</div>
</div>
</div>
</div>
</section>
<!-- Section Divider -->
<div class="section-divider">
<div class="divider-line"></div>
</div>
<!-- Education Section -->
<section id="education" class="services">
<div class="container">
<div class="section-header">
<div class="section-subtitle">// Education & Certifications</div>
<h2 class="section-title">LEARNING PATH</h2>
</div>
<div class="services-grid">
<div class="service-card">
<div class="service-number">[August 2021 - December 2025]</div>
<h3>BACHELOR OF SCIENCE IN COMPUTER SCIENCE</h3>
<p style="color: var(--secondary); font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; margin-bottom: 1rem;">University of Technology</p>
<p>Focused on software engineering, algorithms, and data structures. Graduated with honors (GPA: 3.8/4.0). Senior capstone project: Building a distributed systems platform for real-time data processing.</p>
<div style="margin-top: 1rem;">
<span style="font-size: 0.85rem; color: var(--primary); font-family: 'JetBrains Mono', monospace;">Dean's List β’ CS Honor Society β’ Hackathon Winner</span>
</div>
</div>
</div>
</div>
</section>
<!-- Section Divider -->
<div class="section-divider">
<div class="divider-line"></div>
</div>
<!-- Projects Section -->
<section id="projects" class="services">
<div class="container">
<div class="section-header">
<div class="section-subtitle">// Featured Work</div>
<h2 class="section-title">PROJECTS</h2>
</div>
<!-- Project Filters -->
<div class="project-filters">
<button class="filter-btn active" data-filter="all">
<span class="filter-prefix">></span> ALL<span class="filter-cursor">_</span>
</button>
<button class="filter-btn" data-filter="React">
<span class="filter-prefix">></span> REACT
</button>
<button class="filter-btn" data-filter="Node.js">
<span class="filter-prefix">></span> NODE.JS
</button>
<button class="filter-btn" data-filter="Python">
<span class="filter-prefix">></span> PYTHON
</button>
<button class="filter-btn" data-filter="TypeScript">
<span class="filter-prefix">></span> TYPESCRIPT
</button>
<button class="filter-btn" data-filter="PostgreSQL">
<span class="filter-prefix">></span> POSTGRESQL
</button>
<button class="filter-btn" data-filter="Docker">
<span class="filter-prefix">></span> DOCKER
</button>
</div>
<div class="services-grid" id="projects-grid">
<div class="service-card project-card" data-project="ecommerce" data-tags="React,Node.js,PostgreSQL" style="cursor: pointer;">
<div class="project-icon">π</div>
<div class="service-number">[01]</div>
<h3>E-COMMERCE PLATFORM</h3>
<p>Full-stack e-commerce application with real-time inventory management, payment processing, and admin dashboard.</p>
<div class="project-tags">
<span class="tech-tag" data-tech="React">React</span>
<span class="tech-tag" data-tech="Node.js">Node.js</span>
<span class="tech-tag" data-tech="PostgreSQL">PostgreSQL</span>
</div>
<div style="margin-top: 1rem; font-size: 0.9rem; color: var(--secondary);">
<span>Click for details β</span>
</div>
</div>
<div class="service-card project-card" data-project="automation" data-tags="Python,Docker" style="cursor: pointer;">
<div class="project-icon">π€</div>
<div class="service-number">[02]</div>
<h3>TASK AUTOMATION TOOL</h3>
<p>Developer productivity tool that automates repetitive coding tasks using custom scripts and AI-powered code generation. Increased team efficiency by 40%.</p>
<div class="project-tags">
<span class="tech-tag" data-tech="Python">Python</span>
<span class="tech-tag" data-tech="Docker">Docker</span>
</div>
<div style="margin-top: 1rem; font-size: 0.9rem; color: var(--secondary);">
<span>Click for details β</span>
</div>
</div>
<div class="service-card project-card" data-project="analytics" data-tags="TypeScript,React" style="cursor: pointer;">
<div class="project-icon">π</div>
<div class="service-number">[03]</div>
<h3>REAL-TIME ANALYTICS DASHBOARD</h3>
<p>Live data visualization platform processing millions of events per day. Features interactive charts, custom filters, and WebSocket-based real-time updates.</p>
<div class="project-tags">
<span class="tech-tag" data-tech="TypeScript">TypeScript</span>
<span class="tech-tag" data-tech="React">React</span>
</div>
<div style="margin-top: 1rem; font-size: 0.9rem; color: var(--secondary);">
<span>Click for details β</span>
</div>
</div>
</div>
</div>
</section>
<!-- Section Divider -->
<div class="section-divider">
<div class="divider-line"></div>
</div>
<!-- Tech Stack Section -->
<section id="tech" class="tech-stack">
<div class="container">
<div class="section-header">
<div class="section-subtitle">// Technology Stack</div>
<h2 class="section-title">SKILLS & TOOLS</h2>
</div>
<div class="skills-categories">
<div class="skill-category">
<h3 class="skill-category-title">
<span class="category-icon">π¨</span>
FRONTEND
</h3>
<div class="tech-items">
<div class="tech-item">React</div>
<div class="tech-item">TypeScript</div>
<div class="tech-item">JavaScript</div>
<div class="tech-item">Vue.js</div>
<div class="tech-item">HTML5</div>
<div class="tech-item">CSS3</div>
<div class="tech-item">Tailwind</div>
<div class="tech-item">Next.js</div>
</div>
</div>
<div class="skill-category">
<h3 class="skill-category-title">
<span class="category-icon">βοΈ</span>
BACKEND
</h3>
<div class="tech-items">
<div class="tech-item">Node.js</div>
<div class="tech-item">Python</div>
<div class="tech-item">Express</div>
<div class="tech-item">FastAPI</div>
<div class="tech-item">GraphQL</div>
<div class="tech-item">REST APIs</div>
<div class="tech-item">WebSockets</div>
<div class="tech-item">Microservices</div>
</div>
</div>
<div class="skill-category">
<h3 class="skill-category-title">
<span class="category-icon">βοΈ</span>
DEVOPS & CLOUD
</h3>
<div class="tech-items">
<div class="tech-item">AWS</div>
<div class="tech-item">Docker</div>
<div class="tech-item">Kubernetes</div>
<div class="tech-item">CI/CD</div>
<div class="tech-item">GitHub Actions</div>
<div class="tech-item">Terraform</div>
<div class="tech-item">Linux</div>
<div class="tech-item">Nginx</div>
</div>
</div>
<div class="skill-category">
<h3 class="skill-category-title">
<span class="category-icon">πΎ</span>
DATABASES
</h3>
<div class="tech-items">
<div class="tech-item">PostgreSQL</div>
<div class="tech-item">MongoDB</div>
<div class="tech-item">Redis</div>
<div class="tech-item">MySQL</div>
<div class="tech-item">DynamoDB</div>
<div class="tech-item">Elasticsearch</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section Divider -->
<div class="section-divider">
<div class="divider-line"></div>
</div>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<div class="section-header">
<div class="section-subtitle">// Get In Touch</div>
<h2 class="section-title">LET'S CONNECT</h2>
</div>
<form id="contact-form" class="contact-form">
<div class="form-row">
<div class="form-group">
<label>> Name</label>
<input type="text" name="from_name" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label>> Email</label>
<input type="email" name="reply_to" placeholder="your@email.com" required>
</div>
</div>
<div class="form-group">
<label>> Subject</label>
<select name="subject" required>
<option value="">Select a topic</option>
<option value="job">Job Opportunity</option>
<option value="collaboration">Collaboration</option>
<option value="freelance">Freelance Project</option>
<option value="question">General Question</option>
</select>
</div>
<div class="form-group">
<label>> Message</label>
<textarea name="message" rows="5" placeholder="Your message here..." required></textarea>
</div>
<button type="submit" class="cta-button">
<span id="form-submit-text">$ Send Message</span>
</button>
<div id="form-status" class="form-status"></div>
</form>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-left">
<div class="logo">
<span class="logo-prefix">></span> SAMUEL_ARAYA<span class="cursor">_</span>
</div>
<p>© 2025 Samuel Araya. Built with passion.</p>
</div>
<div class="footer-right">
<a href="https://github.com/Samuaray" class="footer-link" target="_blank">GitHub</a>
<a href="https://www.linkedin.com/in/samuela-araya/" class="footer-link" target="_blank">LinkedIn</a>
<a href="https://devpost.com/Samuaray" class="footer-link" target="_blank">DevPost</a>
</div>
</div>
</div>
</footer>
<!-- Project Modal -->
<div id="project-modal" class="project-modal">
<div class="modal-content">
<button class="modal-close" aria-label="Close modal">×</button>
<div class="modal-body">
<div class="modal-header">
<div class="project-modal-icon"></div>
<h2 class="modal-title"></h2>
<p class="modal-subtitle"></p>
</div>
<!-- Image Gallery -->
<div class="modal-gallery">
<div class="gallery-container">
<button class="gallery-nav gallery-prev" aria-label="Previous image">βΉ</button>
<div class="gallery-images">
<img src="" alt="Project screenshot" class="gallery-image active">
</div>
<button class="gallery-nav gallery-next" aria-label="Next image">βΊ</button>
</div>
<div class="gallery-dots"></div>
</div>
<div class="modal-section">
<h3>π Overview</h3>
<p class="modal-overview"></p>
</div>
<div class="modal-section">
<h3>π― The Challenge</h3>
<p class="modal-challenge"></p>
</div>
<div class="modal-section">
<h3>π‘ The Solution</h3>
<p class="modal-solution"></p>
</div>
<div class="modal-section">
<h3>π The Results</h3>
<div class="modal-results"></div>
</div>
<div class="modal-actions">
<a href="#" class="modal-btn modal-btn-primary" target="_blank">π View Live</a>
<a href="#" class="modal-btn modal-btn-secondary" target="_blank">π» Source Code</a>
</div>
</div>
</div>
</div>
<!-- EmailJS SDK -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>