-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
567 lines (520 loc) · 32.4 KB
/
Copy pathindex.html
File metadata and controls
567 lines (520 loc) · 32.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
<!DOCTYPE html>
<html lang="en" data-theme="slate-dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amit Gorai | Portfolio</title>
<!-- Meta Descriptions for SEO -->
<meta name="description" content="Personal portfolio of Amit Gorai, a Computer Science Undergraduate & Software Developer specializing in web applications and relational databases.">
<meta name="keywords" content="Amit Gorai, Portfolio, Software Developer, Systems Engineer, CS Undergraduate, Web Development, Databases">
<!-- Fonts -->
<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@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Custom Stylesheet -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Scroll Progress Line -->
<div id="scroll-progress-track">
<div id="scroll-progress-line"></div>
</div>
<!-- Background Blueprint Grid -->
<div class="grid-backdrop" id="grid-backdrop">
<div class="ambient-glow glow-1"></div>
<div class="ambient-glow glow-2"></div>
</div>
<!-- Sticky Navbar -->
<header class="navbar" id="navbar">
<div class="nav-container container">
<a href="#hero" class="logo" id="nav-logo">
Amit<span class="logo-accent">.Dev</span>
</a>
<nav class="nav-links" id="nav-links">
<a href="#hero" class="nav-link active">Home</a>
<a href="#about" class="nav-link">About</a>
<a href="#skills" class="nav-link">Skills</a>
<a href="#projects" class="nav-link">Projects</a>
<a href="#contact" class="nav-link">Contact</a>
</nav>
<div class="nav-actions">
<!-- Theme Toggle: Slate Dark / Studio Light Switcher -->
<button class="theme-toggle" id="theme-toggle" aria-label="Toggle theme" title="Switch Theme">
<!-- Light State Icon -->
<svg class="reel-light-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
<!-- Dark State Icon -->
<svg class="reel-dark-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
</button>
<button class="hamburger-menu" id="hamburger-menu" aria-label="Open mobile menu">
<span class="hamburger-line line-top"></span>
<span class="hamburger-line line-mid"></span>
<span class="hamburger-line line-bot"></span>
</button>
</div>
</div>
</header>
<!-- Mobile Nav Overlay -->
<div class="mobile-nav-overlay" id="mobile-nav-overlay">
<div class="mobile-nav-links">
<a href="#hero" class="mobile-nav-link">Home</a>
<a href="#about" class="mobile-nav-link">About</a>
<a href="#skills" class="mobile-nav-link">Skills</a>
<a href="#projects" class="mobile-nav-link">Projects</a>
<a href="#contact" class="mobile-nav-link">Contact</a>
</div>
</div>
<main class="main-content">
<!-- 1. HERO SECTION -->
<section class="hero-section" id="hero">
<div class="hero-container container">
<div class="hero-content">
<div class="hero-tagline-wrapper">
<span class="hero-badge"><span class="badge-dot"></span>Available for Internships</span>
</div>
<h1 class="hero-title">
Hi, I'm Amit Gorai. I build <span class="highlight-cinema">Web Applications</span>
</h1>
<div class="hero-typed">
Focused on writing <span class="typed-text" id="typed-text">clean, efficient code</span><span class="typed-cursor">|</span>
</div>
<p class="hero-description">
Computer Science undergraduate and software developer. I specialize in designing structured database models, implementing optimized backend systems, and crafting responsive user interfaces.
</p>
<div class="hero-buttons">
<a href="#projects" class="btn btn-primary" id="btn-hero-projects">
<span>View Projects</span>
<svg viewBox="0 0 24 24" width="18" height="18" stroke="currentColor" stroke-width="2.5" fill="none" class="btn-icon">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</a>
<a href="#contact" class="btn btn-secondary" id="btn-hero-contact">
<span>Get In Touch</span>
</a>
<a href="resume.pdf" class="btn btn-tertiary" id="btn-hero-resume" download="Amit_Gorai_Resume.pdf">
<span>Download Resume</span>
<svg viewBox="0 0 24 24" width="16" height="16" stroke="currentColor" stroke-width="2.5" fill="none" class="btn-icon">
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path>
<polyline points="7 10 12 15 17 10"></polyline>
<line x1="12" y1="15" x2="12" y2="3"></line>
</svg>
</a>
</div>
</div>
<!-- Code Preview Card -->
<div class="hero-visual">
<div class="glass-panel code-window-panel">
<div class="code-window-header">
<div class="window-dots">
<span class="dot dot-red"></span>
<span class="dot dot-yellow"></span>
<span class="dot dot-green"></span>
</div>
<div class="window-tab">developer.json</div>
</div>
<div class="code-window-content">
<pre><code>{
<span class="code-key">"name"</span>: <span class="code-val">"Amit Gorai"</span>,
<span class="code-key">"role"</span>: <span class="code-val">"Full Stack Developer"</span>,
<span class="code-key">"education"</span>: <span class="code-val">"B.Tech CSE"</span>,
<span class="code-key">"skills"</span>: {
<span class="code-key">"languages"</span>: [<span class="code-val">"Java"</span>, <span class="code-val">"Python"</span>, <span class="code-val">"JS"</span>],
<span class="code-key">"databases"</span>: [<span class="code-val">"MySQL"</span>, <span class="code-val">"SQL"</span>],
<span class="code-key">"concepts"</span>: [<span class="code-val">"DSA"</span>, <span class="code-val">"OOP"</span>]
}
}</code></pre>
</div>
</div>
</div>
</div>
<a href="#about" class="scroll-indicator" id="scroll-indicator">
<span class="indicator-mouse">
<span class="indicator-wheel"></span>
</span>
<span class="indicator-text">SCROLL</span>
</a>
</section>
<!-- 2. ABOUT SECTION -->
<section class="about-section section-padding" id="about">
<div class="container">
<div class="section-header">
<span class="section-subtitle">Introduction</span>
<h2 class="section-title">About Me</h2>
<div class="section-divider"></div>
</div>
<div class="about-grid">
<!-- Text Info -->
<div class="glass-panel text-panel">
<h3 class="about-heading">Software Developer & CS Student</h3>
<p class="about-text">
I am a Computer Science undergraduate focused on learning modern web development frameworks and relational database design. I enjoy solving programming challenges and building projects that have clean structures and reliable codebases.
</p>
<p class="about-text">
I am currently looking for software development internships to grow my skills, collaborate with experienced engineers, and contribute to building meaningful products.
</p>
</div>
<!-- Timeline / Milestones -->
<div class="glass-panel text-panel">
<h3 class="about-heading">Journey & Education</h3>
<div class="timeline-tactical">
<div class="timeline-frame">
<div class="timeline-badge">2024 - 2025</div>
<h4 class="timeline-title">Programming Basics</h4>
<p class="timeline-desc">Mastered core computational algorithms, object-oriented concepts, and basic web building blocks (HTML, CSS, JS, Java).</p>
</div>
<div class="timeline-frame">
<div class="timeline-badge">2025 - Present</div>
<h4 class="timeline-title">B.Tech in Computer Science</h4>
<p class="timeline-desc">Deepening knowledge in data structures, relational database management, and computer networks at ITER (SOA).</p>
</div>
<div class="timeline-frame">
<div class="timeline-badge">Upcoming</div>
<h4 class="timeline-title">Professional Goals</h4>
<p class="timeline-desc">Honing full-stack skills, collaborating on open-source, and stepping into professional software internship positions.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- 3. SKILLS SECTION -->
<section class="skills-section section-padding" id="skills">
<div class="container">
<div class="section-header">
<span class="section-subtitle">My Stack</span>
<h2 class="section-title">Skills</h2>
<div class="section-divider"></div>
</div>
<div class="skills-grid">
<!-- Languages -->
<div class="glass-panel skill-card">
<h3 class="category-title">
<svg viewBox="0 0 24 24" width="18" height="18" stroke="currentColor" stroke-width="2.5" fill="none">
<polygon points="12 2 2 7 12 12 22 7 12 2"></polygon>
<polyline points="2 17 12 22 22 17"></polyline>
<polyline points="2 12 12 17 22 12"></polyline>
</svg>
Languages
</h3>
<div class="skills-chips">
<span class="skill-badge" style="--badge-color: #f08080;">Java</span>
<span class="skill-badge" style="--badge-color: #3572A5;">Python</span>
<span class="skill-badge" style="--badge-color: #f1e05a;">JavaScript</span>
<span class="skill-badge" style="--badge-color: #e38c00;">SQL</span>
</div>
</div>
<!-- Frontend -->
<div class="glass-panel skill-card">
<h3 class="category-title">
<svg viewBox="0 0 24 24" width="18" height="18" stroke="currentColor" stroke-width="2.5" fill="none">
<rect x="2" y="3" width="20" height="14" rx="2" ry="2"></rect>
<line x1="8" y1="21" x2="16" y2="21"></line>
<line x1="12" y1="17" x2="12" y2="21"></line>
</svg>
Frontend
</h3>
<div class="skills-chips">
<span class="skill-badge" style="--badge-color: #e34c26;">HTML5</span>
<span class="skill-badge" style="--badge-color: #563d7c;">CSS3</span>
<span class="skill-badge" style="--badge-color: #563d7c;">Bootstrap</span>
<span class="skill-badge" style="--badge-color: #06b6d4;">Responsive Design</span>
</div>
</div>
<!-- Database & Tools -->
<div class="glass-panel skill-card">
<h3 class="category-title">
<svg viewBox="0 0 24 24" width="18" height="18" stroke="currentColor" stroke-width="2.5" fill="none">
<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path>
<polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline>
<line x1="12" y1="22.08" x2="12" y2="12"></line>
</svg>
Databases & Tools
</h3>
<div class="skills-chips">
<span class="skill-badge" style="--badge-color: #00758f;">MySQL</span>
<span class="skill-badge" style="--badge-color: #f1502f;">Git</span>
<span class="skill-badge" style="--badge-color: #171515;">GitHub</span>
<span class="skill-badge" style="--badge-color: #007acc;">VS Code</span>
</div>
</div>
<!-- Core Concepts -->
<div class="glass-panel skill-card">
<h3 class="category-title">
<svg viewBox="0 0 24 24" width="18" height="18" stroke="currentColor" stroke-width="2.5" fill="none">
<circle cx="12" cy="12" r="10"></circle>
<line x1="12" y1="16" x2="12" y2="12"></line>
<line x1="12" y1="8" x2="12.01" y2="8"></line>
</svg>
Concepts
</h3>
<div class="skills-chips">
<span class="skill-badge" style="--badge-color: #3b82f6;">DSA</span>
<span class="skill-badge" style="--badge-color: #10b981;">OOP</span>
<span class="skill-badge" style="--badge-color: #f59e0b;">Problem Solving</span>
</div>
</div>
</div>
</div>
</section>
<!-- 4. PROJECTS SECTION -->
<section class="projects-section section-padding" id="projects">
<div class="container">
<div class="section-header">
<span class="section-subtitle">My Work</span>
<h2 class="section-title">Projects</h2>
<div class="section-divider"></div>
</div>
<div class="projects-grid">
<!-- Project 1: Portfolio -->
<article class="glass-panel project-card">
<div class="project-media-frame">
<div class="mock-browser-bar">
<div class="browser-dot"></div>
<div class="browser-dot"></div>
<div class="browser-dot"></div>
</div>
<div class="project-icon-wrapper">
<svg viewBox="0 0 24 24" width="24" height="24" stroke="currentColor" stroke-width="2" fill="none">
<rect x="2" y="3" width="20" height="14" rx="2" ry="2"></rect>
<line x1="8" y1="21" x2="16" y2="21"></line>
<line x1="12" y1="17" x2="12" y2="21"></line>
</svg>
</div>
</div>
<div class="project-meta">
<span class="project-date">2026</span>
<div class="project-tech-badges">
<span class="project-tech-badge">HTML</span>
<span class="project-tech-badge">CSS</span>
<span class="project-tech-badge">JS</span>
</div>
</div>
<h3 class="project-title">Glassmorphic Developer Portfolio</h3>
<p class="project-description">
A highly optimized, professional developer portfolio built using HTML, CSS, and JS featuring card highlights, custom layouts, and a fluid dark/light design system.
</p>
<div class="project-actions">
<a href="#" class="btn btn-outline btn-sm" target="_blank" rel="noopener">Preview</a>
<a href="https://github.com/amitgorai706" class="btn btn-outline btn-sm" target="_blank" rel="noopener">GitHub</a>
</div>
</article>
<!-- Project 2: Weather App -->
<article class="glass-panel project-card">
<div class="project-media-frame">
<div class="mock-browser-bar">
<div class="browser-dot"></div>
<div class="browser-dot"></div>
<div class="browser-dot"></div>
</div>
<div class="project-icon-wrapper">
<svg viewBox="0 0 24 24" width="24" height="24" stroke="currentColor" stroke-width="2" fill="none">
<path d="M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41"></path>
<circle cx="12" cy="12" r="4"></circle>
</svg>
</div>
</div>
<div class="project-meta">
<span class="project-date">2025</span>
<div class="project-tech-badges">
<span class="project-tech-badge">HTML</span>
<span class="project-tech-badge">CSS</span>
<span class="project-tech-badge">JS</span>
<span class="project-tech-badge">API</span>
</div>
</div>
<h3 class="project-title">Stormbreaker Weather App</h3>
<p class="project-description">
A real-time atmospheric tracking app integrated with weather API telemetry to report conditions and pressure differentials across global cities.
</p>
<div class="project-actions">
<a href="#" class="btn btn-outline btn-sm" target="_blank" rel="noopener">Preview</a>
<a href="https://github.com/amitgorai706" class="btn btn-outline btn-sm" target="_blank" rel="noopener">GitHub</a>
</div>
</article>
<!-- Project 3: Netflix Clone -->
<article class="glass-panel project-card">
<div class="project-media-frame">
<div class="mock-browser-bar">
<div class="browser-dot"></div>
<div class="browser-dot"></div>
<div class="browser-dot"></div>
</div>
<div class="project-icon-wrapper">
<svg viewBox="0 0 24 24" width="24" height="24" stroke="currentColor" stroke-width="2" fill="none">
<rect x="2" y="2" width="20" height="20" rx="2.18" ry="2.18"></rect>
<line x1="7" y1="2" x2="7" y2="22"></line>
<line x1="17" y1="2" x2="17" y2="22"></line>
<line x1="2" y1="12" x2="22" y2="12"></line>
</svg>
</div>
</div>
<div class="project-meta">
<span class="project-date">2025</span>
<div class="project-tech-badges">
<span class="project-tech-badge">HTML</span>
<span class="project-tech-badge">CSS</span>
<span class="project-tech-badge">JS</span>
</div>
</div>
<h3 class="project-title">Stream Hub Interface</h3>
<p class="project-description">
Developed a high-fidelity streaming interface recreating modern layouts, interactive video grids, and responsive scaling mechanisms.
</p>
<div class="project-actions">
<a href="#" class="btn btn-outline btn-sm" target="_blank" rel="noopener">Preview</a>
<a href="https://github.com/amitgorai706" class="btn btn-outline btn-sm" target="_blank" rel="noopener">GitHub</a>
</div>
</article>
</div>
</div>
</section>
<!-- 5. CONTACT SECTION -->
<section class="contact-section section-padding" id="contact">
<div class="container">
<div class="section-header">
<span class="section-subtitle">Get In Touch</span>
<h2 class="section-title">Contact</h2>
<div class="section-divider"></div>
</div>
<div class="contact-grid">
<!-- Text contact info card -->
<div class="glass-panel transceiver-card">
<h3 class="contact-heading">Start a Conversation</h3>
<p class="contact-subtext">
If you have an internship opportunity, a project proposal, or just want to connect, feel free to drop a message. I will get back to you as soon as possible.
</p>
<div class="info-list">
<div class="info-item">
<div class="info-icon">
<svg viewBox="0 0 24 24" width="20" height="20" stroke="currentColor" stroke-width="2" fill="none">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
</div>
<div class="info-details">
<span class="info-label">Email</span>
<a href="mailto:amitgorai200@gmail.com" class="info-value">amitgorai200@gmail.com</a>
</div>
</div>
</div>
<div class="contact-footer-text">
<span class="pulse-indicator"></span> Always open to chat.
</div>
</div>
<!-- Input contact form card -->
<div class="glass-panel transceiver-card">
<form id="contact-form" class="contact-form">
<div class="form-row">
<div class="form-group">
<label for="form-name" class="form-label">Name</label>
<div class="input-wrapper">
<input type="text" id="form-name" name="name" class="form-input" placeholder="Your Name" required>
</div>
</div>
<div class="form-group">
<label for="form-email" class="form-label">Email</label>
<div class="input-wrapper">
<input type="email" id="form-email" name="email" class="form-input" placeholder="you@example.com" required>
</div>
</div>
</div>
<div class="form-group">
<label for="form-subject" class="form-label">Subject</label>
<div class="input-wrapper">
<input type="text" id="form-subject" name="subject" class="form-input" placeholder="Inquiry details" required>
</div>
</div>
<div class="form-group">
<label for="form-message" class="form-label">Message</label>
<div class="input-wrapper">
<textarea id="form-message" name="message" rows="5" class="form-input" placeholder="Your message..." required></textarea>
</div>
</div>
<button type="submit" class="btn btn-primary w-full" id="btn-submit-contact">
<span>Send Message</span>
<svg viewBox="0 0 24 24" width="18" height="18" stroke="currentColor" stroke-width="2.5" fill="none" class="btn-icon">
<line x1="22" y1="2" x2="11" y2="13"></line>
<polygon points="22 2 15 22 11 13 2 9 22 2"></polygon>
</svg>
</button>
<div id="form-status" class="form-status"></div>
</form>
</div>
</div>
</div>
</section>
</main>
<!-- 6. FOOTER -->
<footer class="footer">
<div class="container footer-container">
<div class="footer-brand">
<a href="#hero" class="logo footer-logo">Amit<span class="logo-accent">.Dev</span></a>
<p class="footer-tagline">Designed and engineered with care and precision.</p>
</div>
<div class="footer-links-group">
<h4 class="footer-header">Navigation</h4>
<div class="footer-nav">
<a href="#hero" class="footer-nav-link">Home</a>
<a href="#about" class="footer-nav-link">About</a>
<a href="#skills" class="footer-nav-link">Skills</a>
<a href="#projects" class="footer-nav-link">Projects</a>
<a href="#contact" class="footer-nav-link">Contact</a>
</div>
</div>
<div class="footer-socials-group">
<h4 class="footer-header">Links</h4>
<div class="social-links">
<a href="https://github.com/amitgorai706" class="social-link" aria-label="GitHub" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" width="20" height="20" stroke="currentColor" stroke-width="2.5" fill="none">
<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/amit-gorai-62a036274" class="social-link" aria-label="LinkedIn" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" width="20" height="20" stroke="currentColor" stroke-width="2.5" fill="none">
<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="mailto:amitgorai200@gmail.com" class="social-link" aria-label="Email">
<svg viewBox="0 0 24 24" width="20" height="20" stroke="currentColor" stroke-width="2.5" fill="none">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
</a>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="container footer-bottom-container">
<p class="copyright">© 2026 Amit Gorai. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Scroll-to-Top Button -->
<button class="scroll-to-top" id="scroll-to-top" aria-label="Scroll back to top">
<svg viewBox="0 0 24 24" width="20" height="20" stroke="currentColor" stroke-width="2.5" fill="none">
<line x1="12" y1="19" x2="12" y2="5"></line>
<polyline points="5 12 12 5 19 12"></polyline>
</svg>
</button>
<!-- Animation CDNs (GSAP, ScrollTrigger, Lenis) -->
<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>
<script src="https://cdn.jsdelivr.net/gh/studio-freight/lenis@1.0.19/bundled/lenis.min.js"></script>
<!-- Main Javascript -->
<script src="js/main.js"></script>
</body>
</html>