-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1163 lines (1096 loc) · 46.6 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>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Lakshmi Siva Kumar Viswanadula">
<meta name="author" content="Marketify">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Lakshmi Siva Kumar Viswanadula | The Analyst Who Bridges Numbers and Strategy.</title>
<link rel = "icon" href =
"img/logo/logo-2.png"
type = "image/png">
<!-- STYLES -->
<link href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/plugins.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!--[if lt IE 9]> <script type="text/javascript" src="js/modernizr.custom.js"></script> <![endif]-->
<!-- /STYLES -->
</head>
<body>
<!-- PRELOADER -->
<div id="preloader">
<div class="loader_line"></div>
</div>
<!-- /PRELOADER -->
<!-- WRAPPER ALL -->
<div class="arlo_tm_all_wrap" data-magic-cursor="show">
<!-- MOBILE MENU -->
<div class="arlo_tm_mobile_menu">
<div class="mobile_menu_inner">
<div class="mobile_in">
<div class="logo" data-type="image"> <!-- You can set your own avatar or image or text as a logo. data-type values are: "avatar", "image", "text" -->
<div class="avatar" data-img-url="img/about/2.jpg"></div>
<div class="image"><img src="img/logo/logo.png" alt="" /></div>
<div class="text"><h3>Lakshmi Siva Kumar Viswanadula</h3></div>
</div>
<div class="trigger">
<div class="hamburger hamburger--slider">
<div class="hamburger-box">
<div class="hamburger-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="dropdown">
<div class="dropdown_inner">
<ul class="anchor_nav">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#service">Expertise</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#news">Certifications</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</div>
<!-- /MOBILE MENU -->
<!-- SIDEBAR -->
<div class="arlo_tm_sidebar">
<div class="logo" data-type="image"> <!-- You can set your own avatar or image or text as a logo. data-type values are: "avatar", "image", "text" -->
<div class="avatar" data-img-url="img/about/2.jpg"></div>
<div class="image"><img src="img/logo/logo.png" alt="" /></div>
<div class="text"><h3>Lakshmi Siva Kumar Viswanadula</h3></div>
</div>
<div class="menu scrollable">
<ul class="anchor_nav">
<li class="current"><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#service">Expertise</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#news">Certifications</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="copyright">
<p>© Copyright 2023 by Lakshmi Siva Kumar Viswanadula</p>
</div>
<div class="arlo_tm_resizer">
<a href="#"><i class="icon-right-dir-2"></i></a>
</div>
</div>
<!-- /SIDEBAR -->
<!-- MAINPART -->
<div class="arlo_tm_mainpart">
<!-- HERO -->
<div class="arlo_tm_section" id="home">
<div class="arlo_tm_hero">
<div class="background">
<div class="image" data-img-url="img/slider/1.jpg"></div>
<div class="overlay"></div>
</div>
<div class="content" data-color="light">
<h3 class="name">Lakshmi Siva Kumar Viswanadula</h3>
<div class="animateText">
<span>The Analyst Who Bridges Numbers and Strategy</span>
<span>Financial Analyst</span>
<span>Data Scientist</span>
<span>Audit and Investigations</span>
<span>Web Developer</span>
</div>
<div class="arlo_tm_button" data-position="center">
<a class="anchor" href="#contact"><span>Contact Me</span></a>
</div>
</div>
</div>
</div>
<!-- /HERO -->
<!-- ABOUT -->
<div class="arlo_tm_section" id="about">
<div class="arlo_tm_about">
<div class="container">
<div class="about_inner">
<div class="left">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/about/1.jpg"></div>
</div>
</div>
<div class="right">
<div class="arlo_tm_main_title">
<span>About</span>
<h3>Lakshmi Siva Kumar is a Data Scientist based in USA.</h3>
</div>
<div class="text">
<p>I'm very passionate and dedicated to my work. With more than 7 years experience as a professional in business operations, financial reporting, accounting, business intelligence, risk models, data visualizations, project management and business communications. I have acquired the skills and knowledge necessary to make an end-end analytics project a success.</p>
</div>
<div class="arlo_tm_button" data-position="left">
<a href="img/cv/cv.pdf" download><span>Download CV</span></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /ABOUT -->
<!-- COUNTER -->
<div class="arlo_tm_section">
<div class="arlo_tm_counter">
<div class="background">
<div class="image jarallax" data-speed="0" data-img-url="img/slider/2.jpg"></div>
<div class="overlay"></div>
</div>
<div class="container">
<div class="content">
<ul>
<li>
<div class="list_inner">
<h3><span class="tm_counter" data-from="0" data-to="20" data-speed="1500">0</span></h3>
<span class="title">Projects Completed</span>
</div>
</li>
<li>
<div class="list_inner">
<h3><span class="tm_counter" data-from="0" data-to="10" data-speed="1500">0</span>+</h3>
<span class="title">Happy Clients</span>
</div>
</li>
<li>
<div class="list_inner">
<h3><span class="tm_counter" data-from="0" data-to="100" data-speed="1500">0</span>K+</h3>
<span class="title">Lines of Code</span>
</div>
</li>
<li>
<div class="list_inner">
<h3><span class="tm_counter" data-from="0" data-to="100" data-speed="1500">0</span>%</h3>
<span class="title">Satisfaction Guarantee</span>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- /COUNTER -->
<!-- SERVICES -->
<div class="arlo_tm_section" id="service">
<div class="arlo_tm_services">
<div class="container">
<div class="arlo_tm_main_title">
<span>Expertise</span>
<h3>What I Do</h3>
</div>
<div class="service_list">
<ul>
<li>
<div class="list_inner">
<div class="in">
<span class="icon"><img class="svg" src="img/svg/anchor.svg" alt="" /></span>
<h3 class="title">AI Models</h3>
<p class="text">Empowering Tomorrow, Today: AI Models Redefining Possibilities through Intelligent Innovation...</p>
</div>
<a class="arlo_tm_full_link" href="#"></a>
<!-- Service Popup Start -->
<img class="popup_service_image" src="img/service/1.jpg" alt="" />
<div class="service_hidden_details">
<div class="service_popup_informations">
<div class="descriptions">
<p>I can create construtive, innovative, effective Generative AI chat bots that capture your internal data without privacy issues to maximize efficiencies in the day-day work and achieve your goals.</p>
<p>Chat bots can be developed with less infrastructure through the usage of Azure Cloud services.</p>
</div>
</div>
</div>
<!-- /Service Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<div class="in">
<span class="icon"><img class="svg" src="img/svg/physics.svg" alt="" /></span>
<h3 class="title">Risk Models</h3>
<p class="text">Being a Certified Internal Auditor and Certified Fraud Examiner...</p>
</div>
<a class="arlo_tm_full_link" href="#"></a>
<!-- Service Popup Start -->
<img class="popup_service_image" src="img/service/2.jpg" alt="" />
<div class="service_hidden_details">
<div class="service_popup_informations">
<div class="descriptions">
<p>I can understand the language of risk and have the ability to convert the risk requirements to meaningful insights, allowing for informed strategic planning and optimization of business outcomes through well-designed dashboards.</p>
<p>Having knowledge of risk and analytic skills is crucial for effective dashboard management as it enables professionals to identify potential threats and opportunities within data.</p>
<p>By understanding risk factors, I can implement automated risk models for internal audit risk assessment and executive management oversight.</p>
</div>
</div>
</div>
<!-- /Service Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<div class="in">
<span class="icon"><img class="svg" src="img/svg/contact.svg" alt="" /></span>
<h3 class="title">Data Visualizations</h3>
<p class="text">Condense complex information into accessible and compelling visuals...</p>
</div>
<a class="arlo_tm_full_link" href="#"></a>
<!-- Service Popup Start -->
<img class="popup_service_image" src="img/service/3.jpg" alt="" />
<div class="service_hidden_details">
<div class="service_popup_informations">
<div class="descriptions">
<p>I can create intuitive and easy to depict data visualizations for quicker grasp of insights</p>
<p>Data visualizations are invaluable tools for conveying complex information in a clear and accessible manner, facilitating better understanding and decision-making. By translating raw data into visual representations such as charts, graphs, and maps, data visualizations enable quick identification of patterns, trends, and outliers.</p>
<p>This not only enhances communication within teams but also empowers individuals and organizations to make informed choices, driving efficiency, and promoting data-driven strategies.</p>
</div>
</div>
</div>
<!-- /Service Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<div class="in">
<span class="icon"><img class="svg" src="img/svg/web.svg" alt="" /></span>
<h3 class="title">Creative Design</h3>
<p class="text">Most common methods for designing websites that work well on desktop...</p>
</div>
<a class="arlo_tm_full_link" href="#"></a>
<!-- Service Popup Start -->
<img class="popup_service_image" src="img/service/4.jpg" alt="" />
<div class="service_hidden_details">
<div class="service_popup_informations">
<div class="descriptions">
<p>I can create innovative, effective websites that capture your requirements, and maximize the usage to help achieve your goals.</p>
<p>In today’s digital world, your website is the first interaction users have with your business. That's why almost 95 percent of a user’s first impression relates to web design. It’s also why web design services can have an immense impact on your company’s bottom line.</p>
<p>Creative design is essential for capturing attention, fostering engagement, and communicating messages effectively in various contexts. It is a powerful tool for solving problems, conveying ideas, and leaving a lasting impact in a visually saturated world.</p>
</div>
</div>
</div>
<!-- /Service Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<div class="in">
<span class="icon"><img class="svg" src="img/svg/diagram.svg" alt="" /></span>
<h3 class="title">Automated Reports</h3>
<p class="text">Effortless Insights, Instant Impact: Transforming Data into Action...</p>
</div>
<a class="arlo_tm_full_link" href="#"></a>
<!-- Service Popup Start -->
<img class="popup_service_image" src="img/service/5.jpg" alt="" />
<div class="service_hidden_details">
<div class="service_popup_informations">
<div class="descriptions">
<p>I can create automated/scheduled reports for dissemniation, saving time and reducing the risk of human error associated with manual reporting processess.</p>
<p>By automating routine reporting tasks, organizations can ensure timely and consistent delivery of critical information, allowing teams to focus on strategic decision-making rather than administrative tasks.</p>
<p>This efficiency ultimately enhances productivity and supports a more agile and data-driven decision-making culture within the organization..</p>
</div>
</div>
</div>
<!-- /Service Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<div class="in">
<span class="icon"><img class="svg" src="img/svg/star.svg" alt="" /></span>
<h3 class="title">Financial Reporting</h3>
<p class="text">Precision in Numbers, Clarity in Strategy: Illuminating Your Financial Future Through Insightful Reports....</p>
</div>
<a class="arlo_tm_full_link" href="#"></a>
<!-- Service Popup Start -->
<img class="popup_service_image" src="img/service/6.jpg" alt="" />
<div class="service_hidden_details">
<div class="service_popup_informations">
<div class="descriptions">
<p>Incorporating data science techniques can uncover hidden patterns, detect anomalies,and provide a more comprehensive understanding of financial trends, ultimately leading to more informed decision-making.</p>
<p>Having the expertise of both finance and oversight functions. I can bring unique domain knowlegde with the ability to integrate analytics into regular business functions.</p>
<p>Adding value to the regular business functions will be the ultimate goal.</p>
</div>
</div>
</div>
<!-- /Service Popup End -->
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- /SKILLS -->
<div class="arlo_tm_section">
<div class="arlo_tm_skills">
<div class="container">
<div class="arlo_tm_main_title">
<span>Skills</span>
<h3>Experience & Skills</h3>
</div>
<div class="inner">
<div class="left">
<div class="skills_title">
<h3>Development Skills</h3>
</div>
<div class="list">
<ul>
<li>
<div class="list_inner">
<span>SAP - <span class="tm_counter" data-from="0" data-to="95" data-speed="1500">0</span>%</span>
</div>
</li>
<li>
<div class="list_inner">
<span>Accounting - <span class="tm_counter" data-from="0" data-to="95" data-speed="1500">0</span>%</span>
</div>
</li>
<li>
<div class="list_inner">
<span>Python - <span class="tm_counter" data-from="0" data-to="95" data-speed="1500">0</span>%</span>
</div>
</li>
<li>
<div class="list_inner">
<span>MS SQL - <span class="tm_counter" data-from="0" data-to="90" data-speed="1500">0</span>%</span>
</div>
</li>
<li>
<div class="list_inner">
<span>Dataiku - <span class="tm_counter" data-from="0" data-to="95" data-speed="1500">0</span>%</span>
</div>
</li>
<li>
<div class="list_inner">
<span>PowerBI - <span class="tm_counter" data-from="0" data-to="95" data-speed="1500">0</span>%</span>
</div>
</li>
<li>
<div class="list_inner">
<span>Azure Cloud - <span class="tm_counter" data-from="0" data-to="80" data-speed="1500">0</span>%</span>
</div>
</li>
<li>
<div class="list_inner">
<span>HTML - <span class="tm_counter" data-from="0" data-to="80" data-speed="1500">0</span>%</span>
</div>
</li>
<li>
<div class="list_inner">
<span>CSS - <span class="tm_counter" data-from="0" data-to="80" data-speed="1500">0</span>%</span>
</div>
</li>
<li>
<div class="list_inner">
<span>WordPress - <span class="tm_counter" data-from="0" data-to="70" data-speed="1500">0</span>%</span>
</div>
</li>
</ul>
</div>
</div>
<div class="right">
<div class="skills_title">
<h3>Language Skills</h3>
</div>
<div class="list">
<ul>
<li>
<div class="list_inner">
<span>English - <span class="tm_counter" data-from="0" data-to="100" data-speed="1500">0</span>%</span>
</div>
</li>
<li>
<div class="list_inner">
<span>German - <span class="tm_counter" data-from="0" data-to="25" data-speed="1500">0</span>%</span>
</div>
</li>
<li>
<div class="list_inner">
<span>French - <span class="tm_counter" data-from="0" data-to="25" data-speed="1500">0</span>%</span>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /SKILLS -->
<!-- PORTFOLIO -->
<div class="arlo_tm_section" id="portfolio">
<div class="arlo_tm_portfolio">
<div class="container">
<div class="arlo_tm_main_title">
<span>Works</span>
<h3>Creative Portfolio</h3>
</div>
<div class="portfolio_filter">
<ul>
<li><a href="#" class="current" data-filter="*">All</a></li>
<li><a href="#" data-filter=".youtube">AI Models</a></li>
<!-- <li><a href="#" data-filter=".vimeo">Vimeo</a></li>
<li><a href="#" data-filter=".soundcloud">Soundcloud</a></li> -->
<li><a href="#" data-filter=".popup">Dashboards</a></li>
<li><a href="#" data-filter=".content">LinkedIn</a></li>
</ul>
</div>
<div class="portfolio_list">
<ul class="gallery_zoom">
<!-- <li class="youtube">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/2.jpg"></div>
</div>
<div class="overlay"></div>
<div class="details">
<h3>Open AI Prototype</h3>
<span>AI Models</span>
</div>
<a class="arlo_tm_full_link popup-youtube" href="https://www.youtube.com/watch?v=7e90gBu4pas"></a>
</div>
</li> -->
<li class="youtube">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/1.jpg"></div>
</div>
<div class="overlay"></div>
<div class="details">
<h3>OpenAI Protoype</h3>
<span>AI Models</span>
</div>
<a class="arlo_tm_full_link" href="https://www.viswaadvisory.com/" target="_blank"></a>
</div>
</li>
<!-- <li class="vimeo">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/1.jpg"></div>
</div>
<div class="overlay"></div>
<div class="details">
<h3>So Skilled</h3>
<span>Vimeo</span>
</div>
<a class="arlo_tm_full_link popup-vimeo" href="https://vimeo.com/337293658"></a>
</div>
</li> -->
<!-- <li class="soundcloud">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/3.jpg"></div>
</div>
<div class="overlay"></div>
<div class="details">
<h3>Cashdash Pro</h3>
<span>Soundcloud</span>
</div>
<a class="arlo_tm_full_link soundcloude_link mfp-iframe audio" href="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/471954807&color=%23ff5500&auto_play=true&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></a>
</div>
</li> -->
<li class="popup">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/5.jpg"></div>
</div>
<div class="overlay"></div>
<div class="details">
<h3>Internal Audit Risk Assessment</h3>
<span>Dashboards</span>
</div>
<a class="arlo_tm_full_link zoom" href="img/portfolio/5.jpg"></a>
</div>
</li>
<li class="popup">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/4.jpg"></div>
</div>
<div class="overlay"></div>
<div class="details">
<h3>Country-Sight</h3>
<span>Dashboards</span>
</div>
<a class="arlo_tm_full_link zoom" href="img/portfolio/4.jpg"></a>
</div>
</li>
<li class="popup">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/3.jpg"></div>
</div>
<div class="overlay"></div>
<div class="details">
<h3>Main Interface</h3>
<span>Dashboards</span>
</div>
<a class="arlo_tm_full_link zoom" href="img/portfolio/3.jpg"></a>
</div>
</li>
<li class="content">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/6.jpg"></div>
</div>
<div class="overlay"></div>
<div class="details">
<h3>Profile Details</h3>
<span>LinkedIn</span>
</div>
<a class="arlo_tm_full_link" href="https://www.linkedin.com/in/siva-kumar-viswanadula/" target="_blank"></a>
<!-- Portfolio Popup Start -->
<!-- <div class="hidden_content">
<div class="popup_details">
<div class="main_details">
<div class="textbox">
<p>We live in a world where we need to move quickly and iterate on our ideas as flexibly as possible.</p>
<p>Mockups are useful both for the creative phase of the project - for instance when you're trying to figure out your user flows or the proper visual hierarchy - and the production phase when they phase when they will represent the target product. Building mockups strikes the ideal balance ease of modification.</p>
</div>
<div class="detailbox">
<ul>
<li>
<span class="first">Client</span>
<span>Alvaro Morata</span>
</li>
<li>
<span class="first">Category</span>
<span><a href="#">Content</a></span>
</li>
<li>
<span class="first">Date</span>
<span>Oct 22, 2023</span>
</li>
</ul>
</div> -->
<!-- </div> -->
<!-- <div class="additional_images">
<ul>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/7.jpg"></div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/8.jpg"></div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/9.jpg"></div>
</div>
</div>
</li>
</ul>
</div> -->
<!-- </div> -->
</div>
<!-- /Portfolio Popup End -->
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- /PORTFOLIO -->
<!-- GET QUOTE -->
<div class="arlo_tm_section">
<div class="arlo_tm_get_quote">
<div class="background">
<div class="dots" data-img-url="img/dots.jpg"></div>
<div class="overlay"></div>
</div>
<div class="content">
<div class="container">
<h3 class="title">Need help with Analytics Integration? Get in touch with me!</h3>
<!-- <a class="line_effect" href="mailto:lviswanadula@gmail.com">lviswanadula@gmail.com</a> -->
</div>
</div>
</div>
</div>
<!-- /GET QUOTE -->
<!-- PARTNERS -->
<div class="arlo_tm_section">
<div class="arlo_tm_partners">
<div class="container">
<div class="partners_list">
<div class="wrapper">
<ul class="owl-carousel">
<li class="item"><a href="#"><img src="img/partners/1.png" alt="" /></a></li>
<li class="item"><a href="#"><img src="img/partners/2.png" alt="" /></a></li>
<li class="item"><a href="#"><img src="img/partners/3.png" alt="" /></a></li>
<li class="item"><a href="#"><img src="img/partners/4.png" alt="" /></a></li>
<li class="item"><a href="#"><img src="img/partners/5.png" alt="" /></a></li>
<li class="item"><a href="#"><img src="img/partners/6.png" alt="" /></a></li>
<!-- <li class="item"><a href="#"><img src="img/partners/7.png" alt="" /></a></li>
<li class="item"><a href="#"><img src="img/partners/8.png" alt="" /></a></li> -->
</ul>
<p>Empowering Oversight and Finance functions with Innovation in Analytics <a class="line_effect" href="#">trusted clients</a>.</p>
</div>
</div>
</div>
</div>
</div>
<!-- /PARTNERS -->
<!-- TESTIMONIALS -->
<div class="arlo_tm_section">
<div class="arlo_tm_testimonials">
<div class="container">
<div class="wrapper">
<div class="left">
<i class="icon-quote-left"></i>
<div class="arlo_tm_main_title">
<span>Testimonials</span>
<h3>Clients Feedback</h3>
</div>
<div class="text">
<p>Testimonials are one of the most important tools to show potential employers how valuable their services are. Testimonials are a short statement that describes how my services were for a client.</p>
</div>
<div class="arlo_tm_button" data-position="left">
<a class="anchor" href="#contact"><span>Contact Me</span></a>
</div>
</div>
<div class="right">
<div class="testimonials_list">
<ul class="owl-carousel">
<li>
<div class="list_inner">
<div class="stars">
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
</div>
<div class="text">
<p>Effectively discharged his responsibilities in contributing to OIAI’s 2022-2025 strategy on data analytics. Among others, he launched a new SharePoint portal that serves as a one-stop information repository for auditors and investigators, developed the Country-Sight scanner for oversight leadership, management monitoring reports, and automated the internal audit risk assessment process and delivered several trainings to staff. These analytics products have served to support OIAI’s mission to ensure integrity in UNICEF operations, increase operational efficiencies of the audit and investigation process. He demonstrated excellent understanding of OIAI’s work, UNICEF’s information architecture, relationship management, at all times upholding the CRITAS values.</p>
</div>
<div class="details">
<div class="image">
<div class="main" data-img-url="img/testimonials/4.jpg"></div>
</div>
<div class="info">
<h3>Sunil Raman</h3>
<span>Advisor (to OIAI's Director), UNICEF</span>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="stars">
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
</div>
<div class="text">
<p>Following consultations with OIAI staff and management to understand OIAI's data needs, he implemented several pilot dashboards in relatively short order, as well as a proof of concept for red flags. To facilitate access to the required data and due to constraints of the current data infrastructure, Mr Viswanadula liaised with numerous internal and external partners, at all times upholding the CRITA values.</p>
</div>
<div class="details">
<div class="image">
<div class="main" data-img-url="img/testimonials/5.jpg"></div>
</div>
<div class="info">
<h3>Jacques Boucher</h3>
<span>Digital Forensics Specialist, UNICEF</span>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="stars">
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
</div>
<div class="text">
<p>Managed all projects with excellent skills and delivered all projects in timely fashion</p>
</div>
<div class="details">
<div class="image">
<div class="main" data-img-url="img/testimonials/1.jpg"></div>
</div>
<div class="info">
<h3>Ehsan Khan</h3>
<span>Finance Manager, UNICEF</span>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="stars">
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
</div>
<div class="text">
<p>His meticulous commitment towards new challenges and his out of the box thinking attitude with deep interest in financial reporting and his hard work are the key strike outs that amazes the entire team</p>
</div>
<div class="details">
<div class="image">
<div class="main" data-img-url="img/testimonials/2.jpg"></div>
</div>
<div class="info">
<h3>Sandeep Agarwal</h3>
<span>Associate Director, KPMG India</span>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="stars">
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
<span><i class="icon-star-3"></i></span>
</div>
<div class="text">
<p>Siva is a great guy to have in your team. He has worked with me on multiple projects. His performance has been very good in all these projects. He is very quick to grasp any concept</p>
</div>
<div class="details">
<div class="image">
<div class="main" data-img-url="img/testimonials/3.jpg"></div>
</div>
<div class="info">
<h3>Rahul Chowdhary</h3>
<span>Partner, Deloitte India</span>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /TESTIMONIALS -->
<!-- NEWS -->
<div class="arlo_tm_section" id="news">
<div class="arlo_tm_news">
<div class="container">
<div class="arlo_tm_main_title">
<span>Education and Certifications</span>
<h3>Highly Recognized</h3>
</div>
<div class="news_list">
<ul>
<li>
<div class="list_inner">
<div class="image">
<img src="img/thumbs/4-3.jpg" alt="" />
<div class="main" data-img-url="img/news/5.jpg"></div>
<a class="arlo_tm_full_link" href="#"></a>
</div>
<div class="details">
<div class="meta">
<p>Dec 12, 2019 in <a class="line_effect" href="https://verify.skilljar.com/c/qw9xh33ppdfa">Education</a></p>
</div>
<h3 class="title"><a class="line_effect_2" href="#">MSc in Corporate Financial Management</a></h3>
</div>
<!-- News Popup Start -->
<div class="news_hidden_details">
<div class="news_popup_informations">
<div class="text">
<p>Advanced skills in financial analysis, strategic planning, and risk management, enhancing their ability to make informed and effective financial decisions.</p>
<p>Deeper understanding of financial complexities, ensuring optimized resource allocation and improved overall financial performance.</p>
<p>Additionally, contribute to enhanced strategic planning, aligning financial goals with broader business objectives for sustainable growth.</p>
</div>
</div>
</div>
<!-- News Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<div class="image">
<img src="img/thumbs/4-3.jpg" alt="" />
<div class="main" data-img-url="img/news/1.jpg"></div>
<a class="arlo_tm_full_link" href="#"></a>
</div>
<div class="details">
<div class="meta">
<p>Jan 11, 2022 in <a class="line_effect" href="https://www.credly.com/badges/92c57fd4-d4f4-4362-8106-b434f90df634">Certifications</a></p>
</div>
<h3 class="title"><a class="line_effect_2" href="#">Certified Internal Auditor</a></h3>
</div>
<!-- News Popup Start -->
<div class="news_hidden_details">
<div class="news_popup_informations">
<div class="text">
<p>Deep understanding of internal audit principles, risk management, and compliance standards.</p>
<p>Contribute to enhanced organizational effectiveness, providing valuable insights into financial controls and operational processes, which helps mitigate risks and strengthen internal controls.</p>
<p>Foster a culture of accountability, transparency, and ethical conduct, ultimately contributing to the company's overall governance and success.</p>
</div>
</div>
</div>
<!-- /News Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<div class="image">
<img src="img/thumbs/4-3.jpg" alt="" />
<div class="main" data-img-url="img/news/2.jpg"></div>
<a class="arlo_tm_full_link" href="#"></a>
</div>
<div class="details">
<div class="meta">
<p>March 08, 2023 in <a class="line_effect" href="https://www.credly.com/badges/5769b462-bb70-448f-b033-15d31bdca3d7/public_url">Certifications</a></p>
</div>
<h3 class="title"><a class="line_effect_2" href="#">Certified Fraud Examiner</a></h3>
</div>
<!-- News Popup Start -->
<div class="news_hidden_details">
<div class="news_popup_informations">
<div class="text">
<p>Bring specialized skills to detect, prevent, and investigate fraudulent activities within the organization.</p>
<p>Contribute to a robust anti-fraud framework, reducing the risk of financial losses and reputational damage.</p>
<p>Expertise in fraud prevention and detection to enhance internal controls, safeguards assets, and ensures compliance with ethical and legal standards, fostering a secure and trustworthy business environment.</p>
</div>
</div>
</div>
<!-- /News Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<div class="image">
<img src="img/thumbs/4-3.jpg" alt="" />
<div class="main" data-img-url="img/news/4.jpg"></div>
<a class="arlo_tm_full_link" href="#"></a>
</div>
<div class="details">
<div class="meta">
<p>May 21, 2023 in <a class="line_effect" href="https://verify.skilljar.com/c/qw9xh33ppdfa">Certifications</a></p>
</div>
<h3 class="title"><a class="line_effect_2" href="#">Dataiku ML Practitioner Certificate</a></h3>
</div>
<!-- News Popup Start -->
<div class="news_hidden_details">
<div class="news_popup_informations">
<div class="text">
<p>Possess the knowledge to efficiently leverage Dataiku's collaborative and integrated platform for end-to-end machine learning workflows.</p>
<p>Increased productivity, streamlined ML processes, and the ability to derive actionable insights from data.</p>
<p>Tackle complex ML challenges, improving the quality and accuracy of predictive models.</p>
</div>
</div>
</div>
<!-- News Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<div class="image">
<img src="img/thumbs/4-3.jpg" alt="" />
<div class="main" data-img-url="img/news/3.jpg"></div>
<a class="arlo_tm_full_link" href="#"></a>
</div>
<div class="details">
<div class="meta">
<p>October 31, 2023 in <a class="line_effect" href="https://www.coursera.org/account/accomplishments/certificate/DR673BQU8G2M">Certifications</a></p>
</div>
<h3 class="title"><a class="line_effect_2" href="#">Microsoft AI Azure Engineer Associate</a></h3>
</div>
<!-- News Popup Start -->
<div class="news_hidden_details">
<div class="news_popup_informations">
<div class="text">
<p>Specialized skills in designing and implementing AI solutions on the Azure platform, fostering innovation and efficiency in AI projects.</p>
<p>Contribute to optimized resource utilization, ensuring cost-effective implementation of AI workloads on Azure and enhancing overall operational efficiency.</p>
<p>Up-to-date expertise, ensuring the successful development and management of AI initiatives within the Azure environment.</p>
</div>
</div>
</div>
<!-- News Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<div class="image">
<img src="img/thumbs/4-3.jpg" alt="" />
<div class="main" data-img-url="img/news/6.jpg"></div>
<a class="arlo_tm_full_link" href="#"></a>
</div>