-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1183 lines (1052 loc) · 32.5 KB
/
Copy pathindex.html
File metadata and controls
1183 lines (1052 loc) · 32.5 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.0" />
<title>Dheeraj Sree Sandupatla | Portfolio</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet"/>
<!-- Icons (for GitHub / LinkedIn / Gmail) -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Typed.js for typing animation -->
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<!-- Lottie for JSON animations -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.7.6/lottie.min.js"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
/* DARK THEME */
--bg: #020617;
--bg-elevated: rgba(15, 23, 42, 0.96);
--card: #020617;
--border: #1f2937;
--text-main: #e2e8f0;
--text-muted: #94a3b8;
--accent: #38bdf8;
--accent-soft: rgba(56,189,248,0.35);
--accent-strong: #818cf8;
--shadow-strong: rgba(15,23,42,0.9);
}
body.light-theme {
--bg: #f5f5ff;
--bg-elevated: #ffffff;
--card: #f3f4ff;
--border: #d4d4ff;
--text-main: #0f172a;
--text-muted: #4b5563;
--accent: #2563eb;
--accent-soft: rgba(37,99,235,0.18);
--accent-strong: #9333ea;
--shadow-strong: rgba(148,163,184,0.5);
}
body {
font-family: 'Poppins', sans-serif;
background: var(--bg);
color: var(--text-main);
overflow-x: hidden;
transition: background 0.3s, color 0.3s;
}
/* PARTICLE BACKGROUND */
#particles {
position: fixed;
width: 100%;
height: 100%;
inset: 0;
z-index: -2;
}
/* FLOATING SHAPES */
.floating-shape {
position: fixed;
border-radius: 999px;
background: radial-gradient(circle, var(--accent-soft), transparent 70%);
opacity: 0.5;
filter: blur(1px);
z-index: -1;
animation: float 18s ease-in-out infinite alternate;
}
.floating-shape.shape-1 {
width: 260px;
height: 260px;
top: 8%;
left: 5%;
animation-delay: 0s;
}
.floating-shape.shape-2 {
width: 320px;
height: 320px;
bottom: 2%;
right: 10%;
animation-delay: 4s;
}
.floating-shape.shape-3 {
width: 220px;
height: 220px;
bottom: 40%;
left: 35%;
animation-delay: 8s;
}
@keyframes float {
0% { transform: translate3d(0,0,0); }
50% { transform: translate3d(20px,-30px,0); }
100% { transform: translate3d(-20px,20px,0); }
}
/* NAVBAR */
nav {
width: 100%;
padding: 12px 48px;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
z-index: 10;
background: rgba(15, 23, 42, 0.8);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
transition: background 0.3s, border-color 0.3s;
}
body.light-theme nav {
background: rgba(248,250,252,0.9);
}
.logo {
font-weight: 700;
letter-spacing: 0.05em;
color: var(--accent);
font-size: 1rem;
text-transform: uppercase;
}
nav .nav-links a {
color: var(--text-main);
text-decoration: none;
margin-left: 24px;
font-size: 0.95rem;
font-weight: 500;
transition: 0.3s;
}
nav .nav-links a:hover {
color: var(--accent);
}
.nav-right {
display: flex;
align-items: center;
gap: 10px;
}
.theme-toggle {
padding: 6px 14px;
border-radius: 999px;
border: 1px solid var(--border);
background: rgba(15,23,42,0.7);
color: var(--text-main);
font-size: 0.8rem;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 6px;
transition: 0.3s;
}
body.light-theme .theme-toggle {
background: rgba(255,255,255,0.9);
}
.theme-toggle:hover {
border-color: var(--accent);
transform: translateY(-1px);
}
/* HERO SECTION */
.hero {
padding: 150px 24px 110px;
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
gap: 40px;
align-items: center;
}
.hero-text h1 {
font-size: 3rem;
line-height: 1.05;
color: var(--text-main);
margin-bottom: 10px;
}
.hero-text h1 span {
color: var(--accent);
}
.hero-text h2 {
font-size: 1.2rem;
color: var(--accent);
min-height: 1.6em;
margin-bottom: 16px;
}
.hero-text p {
font-size: 0.98rem;
color: var(--text-muted);
max-width: 520px;
margin-bottom: 24px;
}
.hero-actions {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 16px;
}
.btn-primary, .btn-ghost {
padding: 10px 20px;
border-radius: 999px;
font-size: 0.95rem;
border: 1px solid transparent;
cursor: pointer;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 6px;
transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
transform-style: preserve-3d;
}
.btn-primary {
background: linear-gradient(135deg, var(--accent), var(--accent-strong));
color: #020617;
font-weight: 600;
box-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
}
.btn-primary:hover {
box-shadow: 0 0 35px rgba(56, 189, 248, 0.7);
transform: translateY(-2px) rotate3d(1, -1, 0, 8deg);
}
.hero-socials {
display: flex;
gap: 14px;
}
.icon-btn {
width: 42px;
height: 42px;
border-radius: 14px;
border: 1px solid var(--accent);
background: radial-gradient(circle at top left, var(--accent-soft), var(--card));
color: var(--accent);
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
font-size: 1.2rem;
box-shadow: 0 0 18px rgba(56,189,248,0.45);
transform-style: preserve-3d;
transition: transform 0.3s ease, box-shadow 0.3s ease;
animation: icon-float 4s ease-in-out infinite;
}
.icon-btn:nth-child(2) {
animation-delay: 0.3s;
}
.icon-btn:nth-child(3) {
animation-delay: 0.6s;
}
@keyframes icon-float {
0% { transform: translateY(0) rotate3d(1,0,0,0deg); }
50% { transform: translateY(-4px) rotate3d(1,1,0,6deg); }
100% { transform: translateY(0) rotate3d(0,1,0,0deg); }
}
.icon-btn:hover {
transform: translateY(-4px) rotate3d(1,1,0,12deg) scale(1.05);
box-shadow: 0 0 28px rgba(56,189,248,0.8);
}
.hero-lottie {
width: 100%;
max-width: 340px;
height: 340px;
margin: 0 auto;
filter: drop-shadow(0 0 24px rgba(56, 189, 248, 0.5));
transform-style: preserve-3d;
transform: perspective(800px) rotateY(-8deg);
}
/* SECTIONS (scroll reveal) */
section {
width: 90%;
max-width: 1000px;
margin: 32px auto;
padding: 32px;
background: var(--bg-elevated);
border-radius: 20px;
box-shadow: 0 22px 60px var(--shadow-strong);
border: 1px solid var(--border);
transform: translateY(50px);
opacity: 0;
transition: 0.8s ease-out;
backdrop-filter: blur(10px);
}
section.visible {
transform: translateY(0);
opacity: 1;
}
h3 {
font-size: 1.8rem;
margin-bottom: 16px;
color: var(--accent);
}
section p {
color: var(--text-muted);
font-size: 0.97rem;
}
/* SKILLS MARQUEE */
.skills-scroll {
overflow: hidden;
white-space: nowrap;
margin-top: 16px;
padding: 10px 0;
position: relative;
}
.skills-scroll::before,
.skills-scroll::after {
content: "";
position: absolute;
top: 0;
width: 80px;
height: 100%;
z-index: 2;
pointer-events: none;
}
.skills-scroll::before {
left: 0;
background: linear-gradient(to right, var(--bg-elevated), transparent);
}
.skills-scroll::after {
right: 0;
background: linear-gradient(to left, var(--bg-elevated), transparent);
}
.skills-track {
display: inline-block;
animation: scroll 18s linear infinite;
}
@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.skill-item {
display: inline-flex;
align-items: center;
margin-right: 50px;
font-size: 0.98rem;
color: var(--text-main);
}
.skill-item img {
width: 32px;
height: 32px;
object-fit: contain;
margin-right: 10px;
filter: drop-shadow(0 0 8px rgba(56,189,248,0.5));
}
/* COMPANY / COLLEGE LOGO BOXES */
.logo-box {
width: 34px;
height: 34px;
border-radius: 10px;
background: #0f172a;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 0.7rem;
font-weight: 700;
color: #f9fafb;
margin-right: 10px;
box-shadow: 0 0 14px rgba(15,23,42,0.8);
flex-shrink: 0;
}
.logo-gm {
background: linear-gradient(135deg, #0046fe, #00a3ff);
}
.logo-vedanta {
background: linear-gradient(135deg, #007e3a, #00a0e3);
}
.logo-uconn {
background: linear-gradient(135deg, #0b1740, #204c8c);
}
.logo-vnit {
background: linear-gradient(135deg, #f97316, #ea580c);
}
/* EXPERIENCE TIMELINE */
.timeline {
position: relative;
margin-top: 10px;
padding-left: 18px;
}
.timeline::before {
content: "";
position: absolute;
left: 14px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(to bottom, var(--accent), transparent);
opacity: 0.7;
}
.timeline-item {
position: relative;
padding-left: 22px;
margin-bottom: 24px;
transform: translateX(30px);
opacity: 0;
transition: 0.7s ease-out;
}
.timeline.visible .timeline-item {
transform: translateX(0);
opacity: 1;
}
.timeline-dot {
position: absolute;
left: 6px;
top: 4px;
width: 16px;
height: 16px;
border-radius: 50%;
background: radial-gradient(circle, var(--accent), #0b1120);
box-shadow: 0 0 12px var(--accent-soft);
}
.timeline-header {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
margin-bottom: 4px;
}
.timeline-header-main {
display: flex;
flex-wrap: wrap;
align-items: baseline;
gap: 8px;
}
.timeline-role {
font-weight: 600;
color: var(--text-main);
}
.timeline-company {
font-size: 0.95rem;
color: var(--accent);
}
.timeline-dates {
font-size: 0.85rem;
color: var(--text-muted);
}
.timeline-body {
margin-top: 6px;
color: var(--text-muted);
font-size: 0.94rem;
}
.timeline-body ul {
margin-top: 6px;
margin-left: 18px;
}
.timeline-body li {
margin-bottom: 4px;
}
/* EDUCATION CARDS (animated like Projects) */
.edu-grid {
display: grid;
grid-template-columns: minmax(0, 1fr);
gap: 18px;
margin-top: 8px;
}
.edu-card {
position: relative;
padding: 20px 18px;
border-radius: 16px;
background: radial-gradient(circle at top left, var(--accent-soft), var(--card));
border: 1px solid var(--border);
box-shadow: 0 10px 30px var(--shadow-strong);
transform-style: preserve-3d;
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
overflow: hidden;
}
.edu-card::before {
content: "";
position: absolute;
width: 140px;
height: 140px;
border-radius: 999px;
background: radial-gradient(circle, var(--accent-soft), transparent 60%);
top: -50px;
right: -50px;
opacity: 0.6;
pointer-events: none;
}
.edu-card:hover {
transform: translateY(-6px) rotate3d(1, -1, 0, 10deg);
box-shadow: 0 18px 45px rgba(56,189,248,0.4);
border-color: var(--accent);
}
.edu-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 6px;
}
.edu-title {
font-size: 1rem;
font-weight: 600;
color: var(--text-main);
}
.edu-subtitle {
font-size: 0.9rem;
color: var(--accent);
margin-bottom: 4px;
}
.edu-dates {
font-size: 0.85rem;
color: var(--text-muted);
margin-bottom: 8px;
}
.edu-body {
font-size: 0.9rem;
color: var(--text-muted);
}
.edu-body ul {
margin-top: 6px;
margin-left: 18px;
}
/* PROJECT CARDS */
.projects-grid {
display: grid;
grid-template-columns: minmax(0, 1fr);
gap: 18px;
}
.project-card {
background: radial-gradient(circle at top left, var(--accent-soft), var(--card));
padding: 22px;
border-radius: 16px;
border: 1px solid var(--border);
transition: 0.4s;
transform: translateY(12px);
position: relative;
overflow: hidden;
transform-style: preserve-3d;
}
.project-card::before {
content: "";
position: absolute;
width: 160px;
height: 160px;
border-radius: 999px;
background: radial-gradient(circle, var(--accent-soft), transparent 60%);
top: -60px;
right: -60px;
opacity: 0.7;
pointer-events: none;
}
.project-card:hover {
transform: translateY(-6px) scale(1.01) rotate3d(-1, 1, 0, 8deg);
box-shadow: 0 0 24px rgba(56,189,248,0.65);
border-color: var(--accent);
}
.project-card h4 {
font-size: 1.1rem;
margin-bottom: 6px;
color: var(--text-main);
}
.project-card p {
font-size: 0.92rem;
color: var(--text-muted);
margin-bottom: 8px;
}
.project-tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 6px;
}
.tag {
font-size: 0.75rem;
padding: 3px 8px;
border-radius: 999px;
background: rgba(15, 23, 42, 0.9);
border: 1px solid var(--accent);
color: #bae6fd;
}
body.light-theme .tag {
background: #eef2ff;
color: #1e293b;
}
.project-link {
margin-top: 10px;
display: inline-block;
font-size: 0.85rem;
color: var(--accent);
text-decoration: none;
}
.project-link:hover {
text-decoration: underline;
}
/* FOOTER */
footer {
text-align: center;
padding: 30px;
color: var(--text-muted);
margin-top: 40px;
font-size: 0.85rem;
}
/* RESPONSIVE */
@media (max-width: 900px) {
.hero {
grid-template-columns: minmax(0, 1fr);
text-align: left;
padding-top: 130px;
}
.hero-text h1 {
font-size: 2.3rem;
}
nav {
padding-inline: 20px;
}
nav .nav-links {
display: none; /* simple mobile fallback; can add burger later */
}
}
@media (max-width: 600px) {
section {
padding: 22px;
}
.hero {
padding-inline: 18px;
}
}
</style>
</head>
<body>
<!-- PARTICLE BACKGROUND -->
<canvas id="particles"></canvas>
<!-- FLOATING SHAPES -->
<div class="floating-shape shape-1"></div>
<div class="floating-shape shape-2"></div>
<div class="floating-shape shape-3"></div>
<!-- NAVBAR -->
<nav>
<div class="logo">Dheeraj Sree</div>
<div class="nav-right">
<div class="nav-links">
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#experience">Experience</a>
<a href="#projects">Projects</a>
<a href="#education">Education</a>
</div>
<button class="theme-toggle" id="themeToggle">
<span id="themeIcon">🌙</span>
<span id="themeLabel">Dark</span>
</button>
</div>
</nav>
<!-- HERO SECTION -->
<section class="hero visible">
<div class="hero-text">
<h1><span>Dheeraj</span> Sree<br/>Sandupatla</h1>
<h2><span id="typed"></span></h2>
<p>
Risk Analyst with a background in Business Analytics & Project Management
and Mining Engineering. I build data, cloud, and analytics solutions that
turn portfolio risk into clear, actionable insight.
</p>
<div class="hero-actions">
<a href="#projects" class="btn-primary">View Projects</a>
<div class="hero-socials">
<a
class="icon-btn"
href="https://github.com/dheeraj24797"
target="_blank"
rel="noopener noreferrer"
aria-label="GitHub"
>
<i class="fab fa-github"></i>
</a>
<a
class="icon-btn"
href="https://www.linkedin.com/in/dheeraj-sree-sandupatla/"
target="_blank"
rel="noopener noreferrer"
aria-label="LinkedIn"
>
<i class="fab fa-linkedin-in"></i>
</a>
<a
class="icon-btn"
href="mailto:dheeraj.sree222@gmail.com"
aria-label="Gmail"
>
<i class="fas fa-envelope"></i>
</a>
</div>
</div>
</div>
<div class="hero-lottie" id="lottie-hero"></div>
</section>
<!-- ABOUT -->
<section id="about">
<h3>About Me</h3>
<p>
I’m Dheeraj, a Risk Analyst in Portfolio Forecasting with a unique blend of domain and tech.
I began my career as a Geotechnical Engineer at Vedanta Resources and transitioned into analytics
and risk through my Master’s at the University of Connecticut (Data Science concentration).
Today, I work on data-driven portfolio forecasting, cloud-based analytics, and decision-support
solutions that help financial institutions understand and manage risk with confidence.
</p>
</section>
<!-- SKILLS (infinite scroll line with logos) -->
<section id="skills">
<h3>Skills</h3>
<p>Core tools & technologies I work with:</p>
<div class="skills-scroll">
<div class="skills-track">
<!-- loop 1 -->
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg" alt="Python"/>Python
</div>
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/amazonwebservices/amazonwebservices-original.svg" alt="AWS"/>AWS
</div>
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/docker/docker-original.svg" alt="Docker"/>Docker
</div>
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/kubernetes/kubernetes-plain.svg" alt="Kubernetes"/>Kubernetes
</div>
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/postgresql/postgresql-original.svg" alt="PostgreSQL"/>PostgreSQL
</div>
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-original.svg" alt="Git"/>Git
</div>
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/pandas/pandas-original.svg" alt="Pandas"/>Pandas
</div>
<!-- loop 2 -->
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg" alt="Python"/>Python
</div>
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/amazonwebservices/amazonwebservices-original.svg" alt="AWS"/>AWS
</div>
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/docker/docker-original.svg" alt="Docker"/>Docker
</div>
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/kubernetes/kubernetes-plain.svg" alt="Kubernetes"/>Kubernetes
</div>
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/postgresql/postgresql-original.svg" alt="PostgreSQL"/>PostgreSQL
</div>
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-original.svg" alt="Git"/>Git
</div>
<div class="skill-item">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/pandas/pandas-original.svg" alt="Pandas"/>Pandas
</div>
</div>
</div>
</section>
<!-- EXPERIENCE (Animated timeline with logos) -->
<section id="experience">
<h3>Experience</h3>
<div class="timeline">
<!-- GM Financial -->
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-header">
<div class="logo-box logo-gm">GM</div>
<div class="timeline-header-main">
<span class="timeline-role">Risk Analyst – Portfolio Forecasting</span>
<span class="timeline-company">@ GM Financial</span>
<span class="timeline-dates">Nov 2023 – Present</span>
</div>
</div>
<div class="timeline-body">
<p>
Working in portfolio forecasting and risk analytics, leveraging programming, cloud, and BI tools
to support decision-making across the auto finance portfolio.
</p>
<ul>
<li>Build and maintain analytical solutions to monitor portfolio performance and risk trends.</li>
<li>Collaborate with cross-functional teams to translate business questions into data-driven insights.</li>
<li>Use tools like Python, SQL, and visualization platforms to summarize complex portfolio behavior.</li>
</ul>
</div>
</div>
<!-- Vedanta -->
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-header">
<div class="logo-box logo-vedanta">VR</div>
<div class="timeline-header-main">
<span class="timeline-role">Geotechnical Engineer</span>
<span class="timeline-company">@ Vedanta Resources</span>
<span class="timeline-dates">Jun 2019 – Apr 2021</span>
</div>
</div>
<div class="timeline-body">
<ul>
<li>Optimized support quality and cycle time using Six Sigma techniques, saving ~25 hours/week and generating ~$2M in annual savings, presenting findings to the CEO.</li>
<li>Developed an automated Excel-based training tracking system that achieved 80% compliance within three months by monitoring training records and notifying managers of overdue courses.</li>
<li>Built weekly-refreshing Tableau dashboards to provide HQ with real-time performance data, reducing manual status checks and saving 8 hours weekly.</li>
<li>Collected and analyzed data from multiple locations, creating visually compelling Tableau dashboards that improved productivity and efficiency.</li>
</ul>
</div>
</div>
</div>
</section>
<!-- PROJECTS (animated 3D cards) -->
<section id="projects">
<h3>Projects</h3>
<div class="projects-grid">
<!-- Placeholder projects – you can replace text & links -->
<div class="project-card">
<h4>Portfolio Forecasting Dashboard</h4>
<p>
End-to-end analytics view for portfolio performance: integrates risk metrics, delinquency trends, and
forecasting outputs into a single interactive dashboard.
</p>
<div class="project-tags">
<span class="tag">Python</span>
<span class="tag">SQL</span>
<span class="tag">Power BI</span>
<span class="tag">Risk Analytics</span>
</div>
<a href="#" class="project-link">View project →</a>
</div>
<div class="project-card">
<h4>Credit Risk Simulation Engine</h4>
<p>
Simulated different macroeconomic and portfolio scenarios to study credit risk sensitivity and support
what-if analysis for leadership.
</p>
<div class="project-tags">
<span class="tag">Python</span>
<span class="tag">scikit-learn</span>
<span class="tag">Pandas</span>
</div>
<a href="#" class="project-link">View project →</a>
</div>
<div class="project-card">
<h4>Cloud ETL for Risk Analytics</h4>
<p>
Designed a cloud-based ETL pattern to ingest, clean, and aggregate loan-level data into analytics-ready
layers for downstream reporting and modeling.
</p>
<div class="project-tags">
<span class="tag">AWS</span>
<span class="tag">Docker</span>
<span class="tag">Kubernetes</span>
<span class="tag">SQL</span>
</div>
<a href="#" class="project-link">View project →</a>
</div>
</div>
</section>
<!-- EDUCATION (Master highlighted, B.Tech respected, both animated) -->
<section id="education">
<h3>Education</h3>
<div class="edu-grid">
<!-- Masters -->
<div class="edu-card">
<div class="edu-header">
<div class="logo-box logo-uconn">UC</div>
<div>
<div class="edu-title">
Master’s in Business Analytics & Project Management (Data Science Concentration)
</div>
<div class="edu-subtitle">
University of Connecticut, School of Business
</div>
</div>
</div>
<div class="edu-dates">
Jan 2022 – May 2023 • GPA: 3.92 / 4.0
</div>
<div class="edu-body">
<p>
Graduate program that formalized my transition into tech and analytics, with a strong focus
on data science, cloud, and decision modeling.
</p>
<ul>
<li>Big Data Using Cloud Computing</li>
<li>Data Science Using Python</li>
<li>Data Mining and Business Intelligence</li>
<li>Business Decision Modeling & Predictive Modeling</li>
<li>Business Process Modeling and Data Management</li>
<li>Statistics in Business Analytics Using R</li>
<li>Introduction to Project Management</li>
<li>Project Risk and Agile Methodologies</li>
<li>Project Leadership and Communication</li>
</ul>
</div>
</div>
<!-- B.Tech -->
<div class="edu-card">
<div class="edu-header">
<div class="logo-box logo-vnit">VN</div>
<div>
<div class="edu-title">
Bachelor of Technology (B.Tech), Mining Engineering