-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
650 lines (555 loc) · 24.4 KB
/
experience.html
File metadata and controls
650 lines (555 loc) · 24.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Education - Jillian Ireland Portfolio</title>
<style>
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
body, html {
height: 100%;
background-color: #0E114C; /* Dark blue background */
color: #fff;
overflow-x: hidden;
}
/* Header */
header {
position: fixed;
top: 0; left: 0; right: 0;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 2rem;
background-color: rgba(14, 17, 76, 0.85);
z-index: 10;
user-select: none;
color: #d1d1d1;
}
.logo {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem; /* space between circle and text */
margin-bottom: 1rem
}
.logo-container {
width: 80px; /* larger circle */
height: 80px;
background: white;
border-radius: 50%;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
animation: float 4s ease-in-out infinite;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.initial-J,
.initial-I {
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #2c3e50;
line-height: 1;
}
.initial-J {
font-size: 30px; /* bigger J */
margin-bottom: -4px;
}
.initial-I {
font-size: 22px; /* bigger I */
}
.logo-text {
font-family: 'Playfair Display', serif;
font-size: 1.2rem;
font-weight: 600;
color: #f0f9f3;
letter-spacing: 0.5px;
text-align: center;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-6px); }
}
nav {
background-color: #f0f9f3;
border-radius: 8px;
display: flex;
gap: 8px;
font-weight: 600;
font-size: 0.9rem;
}
nav a {
padding: 0.7rem 1.3rem;
color: #04402e;
text-decoration: none;
border-radius: 6px;
transition: background-color 0.3s ease, color 0.3s ease;
}
nav a:hover:not(.active) {
background-color: #04402e;
color: #f0f9f3;
}
nav a.active {
background-color: #0a8e63;
color: #f0f9f3;
font-weight: 700;
}
/* Main body */
main {
padding-top: 6rem;
padding: 6rem 2rem 4rem; /* add padding top to avoid overlap with fixed header */
min-height: calc(100vh - 120px); /* leave space for footer */
background-color: #132060; /* Slightly lighter blue */
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-size: 1.5rem;
text-align: center;
}
.footer-overlay {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
max-height: 250px; /* match footer min-height */
background-color: rgba(14, 17, 76, 0.5);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 3;
padding: 2rem;
box-sizing: border-box;
overflow: hidden;
}
.footer-section {
position: relative;
min-height: 250px;
height: 250px; /* fix the height */
overflow: hidden;
z-index: 2;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
}
.footer-content {
display: flex;
justify-content: space-around;
width: 100%;
max-width: 600px;
gap: 2rem;
margin-bottom: 1.5rem; /* space between content and copyright */
}
.footer-content h3 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}
.footer-content p {
font-size: 1rem;
}
.social-links div {
display: flex;
gap: 1.5rem;
font-size: 1.5rem;
}
.social-links a {
color: #fff;
transition: color 0.3s;
}
.social-links a:hover {
color: #0a8e63;
}
.footer-copyright p {
font-size: 0.9rem;
color: #d1d1d1;
margin: 0;
user-select: none;
text-align: center;
}
.wave-banner {
position: relative;
background-color: #0a8e63; /* The blue background */
background-image: url('logos/StetsonImage.jpg');
color: white;
overflow: hidden;
padding: 6rem 1rem 6rem; /* bottom padding so text is away from wave */
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-family: 'Space Grotesk', sans-serif;
}
.wave-content {
max-width: 900px;
width: 90%;
background-color: rgba(14,17,76,0.7);
background-size: cover;
background-position: center;
padding: 3rem 2rem;
border-radius: 25px;
box-shadow: 0 10px 25px rgba(14,17,76,0.7);
z-index: 2;
position: relative;
margin-top: 8rem;
}
.wave-content h1 {
font-weight: 700;
font-size: 3rem;
margin: 0;
text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}
/* The wavy SVG at the bottom */
.wave-divider {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 150px;
z-index: 1;
display: block;
}
/* Responsive font size */
@media (max-width: 600px) {
.wave-content h1 {
font-size: 2rem;
}
.wave-content {
padding: 2rem 1.5rem;
}
}
</style>
<!-- Google Fonts -->
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLp3T6Uq9Cq7E9K2j3P7FpPqPj9M8pPj6V7yYp1F6c5a5Zc7u7t0u7s5Q6Bw6p6o9E9zYk3t7T5w4j6s5zP7Q==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<div class="logo" aria-label="Jillian Ireland logo">
<div class="logo-container" aria-hidden="true">
<div class="initial-J">J</div>
<div class="initial-I">I</div>
</div>
<div class="logo-text">Jillian Ireland</div>
</div>
<nav role="navigation" aria-label="Primary Navigation">
<a href="index.html">Home</a>
<a href="education.html">Education</a>
<a href="experience.html" class="active" aria-current="page">Experience</a>
<a href="projects.html">Projects</a>
</nav>
</header>
<section class="wave-banner" aria-label="Experience and Skills banner">
<div class="wave-content">
<h1>Experience & Skills</h1>
</div>
<svg class="wave-divider" viewBox="0 0 1440 150" preserveAspectRatio="none" aria-hidden="true" focusable="false">
<path fill="#0E114C" d="M0,100 C480,200 960,0 1440,100 L1440,150 L0,150 Z"></path>
</svg>
</section>
<main role="main" aria-label="Education content" style="padding: 3rem 2rem 4rem; min-height: calc(100vh - 120px); background-color: #132060; color: #fff; text-align: center;">
<section aria-labelledby="education-title" style="max-width: 1100px; margin: 0 auto; padding: 2rem; text-align: left;">
<h2 id="education-title"
style="
font-weight: 700;
font-size: 2rem;
color: #ffffff;
margin-top: 0.1rem;
margin-bottom: 1.5rem;
border: 3px solid #0a8e63;
padding: 0.5rem 2rem; /* increased horizontal padding */
border-radius: 10px 10px 0 0; /* optional: rounded corners on top only */
width: 100%;
box-sizing: border-box;
background-color: #0a8e63;
box-shadow: 0 4px 10px rgba(10, 142, 99, 0.6);
text-align: center;
">
Experience
</h2>
<div style="display: block; max-width: 100%; margin: 0 auto;">
<!--Velera-->
<div style="background-color: rgba(254, 254, 255); padding: 1.5rem; margin-bottom: 2rem; border-radius: 10px; border: 1px solid #0a8e63; box-shadow: 0 4px 15px rgba(0,0,0,0.2); display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start;">
<!-- Left Column: Title & Date -->
<div style="flex: 1 1 250px; min-width: 250px;">
<h4 style="font-weight: 700; color: #000000; margin-bottom: 0.5rem;">Information Technology Intern</h4>
<p style="font-size: 1rem; color: #000000; font-weight: 700;">May 2025 – August 2025</p>
</div>
<!-- Divider Icon -->
<div style="display: flex; flex-direction: column; align-items: center; width: 40px;">
<div style="
width: 24px;
height: 24px;
border: 3px solid #0a8e63;
border-radius: 50%;
background: transparent;
box-sizing: border-box;
"></div>
<div style="
width: 3px;
height: 320px;
background-color: #0a8e63;
margin-top: 4px;
"></div>
</div>
<!-- Right Column: Company & Bullets -->
<div style="flex: 2 1 400px;">
<p style="font-size: 22px; color: #000000; font-weight: 700; margin-bottom: 1rem;">VELERA (Remote)</p>
<ul style="font-size: 1rem; color: #000000; padding-left: 1.5rem; margin: 0; font-family: 'Inter', sans-serif;">
<li>Developed a Governance Chatbot (beta) using Microsoft Copilot to assist the AI Governance team, including creating documentation, questionnaires, and implementation guidelines.</li>
<li>Authored weekly AI industry reports for the CIO covering regulatory changes, security, model advancements, and ethical considerations in Credit Unions & FinTech.</li>
<li>Conducted an AI policy & principles gap analysis against NIST and ISO standards; built a custom chatbot to support this process.</li>
<li>Supported AI Proof-of-Concept projects: data preparation, guided model training, and detailed documentation of parameters, metrics, and results.</li>
<li>Created AI ethics case studies for internal training on bias, fairness, and accountability in AI development.</li>
</ul>
</div>
</div>
<!-- STETSON UNIVERSITY BROWN CENTER -->
<div style="background-color: rgba(254, 254, 255); padding: 1.5rem; margin-bottom: 2rem; border-radius: 10px; border: 1px solid #0a8e63; box-shadow: 0 4px 15px rgba(0,0,0,0.2); display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start;">
<!-- Left Column: Title & Date -->
<div style="flex: 1 1 250px; min-width: 250px;">
<h4 style="font-weight: 700; color: #000000; margin-bottom: 0.5rem;">Student Office Coordinator</h4>
<p style="font-size: 1rem; color: #000000; font-weight: 700;">August 2024 – Present</p>
</div>
<!-- Divider Icon -->
<div style="display: flex; flex-direction: column; align-items: center; width: 40px;">
<div style="
width: 24px;
height: 24px;
border: 3px solid #0a8e63;
border-radius: 50%;
background: transparent;
box-sizing: border-box;
"></div>
<div style="
width: 3px;
height: 180px;
background-color: #0a8e63;
margin-top: 4px;
"></div>
</div>
<!-- Right Column: Company & Bullets -->
<div style="flex: 2 1 400px;">
<p style="font-size: 22px; color: #000000; font-weight: 700; margin-bottom: 1rem;">Stetson University Brown Center (DeLand, FL)</p>
<ul style="font-size: 1rem; color: #000000; padding-left: 1.5rem; margin: 0; font-family: 'Inter', sans-serif;">
<li>Redesigned the center’s website using HTML, CSS, and WordPress, leading to a 20% increase in user engagement</li>
<li>Created a digital resource guide in Figma for onboarding new faculty, used by 100% of new hires during orientation</li>
<li>Designed and distributed promotional materials for events, increasing attendance by 25%</li>
</ul>
</div>
</div>
<!-- BLACK HOMESCHOOLERS OF CENTRAL FLORIDA -->
<div style="background-color: rgba(254, 254, 255); padding: 1.5rem; margin-bottom: 2rem; border-radius: 10px; border: 1px solid #0a8e63; box-shadow: 0 4px 15px rgba(0,0,0,0.2); display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start;">
<!-- Left Column: Title & Date -->
<div style="flex: 1 1 250px; min-width: 250px;">
<h4 style="font-weight: 700; color: #000000; margin-bottom: 0.5rem;">Data Analytics and Engagement Lead Intern</h4>
<p style="font-size: 1rem; color: #000000; font-weight: 700;">January 2024 – Present</p>
</div>
<!-- Divider Icon -->
<div style="display: flex; flex-direction: column; align-items: center; width: 40px;">
<div style="
width: 24px;
height: 24px;
border: 3px solid #0a8e63;
border-radius: 50%;
background: transparent;
box-sizing: border-box;
"></div>
<div style="
width: 3px;
height: 200px;
background-color: #0a8e63;
margin-top: 4px;
"></div>
</div>
<!-- Right Column: Company & Bullets -->
<div style="flex: 2 1 400px;">
<p style="font-size: 22px; color: #000000; font-weight: 700; margin-bottom: 1rem;">Black Homeschoolers of Central Florida (DeLand, FL)</p>
<ul style="font-size: 1rem; color: #000000; padding-left: 1.5rem; margin: 0; font-family: 'Inter', sans-serif;">
<li>Taught high school students to build websites using both Canva and custom code (HTML, CSS, JavaScript)</li>
<li>Led outreach initiatives that resulted in 5 new community partnerships with the center</li>
<li>Supervised a team of 5 interns, improving program coordination and outreach effectiveness</li>
<li>Analyzed engagement data using Excel and Power BI, contributing to a 40% increase in student participation</li>
</ul>
</div>
</div>
<!-- VOLUSIA COUNTY SHERIFF'S OFFICE -->
<div style="background-color: rgba(254, 254, 255); padding: 1.5rem; margin-bottom: 2rem; border-radius: 10px; border: 1px solid #0a8e63; box-shadow: 0 4px 15px rgba(0,0,0,0.2); display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start;">
<!-- Left Column: Title & Date -->
<div style="flex: 1 1 250px; min-width: 250px;">
<h4 style="font-weight: 700; color: #000000; margin-bottom: 0.5rem;">Security Data Analytics Intern</h4>
<p style="font-size: 1rem; color: #000000; font-weight: 700;">May 2024 - July 2024</p>
</div>
<!-- Divider Icon -->
<div style="display: flex; flex-direction: column; align-items: center; width: 40px;">
<div style="
width: 24px;
height: 24px;
border: 3px solid #0a8e63;
border-radius: 50%;
background: transparent;
box-sizing: border-box;
"></div>
<div style="
width: 3px;
height: 350px;
background-color: #0a8e63;
margin-top: 4px;
"></div>
</div>
<!-- Right Column: Company & Bullets -->
<div style="flex: 2 1 400px;">
<p style="font-size: 22px; color: #000000; font-weight: 700; margin-bottom: 1rem;">Volusia County Sheriff's Office (Daytona Beach, FL)</p>
<ul style="font-size: 1rem; color: #000000; padding-left: 1.5rem; margin: 0; font-family: 'Inter', sans-serif;">
<li>Configured and maintained an on-premises Linux server to aggregate 10,000+ daily network traffic logs, improving threat detection capabilities by 15%</li>
<li>Utilized Cisco Firepower and Azure Sentinel to monitor, analyze, and respond to potential security threats across the network</li>
<li>Applied data cleaning and transformation techniques using Tabula, Pandas, and Excel to convert 500+ pages of raw PDF logs into structured, actionable datasets</li>
<li>Conducted geospatial analysis on 300+ IP addresses, enabling location-based threat identification and visualization</li>
<li>Documented findings and security insights in detailed reports, regularly presenting results to department leadership to inform strategic decisions</li>
</ul>
</div>
</div>
<!-- IT Helpdesk ASSITANT -->
<div style="background-color: rgba(254, 254, 255); padding: 1.5rem; margin-bottom: 2rem; border-radius: 10px; border: 1px solid #0a8e63; box-shadow: 0 4px 15px rgba(0,0,0,0.2); display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start;">
<!-- Left Column: Title & Date -->
<div style="flex: 1 1 250px; min-width: 250px;">
<h4 style="font-weight: 700; color: #000000; margin-bottom: 0.5rem;">IT Helpdesk Student Assistant</h4>
<p style="font-size: 1rem; color: #000000; font-weight: 700;">January 2024 - July 2024</p>
</div>
<!-- Divider Icon -->
<div style="display: flex; flex-direction: column; align-items: center; width: 40px;">
<div style="
width: 24px;
height: 24px;
border: 3px solid #0a8e63;
border-radius: 50%;
background: transparent;
box-sizing: border-box;
"></div>
<div style="
width: 3px;
height: 150px;
background-color: #0a8e63;
margin-top: 4px;
"></div>
</div>
<!-- Right Column: Company & Bullets -->
<div style="flex: 2 1 400px;">
<p style="font-size: 22px; color: #000000; font-weight: 700; margin-bottom: 1rem;">Stetson University, IT Helpdesk (DeLand, FL)</p>
<ul style="font-size: 1rem; color: #000000; padding-left: 1.5rem; margin: 0; font-family: 'Inter', sans-serif;">
<li>Resolved over 100 technical support tickets using Zendesk, maintaining a 95% resolution rate</li>
<li>Provided troubleshooting for hardware, software, and network issues across multiple departments</li>
<li>Collaborated with IT staff to streamline ticketing workflows and improve response times by 20%</li>
</ul>
</div>
</div>
<!--SKILLS-->
<div style="width: 100%; margin-top: 3rem;">
<h2 id="affiliations-title"
style="
font-weight: 700;
font-size: 2rem;
color: #ffffff;
margin-top: 3rem;
margin-bottom: 1.5rem;
border: 3px solid #0a8e63;
padding: 0.75rem 2rem; /* increased horizontal padding */
border-radius: 10px 10px 0 0; /* optional: rounded corners on top only */
width: 100%;
box-sizing: border-box;
text-align: center;
background-color: #0a8e63;
box-shadow: 0 4px 10px rgba(10, 142, 99, 0.6);
">
Skills
</h2>
<!-- Skills Grid -->
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem;">
<!-- Data Analytics Tools -->
<div style="background-color: #fefeff; border-radius: 12px; padding: 2rem; border: 2px solid #0a8e63; box-shadow: 0 6px 20px rgba(10, 142, 99, 0.1);">
<h3 style="font-size: 1.25rem; color: #0a8e63; font-weight: 700; margin-bottom: 1.25rem;">Data Analytics Tools</h3>
<div style="display: flex; flex-wrap: wrap; gap: 0.75rem;">
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Power BI</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Tableau</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Excel</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Power Query</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Data Visualization</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Data Cleaning</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">SQL</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Python</span>
</div>
</div>
<!-- Cybersecurity & Monitoring -->
<div style="background-color: #fefeff; border-radius: 12px; padding: 2rem; border: 2px solid #0a8e63; box-shadow: 0 6px 20px rgba(10, 142, 99, 0.1);">
<h3 style="font-size: 1.25rem; color: #0a8e63; font-weight: 700; margin-bottom: 1.25rem;">Cybersecurity & Monitoring</h3>
<div style="display: flex; flex-wrap: wrap; gap: 0.75rem;">
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Azure Sentinel</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Cisco Firepower</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Splunk</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">KQL</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Threat Correlation</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Geospatial Analysis</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">CVEs</span>
</div>
</div>
<!-- Technical & Core Skills -->
<div style="background-color: #fefeff; border-radius: 12px; padding: 2rem; border: 2px solid #0a8e63; box-shadow: 0 6px 20px rgba(10, 142, 99, 0.1);">
<h3 style="font-size: 1.25rem; color: #0a8e63; font-weight: 700; margin-bottom: 1.25rem;">Technical & Core Skills</h3>
<div style="display: flex; flex-wrap: wrap; gap: 0.75rem;">
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Data Storytelling</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Critical Thinking</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Communication</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Project Management</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Team Collaboration</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">GitHub</span>
<span style="background-color: #eafaf4; border: 2px solid #0a8e63; color: #0a8e63; font-weight: 600; padding: 0.6rem 1rem; border-radius: 999px;">Agile Workflows</span>
</div>
</div>
</div>
</div>
</section>
</main>
<!--Footer-->
<footer class="footer-section" style="position: relative; overflow: hidden; color: #fff; text-align: center;">
<div class="footer-video-container" aria-hidden="true" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;">
<video autoplay muted loop playsinline style="width: 100%; height: 100%; object-fit: cover;">
<source src="BackgroundVideo.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</div>
<div class="footer-overlay" style="background-color: rgba(14, 17, 76, 0.5); padding: 3rem 1rem;">
<div class="footer-content" style="display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 3rem; max-width: 900px; margin: 0 auto;">
<div class="contact-info" style="text-align: left;">
<h3 style="font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem;">Email</h3>
<p style="font-size: 1.1rem;">jireland1@stetson.edu</p>
</div>
<div class="social-links" style="text-align: left;">
<h3 style="font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem;">Follow</h3>
<div style="display: flex; gap: 1.5rem; font-size: 1.8rem;">
<a href="https://www.linkedin.com/in/jillianireland09/" target="_blank" aria-label="LinkedIn profile" style="color: #fff; transition: color 0.3s;">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/Jillian2003" target="_blank" aria-label="GitHub profile" style="color: #fff; transition: color 0.3s;">
<i class="fab fa-github"></i>
</a>
<a href="https://irelandportfolios.com" target="_blank" aria-label="Personal website" style="color: #fff; transition: color 0.3s;">
<i class="fas fa-globe"></i>
</a>
</div>
</div>
</div>
<div class="footer-copyright" style="margin-top: 3rem; font-size: 0.95rem;">
<p>© 2025 Jillian Ireland. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>