-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
789 lines (692 loc) · 28.4 KB
/
index.html
File metadata and controls
789 lines (692 loc) · 28.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
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bipul Kuri - Dark Neon Theme</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Courier New', monospace;
background: #0a0e27;
color: #e0e0e0;
line-height: 1.6;
overflow-x: hidden;
}
.matrix-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.05;
pointer-events: none;
z-index: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 1;
}
header {
padding: 80px 0;
text-align: center;
background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
border-bottom: 3px solid #00ff88;
box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}
h1 {
font-size: 3.5em;
margin-bottom: 10px;
color: #00ff88;
text-shadow: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.3);
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from { text-shadow: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.3); }
to { text-shadow: 0 0 30px rgba(0, 255, 136, 0.8), 0 0 60px rgba(0, 255, 136, 0.5); }
}
.tagline {
font-size: 1.3em;
color: #ff006e;
margin-bottom: 30px;
text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}
nav {
margin-top: 30px;
}
nav a {
color: #00ff88;
text-decoration: none;
margin: 0 20px;
padding: 10px 25px;
border: 2px solid #00ff88;
display: inline-block;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
nav a:before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #00ff88;
transition: all 0.3s;
z-index: -1;
}
nav a:hover:before {
left: 0;
}
nav a:hover {
color: #0a0e27;
box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}
.content {
padding: 60px 0;
}
.section {
margin-bottom: 80px;
padding: 40px;
background: rgba(26, 31, 58, 0.6);
border: 1px solid rgba(0, 255, 136, 0.2);
border-radius: 10px;
backdrop-filter: blur(10px);
}
.section h2 {
color: #00ff88;
font-size: 2.5em;
margin-bottom: 30px;
letter-spacing: 3px;
position: relative;
padding-bottom: 15px;
}
.section h2:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100px;
height: 3px;
background: linear-gradient(90deg, #00ff88, #ff006e);
box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}
.job-card {
background: rgba(10, 14, 39, 0.8);
padding: 30px;
margin-bottom: 30px;
border-left: 5px solid #ff006e;
border-radius: 5px;
transition: all 0.3s;
position: relative;
opacity: 0;
transform: translateY(20px);
}
.job-card.revealed {
opacity: 1;
transform: translateY(0);
}
.job-card:hover {
transform: translateX(10px);
box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
border-left-color: #00ff88;
}
.company {
color: #ff006e;
font-size: 1.5em;
font-weight: bold;
margin-bottom: 10px;
text-shadow: 0 0 10px rgba(255, 0, 110, 0.3);
}
.job-title {
color: #00ff88;
font-size: 1.2em;
margin-bottom: 10px;
}
.duration {
color: #8892b0;
font-size: 0.9em;
margin-bottom: 15px;
}
.job-highlights {
list-style: none;
padding: 0;
}
.job-highlights li {
padding: 10px 0 10px 30px;
position: relative;
color: #ccd6f6;
}
.job-highlights li:before {
content: '>';
position: absolute;
left: 0;
color: #00ff88;
font-weight: bold;
animation: blink 1.5s infinite;
}
@keyframes blink {
0%, 50%, 100% { opacity: 1; }
25%, 75% { opacity: 0.3; }
}
.cert-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 25px;
}
.cert-card {
background: rgba(10, 14, 39, 0.9);
padding: 25px;
border: 2px solid transparent;
border-radius: 10px;
transition: all 0.3s;
position: relative;
overflow: hidden;
opacity: 0;
transform: translateY(20px);
}
.cert-card.revealed {
opacity: 1;
transform: translateY(0);
}
.cert-card:before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: linear-gradient(45deg, #00ff88, #ff006e, #00d4ff, #00ff88);
background-size: 400%;
border-radius: 10px;
z-index: -1;
opacity: 0;
transition: opacity 0.3s;
animation: gradient 3s linear infinite;
}
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.cert-card:hover:before {
opacity: 1;
}
.cert-card:hover {
transform: translateY(-5px);
}
.cert-title {
color: #00ff88;
font-weight: bold;
margin-bottom: 10px;
font-size: 1.1em;
}
.cert-issuer {
color: #ff006e;
margin-bottom: 5px;
}
.project-card {
background: rgba(10, 14, 39, 0.8);
padding: 30px;
margin-bottom: 25px;
border: 2px solid rgba(0, 212, 255, 0.3);
border-radius: 10px;
transition: all 0.3s;
opacity: 0;
transform: translateY(20px);
}
.project-card.revealed {
opacity: 1;
transform: translateY(0);
}
.project-card:hover {
border-color: #00d4ff;
box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}
.project-card h3 {
color: #00d4ff;
margin-bottom: 15px;
font-size: 1.4em;
}
.project-card a {
color: #00ff88;
text-decoration: none;
transition: all 0.3s;
}
.project-card a:hover {
color: #ff006e;
text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}
footer {
background: #0a0e27;
padding: 40px 0;
text-align: center;
border-top: 3px solid #00ff88;
color: #8892b0;
}
.terminal-text {
font-family: 'Courier New', monospace;
color: #00ff88;
}
.typed-output {
display: inline;
color: #00cc00;
}
.cursor {
display: inline-block;
width: 10px;
height: 1.2em;
background-color: #00ff41;
margin-left: 2px;
animation: blink-cursor 0.8s infinite;
vertical-align: text-bottom;
}
@keyframes blink-cursor {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0; }
}
@media (max-width: 768px) {
h1 { font-size: 2em; }
nav a { margin: 10px; }
.cert-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<div class="matrix-bg"></div>
<header>
<div class="container">
<h1>$ ./bipul_kuri</h1>
<p class="tagline">// Technical Program Manager | Engineering Leader</p>
<nav>
<a href="#about">[About]</a>
<a href="#experience">[Experience]</a>
<a href="#certs">[Certifications]</a>
<a href="#projects">[Projects]</a>
<a href="https://bipulkkuri.medium.com/" target="_blank">[Blog]</a>
<a href="https://github.com/bipulkkuri" target="_blank">[GitHub]</a>
</nav>
</div>
</header>
<div class="container content">
<section class="section" id="about">
<h2><span id="cmd-whoami"></span><span class="cursor" id="cmd-cursor-whoami"></span></h2>
<div style="font-size: 1.1em; line-height: 1.8; min-height: 120px; display: none;" id="output-whoami">
<span class="terminal-text">></span> <span class="typed-output" id="typed-text"></span><span class="cursor" id="cursor" style="display: none;"></span>
</div>
</section>
<section class="section" id="experience">
<h2><span id="cmd-experience"></span><span class="cursor" id="cmd-cursor-experience"></span></h2>
<div id="output-experience" style="display: none;">
<div style="min-height: 50px; margin-bottom: 20px;">
<span class="terminal-text" style="color: #00ff41;">></span> <span class="typed-output" id="typed-experience"></span><span class="cursor" id="cursor-experience" style="display: none;"></span>
</div>
<div id="experience-content" style="opacity: 0; transition: opacity 0.5s;">
<div class="job-card">
<div class="company">COMCAST</div>
<div class="job-title">Technical Program Manager / Project Manager</div>
<div class="duration">Sep 2008 - Present · 17 yrs 6 mos | On-Site</div>
<ul class="job-highlights">
<li>Spearheaded Virtual Service Gateway teams → 15% efficiency increase</li>
<li>DevOps excellence → 30% deployment time reduction</li>
<li>System uptime achievement → 100%</li>
<li>Delivered SBOM system and JIRA workflow migrations</li>
</ul>
</div>
<div class="job-card">
<div class="company">INFOSYS</div>
<div class="job-title">Program Analyst</div>
<div class="duration">Aug 2003 - Sep 2008 · 5 yrs 2 mos</div>
<ul class="job-highlights">
<li>Led software design, development, and testing teams</li>
<li>Directed virtual teams across US and globally</li>
<li>Financial Technology and JavaScript expertise</li>
</ul>
</div>
<div class="job-card">
<div class="company">U.P. STATE BRIDGE CORPORATION LTD.</div>
<div class="job-title">Programmer</div>
<div class="duration">May 2003 - Aug 2003 · 4 mos | India</div>
<ul class="job-highlights">
<li>Maintenance and generation of Weekly/Monthly reports on Oracle DB</li>
<li>Network Management of Office LAN</li>
</ul>
</div>
<div class="job-card">
<div class="company">KAMLA NEHRU INSTITUTE OF TECHNOLOGY</div>
<div class="job-title">Programmer</div>
<div class="duration">Feb 2003 - May 2003 · 4 mos | India</div>
<ul class="job-highlights">
<li>Maintained Computer department applications</li>
<li>Setup of Lab environments, coaching students</li>
<li>Management of internet and LAN connection (VSAT) - over 200 systems</li>
</ul>
</div>
<div class="job-card">
<div class="company">DELHI METRO RAIL CORPORATION (DMRC)</div>
<div class="job-title">System Analyst</div>
<div class="duration">Nov 2002 - Jan 2003 · 3 mos | India</div>
<ul class="job-highlights">
<li>Report generation in SAP systems</li>
<li>Worked on AFC (Automated Fare Collection) platform</li>
<li>Network Management of LAN and WAN systems</li>
</ul>
</div>
</div>
</div>
</section>
<section class="section" id="certs">
<h2><span id="cmd-certs"></span><span class="cursor" id="cmd-cursor-certs"></span></h2>
<div id="output-certs" style="display: none;">
<div style="min-height: 50px; margin-bottom: 20px;">
<span class="terminal-text" style="color: #00ff41;">></span> <span class="typed-output" id="typed-certs"></span><span class="cursor" id="cursor-certs" style="display: none;"></span>
</div>
<div id="certs-content" style="opacity: 0; transition: opacity 0.5s;">
<div class="cert-grid">
<div class="cert-card">
<div class="cert-title">Open Source Licensing</div>
<div class="cert-issuer">The Linux Foundation</div>
<div class="duration">Jun 2025</div>
</div>
<div class="cert-card">
<div class="cert-title">Professional Scrum Master™ I</div>
<div class="cert-issuer">Scrum.org</div>
<div class="duration">Sep 2024</div>
</div>
<div class="cert-card">
<div class="cert-title">Kubernetes: Microservices</div>
<div class="cert-issuer">LinkedIn</div>
<div class="duration">Aug 2024</div>
</div>
<div class="cert-card">
<div class="cert-title">AWS Certified Cloud Practitioner</div>
<div class="cert-issuer">Amazon Web Services</div>
<div class="duration">Jun 2024 - Jun 2027</div>
</div>
<div class="cert-card">
<div class="cert-title">AWS Foundations</div>
<div class="cert-issuer">Amazon Web Services</div>
<div class="duration">Jan 2021</div>
</div>
<div class="cert-card">
<div class="cert-title">MongoDB Certified Developer</div>
<div class="cert-issuer">MongoDB University</div>
<div class="duration">Jan 2018</div>
</div>
<div class="cert-card">
<div class="cert-title">Lean Six Sigma White Belt</div>
<div class="cert-issuer">Lean Competency System</div>
<div class="duration">May 2017</div>
</div>
<div class="cert-card">
<div class="cert-title">Sun Certified Java Developer</div>
<div class="cert-issuer">Sun Microsystems</div>
<div class="duration">Jan 2010</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="projects">
<h2><span id="cmd-projects"></span><span class="cursor" id="cmd-cursor-projects"></span></h2>
<div id="output-projects" style="display: none;">
<div style="min-height: 50px; margin-bottom: 20px;">
<span class="terminal-text" style="color: #00ff41;">></span> <span class="typed-output" id="typed-projects"></span><span class="cursor" id="cursor-projects" style="display: none;"></span>
</div>
<div id="projects-content" style="opacity: 0; transition: opacity 0.5s;">
<div class="project-card">
<h3>🚀 NDT7 Measurement Python Port</h3>
<p style="color: #ccd6f6; margin-bottom: 10px;">
Network speed test protocol implementation in Python
</p>
<p class="duration">May 2025</p>
</div>
<div class="project-card">
<h3>⭐ Star Wars on Terminal</h3>
<p style="color: #ccd6f6; margin-bottom: 10px;">
Terminal-based Star Wars animation
</p>
<p class="duration">Apr 2025</p>
</div>
<div class="project-card">
<h3>🦀 Terminal GUI Tool for Admins</h3>
<p style="color: #ccd6f6; margin-bottom: 10px;">
Privacy-focused admin tool built with Rust
</p>
<p class="duration">Apr 2025</p>
</div>
<div style="text-align: center; margin-top: 40px;">
<a href="https://bipulkkuri.medium.com/" target="_blank"
style="color: #00ff88; text-decoration: none; padding: 15px 40px;
border: 2px solid #00ff88; display: inline-block; transition: all 0.3s;">
View All Articles →
</a>
</div>
</div>
</section>
</div>
<footer>
<p class="terminal-text">© 2026 Bipul Kuri | System Online</p>
</footer>
<script>
// Typewriter effect system with command typing followed by output typing
const sections = [
{
cmdId: 'cmd-whoami',
cmdCursorId: 'cmd-cursor-whoami',
cmdText: '$ whoami',
outputContainerId: 'output-whoami',
outputId: 'typed-text',
outputCursorId: 'cursor',
contentId: null,
outputText: "Results-driven Technical Program Manager with 20+ years of experience leading cross-functional teams and delivering complex software solutions. Expert in distributed systems, DevOps excellence, and operational leadership.",
triggered: false
},
{
cmdId: 'cmd-experience',
cmdCursorId: 'cmd-cursor-experience',
cmdText: '$ cat experience.log',
outputContainerId: 'output-experience',
outputId: 'typed-experience',
outputCursorId: 'cursor-experience',
contentId: 'experience-content',
outputText: "Loading career history...",
triggered: false
},
{
cmdId: 'cmd-certs',
cmdCursorId: 'cmd-cursor-certs',
cmdText: '$ ls -la ./certifications/',
outputContainerId: 'output-certs',
outputId: 'typed-certs',
outputCursorId: 'cursor-certs',
contentId: 'certs-content',
outputText: "total 8 certifications",
triggered: false
},
{
cmdId: 'cmd-projects',
cmdCursorId: 'cmd-cursor-projects',
cmdText: '$ ./run_projects.sh',
outputContainerId: 'output-projects',
outputId: 'typed-projects',
outputCursorId: 'cursor-projects',
contentId: 'projects-content',
outputText: "Initializing project showcase...",
triggered: false
}
];
const typingSpeed = 50;
const outputTypingSpeed = 30;
function typeCommand(section) {
const cmdElement = document.getElementById(section.cmdId);
const cmdCursor = document.getElementById(section.cmdCursorId);
let charIndex = 0;
cmdCursor.style.display = 'inline-block';
function type() {
if (charIndex < section.cmdText.length) {
cmdElement.textContent += section.cmdText.charAt(charIndex);
charIndex++;
setTimeout(type, typingSpeed);
} else {
// Command done, hide cursor briefly then show output section
setTimeout(() => {
cmdCursor.style.display = 'none';
const outputContainer = document.getElementById(section.outputContainerId);
if (outputContainer) {
outputContainer.style.display = 'block';
setTimeout(() => typeOutput(section), 100);
}
}, 200);
}
}
type();
}
function typeOutput(section) {
const outputElement = document.getElementById(section.outputId);
const outputCursor = document.getElementById(section.outputCursorId);
let charIndex = 0;
outputCursor.style.display = 'inline-block';
function type() {
if (charIndex < section.outputText.length) {
outputElement.textContent += section.outputText.charAt(charIndex);
charIndex++;
setTimeout(type, outputTypingSpeed);
} else {
// Output done, show content if exists
if (section.contentId) {
setTimeout(() => {
const content = document.getElementById(section.contentId);
if (content) {
content.style.opacity = '1';
// Start revealing cards one by one
revealCardsSequentially(section.contentId);
}
outputCursor.style.display = 'none';
}, 300);
}
}
}
type();
}
function revealCardsSequentially(containerId) {
const container = document.getElementById(containerId);
if (!container) return;
// Find all cards within the container
const cards = container.querySelectorAll('.job-card, .cert-card, .project-card');
cards.forEach((card, index) => {
setTimeout(() => {
card.classList.add('revealed');
// After card appears, type its content
setTimeout(() => typeCardContent(card), 300);
}, index * 150); // 150ms delay between each card
});
}
function typeCardContent(card) {
const speed = 15; // Fast typing for card content
// Get all text elements to type
let elementsToType = [];
if (card.classList.contains('job-card')) {
const company = card.querySelector('.company');
const jobTitle = card.querySelector('.job-title');
const duration = card.querySelector('.duration');
const highlights = card.querySelectorAll('.job-highlights li');
if (company) elementsToType.push(company);
if (jobTitle) elementsToType.push(jobTitle);
if (duration) elementsToType.push(duration);
highlights.forEach(li => elementsToType.push(li));
} else if (card.classList.contains('cert-card')) {
const title = card.querySelector('.cert-title');
const issuer = card.querySelector('.cert-issuer');
const duration = card.querySelector('.duration');
if (title) elementsToType.push(title);
if (issuer) elementsToType.push(issuer);
if (duration) elementsToType.push(duration);
} else if (card.classList.contains('project-card')) {
const h3 = card.querySelector('h3');
const paragraphs = card.querySelectorAll('p');
if (h3) elementsToType.push(h3);
paragraphs.forEach(p => elementsToType.push(p));
}
// Store original text and clear elements
elementsToType.forEach(el => {
el.dataset.originalText = el.textContent;
el.textContent = '';
el.style.opacity = '1';
});
// Type each element sequentially
let currentIndex = 0;
function typeNextElement() {
if (currentIndex >= elementsToType.length) return;
const element = elementsToType[currentIndex];
const text = element.dataset.originalText;
let charIndex = 0;
function typeChar() {
if (charIndex < text.length) {
element.textContent += text.charAt(charIndex);
charIndex++;
setTimeout(typeChar, speed);
} else {
// Move to next element
currentIndex++;
setTimeout(typeNextElement, 50);
}
}
typeChar();
}
typeNextElement();
}
// Intersection Observer to trigger animations when sections come into view
const observerOptions = {
threshold: 0.2,
rootMargin: '0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const sectionId = entry.target.id;
let section = null;
// Map section IDs to sections array
if (sectionId === 'about') {
section = sections[0];
} else if (sectionId === 'experience') {
section = sections[1];
} else if (sectionId === 'certs') {
section = sections[2];
} else if (sectionId === 'projects') {
section = sections[3];
}
if (section && !section.triggered) {
section.triggered = true;
setTimeout(() => typeCommand(section), 200);
}
}
});
}, observerOptions);
// Observe all sections
document.addEventListener('DOMContentLoaded', function() {
['about', 'experience', 'certs', 'projects'].forEach(id => {
const element = document.getElementById(id);
if (element) {
observer.observe(element);
}
});
// Trigger first section immediately
setTimeout(() => {
if (!sections[0].triggered) {
sections[0].triggered = true;
typeCommand(sections[0]);
}
}, 500);
});
</script>
</body>
</html>