-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1368 lines (1278 loc) · 43.2 KB
/
index.html
File metadata and controls
1368 lines (1278 loc) · 43.2 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
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Ankit Ved — QA Engineer | Test Automation | API & Security Testing</title>
<meta
name="description"
content="Ankit Ved — Senior QA Engineer. Test automation with Selenium, Katalon, and Postman. API testing, security QA, and DuckCreek P&C specialist. Portfolio & case studies."
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=sort"
/>
<style>
.material-symbols-outlined {
font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
/* ---------------------------------------------
VARIABLES / THEME
----------------------------------------------*/
:root {
--bg: #0f1724; /* dark navy */
--card: #0b1220;
--muted: #94a3b8;
--accent: #06b6d4; /* cyan-ish */
--accent-2: #2563eb; /* deep blue */
--glass: rgba(255, 255, 255, 0.03);
--radius: 14px;
--max-width: 1300px;
--mono: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
/* ---------------------------------------------
BASE / LAYOUT
----------------------------------------------*/
* {
box-sizing: border-box;
}
body {
height: 100%;
margin: 0;
background: linear-gradient(180deg, var(--bg), #071022 120%);
color: #e6eef6;
font-family: var(--mono);
-webkit-font-smoothing: antialiased;
}
#particles-js {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
}
a {
color: inherit;
text-decoration: none;
}
img {
max-width: 100%;
display: block;
}
.container {
background: #00d9f5;
position: relative;
z-index: 1;
max-width: var(--max-width);
margin: 0 auto;
padding: 28px;
max-width: var(--max-width);
background: rgba(
15,
23,
36,
0.6
); /* Semi-transparent dark background */
backdrop-filter: blur(1px); /* Optional: adds blur effect */
border-radius: 20px; /* Optional: rounded corners */
}
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 0;
}
.brand {
display: flex;
gap: 14px;
align-items: center;
}
.logo {
width: 48px;
height: 48px;
border-radius: 12px;
background: linear-gradient(135deg, var(--accent), var(--accent-2));
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: #06202a;
}
.brand h1 {
margin: 0;
}
.brand p {
margin: 0;
color: var(--muted);
}
nav {
display: flex;
gap: 12px;
}
.btn {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.06);
padding: 8px 12px;
border-radius: 10px;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
}
.btn.primary {
background: linear-gradient(90deg, var(--accent), var(--accent-2));
color: #021024;
border: none;
}
/* ---------------------------------------------
intro
----------------------------------------------*/
.intro {
display: grid;
grid-template-columns: 1fr 380px;
gap: 28px;
align-items: center;
margin-top: 24px;
}
.wave {
animation: wave 1s infinite ease-out;
transform-origin: 60% 70%;
display: inline-block;
}
@keyframes wave {
0% {
transform: rotate(-20deg);
}
15% {
transform: rotate(-10deg);
}
30% {
transform: rotate(0deg);
}
50% {
transform: rotate(10deg);
}
65% {
transform: rotate(20deg);
}
80% {
transform: rotate(10deg);
}
95% {
transform: rotate(0deg);
}
100% {
transform: rotate(-10deg);
}
}
.typewriter {
position: relative;
display: inline-block;
font-family: monospace;
font-size: 1.7em;
line-height: 1.2;
}
/* Reserves width using the longest string but stays invisible */
.typewriter-ghost {
visibility: hidden;
white-space: nowrap;
}
/* Actual animated text sits on top and sizes to content */
.typewriter-live {
position: absolute;
left: 0;
top: 0;
white-space: nowrap;
border-right: 3px solid currentColor;
background: linear-gradient(90deg, #00f5a0, #00d9f5);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
border-right: 3px solid #00f5a0;
animation: blink 0.7s steps(1) infinite,
cursorGlow 1.5s ease-in-out infinite alternate;
font-family: monospace;
font-size: 1.2em;
}
@keyframes blink {
50% {
border-color: transparent;
}
}
@keyframes glow {
from {
border-color: #00f5a0;
}
to {
border-color: #00d9f5;
}
}
/*.typewriter {
border-right: 3px solid;
white-space: nowrap;
overflow: hidden;
font-family: monospace;
font-size: 1.7em;
display: inline-block;
animation: blink 0.7s steps(1) infinite;
}
@keyframes blink {
50% {
border-color: transparent;
}
}
/* .typewriter {
width: 26ch;
animation: typing 4s steps(22),
backspace 4s steps(26) infinite alternate;
white-space: nowrap;
overflow: hidden;
border-right: 3px solid;
font-family: monospace;
font-size: 1.7em;
}
@keyframes typing {
from {
width: 0;
}
}
@keyframes backspace {
0%,
100% {
width: 26ch;
}
50% {
width: 0;
}
} */
.intro-left h2 {
margin: 0;
font-size: 32px;
}
.intro-left p {
color: var(--muted);
line-height: 1.5;
font-size: large;
}
.intro-cta {
display: flex;
gap: 12px;
margin-top: 18px;
}
.card {
background: var(--card);
padding: 18px;
border-radius: var(--radius);
box-shadow: 0 6px 20px rgba(2, 6, 23, 0.6);
border: 1px solid rgba(255, 255, 255, 0.02);
}
/* quick stat list */
.stats {
display: flex;
gap: 12px;
margin-top: 14px;
}
.stat {
flex: 1;
padding: 12px;
border-radius: 12px;
background: var(--glass);
text-align: center;
}
.stat h3 {
margin: 0;
font-size: 18px;
color: var(--accent);
}
.stat p {
margin: 4px 0 0;
color: var(--muted);
font-size: 14px;
}
/* ---------------------------------------------
SKILLS / BADGES
----------------------------------------------*/
.skills-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
margin-top: 14px;
}
.skill {
display: flex;
gap: 12px;
align-items: center;
padding: 10px;
border-radius: 10px;
background: linear-gradient(
180deg,
rgba(255, 255, 255, 0.01),
transparent
);
border: 1px solid rgba(255, 255, 255, 0.02);
}
.skill svg {
width: 34px;
height: 34px;
}
.skill strong {
font-size: 14px;
}
.skill span {
display: block;
font-size: 13px;
color: var(--muted);
}
/* ---------------------------------------------
PROJECTS
----------------------------------------------*/
.projects {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-top: 18px;
}
.project-card {
border-radius: 12px;
overflow: hidden;
min-height: 170px;
display: flex;
flex-direction: column;
transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.project-card:hover {
transform: translateY(-6px);
box-shadow: 0 18px 40px rgba(2, 6, 23, 0.6);
}
.project-thumb {
height: 110px;
background: linear-gradient(
90deg,
rgba(255, 255, 255, 0.02),
rgba(255, 255, 255, 0)
);
display: flex;
align-items: center;
justify-content: center;
}
.project-body {
padding: 12px;
background: linear-gradient(
180deg,
rgba(255, 255, 255, 0.01),
transparent
);
flex: 1;
}
.view {
color: var(--muted);
}
.tag {
display: inline-block;
padding: 6px 8px;
border-radius: 999px;
font-size: 12px;
border: 1px solid rgba(255, 255, 255, 0.04);
margin-top: 8px;
}
/* ---------------------------------------------
TIMELINE
----------------------------------------------*/
.timeline {
margin-top: 18px;
}
.timeline-item {
display: flex;
gap: 12px;
margin-bottom: 12px;
}
.timeline-marker {
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--accent);
margin-top: 6px;
}
.timeline-body {
background: var(--glass);
padding: 12px;
border-radius: 10px;
flex: 1;
}
.section-title {
font-size: 1.5rem;
font-weight: bold;
margin-top: 20px;
margin-bottom: 5px;
}
.subsection-title {
font-size: 1.25rem;
font-weight: bold;
margin-top: 15px;
margin-bottom: 5px;
}
.paragraph {
margin: 8px 0;
}
.list {
margin: 5px 0 10px 20px;
}
.list-item {
margin-bottom: 5px;
}
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
/* ---------------------------------------------
CONTACT
----------------------------------------------*/
.contact-grid {
display: grid;
grid-template-columns: 1fr 360px;
gap: 18px;
margin-top: 18px;
}
form {
display: flex;
flex-direction: column;
gap: 10px;
}
input,
textarea {
padding: 10px;
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.04);
background: transparent;
color: inherit;
}
textarea {
min-height: 120px;
}
.socials {
display: flex;
gap: 10px;
}
/* ---------------------------------------------
FOOTER
----------------------------------------------*/
footer {
margin-top: 28px;
padding: 18px 0;
color: var(--muted);
text-align: center;
}
/* ---------------------------------------------
MODAL
----------------------------------------------*/
.modal {
position: fixed;
inset: 0;
display: none;
align-items: center;
justify-content: center;
background: linear-gradient(
180deg,
rgba(2, 6, 23, 0.6),
rgba(2, 6, 23, 0.85)
);
backdrop-filter: blur(6px);
z-index: 1200;
}
.modal.open {
display: flex;
}
.modal-card {
width: min(1000px, 94%);
max-height: 86vh;
overflow: auto;
border-radius: 14px;
background: linear-gradient(180deg, #071428, #071026);
padding: 12px;
border: 1px solid rgba(255, 255, 255, 0.03);
}
.modal-close {
float: right;
cursor: pointer;
}
/* ---------------------------------------------
RESPONSIVE
----------------------------------------------*/
@media (max-width: 980px) {
.intro {
grid-template-columns: 1fr;
}
.projects {
grid-template-columns: repeat(2, 1fr);
}
.contact-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 620px) {
.projects {
grid-template-columns: 1fr;
}
.skills-grid {
grid-template-columns: 1fr;
}
nav {
display: none;
}
header {
gap: 10px;
}
}
/* ---------------------------------------------
SUBTLE ANIMATIONS
----------------------------------------------*/
.fade-up {
opacity: 0;
transform: translateY(10px);
transition: opacity 0.5s ease,
transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.fade-up.inview {
opacity: 1;
transform: none;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script>
</head>
<body>
<div id="particles-js"></div>
<div class="container">
<header>
<div class="brand">
<div class="logo">AnVe</div>
<div>
<h1>Ankit Ved</h1>
<p>QA Engineer | Test Automation | API & Security Testing</p>
</div>
</div>
<nav>
<a class="btn" href="#about">About</a>
<a class="btn" href="#projects">Projects</a>
<a class="btn" href="#experience">Experience</a>
<button class="btn primary" id="viewResume">View Resume</button>
</nav>
</header>
<!-- intro -->
<section class="intro" id="intro">
<div class="intro-left">
<h2>
Hi <span class="wave">👋</span><br />I'm
<span style="color: var(--accent)">Ankit Ved</span>
</h2>
<p class="typewriter" id="typewriter">
<span class="typewriter-ghost" aria-hidden="true"></span>
<span class="typewriter-live"></span>
</p>
<p>
Results-driven QA Engineer with 6+ years of experience in software testing —
spanning web automation, API validation, and security-focused QA.
Specialized in Duck Creek P&C insurance systems, with a growing focus on integrating security
checks into the testing lifecycle.
</p>
<div class="intro-cta">
<a href="#projects" class="btn">See Projects</a>
<a href="mailto:dev.ankit.ved@gmail.com" class="btn"
>Hire / Contact</a
>
</div>
<div class="stats">
<div class="stat">
<h3>4+</h3>
<p>Years experience</p>
</div>
<div class="stat">
<h3>Selenium / Katalon</h3>
<p>Automation focus</p>
</div>
<div class="stat">
<h3>DuckCreek</h3>
<p>P&C domain</p>
</div>
</div>
</div>
<!-- RIGHT SIDEBAR CARD -->
<aside class="card fade-up" style="padding: 18px">
<h3 style="margin: 0">Skills & Tools</h3>
<p style="margin: 6px 0 0; color: var(--muted); font-size: 14px">
Bug Catcher | Code Tester | Experience Enhancer
</p>
<div class="skills-grid" id="skills">
<div class="skill fade-up">
<em class="material-symbols-outlined"> sort </em>
<div>
<strong>API Testing</strong><span>Postman, Katalon</span>
</div>
</div>
<div class="skill fade-up">
<em class="material-symbols-outlined"> sort </em>
<div>
<strong>Automation</strong><span>Katalon, Selenium</span>
</div>
</div>
<div class="skill fade-up">
<em class="material-symbols-outlined"> sort </em>
<div><strong>Languages</strong><span>Groovy, Java, JS</span></div>
</div>
<div class="skill fade-up">
<em class="material-symbols-outlined"> sort </em>
<div><strong>Databases</strong><span>MySQL</span></div>
</div>
<div class="skill fade-up">
<em class="material-symbols-outlined"> sort </em>
<div>
<strong>Domain</strong
><span>Property & Casualty Insurance</span>
</div>
</div>
<div class="skill fade-up">
<em class="material-symbols-outlined"> sort </em>
<div>
<strong>Tools</strong
><span>Postman, Katalon, ADO, Jira, Git, TAC</span>
</div>
</div>
</div>
</aside>
</section>
<!-- ABOUT -->
<section id="about" style="margin-top: 20px">
<div class="card">
<h3>About</h3>
<p style="color: var(--muted)">
I combine testing fundamentals with practical automation to deliver reliable releases across web, API, and data layers.
I own end-to-end test coverage for REST APIs and UI flows, perform deep SQL validations, and collaborate with product and dev teams to reduce critical defects in production.
I mentor peers on test design and actively work to embed security testing into the QA lifecycle — exploring API vulnerability assessment, OWASP Top 10 coverage, and shift-left security practices.
Currently deepening expertise in penetration testing concepts to bridge the gap between QA and application security.
</p>
</div>
</section>
<!-- PROJECTS -->
<section id="projects">
<h3 style="margin-top: 18px">Projects</h3>
<div class="projects" id="projectGrid">
<article class="project-card card fade-up inview">
<div class="project-thumb">
<svg
width="120"
height="60"
viewBox="0 0 120 60"
xmlns="http://www.w3.org/2000/svg"
>
<rect
width="120"
height="60"
rx="6"
fill="rgba(255,255,255,0.02)"
></rect>
<text
x="50%"
y="50%"
dominant-baseline="middle"
text-anchor="middle"
fill="var(--muted)"
font-size="11"
>
<img src="assets/portfolio_ss.png">
</text>
</svg>
</div>
<div class="project-body">
<h4 style="margin: 0">Portfolio Website</h4>
<p style="color: var(--muted); font-size: 13px; margin: 8px 0">
A modern, responsive portfolio website built with HTML, CSS, and
JavaScript. Features clean design, interactive elements, and
comprehensive skill demonstrations.
</p>
<div style="display: flex; gap: 8px; flex-wrap: wrap">
<div class="tag">HTML</div>
<div class="tag">CSS</div>
<div class="tag">JS</div>
</div>
<div style="margin-top: 10px; display: flex; gap: 8px">
<button class="btn view" onclick="openProject(0)">View</button>
</div>
</div>
</article>
<article class="project-card card fade-up inview">
<div class="project-thumb">
<svg
width="120"
height="60"
viewBox="0 0 120 60"
xmlns="http://www.w3.org/2000/svg"
>
<rect
width="120"
height="60"
rx="6"
fill="rgba(255,255,255,0.02)"
></rect>
<text
x="50%"
y="50%"
dominant-baseline="middle"
text-anchor="middle"
fill="var(--muted)"
font-size="11"
>
EAS
</text>
</svg>
</div>
<div class="project-body">
<h4 style="margin: 0">Election Administration System</h4>
<p style="color: var(--muted); font-size: 13px; margin: 8px 0">
Java Swing desktop application for complete election management.
Features secure admin login, voter registration, candidate
management, digital voting with duplicate prevention, and
automated result calculation. Built with MySQL backend and
modular architecture demonstrating full-stack Java development
skills.
</p>
<div style="display: flex; gap: 8px; flex-wrap: wrap">
<div class="tag">Java</div>
<div class="tag">SQL</div>
</div>
<div style="margin-top: 10px; display: flex; gap: 8px">
<button class="btn view" data-idx="1" onclick="openProject(1)">
View
</button>
</div>
</div>
</article>
<article class="project-card card fade-up inview">
<div class="project-thumb">
<svg
width="120"
height="60"
viewBox="0 0 120 60"
xmlns="http://www.w3.org/2000/svg"
>
<rect
width="120"
height="60"
rx="6"
fill="rgba(255,255,255,0.02)"
></rect>
<text
x="50%"
y="50%"
dominant-baseline="middle"
text-anchor="middle"
fill="var(--muted)"
font-size="11"
>
<img src="assets/ovs_ss.png">
</text>
</svg>
</div>
<div class="project-body">
<h4 style="margin: 0">Online Voting System</h4>
<p style="color: var(--muted); font-size: 13px; margin: 8px 0">
A responsive web-based voting platform built with HTML, CSS, and
JavaScript. Features user authentication, voter registration,
and a professional interface. Includes modular components and is
designed for easy backend integration with PHP or Java Servlets.
Live demo available on GitHub Pages
</p>
<div style="display: flex; gap: 8px; flex-wrap: wrap">
<div class="tag">HTML</div>
<div class="tag">CSS</div>
<div class="tag">JS</div>
<div class="tag">Java</div>
<div class="tag">PHP</div>
</div>
<div style="margin-top: 10px; display: flex; gap: 8px">
<button class="btn view" data-idx="2" onclick="openProject(2)">
View
</button>
</div>
</div>
</article>
</div>
</section>
<!-- EXPERIENCE / TIMELINE -->
<section id="experience">
<h3 style="margin-top: 18px">Experience</h3>
<div class="timeline" id="timeline">
<div class="timeline-item fade-up inview">
<div class="timeline-marker" aria-hidden=""></div>
<div class="timeline-body">
<strong>Senior Test Engineer — Coforge</strong>
<div
style="color: var(--muted); font-size: 13px; margin-top: 6px"
>
May,2025 - Present
</div>
<ul
style="margin: 8px 0 0; padding-left: 18px; color: var(--muted)"
>
<span class="bold"
>Built and owned the QA function for Duck Creek DAL (Data Abstraction Layer) — a P&C Insurance SaaS platform — from the ground up.</span>
<li class="list-item">Designed and implemented a data-driven automation framework from scratch covering smoke and regression test suites; caught critical bugs before production.</li>
<li class="list-item">Validated 150+ REST APIs across 3 Lines of Business using Postman — wrote JavaScript pre/post-request scripts, assertion logic, dynamic variable handling, and chained test flows.</li>
<li class="list-item">Automated UI and API test cases in Katalon Studio with reusable, maintainable test scripts.</li>
<li class="list-item">Built modular test plans, test cases, and summary reports; collaborated directly with dev and business teams to improve release quality and reduce regression effort.</li>
<li class="list-item">Utilizing Katalon and Postman for automation</li>
</ul>
</div>
</div>
<div class="timeline-item fade-up inview">
<div class="timeline-marker" aria-hidden=""></div>
<div class="timeline-body">
<strong>Associate Consultant — Capgemini</strong>
<div
style="color: var(--muted); font-size: 13px; margin-top: 6px"
>
June,2021 - May,2025
</div>
<ul
style="margin: 8px 0 0; padding-left: 18px; color: var(--muted)"
>
<div class="section-title">
Career Journey: From Trainee to Leadership
</div>
<div class="paragraph">
<span class="bold"
>4+ years of consistent career growth at Capgemini</span
>, evolving from .NET Trainee to Associate Consultant leading
L3 production QA teams. Specialized in Property & Casualty
insurance with Duck Creek Policy expertise, delivering
measurable impact through technical excellence and strategic
leadership.
</div>
<div class="subsection-title">
🎯 Key Achievements & Impact
</div>
<div class="paragraph">
<span class="bold">Leadership Excellence:</span>
</div>
<ul class="list">
<li class="list-item">
<span class="bold">L3 Production QA Team Leadership:</span>
Oversaw Duck Creek Policy QA for enterprise-level P&C
insurance systems
</li>
<li class="list-item">
<span class="bold">75% Backlog Reduction:</span> Reduced
critical issues from 200+ to 50+, improving overall
efficiency
</li>
<li class="list-item">
<span class="bold">Daily Incident Management:</span>
Resolved 2–3 incidents per day, enhancing L2 team
performance and knowledge sharing
</li>
</ul>
<div class="paragraph">
<span class="bold">Technical Delivery:</span>
</div>
<ul class="list">
<li class="list-item">
<span class="bold">25+ User Stories Delivered:</span> Direct
client engagement and requirement refinement
</li>
<li class="list-item">
<span class="bold">End-to-End Testing Expertise:</span>
Complete Duck Creek Policy renewal transaction processes
</li>
<li class="list-item">
<span class="bold">Full Testing Lifecycle:</span> Black Box,
Functional, Regression, Smoke, and Sanity testing
</li>
<li class="list-item">
<span class="bold">.NET Development Foundation:</span> C#,
MVC, Entity Framework, Web API for scalable solutions
</li>
</ul>
<div class="paragraph">
<span class="bold">Professional Development:</span>
</div>
<ul class="list">
<li class="list-item">
<span class="bold"
>Duck Creek Policy Bootcamp Certified:</span
>
Specialized training in insurance domain
</li>
<li class="list-item">
<span class="bold">Cross-Functional Collaboration:</span>
Direct stakeholder engagement and client-facing experience
</li>
<li class="list-item">
<span class="bold">Process Optimization:</span> Streamlined
incident resolution and team productivity
</li>
</ul>
<div class="subsection-title">
🚀 Career Progression Timeline
</div>
<div class="paragraph">
<span class="bold">Associate Consultant</span>
<span class="italic">(Oct 2023 – May 2025)</span>
</div>
<ul class="list">
<li class="list-item">Led L3 Production QA Team</li>
<li class="list-item">Achieved 75% backlog reduction</li>
<li class="list-item">
Managed enterprise P&C insurance systems
</li>
</ul>
<div class="paragraph">
<span class="bold">Senior Software Engineer</span>
<span class="italic">(Jun 2021 – Oct 2023)</span>
</div>
<ul class="list">
<li class="list-item">
Delivered 25+ user stories with client collaboration
</li>
<li class="list-item">Specialized in Duck Creek Policy</li>
<li class="list-item">