-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1025 lines (885 loc) · 63.1 KB
/
index.html
File metadata and controls
1025 lines (885 loc) · 63.1 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
<!-- @format -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Tejas Medade | Senior Software Engineer</title>
<meta content="Tejas Medade - Senior Software Engineer with 4+ years of experience in Java, Spring Boot, Flutter, Microservices, and Platform Modernization. Currently at PeopleStrong, Gurugram." name="description" />
<meta content="Senior Software Engineer, Java Developer, Full Stack Developer, Spring Boot, Microservices, Flutter, React, Angular, Platform Modernization, Mumbai" name="keywords" />
<!-- Favicons -->
<link href="assets/img/Portfolio Icons/TMLOGO1.png" rel="icon" sizes="64x64" />
<link href="assets/img/Portfolio Icons/TMLOGO1.png" rel="apple-touch-icon" sizes="64x64" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet" />
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet" />
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet" />
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
</head>
<body>
<!-- ======= Mobile nav toggle button ======= -->
<i class="bi bi-list mobile-nav-toggle d-xl-none"></i>
<!-- ======= Header ======= -->
<header id="header" data-aos="fade-right">
<div class="d-flex flex-column" data-aos="fade-right">
<div class="profile">
<img src="/assets/img/Personal_Images/Profile_Picture_2.jpg" alt="" class="img-fluid rounded-circle" />
<h1 class="text-light"><a href="index.html">Tejas Medade</a></h1>
<div class="social-links mt-3 text-center">
<a href="https://mail.google.com/mail/u/0/#inbox?compose=CllgCJNtfNCjRjbHKvRPJLKkgWxMqWKWZGFvmgKkLVggLJgDgMVwzGfgCkCzvXxJZfzNdDnXrKg"
target="_blank" class="gmail"><i class="bx bxl-gmail"></i></a>
<a href="https://linkedin.com/in/medadetejas" target="_blank" class="linkedin"><i
class="bx bxl-linkedin"></i></a>
<a href="https://github.com/tejasmedade" target="_blank" class="github"><i class="bx bxl-github"></i></a>
<a href="https://twitter.com/TejasMedade" target="_blank" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="https://dev.to/tejasmedade" target="_blank" class="devto"><i class="bx bxl-dev-to"></i></a>
</div>
</div>
<nav id="navbar" class="nav-menu navbar">
<ul>
<li>
<a href="#hero" class="nav-link scrollto active"><i class="bx bx-home"></i> <span>Home</span></a>
</li>
<li>
<a href="#about" class="nav-link scrollto"><i class="bx bx-user"></i> <span>About</span></a>
</li>
<li>
<a href="#resume" class="nav-link scrollto"><i class="bx bx-time"></i> <span>Timeline</span></a>
</li>
<li>
<a href="#portfolio" class="nav-link scrollto"><i class="bx bx-book-content"></i> <span>Portfolio</span></a>
</li>
<li>
<a href="#services" class="nav-link scrollto"><i class="bx bx-server"></i> <span>Tech Stack</span></a>
</li>
<li>
<a href="#contact" class="nav-link scrollto"><i class="bx bx-envelope"></i> <span>Contact</span></a>
</li>
<li>
<a href="assets/Resume/Tejas_Vilas_Medade_Java_FullStack_Developer.pdf" download="Tejas_Vilas_Medade_Java_FullStack_Developer" target="_blank"
class="nav-link scrollto"><i class="bx bx-file-blank"></i> <span>Resume</span></a>
</li>
</ul>
</nav>
<!-- .nav-menu -->
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center align-items-center">
<div class="hero-container" data-aos="fade-in">
<h1>Tejas Vilas Medade</h1>
<p>
I'm
<span class="typed" data-typed-items="an Architect, a Designer, a Developer"></span>
</p>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>About</h2>
<h5>Hello !</h5>
<h3>I'm <span style="color: #173b6c; font-weight: 800;">TEJAS VILAS MEDADE</span></h3>
<div style="margin-top: 12px; border-left: 4px solid #149ddd; padding: 12px 16px; background: rgba(20, 157, 221, 0.05); border-radius: 4px;">
<p style="font-size: 20px; font-weight: 800; color: #149ddd; text-transform: uppercase; letter-spacing: 2px; font-style: italic; margin: 0;">“ FROM BRICKS TO BYTES ”</p>
<p style="font-size: 22px; font-weight: 600; color: #173b6c; text-transform: uppercase; letter-spacing: 1px; margin: 8px 0 0 0;">AN ARCHITECT & DESIGNER BY PASSION, ENGINEERED INTO A SOFTWARE DEVELOPER.</p>
</div> </div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right">
<img src="assets/img/Personal_Images/Profile_Picture_3.jpg" class="img-fluid" alt="" />
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3> Senior Software Engineer</h3>
<p class="fst-italic"></p>
<div class="row">
<div class="col-lg-6">
<ul>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Experience:</strong> <span>4+ Years</span>
</li>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Phone:</strong>
<span>+91 9307710594</span>
</li>
<li>
<i class="bi bi-chevron-right"></i>
<strong>City:</strong> <span>Mumbai, India</span>
</li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li>
<i class="bi bi-chevron-right"></i> <strong>Domain:</strong>
<span>HR Tech, Finance & SAP</span>
</li>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Current:</strong>
<span>PeopleStrong</span>
</li>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Email:</strong>
<span>tejasmedade@gmail.com</span>
</li>
</ul>
</div>
</div>
<p class="me">
I'm a <span style="font-weight: 600; color: #173b6c;">Senior Software Engineer</span> with over 4 years of experience bringing a unique perspective to the tech landscape. With hands-on expertise across <span style="font-weight: 600; color: #173b6c;">HR Tech, Finance, and SAP</span> domains, I specialize in taking legacy systems and transforming them into modern, high-performance platforms.
<br><br>
My journey began with a <span style="font-weight: 600; color: #173b6c;">Bachelor's degree in Architecture</span> from Amity University, Mumbai — rooted in the principles of design, innovation, and creative problem-solving. Venturing beyond architecture, I explored multifaceted roles that enriched my skill set: from orchestrating HR strategies as an Associate to crafting captivating visual narratives as a <span style="font-weight: 600; color: #173b6c;">Graphic Designer</span> in the vibrant landscape of the United States.
<br><br>
It was amidst this eclectic backdrop that my true calling emerged — a fervent desire to merge my architectural ingenuity with the dynamic realm of software development. I think in systems, design for humans, and build for scale. Whether it's a Kafka event pipeline, a Flutter UI, or a complex stored procedure — I own it end-to-end.
<br><br>
At <span style="font-weight: 600; color: #173b6c;">PeopleStrong</span>, I'm leading the ground-up modernization of their HRIS & Core HR platform — replacing a monolithic JSP/JSF system with <span style="font-weight: 600; color: #173b6c;">Spring Boot 3.x microservices + Flutter</span>. The results: <strong>35%+ faster SQL response times</strong>, <strong>70% fewer UI issues</strong>, and a direct <strong>20% revenue increase</strong> — delivered in just 6 months with live enterprise clients.
<br><br>
I also conceptualized and built the entire <span style="font-weight: 600; color: #173b6c;">K6 Performance Testing Framework</span> from scratch — covering 100+ APIs across 30+ modules with load profiles up to 300 concurrent users, automated reporting, and CI/CD integration.
<br><br>
<span style="font-style: italic; color: #666;">Previously: Mahindra Finance (RBI-compliant financial products) • Prospecta Software (Elasticsearch-powered enterprise data platforms)</span>
</p>
<br>
<br>
<div class="downloadbutton" data-aos="fade-up">
<a href="assets/Resume/Tejas_Vilas_Medade_Java_FullStack_Developer.pdf" download="Tejas_Vilas_Medade_Java_FullStack_Developer">
<button type="button" class="btn btn-outline-dark" style="border: 1px solid #173b6c;">DOWNLOAD
RESUME</button>
</a>
<a href="https://dev.to/tejasmedade/bridging-the-gap-what-architecture-taught-me-about-software-design-55bo" target="_blank">
<button type="button" class="btn btn-outline-dark" style="border: 1px solid #173b6c; margin-left: 10px;">READ MY BLOG</button>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills section-bg " data-aos="fade-up">
<div class="container">
<div class="section-title">
<h2>Technical Skills</h2>
</div>
<div class="row skills-content">
<div class="col-lg-6" data-aos="fade-up">
<div class="progress">
<span class="skill">BACKEND — JAVA ECOSYSTEM<i class="val">95%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100">
</div>
<p>Java 17 | Spring Boot 3.x | Spring MVC | Spring Security | Spring Data JPA | Spring Batch | Hibernate | Kafka | Retrofit | Servlets | JSP | JSF</p>
</div>
</div>
<br>
<div class="progress">
<span class="skill">FRONTEND & MOBILE<i class="val">85%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100">
</div>
<p>Flutter | React | Angular | TypeScript | JavaScript | HTML5 | CSS3 | Bootstrap | Tailwind CSS | Redux | NgRx</p>
</div>
</div>
<br>
<div class="progress">
<span class="skill">DATABASES & CACHING<i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
</div>
<p>MS SQL Server | Oracle DB | PostgreSQL | MySQL | Elasticsearch | Redis | Stored Procedures | Query Optimization</p>
</div>
</div>
<br>
<div class="progress">
<span class="skill">SECURITY & AUTH<i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
</div>
<p>JWT | OAuth 2.0 | OpenID Connect | SSO | RSA Encryption | HSM | RBAC | XSS/CSRF Prevention | Input Sanitization | Rate Limiting</p>
</div>
</div>
<br>
<div class="progress">
<span class="skill">APIS & ARCHITECTURE<i class="val">95%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100">
</div>
<p>RESTful APIs | gRPC | RestTemplate | Microservices | Monolith-to-Microservices Migration | Event-Driven | Kafka | RabbitMQ</p>
</div>
</div>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<div class="progress">
<span class="skill">TESTING & AUTOMATION<i class="val">85%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100">
</div>
<p>K6 (Load & API Testing) | JUnit | Mockito | Selenium | Postman | SonarQube | Negative Testing | Performance Profiling</p>
</div>
</div>
<br>
<div class="progress">
<span class="skill">DEVOPS & CLOUD<i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100">
</div>
<p>Docker | Jenkins | GitLab CI/CD | AWS (EC2) | Red Hat OpenShift | Maven | Apache Tomcat | JBoss | Liquibase</p>
</div>
</div>
<br>
<div class="progress">
<span class="skill">VERSION CONTROL & COLLABORATION<i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
</div>
<p>Git | GitHub | GitLab | Bitbucket | JIRA | Confluence | Figma | Agile/Scrum</p>
</div>
</div>
<br>
<div class="progress">
<span class="skill">ARCHITECTURE & DESIGN<i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
</div>
<p>Microservices | Monolith Migration | OOP | MVC | SOLID | Multi-Tenant Architecture | Load Balancing | Caffeine Caching</p>
</div>
</div>
<br>
<div class="progress">
<span class="skill">DATA PROCESSING & MONITORING<i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100">
</div>
<p>Apache Spark | Log4j2 | Prometheus | Micrometer | New Relic (APM) | Bulk Upload Processing | Excel/CSV Generation | Automated Reporting</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Skills Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Timeline</h2>
</div>
<div class="row">
<div class="col-lg-6" data-aos="fade-up">
<h3 class="resume-title">Summary</h3>
<div class="resume-item pb-0">
<h4>Tejas Vilas Medade</h4>
<p>
<em>Senior Software Engineer with 4+ years building enterprise platforms across HR Tech, Finance, and SAP. Architect-turned-developer who brings spatial thinking and engineering discipline to every system.
<br><br>
Currently leading HRIS & Core HR platform modernization at PeopleStrong — migrating legacy JSP/JSF to Spring Boot 3.x + Flutter. Impact: 35%+ faster SQL, 70% fewer UI issues, 20% revenue growth in 6 months.
<br><br>
Built the K6 Performance Testing Framework end-to-end — 100+ API endpoints, 30+ modules, 300 concurrent VU load profiles, automated Excel reporting, and Jenkins CI/CD integration.
<br><br>
Core stack: Java 17 • Spring Boot • Flutter • MS SQL • Redis • Kafka • Docker • K6 • Jenkins • Prometheus</em>
</p>
</div>
<h3 class="resume-title">Education</h3>
<div class="resume-item" data-aos="fade-up">
<h4>Bachelor of Architecture</h4>
<h5>Jan 2016 - May 2022</h5>
<p><em>Amity University, Mumbai</em></p>
<p>
Completed a comprehensive program in architecture, blending theoretical knowledge with practical skills in design, construction techniques, and project management.
<br>
<br>
Developed proficiency in architectural design principles, building codes, and construction techniques through coursework and studio projects. Acquired expertise in AutoCAD, Revit, SketchUp, and Adobe Creative Suite for drafting, modeling, and presentation.
<br>
<br>
Participated in collaborative design projects, gaining experience in teamwork, communication, and interdisciplinary collaboration. Explored sustainable design, urban planning, and historic preservation.
<br>
<br>
Winner of the N.A.S.A CAMPDES national architecture competition, representing Amity University against colleges across India — showcasing creativity, innovation, and architectural excellence.
</p>
</div>
<div class="resume-item" data-aos="fade-up">
<h4>H.S.C — Science (Grade A)</h4>
<h5>Aug 2014 - Aug 2016</h5>
<p><em>St. Xavier's College, Mumbai</em></p>
<p>
Science-focused curriculum with emphasis on physics, chemistry, biology, and mathematics, fostering strong analytical and problem-solving foundations.
<br>
<br>
Pursued extensive coursework in French and Spanish languages, achieving proficiency in reading, writing, speaking, and listening through language exchange programs and extracurricular activities.
<br>
<br>
Qualified to the India level in the MARRS Spelling Bee competition held by Cambridge University, demonstrating exceptional linguistic proficiency and academic excellence.
<br>
<br>
Balanced academic rigor with participation in clubs, sports, and community service activities, demonstrating leadership, teamwork, and time management abilities.
</p>
</div>
<h3 class="resume-title">Certifications & Achievements</h3>
<div class="resume-item" data-aos="fade-up">
<h4>Masai Power Project Award</h4>
<h5>Jan 2023</h5>
<p><em>Masai School</em></p>
<p>Awarded for outstanding project delivery and technical excellence during the Full Stack Web Development program.</p>
</div>
<div class="resume-item" data-aos="fade-up">
<h4>Masai DSA Ninja Award</h4>
<h5>Jan 2022</h5>
<p><em>Masai School</em></p>
<p>Recognized for exceptional performance in Data Structures and Algorithms, demonstrating efficient and optimized problem-solving skills.</p>
</div>
<div class="resume-item" data-aos="fade-up">
<h4>N.A.S.A CAMPDES — Winner</h4>
<h5>2019 - 2020</h5>
<p><em>National Association of Students of Architecture (N.A.S.A), C.O.A, India</em></p>
<p>Won the prestigious N.A.S.A CAMPDES competition organized by the National Association of Students of Architecture, competing against architecture colleges across India. Showcased creativity, innovation, and architectural skills representing Amity University, Mumbai.</p>
</div>
<div class="resume-item" data-aos="fade-up">
<h4>MaRRS International Spelling Bee — India Level</h4>
<h5>2007 - 2008</h5>
<p><em>University of Cambridge</em></p>
<p>Qualified up to the India level in the prestigious MARRS Spelling Bee competition held by Cambridge University. Demonstrated exceptional spelling proficiency and linguistic skills, competing against participants from across the country.</p>
</div>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item" data-aos="fade-up">
<h4>Senior Software Engineer</h4>
<h5>Jan 2025 - Present</h5>
<p><em>PEOPLESTRONG, GURUGRAM</em></p>
<p style="font-size: 14px; color: #555; margin-bottom: 10px;"><strong>Domain:</strong> HR Tech | HRIS & Core HR Platform Modernization</p>
<ul>
<li><strong>Platform Modernization:</strong> Spearheading the complete redesign of HRIS & Core HR from legacy JSP/JSF monolith to Spring Boot 3.x (Java 17) microservices + Flutter frontend — delivering 70% reduction in UI glitches and support tickets, faster application performance, and better processing efficiency. Delivered the entire project within a 6-month timeframe serving live enterprise clients, directly contributing to a 20% increase in company revenue through newer revamps and module deliveries.</li>
<li><strong>SQL Performance Optimization:</strong> Optimized stored procedures and complex queries achieving 35%+ faster SQL response times, eliminating JSP timeouts and page freeze issues across critical modules.</li>
<li><strong>Position Module:</strong> Architected and delivered one of the platform's most complex modules end-to-end — managing ~32 dependent dropdowns, ~20 pre-populated filters, transition workflows, auto-tagging, field freezing logic, hierarchical org unit/worksite selection, effective date management per field, and position code auto-population.</li>
<li><strong>K6 API Automation & Load Testing:</strong> Led the entire ideation, architecture, development, and delivery of the K6 testing framework — covering 100+ API endpoints across 30+ modules with custom Trend/Counter metrics, ramping virtual users up to 300 concurrent (staged 100→200→300 VU load profiles), CSV-driven multi-user scenarios, module-isolated test suites (fetch-only safe parallel tests + full transactional tests), Dockerized execution with Jenkins CI/CD integration, and automated Node.js Excel report generation (performance, error, and per-user reports) for benchmarking.</li>
<li><strong>Profile Modules:</strong> Delivered end-to-end development of 18+ profile tabs (ID Details, Immigration, Payroll, Bank, Contact, Education, Employment, Dependent, Nomination, Training, Salary, Skills, Lifecycle, Reference, Additional Fields) — including Spring Boot APIs, Flutter UI with GetX state management, Dio HTTP client, form security, validation, history tracking, and zero-defect deployments.</li>
<li><strong>Reassign Manager:</strong> Built the complete module end-to-end — refactored complex recursive stored procedure logic into maintainable architecture, and delivered Flutter UI for multi-entity selection, reportee listing, manager search, and confirmation workflows.</li>
<li><strong>Letter Generation & Tasks:</strong> Built backend logic for dynamic HTML table rendering, placeholders, adhoc free-text generation, and delivered Flutter UI for My Letters, All Letters, Generated Letters, Bulk Letters, Task Delegation, Task Reassignment, and MyTasks with filtering, pagination, and deep-link navigation.</li>
<li><strong>Bulk Operations & Document Management:</strong> Developed Bulk Upload APIs and Bulk Letters History APIs at scale, plus Flutter frontend for file upload (Dropzone), history listing with filters, template download, status tracking, PDF/image viewer, and file download/preview.</li>
<li><strong>Dynamic Form Field Generator:</strong> Architected a reusable engine that dynamically renders Date, DateTime, Text, TextArea, Single/Multi-Select Dropdown, Checkbox, and Radio fields based on server-driven form security configurations — used across all profile tabs.</li>
<li><strong>API Encryption Layer:</strong> Implemented end-to-end AES-256 encryption/decryption service for API request payloads and response data, securing sensitive employee information in transit.</li>
<li><strong>Client-Side Caching:</strong> Designed TTL-based caching strategy (Hive) for dropdowns, form security, entities, org units, and configuration data — reducing redundant API calls and improving perceived performance.</li>
<li><strong>Org Chart Visualization:</strong> Developed interactive org chart with hierarchical employee tree rendering, reportee tooltips, screenshot/export capability, and sliver-based rendering optimization for large teams (50+ reportees).</li>
<li><strong>Common Dropdown API Framework:</strong> Co-developed a reusable dropdown API standardized across all profile tabs, reducing code duplication and improving maintainability.</li>
<li><strong>Form Security & Authorization:</strong> Implemented org-based role permissions, menu configurations, and admin/super-admin panel access control for multi-tenant architecture.</li>
<li><strong>Multi-Environment Deployment:</strong> Managed CI/CD pipelines across 9 environments (Production, Staging, UAT, KSA-Production, UAE-Production, SG-Production, SG-Staging, Sohum, Master) with dedicated Jenkinsfiles per region, Dockerized deployments on Apache Tomcat 10.1, and environment-specific configurations for multi-tenant enterprise clients.</li>
<li><strong>Analytics & Observability:</strong> Integrated Firebase Analytics with custom screen tracking and event logging across all HRIS modules. Set up Prometheus + Grafana monitoring stack with Micrometer metrics, Spring Boot Actuator endpoints, and New Relic APM for JVM-level observability, enabling proactive performance tuning and data-driven product decisions.</li>
<li><strong>Client Impact:</strong> Contributed to acquiring major enterprise clients including Tata 1mg, LIC, Paytm, RBL Bank, V-Mart, Jindal Stainless, Starhealth, Bank Bazaar, Chola-connect, and Equitas through platform improvements.</li>
<li><strong>Workflow & Notifications:</strong> Engineered automated email notifications for position changes, payroll updates, and workflow-based triggers with Chat Server sync integration.</li>
<li><strong>Kafka Event-Driven Processing:</strong> Designed and implemented Kafka consumer architecture for bulk letter generation — handling asynchronous processing of high-volume letter requests with configurable consumer groups, progress tracking, and JDBC batch operations for scalable throughput.</li>
<li><strong>Code Quality & Standards:</strong> Enforced 80% minimum code coverage via JaCoCo with CI-gate checks, integrated Spotless (Google Java Style) for consistent formatting, Swagger/OpenAPI documentation for all REST endpoints, and Snyk for vulnerability scanning.</li>
<li><strong>SQL Stored Procedures:</strong> Authored and maintained complex stored procedures for effective date-based listing (Insert, Update, Delete, Main), handling employment details, nomination details, visa details with temporal versioning and audit trails on MS SQL Server.</li>
<li><strong>Incident Management:</strong> Maintained zero-reopen track record on client issues, handling legacy incident compatibility with revamped modules and thorough edge-case validation.</li>
</ul>
</div>
<div class="resume-item" data-aos="fade-up">
<h4>Java Full Stack Developer</h4>
<h5>Jun 2024 - Jan 2025</h5>
<p><em>MAHINDRA FINANCE, MUMBAI</em></p>
<p style="font-size: 14px; color: #555; margin-bottom: 10px;"><strong>Domain:</strong> Finance | RBI-Compliant Loan Products</p>
<ul>
<li><strong>Legacy Modernization:</strong> Spearheaded the transition of legacy JSP-based applications to modern microservices using React (frontend) and Spring Boot (backend), improving scalability, performance, and user experience.</li>
<li><strong>React Component Development:</strong> Led the design and development of new React components and applications from scratch, ensuring smooth integration with backend services.</li>
<li><strong>Database Management & Migration:</strong> Worked with Oracle DB — creating data schemas, executing complex data migrations, and designing optimized stored procedures for the new microservices architecture.</li>
<li><strong>API Development & Integration:</strong> Developed and integrated RESTful APIs in Spring Boot, enabling efficient and secure communication between frontend and backend layers.</li>
<li><strong>Code Refactoring:</strong> Led the refactoring of legacy JSP code to Spring Boot and React, reducing technical debt and boosting development speed.</li>
<li><strong>Deployment & Server Management:</strong> Managed deployment processes using Tomcat and JBoss, optimizing application performance with zero-downtime rollouts in production.</li>
<li><strong>Loan Transaction System:</strong> Developed Mahindra Finance's internal product for processing loan transactions, master sheet maintenance, and loan data management under RBI guidelines.</li>
<li><strong>Financial Calculations & HSM Model:</strong> Implemented financial calculations and algorithms including Hardware Security Module (HSM), ensuring secure and accurate transaction processing.</li>
<li><strong>Data Security & Encryption:</strong> Managed encryption/decryption of high-end loan transaction data using RSA encryption, signature encodings, and decryption mechanisms.</li>
<li><strong>Threat Analysis & Security:</strong> Identified and mitigated SQL injection vulnerabilities, conducted threat analysis, and implemented robust input and payload sanitization measures.</li>
<li><strong>Secure Authentication:</strong> Implemented JWT token authentication and Single Sign-On (SSO), ensuring secure access to sensitive financial data and transactions.</li>
<li><strong>Rate Limiting & Data Protection:</strong> Developed and deployed rate limiters to prevent DoS attacks, with robust encapsulation of sensitive financial data.</li>
<li><strong>Logging & Monitoring:</strong> Integrated advanced logging mechanisms to track user activity, monitor potential issues, and enhance system visibility for troubleshooting.</li>
</ul>
</div>
<div class="resume-item" data-aos="fade-up">
<h4>Java Developer</h4>
<h5>Feb 2023 - Jun 2024</h5>
<p><em>PROSPECTA SOFTWARE, GURUGRAM</em></p>
<p style="font-size: 14px; color: #555; margin-bottom: 10px;"><strong>Domain:</strong> SAP | Enterprise Data Management & Visualization</p>
<p style="font-size: 14px; color: #555; margin-bottom: 10px;"><strong>Product:</strong> Master Data Online (MDO) - Fuse | Integrates with SAP & Salesforce</p>
<ul>
<li><strong>Backend Development with Elasticsearch:</strong> Spearheaded end-to-end backend development using Java and Elasticsearch, enabling real-time data visualization and dynamically generated database tables, significantly enhancing system flexibility.</li>
<li><strong>Mass Upload Feature:</strong> Led the implementation of a mass upload feature, improving data management efficiency by incorporating data validation, notifications, and generating detailed Excel reports.</li>
<li><strong>Dynamic Date & Time Functionalities:</strong> Developed dynamic date and time-based functionalities in Angular, ensuring seamless user experience while maintaining data consistency across multiple platforms.</li>
<li><strong>Enhanced Security & Reliability:</strong> Engineered time-based restrictions and implemented one-time-use email links, strengthening system security and improving overall reliability.</li>
<li><strong>Elasticsearch Query Optimization:</strong> Designed advanced lookup rules and custom scripts within Elasticsearch, optimizing complex data queries and enhancing search efficiency.</li>
<li><strong>Memory Optimization:</strong> Pioneered a robust mass record validation system, optimizing JVM memory utilization and significantly improving system performance under heavy data load.</li>
<li><strong>Automated Reporting:</strong> Transformed complex dashboard reports into PDF/PPT formats using AWS infrastructure for automated report generation and delivery.</li>
<li><strong>Business Rules & Microservices Resilience:</strong> Crafted bespoke business rules and fail-safe mechanisms within microservices, fortifying system resilience during peak times.</li>
<li><strong>High-Capacity Data Management:</strong> Led the development and deployment of a high-capacity data management system, streamlining data handling processes and improving processing speed.</li>
<li><strong>API Development:</strong> Proficient in API development using gRPC and RestTemplate, ensuring seamless automation and customized backend solutions tailored to business requirements.</li>
<li><strong>Data Import/Export:</strong> Built backend and frontend user dashboard functionalities, enabling bulk data import/export in CSV and Excel formats for end-users.</li>
<li><strong>Cybersecurity & Code Improvements:</strong> Implemented robust security measures to handle Sonar vulnerabilities and verbose cybersecurity threats, improving overall system integrity.</li>
<li><strong>User Profile & Authorization:</strong> Developed user profiles and organizational settings features, including license generation through keygen and authorization functionality.</li>
<li><strong>JWT & Authentication:</strong> Improved JWT Token implementation, enhancing authentication mechanisms and ensuring secure, reliable access across the platform.</li>
<li><strong>Workflow Notifications:</strong> Automated email notifications and custom alerts based on business workflows, ensuring seamless communication across user groups.</li>
<li><strong>Spark Data Processing:</strong> Utilized Spark technology to enhance data processing efficiency, enabling quick analysis and reporting of large datasets.</li>
</ul>
</div>
<div class="resume-item" data-aos="fade-up">
<h4>Full Stack Web Developer (Intern)</h4>
<h5>Feb 2022 - Feb 2023</h5>
<p><em>MASAI SCHOOL, BANGALORE</em></p>
<ul>
<li>Completed a professional internship providing immersive, industry-aligned training in Full Stack Web Development with emphasis on practical application and real-world problem-solving.</li>
<li>Engaged in the design, implementation, and deployment of Java-based backend solutions, focusing on RESTful APIs, database integration, and enterprise application development.</li>
<li>Acquired extensive experience with Spring Boot, Hibernate, Servlets, JSP, and Maven through hands-on projects.</li>
<li>Enhanced expertise in Data Structures and Algorithms through rigorous training and practical coding exercises, fostering efficient problem-solving skills.</li>
<li>Collaborated in team-based projects simulating professional development environments, adhering to software engineering best practices.</li>
</ul>
</div>
<div class="resume-item" data-aos="fade-up">
<h4>Freelance Web Designer</h4>
<h5>2020 - 2021</h5>
<p><em>REVENANT ESPORTS, UNITED STATES</em></p>
<p style="font-size: 14px; color: #555; margin-bottom: 10px;"><strong>Domain:</strong> Esports & Digital Media | Premier Esports Team in South Asia</p>
<ul>
<li><strong>Collaborative Design:</strong> Worked closely with marketing strategists, creative directors, and web designers to develop impactful digital and print deliverables — including digital ads, landing pages, social media graphics, newsletters, and sales decks.</li>
<li><strong>Web Design & Development:</strong> Designed and maintained responsive, user-friendly landing pages and microsites, ensuring seamless integration of design elements with functionality across platforms.</li>
<li><strong>Brand Development:</strong> Contributed to the evolution of brand identity by designing logos, typography, and visual style guides, ensuring consistent application across all digital platforms.</li>
<li><strong>UI/UX Design:</strong> Applied user-centered design principles to create intuitive user interfaces, developed wireframes, prototypes, and visual mockups for websites and mobile applications.</li>
<li><strong>Design Optimization:</strong> Produced high-quality visuals aligned with brand guidelines, conducted A/B testing to assess digital asset performance, and implemented data-driven design improvements.</li>
<li><strong>Client Consultation:</strong> Worked directly with stakeholders to understand project requirements, recommend graphic and web design solutions, and deliver tailored creative assets.</li>
</ul>
</div>
<div class="resume-item" data-aos="fade-up">
<h4>Human Resources Assistant</h4>
<h5>2017 - 2018</h5>
<p><em>WRITER CORPORATION, MUMBAI</em></p>
<p style="font-size: 14px; color: #555; margin-bottom: 10px;"><strong>Domain:</strong> Information Management | India's Largest Information Management Company</p>
<ul>
<li><strong>HR Administration:</strong> Provided comprehensive assistance with internal and external human resource inquiries, maintained digital and electronic employee files, and facilitated employment contract issuance.</li>
<li><strong>Recruitment & Onboarding:</strong> Conducted orientations for new hires, ensured accurate record-keeping, and managed the complete onboarding lifecycle.</li>
<li><strong>Payroll & Compliance:</strong> Processed payroll, resolved associated errors efficiently, completed HR documents, and ensured compliance with organizational policies and regulations.</li>
<li><strong>Training Coordination:</strong> Managed HR management team calendars, coordinated training sessions and seminars, and generated reports on various HR activities.</li>
<li><strong>Process Improvement:</strong> Stayed abreast of the latest HR trends and best practices to support organizational growth and operational effectiveness.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- End Resume Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio section-bg">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Portfolio</h2>
<h4 style="color: #173b6c; font-weight: 800; text-align: center;">A PORTFOLIO IS NOT JUST WHAT YOU BUILD — IT'S HOW YOU THINK.</h4>
</div>
<div class="row" data-aos="fade-up">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">Frontend</li>
<li data-filter=".filter-web">Backend</li>
<li data-filter=".filter-card">Others</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<video class="img-fluid" alt="" controls autoplay loop preload="auto">
<source src="assets/video/Portfolio/Engage Bay/Engage Bay Website Hero Image.mp4" type="video/mp4">
</video>
<!-- <img src="assets/video/Portfolio/Engage Bay/Engage Bay Website Hero Image.mp4" class="img-fluid" alt="" /> -->
<div class="portfolio-links">
<a href="assets/video/Portfolio/Engage Bay/Engage Bay Website Hero Image.mp4"
data-gallery="portfolioGallery" class="portfolio-lightbox"><i class="bx bxs-image"></i></a>
<a href="assets/video/Portfolio/Engage Bay/Engage Bay Website AOS Animation.mp4"
data-gallery="portfolioGallery" class="portfolio-lightbox"><i class="bx bxs-image"></i></a>
<a href="assets/img/Portfolio/Engage Bay/Engagebay_1.png" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<i class="bx bxs-video"> </i></a>
<a href="/Projects/Frontend/EngageBay.html" title="Project Details"><i class="bx bx-link"></i></a>
</div>
</div>
<br>
<h5
style="text-align: center; line-height: 18px; font-size: 18px; font-weight: 600; text-transform: uppercase; font-family: Poppins, sans-serif; color: #050d18; margin-bottom: 10px">
ENGAGE BAY CLONE</h5>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="/assets/img/Portfolio/E Commerce Application/E_Commerce.jpg" class="img-fluid" alt="" />
<div class="portfolio-links">
<a href="/assets/img/Portfolio/E Commerce Application/ER_Diagram.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox"><i class="bx bx-image"></i></a>
<a href="/assets/img/Portfolio/E Commerce Application/E_Commerce.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox"><i class="bx bxs-video"></i></a>
<a href="/Projects/Backend/E_Commerce.html" title="Project Details"><i class="bx bx-link"></i></a>
</div>
</div>
<br>
<h5
style="
text-align: center; line-height: 18px; font-size: 18px; font-weight: 600; text-transform: uppercase; font-family: Poppins, sans-serif; color: #050d18; margin-bottom: 10px">
E COMMERCE APPLICATION</h5>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="/assets/img/Portfolio/Blogging Application/Blogging Application.jpg" class="img-fluid" alt="" />
<div class="portfolio-links">
<a href="/assets/img/Portfolio/Blogging Application/ER_Diagram.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox"><i class="bx bx-image"></i></a>
<a href="/assets/img/Portfolio/Blogging Application/Blogging Application.jpg"
data-gallery="portfolioGallery" class="portfolio-lightbox"><i class="bx bxs-video"></i></a>
<a href="/Projects/Backend/Blogging_Application.html" title="Project Details"><i
class="bx bx-link"></i></a>
</div>
</div>
<br>
<h5
style="
text-align: center; line-height: 18px; font-size: 18px; font-weight: 600; text-transform: uppercase; font-family: Poppins, sans-serif; color: #050d18; margin-bottom: 10px">
BLOG APPLICATION</h5>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="/assets/img/Portfolio/E Wallet Payment System/E_Wallet_Payment_System.jpg" class="img-fluid"
alt="" />
<div class="portfolio-links">
<a href="/assets/img/Portfolio/E Wallet Payment System/ER_Diagram.png" data-gallery="portfolioGallery"
class="portfolio-lightbox"><i class="bx bx-image"></i></a>
<a href="/assets/img/Portfolio/E Wallet Payment System/E_Wallet_Payment_System.jpg"
data-gallery="portfolioGallery" class="portfolio-lightbox" title=""><i class="bx bxs-video"></i></a>
<a href="/Projects/Backend/E_Wallet_Payment_System.html" title="Project Details"><i
class="bx bx-link"></i></a>
</div>
</div>
<br>
<h5
style="
text-align: center; line-height: 18px; font-size: 18px; font-weight: 600; text-transform: uppercase; font-family: Poppins, sans-serif; color: #050d18; margin-bottom: 10px">
E-WALLET PAYMENT APPLICATION</h5>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="/assets/img/Portfolio/Online Shopping System/Online_Shopping_System.jpg" class="img-fluid"
alt="" />
<div class="portfolio-links">
<a href="/assets/img/Portfolio/Online Shopping System/ER_Diagram.png" data-gallery="portfolioGallery"
class="portfolio-lightbox"><i class="bx bx-image"></i></a>
<a href="https://clipchamp.com/watch/q7LUhkM8CjZ" data-gallery="portfolioGallery"
class="portfolio-lightbox"><i class="bx bxs-video"></i></a>
<a href="/Projects/Backend/Online_Shopping_System.html" title="Project Details"><i
class="bx bx-link"></i></a>
</div>
</div>
<br>
<h5
style="
text-align: center; line-height: 18px; font-size: 18px; font-weight: 600; text-transform: uppercase; font-family: Poppins, sans-serif; color: #050d18; margin-bottom: 10px">
ONLINE SHOPPING APPLICATION</h5>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="/assets/img/Portfolio/Bus Reservation System/Bus_Reservation_System.jpg" class="img-fluid"
alt="" />
<div class="portfolio-links">
<a href="/assets/img/Portfolio/Bus Reservation System/ER_Diagram.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox"><i class="bx bx-image"></i></a>
<a href="/assets/img/Portfolio/Bus Reservation System/Bus_Reservation_System.jpg"
data-gallery="portfolioGallery" class="portfolio-lightbox" title=""><i class="bx bxs-video">
</i></a>
<a href="/Projects/Backend/Bus_Reservation_System.html" title="Project Details"><i
class="bx bx-link"></i></a>
</div>
</div>
<br>
<h5
style="
text-align: center; line-height: 18px; font-size: 18px; font-weight: 600; text-transform: uppercase; font-family: Poppins, sans-serif; color: #050d18; margin-bottom: 10px">
BUS TICKET RESERVATION APPLICATION</h5>
</div>
<!-- <div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img
src="assets/img/portfolio/portfolio-2.jpg"
class="img-fluid"
alt=""
/>
<div class="portfolio-links">
<a
href="assets/img/portfolio/portfolio-2.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox"
title="Web 3"
><i class="bx bx-plus"></i
></a>
<a href="portfolio-details.html" title="More Details"
><i class="bx bx-link"></i
></a>
</div>
</div>
</div> -->
<!-- <div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img
src="assets/img/portfolio/portfolio-4.jpg"
class="img-fluid"
alt=""
/>
<div class="portfolio-links">
<a
href="assets/img/portfolio/portfolio-4.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox"
title="Card 2"
><i class="bx bx-plus"></i
></a>
<a href="portfolio-details.html" title="More Details"
><i class="bx bx-link"></i
></a>
</div>
</div>
</div> -->
</div>
</div>
</section>
<!-- End Portfolio Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services" data-aos="fade-up">
<div class="container">
<div class="section-title">
<h2>Technology Stack</h2>
<h4 style="color: #173b6c; font-weight: 800; text-align: center;">TOOLS & TECHNOLOGIES I WORK WITH</h4>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 icon-box d-flex justify-content-center" data-aos="fade-up" data-aos-delay="0">
<div class="icon"></i> <img src="/assets/img/Skills/Java.svg" alt="">
</div>
</div>
<div class="col-lg-4 col-md-6 icon-box d-flex justify-content-center" data-aos="fade-up" data-aos-delay="0">
<div class="icon"></i> <img src="/assets/img/Skills/Jenkins.svg" alt="">
</div>
</div>
<div class="col-lg-4 col-md-6 icon-box d-flex justify-content-center" data-aos="fade-up" data-aos-delay="0">
<div class="icon"></i> <img src="/assets/img/Skills/Tomcat.svg" alt="">
</div>
</div>
<div class="col-lg-4 col-md-6 icon-box d-flex justify-content-center" data-aos="fade-up" data-aos-delay="0">
<div class="icon"></i> <img src="/assets/img/Skills/Typescript.svg" alt="">
</div>
</div>
<div class="col-lg-4 col-md-6 icon-box d-flex justify-content-center" data-aos="fade-up" data-aos-delay="0">
<div class="icon"></i> <img src="/assets/img/Skills/Git.svg" alt="">
</div>
</div>
<div class="col-lg-4 col-md-6 icon-box d-flex justify-content-center" data-aos="fade-up" data-aos-delay="0">
<div class="icon"></i> <img src="/assets/img/Skills/Elasticsearch.svg" alt="">
</div>
</div>
<div class="col-lg-4 col-md-6 icon-box d-flex justify-content-center" data-aos="fade-up" data-aos-delay="0">
<div class="icon"></i> <img src="/assets/img/Skills/BitBucket.svg" alt="">
</div>
</div>
<div class="col-lg-4 col-md-6 icon-box d-flex justify-content-center" data-aos="fade-up" data-aos-delay="0">
<div class="icon"></i> <img src="/assets/img/Skills/Angular.svg" alt="">
</div>
</div>
<div class="col-lg-4 col-md-6 icon-box d-flex justify-content-center" data-aos="fade-up" data-aos-delay="50">
<div class="icon"></i> <img src="/assets/img/Skills/HTML.svg" alt=""></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="100">
<div class="icon"><img src="/assets/img/Skills/CSS.svg" alt=""></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="150">
<div class="icon"><img src="/assets/img/Skills/Bootstrap.svg" alt=""></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="200">
<div class="icon"><img src="/assets/img/Skills/Tailwind.svg" alt=""></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="250">
<div class="icon"><img src="/assets/img/Skills/JS.svg" alt=""></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><img src="/assets/img/Skills/Sprintools.svg" alt=""></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="350">
<div class="icon"><img src="/assets/img/Skills/Hibernate.svg" alt=""></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="350">
<div class="icon"><img src="/assets/img/Skills/Maven.svg" alt=""></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="350">
<div class="icon"><img src="/assets/img/Skills/AWS.svg" alt=""></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="400">
<div class="icon"><img src="/assets/img/Skills/MySql.svg" alt=""></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="450">
<div class="icon"><img class="rdbms" src="/assets/img/Skills/RDBMS.png" alt=""></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="500">
<div class="icon"><img src="/assets/img/Skills/Flutter.svg" alt="Flutter"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="550">
<div class="icon"><img src="/assets/img/Skills/Docker.svg" alt="Docker"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="600">
<div class="icon"><img src="/assets/img/Skills/Redis.svg" alt="Redis"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="650">
<div class="icon"><img src="/assets/img/Skills/K6.svg" alt="K6"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="700">
<div class="icon"><img src="/assets/img/Skills/GITHUB.svg" alt="GitHub"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="750">
<div class="icon"><img src="/assets/img/Skills/React.svg" alt="React"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="800">
<div class="icon"><img src="/assets/img/Skills/Kafka.svg" alt="Kafka"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="850">
<div class="icon"><img src="/assets/img/Skills/PostgreSQL.svg" alt="PostgreSQL"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="900">
<div class="icon"><img src="/assets/img/Skills/MSSql.svg" alt="MS SQL Server"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="950">
<div class="icon"><img src="/assets/img/Skills/Postman.svg" alt="Postman"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="1000">
<div class="icon"><img src="/assets/img/Skills/Jira.svg" alt="JIRA"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="1050">
<div class="icon"><img src="/assets/img/Skills/Prometheus.svg" alt="Prometheus"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="1100">
<div class="icon"><img src="/assets/img/Skills/Grafana.svg" alt="Grafana"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="1150">
<div class="icon"><img src="/assets/img/Skills/Swagger.svg" alt="Swagger"></i></div>
</div>
<div class="col-lg-4 col-md-6 d-flex justify-content-center icon-box" data-aos="fade-up" data-aos-delay="1200">
<div class="icon"><img src="/assets/img/Skills/NewRelic.svg" alt="New Relic"></i></div>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Contact</h2>
</div>
<div class="row">
<div class="col-lg-5 d-flex align-items-stretch" data-aos="fade-right">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>Mumbai, Maharashtra, India</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<a
href="https://mail.google.com/mail/u/0/#inbox?compose=CllgCJNtfNCjRjbHKvRPJLKkgWxMqWKWZGFvmgKkLVggLJgDgMVwzGfgCkCzvXxJZfzNdDnXrKg">
<p>tejasmedade@gmail.com</p>
</a>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<a href="tel: 9307710594">
<p> +91 9307710594</p>
</a>
</div>
<iframe class="map"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d55284.3155947027!2d73.19018827461629!3d19.19527087793618!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7938359bbd3a5%3A0x185ca7bca88f0c9!2sAmbernath%2C%20Maharashtra!5e0!3m2!1sen!2sin!4v1663403556646!5m2!1sen!2sin"
width="600" height="450" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"
frameborder="0" style="border: 0; width: 100%; height: 290px" allowfullscreen></iframe>
</div>
</div>
<div class="col-lg-7 mt-5 mt-lg-0 d-flex align-items-stretch" data-aos="fade-left">
<form action="https://formspree.io/f/xdojvpge" method="post" role="form" class="php-email-form">
<div class="row">
<div class="form-group col-md-6">
<label for="name">Your Name</label>
<input type="text" name="name" class="form-control" id="name" required />
</div>
<div class="form-group col-md-6">
<label for="name">Your Email</label>
<input type="email" class="form-control" name="email" id="email" required />
</div>
</div>
<div class="form-group">
<label for="name">Subject</label>
<input type="text" class="form-control" name="subject" id="subject" required />
</div>
<div class="form-group">
<label for="name">Contact</label>
<input type="tel" class="form-control" name="contact" id="contact" required />
</div>
<div class="form-group">
<label for="name">Message</label>
<textarea class="form-control" name="message" rows="15" id="message" required></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">
Your message has been sent. Thank you!
</div>
</div>
<div class="text-center">
<button type="submit">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- End Contact Section -->
</main>
<!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer" data-aos="fade-right">
<div class="container">
<div class="copyright">
© 2026 <strong><span>Tejas Medade</span></strong>. All Rights Reserved.
</div>
<div class="credits">
Designed & Developed by <a href="#hero">Tejas Medade</a>
</div>
</div>
</footer>
<!-- End Footer -->