-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
722 lines (632 loc) · 25.8 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Your Name in all caps -->
<title>Pratul Sudhir</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<meta property="og:title" content="" />
<meta property="og:image" content="" />
<meta property="og:url" content="" />
<meta property="og:site_name" content="" />
<meta property="og:description" content="" />
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<link rel="shortcut icon" href="images/christ_logo_color_circular.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700" rel="stylesheet">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/flexslider.css">
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script src="js/modernizr-2.6.2.min.js"></script>
</head>
<body>
<nav id="brochure-main-menu" role="navigation" class="navbar_main">
<div class="logo">
<a href="https://christuniversity.in/"><img src="images/christ_logo_color.png" alt="University Logo"></a>
</div>
</nav>
<div id="colorlib-page">
<div class="container-wrap">
<a href="#" class="js-colorlib-nav-toggle colorlib-nav-toggle" data-toggle="collapse" data-target="#navbar"
aria-expanded="false" aria-controls="navbar"><i></i></a>
<aside id="colorlib-aside" role="complementary" class="border js-fullheight">
<div class="text-center">
<div class="author-img" style="background-image: url(images/Profile.jpg);"></div>
<!-- Add your name -->
<h1 id="colorlib-logo"><a href="index.html">Pratul Sudhir</a></h1>
<span class="position"><a
href="https://christuniversity.in/departments/yeshwanthpur%20campus/school%20of%20sciences/computer%20science">Master
of Science in Data Science</a></span>
</div>
<nav id="colorlib-main-menu" role="navigation" class="navbar">
<div id="navbar" class="collapse">
<ul>
<li><a href="#" data-nav-section="about">About</a></li>
<li><a href="#" data-nav-section="skills">Skills</a></li>
<li><a href="#" data-nav-section="education">Education</a></li>
<li><a href="#" data-nav-section="projects">Projects</a></li>
<li><a href="#" data-nav-section="internship">Internships</a></li>
<li><a href="#" data-nav-section="certificate">Certifications</a></li>
<li><a href="#" data-nav-section="contact">Contact</a></li>
</ul>
</div>
<a class="brochure-link" href="https://cs-placements.github.io/mds-2023-25/" target="_blank">CLASS
2023 - 25</a>
</nav>
</aside>
<div id="colorlib-main">
<section class="colorlib-about" data-section="about">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-12">
<div class="row row-bottom-padded-sm animate-box" data-animate-effect="fadeInLeft">
<div class="col-md-12">
<div class="about-desc">
<span class="heading-meta">Personal Insight</span>
<h2 class="colorlib-heading">About Me</h2>
<!-- Change content of paragraph tag -->
<p>
<font size="3.5"><strong>I'm Pratul Sudhir .</strong>
Based in Bangalore,
I have a passion for transforming data into valuable insights.
After completing my undergraduate studies in Computer, Maths and Statistics,
I'm now pursuing a Master's in Data Science.
Curiosity and innovation drive me to delve into data, using algorithms
to uncover meaningful patterns and insights. I'm particularly interested in the potential
of LLMs to revolutionize how we process and understand information. I have expertise in working with various
large language models (LLMs)
and developing systems to reduce hallucinations using various frameworks.
</font>
</p>
<font size="2.8">I believe simple insights can drive significant impact
and I am committed to creating positive change with data-driven solutions.
Harnessing the power of LLMs, I strive to enhance the accuracy and efficiency of data interpretation. </font>
<p> <br> </p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3 animate-box" data-animate-effect="fadeInLeft">
<!-- Edit google drive Link -->
<a href="https://drive.google.com/file/d/1XVZ3PzUi1d-m-CsWd9spyurKe819me6w/view?usp=drive_link"
target="_blank">
<div class="services color-4">
<span class="icon2">
<i class="fas fa-file-alt"></i>
<h3>Resume</h3>
</span>
</div>
</a>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInLeft">
<!-- Edit Link -->
<a href="https://www.linkedin.com/in/pratul-sudhir-a32500292/" target="_blank">
<div class="services color-1">
<span class="icon2">
<i class="icon-linkedin2"></i>
<h3>Linkedin</h3>
</span>
</div>
</a>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInRight">
<!-- Edit Link -->
<a href="https://github.com/pratull" target="_blank">
<div class="services color-2">
<span class="icon2">
<i class="icon-github"></i>
<h3>Github</h3>
</span>
</div>
</a>
</div>
<!-- Remove this div if you don't have account on Kaggle -->
<div class="col-md-3 animate-box" data-animate-effect="fadeInTop">
<a href="https://www.kaggle.com/pratulsudhir" target="_blank">
<div class="services color-3">
<span class="icon2">
<i class="fab fa-kaggle"></i>
<h3>Kaggle</h3>
</span>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-services" data-section="services">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box"
data-animate-effect="fadeInLeft">
<span class="heading-meta">Specializations</span>
<h2 class="colorlib-heading">Here are some of my specializations</h2>
</div>
</div>
<div class="row row-pt-md">
<div class="col-md-4 text-center animate-box">
<div class="services color-1">
<span class="icon">
<i class="icon-data"></i>
</span>
<div class="desc">
<!-- Edit content for your specialization -->
<h3>Data Science</h3>
<p>Machine Learning | NLP | Deep Learning</p>
</div>
</div>
</div>
<!-- Remove this div if you have only one specialization -->
<div class="col-md-4 text-center animate-box">
<div class="services color-2">
<span class="icon">
<i class="fas fa-cogs"></i>
</span>
<div class="desc">
<!-- Edit content for your specialization -->
<h3>Data Analytics</h3>
<p>Tableau | Power BI | Advance Excel | Python</p>
</div>
</div>
</div>
<!-- Remove this div if you have only two specialization -->
<div class="col-md-4 text-center animate-box">
<div class="services color-3">
<span class="icon">
<i class="icon-point-of-interest"></i>
</span>
<div class="desc">
<!-- Edit content for your specialization -->
<h3>Domain Expertise</h3>
<p>Healthcare Domain</p>
</div>
</div>
</div>
</section>
<section class="colorlib-skills" data-section="skills">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box"
data-animate-effect="fadeInLeft">
<span class="heading-meta">Skills</span>
<h2 class="colorlib-heading animate-box">Proficiencies shaped by curiosity and
commitment</h2>
</div>
</div>
<div class="row">
<!-- Edit content based on your Skills and percentages -->
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Langchain</h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="79"
aria-valuemin="0" aria-valuemax="100" style="width:79%">
<span>75%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>TensorFlow</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="80%"
aria-valuemin="0" aria-valuemax="100" style="width:80%">
<span>75%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Microsoft SQL</h3>
<div class="progress">
<div class="progress-bar color-3" role="progressbar" aria-valuenow="85"
aria-valuemin="0" aria-valuemax="100" style="width:85%">
<span>80%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Python</h3>
<div class="progress">
<div class="progress-bar color-4" role="progressbar" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100" style="width:90%">
<span>90%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Java</h3>
<div class="progress">
<div class="progress-bar color-5" role="progressbar" aria-valuenow="80"
aria-valuemin="0" aria-valuemax="100" style="width:80%">
<span>0%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>R Programming</h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="75"
aria-valuemin="0" aria-valuemax="100" style="width:75%">
<span>75%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Tableau</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="95"
aria-valuemin="0" aria-valuemax="100" style="width:95%">
<span>95%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Power BI</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="82"
aria-valuemin="0" aria-valuemax="100" style="width:82%">
<span>82%</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-education" data-section="education">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box"
data-animate-effect="fadeInLeft">
<span class="heading-meta">Education</span>
<h2 class="colorlib-heading animate-box">My Learning Path</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<div class="fancy-collapse-panel">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
</h4>
</div>
<!-- Edit content based on your education details -->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse"
data-parent="#accordion" href="#collapseTwo"
aria-expanded="false" aria-controls="collapseTwo">Masters
Degree in Data Science
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingTwo">
<div class="panel-body">
<p>Currently pursuing my IV TRIMESTER BCA at <strong>Christ University, Bangalore</strong></p>
<ul>
<li>TRIMESTER I 2.94 GPA</li>
<li>TRIMESTER II 2.96 GPA </li>
<li>TRIMESTER III 2.92 GPA </li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse"
data-parent="#accordion" href="#collapseThree"
aria-expanded="false" aria-controls="collapseThree">Bachleors in Computer, Maths and Statistics
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingThree">
<div class="panel-body">
<p>Completed by Bachleors Degree from
<strong>St. Joseph's College (Autonomous), Bangalore</strong> with Computer, Maths and Statistics as majors
and graduated with 58.93%.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingFour">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse"
data-parent="#accordion" href="#collapseFour"
aria-expanded="false" aria-controls="collapseFour">HIGHER SECONDARY SCHOOL
</a>
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingFour">
<div class="panel-body">
<p>Completed higher secondary schooling from <strong>St. Thomas
Residential School (ISC Board) </strong>, with Physics, Chemisty,
Maths and Computer as majors and graduated with 72%.
</p>
</div>
</div>
</div>
<!-- Edit content based on your education details or remove div-->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingFive">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse"
data-parent="#accordion" href="#collapseFive"
aria-expanded="false" aria-controls="collapseFive">High
School Education
</a>
</h4>
</div>
<div id="collapseFive" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingFive">
<div class="panel-body">
<p>Completed higher secondary schooling from <strong>St. Thomas
Residential School (ISCE Board) </strong>, and graduated with 81%.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Remove this secion if you dont have Projects -->
<section class="colorlib-services" data-section="projects">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box"
data-animate-effect="fadeInLeft">
<span class="heading-meta">Projects</span>
<h2 class="colorlib-heading">Portfolio of My Proven Expertise</h2>
</div>
</div>
<div class="row row-pt-md">
<div class="col-md-4 text-center animate-box">
<div class="services color-1">
<a href="#" target="_blank">
<span class="icon">
<i class="icon-github"></i>
</span>
</a>
<div class="desc">
<!-- Edit content for your specialization -->
<h3>E-Commerce Website for Cygnus Systems</h3>
<p>Developed a E-commerce website for a medical device company- Cygnus Systems</p>
<p id="project-tool">HTML | CSS | php | Javascript</p>
</div>
</div>
</div>
<!-- Remove this div if you have only one specialization -->
<div class="col-md-4 text-center animate-box">
<div class="services color-2">
<a href="https://github.com/pratull/Salary-Prediction-Model-on-Streamlit" target="_blank">
<span class="icon">
<i class="icon-github"></i>
</span>
</a>
<div class="desc">
<!-- Edit content for your specialization -->
<h3>Salary Prediction Model on Python Streamlit</h3>
<p>Developed an interactive web application using Streamlit for predicting
employee salaries with ML models.</p>
<p id="project-tool">Python | Regression Models </p>
</div>
</div>
</div>
<!-- Remove this div if you have only two specialization -->
<div class="col-md-4 text-center animate-box">
<div class="services color-3">
<a href="#" target="_blank">
<span class="icon">
<i class="icon-github"></i>
</span>
</a>
<div class="desc">
<h3>Reduction of hallucinations through RAG Systems</h3>
<p>Implemented RAG sytems to test if different LLMs hallucinate using Langchain.</p>
<p id="project-tool">Langchain | OpenAI API | RAG</p>
</div>
</div>
</div>
</section>
<!-- Remove this secion if you dont have Internships -->
<section class="colorlib-Projects" data-section="internship">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box"
data-animate-effect="fadeInLeft">
<span class="heading-meta">Internships</span>
<h2 class="colorlib-heading animate-box">Areas I have earned experience in</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="fas fa-laptop-code"></i>
</div>
<!-- Edit content based on your Internships -->
<div class="timeline-label" , style="background: #e5edf4;">
<h2><a href="#">Terrific Minds</a> <span> </span></h2>
<h3>AI/ML Intern</h3>
<p id="project-tool">[May, 2024 - June, 2024]</p>
<p>Explored about GenerativeAI , more into open source and proprietary LLM's. Used OpenAI API on Langchain framework
to implement systens to reduce hallucinations</p>
<p id="project-tool">LLM | NLP | Langchain </p>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-Projects" data-section="certificate">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box"
data-animate-effect="fadeInLeft">
<span class="heading-meta">Certifications</span>
<h2 class="colorlib-heading animate-box">Skills I am certified for</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Accenture North America Data Analytics and Visualization Job
Simulation</a> <span> </span></h2>
<p id="project-tool">~ Forage</p>
<p>Developed hands on skill in dealing with unstructured data, analysing them and visualising them.</p>
</div>
</div>
</article>
<!-- Edit content based on your Certifications or remove article tag -->
<article class="timeline-entry animate-box" data-animate-effect="fadeInRight">
<div class="timeline-entry-inner">
<div class="timeline-icon color-2">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Python for Data Science and AI</a> <span></span></h2>
<p id="project-tool">~ from Coursera</p>
<p>Have been certifed for using python language for Data Science and AI </p>
</div>
</div>
</article>
<!-- Edit content based on your Certifications or remove article tag -->
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-3">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Hands-on GenAI with Multi-Agent Langchain</a> <span></span></h2>
<p id="project-tool">~ from Linkedln Learning</p>
<p>Hands on experience in training multiple agents for LLMs using Langchain.</p>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box"
data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-icon color-none">
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-contact" data-section="contact">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box"
data-animate-effect="fadeInLeft">
<span class="heading-meta">Get in Touch</span>
<h2 class="colorlib-heading">Contact</h2>
</div>
</div>
<div class="row">
<div class="col-md-10">
<div class="colorlib-feature colorlib-feature-sm animate-box"
data-animate-effect="fadeInLeft">
<div class="colorlib-icon">
<i class="icon-globe-outline"></i>
</div>
<div class="colorlib-text">
<!-- Edit your mail id -->
<p><a href="#">pratulsudhir@gmail.com</a></p>
</div>
</div>
<div class="colorlib-feature colorlib-feature-sm animate-box"
data-animate-effect="fadeInLeft">
<div class="colorlib-icon">
<i class="icon-map"></i>
</div>
<div class="colorlib-text">
<!-- Edit your contact address -->
<div class="addresses">
<p class="address-divider">Christ [Deemed to be University], HMT Layout, Nagasandara Post
Bangalore - 560073</p>
<p>Sasthamangalam, Thiruvanthapuram, Kerala - 695010</p>
</div>
</div>
</div>
<!-- Edit your contact address or you can remove this div -->
<div class="colorlib-feature colorlib-feature-sm animate-box"
data-animate-effect="fadeInLeft">
<div class="colorlib-icon">
<i class="icon-phone"></i>
</div>
<div class="colorlib-text">
<p><a href="tel: 8553441091">+91 9645309586</a></p>
</div>
</div>
</div>
</div>
</div>
</section>
</div><!-- end:colorlib-main -->
</div><!-- end:container-wrap -->
</div><!-- end:colorlib-page -->
<!-- jQuery -->
<script src="js/jquery.min.js"></script>
<!-- jQuery Easing -->
<script src="js/jquery.easing.1.3.js"></script>
<!-- Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- Waypoints -->
<script src="js/jquery.waypoints.min.js"></script>
<!-- Flexslider -->
<script src="js/jquery.flexslider-min.js"></script>
<!-- Owl carousel -->
<script src="js/owl.carousel.min.js"></script>
<!-- Counters -->
<script src="js/jquery.countTo.js"></script>
<!-- MAIN JS -->
<script src="js/main.js"></script>
</body>
</html>