-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1191 lines (1149 loc) · 52.2 KB
/
index.html
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" />
<title>Sharadhi Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- favicon -->
<link rel="shortcut icon" href="images/job/favicon.png" />
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<!-- Icons -->
<link
href="css/materialdesignicons.min.css"
rel="stylesheet"
type="text/css"
/>
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v2.1.9/css/unicons.css"
/>
<!-- Slider -->
<link rel="stylesheet" href="css/owl.carousel.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<!-- Magnific -->
<link href="css/magnific-popup.css" rel="stylesheet" type="text/css" />
<!-- Main Css -->
<link
href="css/style.css"
rel="stylesheet"
type="text/css"
id="theme-opt"
/>
<link href="css/colors/default.css" rel="stylesheet" id="color-opt" />
</head>
<body>
<!-- Navbar starts -->
<header id="topnav" class="defaultscroll sticky bg-light">
<div class="container">
<div class="text-primary">
<a class="logo text-primary" href=""> SHARADHI S S </a>
</div>
<div class="menu-extras">
<div class="menu-item">
<!-- Mobile menu toggle-->
<a class="navbar-toggle">
<div class="lines">
<span></span>
<span></span>
<span></span>
</div>
</a>
<!-- End mobile menu toggle-->
</div>
</div>
<!-- Navigation Menu-->
<div id="navigation">
<ul class="navigation-menu">
<li class="has-submenu">
<div
class="col-lg-2 col-md-2 col-6 text-center py-4 font-weight-bold"
>
<a href="#Education" class="text-dark ml-2 mouse-down"
>Education</a
>
</div>
</li>
<li class="has-submenu">
<div
class="col-lg-2 col-md-2 col-6 text-center py-4 font-weight-bold"
>
<a href="#Skills" class="text-dark ml-2 mouse-down">Skills</a>
</div>
</li>
<li class="has-submenu">
<div
class="col-lg-2 col-md-2 col-6 text-center py-4 font-weight-bold"
>
<a href="#Experience" class="text-dark ml-2 mouse-down"
>Experience</a
>
</div>
</li>
<li class="has-submenu">
<div
class="col-lg-2 col-md-2 col-6 text-center py-4 font-weight-bold"
>
<a href="#Certificates" class="text-dark ml-2 mouse-down"
>Certificates</a
>
</div>
</li>
<li class="has-submenu">
<div
class="col-lg-2 col-md-2 col-6 text-center py-4 font-weight-bold"
>
<a href="#Projects" class="text-dark ml-2 mouse-down"
>Projects</a
>
</div>
</li>
<li class="has-submenu">
<div
class="col-lg-2 col-md-2 col-6 text-center py-4 font-weight-bold"
>
<a href="#Blogs" class="text-dark ml-2 mouse-down">Blogs</a>
</div>
</li>
</ul>
</div>
<!--end navigation-->
</div>
<!--end container-->
</header>
<!--end header-->
<!-- Navbar End -->
<!-- Hero Start -->
<section
class="bg-profile d-table w-100 bg-primary"
style="background: url('images/account/bg.png') center center"
>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="card public-profile border-0 rounded shadow">
<div class="card-body">
<div class="row align-items-center">
<div class="col-lg-2 col-md-3 text-md-left text-center">
<img
src="images/portfolio.jpg"
class="avatar avatar-large rounded-circle shadow d-block mx-auto"
alt=""
/>
</div>
<!--end col-->
<div class="col-lg-10 col-md-9">
<div class="row align-items-end">
<div
class="col-md-7 text-md-left text-center mt-4 mt-sm-0"
>
<!-- Social Media starts -->
<div class="row align-items-end">
<div class="col-sm-6">
<div class="text-sm-left">
<h3 class="title mb-0">Sharadhi S S</h3>
</div>
</div>
<!--end col-->
<div class="col-sm-6 mt-4 mt-sm-0 pt-2 pt-sm-0">
<ul
class="list-unstyled text-md-right social-icon social mb-0"
>
<li class="list-inline-item mb-0">
<a
href="https://www.linkedin.com/in/sharadhiss/"
class="rounded text text-dark"
target="_blank"
title="Linkedin"
><i
data-feather="linkedin"
class="fea icon-sm fea-social"
></i
></a>
</li>
<li class="list-inline-item mb-0">
<a
href="https://github.com/sharadhirao"
class="rounded text-dark"
target="_blank"
title="GitHub"
><i
data-feather="github"
class="fea icon-sm fea-social"
></i
></a>
</li>
<li class="list-inline-item mb-0">
<a
href="https://medium.com/@raosharadhi11"
class="rounded text-dark"
target="_blank"
title="Medium"
>
<img
src="images/medium.png"
class="fea icon-sm mr-2"
alt="medium"
/>
</a>
</li>
<li class="list-inline-item">
<a
href="images/Sharadhi_S_S_Resume.pdf"
class="rounded text-dark"
target="”_blank"
title="Resume"
><i
data-feather="book"
class="fea icon-sm fea-social"
></i>
</a>
</li>
</ul>
<!--end icon-->
</div>
<!--end col-->
</div>
<!--end row-->
<!-- Social media ends -->
<!-- EMAIL Starts -->
<h6 class="text-primary mb-0">
Email :
<a href="javascript:void(0)" class="text-dark"
>
</h6>
<!-- Email Ends -->
<!-- Location Starts -->
<h6 class="text-primary mb-0">
Location :
<a href="javascript:void(0)" class="text-dark"
>Bengaluru, India</a
>
</h6>
<!-- Location Ends -->
<!-- Mobile Starts -->
<h6 class="text-primary mb-0">
Mobile:
<a href="javascript:void(0)" class="text-dark"
>7760514092 / 9113233764</a
>
</h6>
<!-- Mobile Ends -->
<!--end col-->
<!-- Social Media Link Ends -->
</div>
<!--end col-->
</div>
<!--end row-->
</div>
<!--end col-->
</div>
<!--end row-->
</div>
</div>
</div>
<!--end col-->
</div>
<!--end row-->
</div>
<!--ed container-->
</section>
<!--end section-->
<!-- Hero End -->
<!-- Profile Start -->
<section class="section">
<div class="container mt-lg-3">
<div class="row">
<!-- Education Section Starts -->
<div class="col-lg-12 col-12" id="Education">
<div class="pb-4" style="margin-top: 25px">
<div class="row">
<div class="col-md-12">
<div class="row justify-content-center">
<div class="col-12">
<div class="section-title text-center">
<h4 class="title mb-4">Academic Background</h4>
</div>
</div>
<!--end col-->
</div>
<!--end row-->
<!-- JNNCE Starts -->
<div
class="media key-feature align-items-center p-4 rounded shadow mt-4"
>
<div class="media-body content ml-3">
<h4 class="title mb-0 text-primary">
Jawaharlal Nehru National College of Engineering,
Shimoga
</h4>
<p class="text-dark mb-0">
Bachelors Of Engineerin in Computer Science
<small class="text-muted justify-content-between"
>(August 2021)</small
>
</p>
<p class="text-dark mb-0 text-info">CGPA: 8.91/10</p>
</div>
</div>
<!-- JNNCE Ends -->
<!-- SDM Starts -->
<div
class="media key-feature align-items-center p-3 rounded shadow mt-4"
>
<div class="media-body content ml-3">
<h4 class="title mb-0 text-primary">
SDM Pre-University College, Ujire
</h4>
<p class="text-dark mb-0">
PCMC
<small class="text-muted justify-content-between"
>(May 2017)</small
>
</p>
<p class="text-dark mb-0 text-info">Percentage: 93/100</p>
</div>
</div>
<!-- SDM Ends -->
</div>
<!--end col-->
</div>
<!--end process box-->
</div>
</div>
<!-- Education Section Ends -->
<!-- Skill Section Starts -->
<div class="col-lg-12 col-12" id="Skills">
<div class="pb-4" style="margin-top: 25px">
<div class="pb-4">
<div class="row">
<div class="col-md-12">
<div class="row justify-content-center">
<div class="col-12">
<div class="section-title text-center">
<h4 class="mb-4 title">Technical Proficiency</h4>
</div>
</div>
<!--end col-->
</div>
<!--end row-->
<div class="col-lg-12 col-12 sidebar rounded shadow">
<div class="pb-4">
<div class="progress-box">
<div class="media align-items-center mt-3">
<div class="media-body">
<h6 class="text-primary mb-0 mt-4">
Programming Languages:
<a href="javascript:void(0)" class="text-dark"
>Python, Java, HTML</a
>
</h6>
</div>
</div>
</div>
<!--end process box-->
<div class="progress-box mt-4">
<div class="media align-items-center mt-3">
<div class="media-body">
<h6 class="text-primary mb-0">
Frameworks, Libraries & Tools:
<a href="javascript:void(0)" class="text-dark"
>Adobe XD, Figma, Webflow</a
>
</h6>
</div>
</div>
</div>
<!--end process box-->
<div class="progress-box mt-4">
<div class="media align-items-center mt-3">
<div class="media-body">
<h6 class="text-primary mb-0">
DevOps:
<a href="javascript:void(0)" class="text-dark"
>Networking, Open Policy Agent, Docker,
Jenkins, GitHub Actions, Azure DevOps, ArgoCD,
Argo Workflows, Terraform, Ansible,
Kubernetes,SLSA (Sigstore, Rekor, Cosign),
Helm, Kustomize</a
>
</h6>
</div>
</div>
</div>
<!--end process box-->
<div class="progress-box mt-4">
<div class="media align-items-center mt-3">
<div class="media-body">
<h6 class="text-primary mb-0">
Cloud Computing:
<a href="javascript:void(0)" class="text-dark"
>AWS, Azure, GCP (Certified)</a
>
</h6>
</div>
</div>
</div>
<!--end process box-->
<div class="progress-box mt-4">
<div class="media align-items-center mt-3">
<div class="media-body">
<h6 class="text-primary mb-0">
Scripting & Debugging:
<a href="javascript:void(0)" class="text-dark"
>UNIX, Linux Shell scripting</a
>
</h6>
</div>
</div>
</div>
<!--end process box-->
<div class="progress-box mt-4">
<div class="media align-items-center mt-3">
<div class="media-body">
<h6 class="text-primary mb-0">
Platforms & Architecture:
<a href="javascript:void(0)" class="text-dark"
>Windows, UNIX, Linux</a
>
</h6>
</div>
</div>
</div>
<!--end process box-->
<div class="progress-box mt-4">
<div class="media align-items-center mt-3">
<div class="media-body">
<h6 class="text-primary mb-0">
Databases:
<a href="javascript:void(0)" class="text-dark"
>MySQL, Oracle</a
>
</h6>
</div>
</div>
</div>
<!--end process box-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Skill Section Ends-->
<!-- Experience Section Starts -->
<div class="col-lg-12 col-12" id="Experience">
<div class="pb-4" style="margin-top: 25px">
<div class="row">
<div class="col-md-12">
<div class="pb-4">
<!-- Experience Start -->
<div class="row justify-content-center">
<div class="col-12">
<div class="section-title text-center">
<h4 class="title mb-4">Professional Experience</h4>
</div>
</div>
<!--end col-->
</div>
<!--end row-->
<div class="row">
<!-- Hashedin Experience -->
<div class="col-lg-12 mt-4 pt-2">
<div class="media">
<div
class="company-logo text-muted h6 mr-3 text-center"
>
<img
src="images/job/Xperi.jpg"
class="avatar avatar-md-sm mx-auto d-block mb-2"
alt=""
/>
2021 - Present
</div>
<div class="media-body">
<h5
class="title font-weight-bold mb-0 text-primary"
>
Engineer - DevOps
</h5>
<small class="text-black company-university"
>Xperi (Tivo), Bangalore
</small>
<p class="text-muted font-weight-bold mt-2 mb-0">
Led the management and optimization of a broad
range of AWS services (IAM, S3, ASG, RDS, ECS,
CloudWatch, Lambda, etc.) and orchestrated key
migrations, including Debian upgrades, to ensure
system reliability, security, and performance.
Played a critical role in building the
infrastructure foundation for a SaaS platform
serving over 10M users annually. Designed and
implemented Ansible roles for AWS resource
provisioning, application deployment, and
monitoring tools (Prometheus, Grafana, and Alert
Manager), ensuring high availability through
automation and scripting across multiple
environments. Led the migration of Jenkins to AWS
using Terraform, improving infrastructure
scalability and maintainability. Created a proof
of concept (POC) using Packer to assist the
development team in building Amazon Machine Images
(AMIs), which is now widely adopted within the
team. Implemented Python and shell scripts to
automate daily tasks, increasing operational
efficiency and reducing manual workload.
Additionally, designed and executed a cloud cost
optimization strategy with AWS Cost Explorer and
Trusted Advisor, reducing monthly cloud
expenditures by 25%.
</p>
</div>
</div>
</div>
<!--end col-->
<!-- Hashedin Experience -->
<div class="col-lg-12 mt-4 pt-2">
<div class="media">
<div
class="company-logo text-muted h6 mr-3 text-center"
>
<img
src="images/job/hashedin.png"
class="avatar avatar-md-sm mx-auto d-block mb-2"
alt=""
/>
2021 - Present
</div>
<div class="media-body">
<h5
class="title font-weight-bold mb-0 text-primary"
>
DevOps Engineer 1
</h5>
<small class="text-black company-university"
>Hashedin By Deloitte, Bangalore
</small>
<p class="text-muted font-weight-bold mt-2 mb-0">
Implemented an efficient Jenkins pipeline for
secure application containerization and deployment
to Kubernetes, utilizing SonarQube, Fortify, Aqua
Trivy, and Terrascan for robust cloud-agnostic
solutions. Led the development of a reusable
Jenkins Shared Library, reducing manual effort by
70% and enhancing project-wide deployment
accuracy. Successfully deployed serverless apps on
GCP, collaborated with developers using Docker,
GCR, Cloud Storage, Cloud Run, and GitHub Actions,
while contributing to Anthos integration and
orchestrating a resilient DevSecOps pipeline. Led
the transition to ArgoCD, managed user
authentication with Okta, and demonstrated
expertise in GitOps principles, mentoring teams,
and architecting HA/DR Kubernetes solutions.
</p>
</div>
</div>
</div>
<!--end col-->
<!-- Paymatrix Experience -->
<div class="col-lg-12 mt-4 pt-2">
<div class="media">
<div
class="company-logo text-muted h6 mr-3 text-center"
>
<img
src="images/job/paymatrix_desktop_logo.svg"
class="avatar avatar-md-sm mx-auto d-block mb-2"
alt=""
/>Jun - Oct 2020
</div>
<div class="media-body">
<h5
class="title mb-0 text-primary font-weight-bold"
>
UI/UX Developer Intern
</h5>
<small class="text-dark company-university"
>Paymatrix, Hyderabad</small
>
<p class="text-muted font-weight-bold mt-2 mb-0">
Designed the Front-end page for the Paymatrix
webpage using Adobe XD and Figma. And developed
Front End Applications for paymatrix V 3.0 by
learning technologies like HTML, CSS3, Bootstrap4,
JavaScript. Built admin module and Landing page of
the company.
</p>
</div>
</div>
</div>
<!--end col-->
<!-- TCS IoN Experience -->
<div class="col-lg-12 mt-4 pt-2">
<div class="media">
<div
class="company-logo text-muted h6 mr-3 text-center"
>
<img
src="images/job/tcs.png"
class="avatar avatar-md-sm mx-auto d-block mb-2"
alt=""
/>May - Jun 2020
</div>
<div class="media-body">
<h5
class="title mb-0 text-primary font-weight-bold"
>
ML Intern
</h5>
<small class="text-dark company-university"
>TCS iON, Bangalore</small
>
<p class="text-muted font-weight-bold mt-2 mb-0">
Worked with industry experts to develop a project
on Sentiment analysis of textual comments and
feedback by implementing the ML/DL concepts.
</p>
</div>
</div>
</div>
<!--end col-->
</div>
<!--end row-->
<!-- Experience End -->
</div>
</div>
</div>
</div>
</div>
<!-- Experience Section Starts -->
<!-- Project Section Starts -->
<div class="col-lg-12 col-12" id="Projects">
<div class="pb-4" style="margin-top: 25px">
<div class="row">
<div class="col-md-12">
<div class="pb-4">
<div class="row">
<div class="col-md-12 mt-4 pt-2 pt-sm-0">
<div class="row justify-content-center">
<div class="col-12">
<div class="section-title text-center">
<h4 class="title mb-4">Notable Projects</h4>
</div>
</div>
<!--end col-->
</div>
<!--end row-->
<!-- Water Quality Project Starts -->
<div
class="media key-feature align-items-center p-3 rounded shadow mt-4"
>
<div class="media-body content ml-3">
<h4 class="title mb-0">
An IoT based Water Quality Measurement System
<a
href="https://github.com/sharadhirao/IoT-water-quality-measurement"
target="_blank"
class="text"
><i
data-feather="link"
class="fea icon-sm mr-2"
></i
></a>
</h4>
<p class="text-muted mb-0">
Developed a real time water monitoring to monitor
the health of the water with use of sensors, web
application and android application.
</p>
</div>
</div>
<!-- Water Quality Project Ends -->
<!-- Sentiment Analysis Project Starts -->
<div
class="media key-feature align-items-center p-3 rounded shadow mt-4"
>
<div class="media-body content ml-3">
<h4 class="title mb-0">
Sentiment analysis of Textual comments
<a
href="https://github.com/sharadhirao/sentiment-analysis"
target="_blank"
class="text"
><i
data-feather="link"
class="fea icon-sm mr-2"
></i
></a>
</h4>
<p class="text-muted mb-0">
Developed a sentiment analyser which classifies
the given phrases into its emotion. This project
is done under TCS iON.
</p>
</div>
</div>
<!-- Sentiment Analysis Project Ends -->
<!-- Survey Web Project Starts -->
<div
class="media key-feature align-items-center p-3 rounded shadow mt-4"
>
<div class="media-body content ml-3">
<h4 class="title mb-0">
Survey web application
<a
href="https://github.com/sharadhirao/Survey-app-using-Laravel"
target="_blank"
class="text"
><i
data-feather="link"
class="fea icon-sm mr-2"
></i>
</a>
</h4>
<p class="text-muted mb-0">
Developed a Survey application which will ask
questions to users and analyses the answers given
by them. Got hands-on exposure creating CRUD and
APIs using Laravel framework, PHP and MySQL
</p>
</div>
</div>
<!-- Survey Web Project Ends -->
<!-- E-Commerce Website Starts -->
<div
class="media key-feature align-items-center p-3 rounded shadow mt-4"
>
<div class="media-body content ml-3">
<h4 class="title mb-0 text-black">
E-Commerce Website for Home decor
<a
href="https://github.com/sharadhirao/web-home-decor"
target="_blank"
class="text"
><i
data-feather="link"
class="fea icon-sm mr-2"
></i
></a>
</h4>
<p class="text-muted mb-0">
Developed an online shopping website for Home
decor items. The features of this project are user
login, Add/Remove items from cart, placing order
and storing data in Database.
</p>
</div>
</div>
<!-- E-Commerce Website Ends -->
</div>
<!--end col-->
</div>
<!--end row-->
</div>
</div>
</div>
</div>
</div>
<!-- Project Section Ends -->
<!-- Certificate Section Starts -->
<div class="col-lg-12 col-12" id="Certificates">
<div class="pb-4" style="margin-top: 25px">
<div class="pb-4">
<div class="row">
<div class="col-md-12">
<div class="row justify-content-center">
<div class="col-12">
<div class="section-title text-center">
<h5 class="title mb-4">
Achievements and Involvement
</h5>
</div>
</div>
<!--end col-->
</div>
<!--end row-->
<!-- Key Feature Start -->
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div
class="media key-feature align-items-center p-3 rounded shadow"
>
<div class="icon text-center rounded-circle mr-3">
<h4>
<i class="mdi mdi-medal text-primary"></i>
</h4>
</div>
<div class="media-body">
<h4 class="title mb-0">
Completed HackerRank Python and SQL Certificate.
</h4>
</div>
</div>
</div>
<!--end col-->
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div
class="media key-feature align-items-center p-3 rounded shadow"
>
<div class="icon text-center rounded-circle mr-3">
<h4>
<i class="mdi mdi-medal text-primary"></i>
</h4>
</div>
<div class="media-body">
<h4 class="title mb-0">
Certified AZ-900 Azure Fundamentals by Microsoft
</h4>
</div>
</div>
</div>
<!--end col-->
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div
class="media key-feature align-items-center p-3 rounded shadow"
>
<div class="icon text-center rounded-circle mr-3">
<h4>
<i class="mdi mdi-medal text-primary"></i>
</h4>
</div>
<div class="media-body">
<h4 class="title mb-0">
Certified GCP Associate Cloud Engineer
</h4>
</div>
</div>
</div>
<!--end col-->
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div
class="media key-feature align-items-center p-3 rounded shadow"
>
<div class="icon text-center rounded-circle mr-3">
<h4>
<i class="mdi mdi-medal text-primary"></i>
</h4>
</div>
<div class="media-body">
<h4 class="title mb-0">
Certified GCP Professional Cloud DevOps
Engineer.
</h4>
</div>
</div>
</div>
<!--end col-->
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div
class="media key-feature align-items-center p-3 rounded shadow"
>
<div class="icon text-center rounded-circle mr-3">
<h4>
<i class="mdi mdi-medal text-primary"></i>
</h4>
</div>
<div class="media-body">
<h4 class="title mb-0">
Certified in Terraform Associate Exam
</h4>
</div>
</div>
</div>
<!--end col-->
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div
class="media key-feature align-items-center p-3 rounded shadow"
>
<div class="icon text-center rounded-circle mr-3">
<h4>
<i class="mdi mdi-medal text-primary"></i>
</h4>
</div>
<div class="media-body">
<h4 class="title mb-0">
Certified Kubernetes Administrator (CKA)
</h4>
</div>
</div>
</div>
<!--end col-->
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div
class="media key-feature align-items-center p-3 rounded shadow"
>
<div class="icon text-center rounded-circle mr-3">
<h4>
<i
class="mdi mdi-trophy-award text-primary"
></i>
</h4>
</div>
<div class="media-body">
<h4 class="title mb-0">
Awarded with Rising Star Spot Award at Hashedin
</h4>
</div>
</div>
</div>
<!--end col-->
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div
class="media key-feature align-items-center p-3 rounded shadow"
>
<div class="icon text-center rounded-circle mr-3">
<h4>
<i
class="mdi mdi-trophy-award text-primary"
></i>
</h4>
</div>
<div class="media-body">
<h4 class="title mb-0">
Awarded with Excellence Award at Hashedin
</h4>
</div>
</div>
</div>
<!--end col-->
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div
class="media key-feature align-items-center p-3 rounded shadow"
>
<div class="icon text-center rounded-circle mr-3">
<h4>
<i
class="mdi mdi-trophy-award text-primary"
></i>
</h4>
</div>
<div class="media-body">
<h4 class="title mb-0">
Awarded with Top Impactor at Hashedin
</h4>
</div>
</div>
</div>
<!--end col-->
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div
class="media key-feature align-items-center p-3 rounded shadow"
>
<div class="icon text-center rounded-circle mr-3">
<h4>
<i class="mdi mdi-star-box text-primary"></i>
</h4>
</div>
<div class="media-body">
<h4 class="title mb-0">
Won prizes in intercollege dance competitions
</h4>
</div>
</div>
</div>
<!--end col-->
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div
class="media key-feature align-items-center p-3 rounded shadow"
>
<div class="icon text-center rounded-circle mr-3">
<h4>
<i class="mdi mdi-star-box text-primary"></i>
</h4>
</div>
<div class="media-body">
<h4 class="title mb-0">
Participated in the National Level IT Quiz
</h4>
</div>
</div>
</div>