-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
907 lines (847 loc) · 32.1 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<!-- meta data -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!--font-family-->
<link
href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&subset=devanagari,latin-ext"
rel="stylesheet">
<!-- title of site -->
<title>Nagajaideep</title>
<!-- For favicon png -->
<link rel="shortcut icon" type="image/icon" href="assets/logo/favicon.png" />
<!--font-awesome.min.css-->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!--flat icon css-->
<link rel="stylesheet" href="assets/css/flaticon.css">
<!--animate.css-->
<link rel="stylesheet" href="assets/css/animate.css">
<!--owl.carousel.css-->
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/owl.theme.default.min.css">
<!--bootstrap.min.css-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- bootsnav -->
<link rel="stylesheet" href="assets/css/bootsnav.css">
<!--style.css-->
<link rel="stylesheet" href="assets/css/style.css">
<!--responsive.css-->
<link rel="stylesheet" href="assets/css/responsive.css">
<!--enhanced-style.css-->
<link rel="stylesheet" href="assets/css/enhanced-style.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- top-area Start -->
<header class="top-area">
<div class="header-area">
<!-- Start Navigation -->
<nav class="navbar navbar-default bootsnav navbar-fixed dark no-background">
<div class="container">
<!-- Start Header Navigation -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-menu"
title="Toggle navigation">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand" href="index.html">Nagajaideep</a>
</div><!--/.navbar-header-->
<!-- End Header Navigation -->
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse menu-ui-design" id="navbar-menu">
<ul class="nav navbar-nav navbar-right" data-in="fadeInDown" data-out="fadeOutUp">
<li class=" smooth-menu active"></li>
<li class=" smooth-menu"><a href="#education">education</a></li>
<li class="smooth-menu"><a href="#skills">skills</a></li>
<li class="smooth-menu"><a href="#experience">experience</a></li>
<li class="smooth-menu"><a href="#profiles">profiles</a></li>
<li class="smooth-menu"><a href="#portfolio">Projects</a></li>
<li class="smooth-menu"><a href="#contact">contact</a></li>
</ul><!--/.nav -->
</div><!-- /.navbar-collapse -->
</div><!--/.container-->
</nav><!--/nav-->
<!-- End Navigation -->
</div><!--/.header-area-->
<div class="clearfix"></div>
</header><!-- /.top-area-->
<!-- top-area End -->
<!--welcome-hero start -->
<section id="welcome-hero" class="welcome-hero">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="header-text">
<h2>hi <span>,</span> i am <br> Nagajaideep <br> <span>.</span> </h2>
<p>COmputer science student | Fellow at headstarter.io</p>
<a href="assets\download\resume.pdf" download>download resume</a>
</div><!--/.header-text-->
</div><!--/.col-->
</div><!-- /.row-->
</div><!-- /.container-->
</section><!--/.welcome-hero-->
<!--welcome-hero end -->
<!--about start -->
<section id="about" class="about">
<div class="section-heading text-center">
<h2>about me</h2>
</div>
<div class="container">
<div class="about-content">
<div class="row">
<div class="col-sm-6">
<div class="single-about-txt">
<h3>
Currently, I am a software engineering fellow at headstarter.ai, where I continue to
refine my skills and expand my expertise. Throughout my career, I have designed websites
for numerous well-known brands, consistently delivering high-quality, innovative
solutions. With a strong foundation in technical skills such as Java, Python, React.js,
and Node.js, I am dedicated to crafting unique digital experiences that captivate users
and drive engagement, always pushing the boundaries of design and technology.
</h3>
<div class="row contact-info-row">
<div class="col-sm-4">
<div class="single-about-add-info">
<h3><i class="fa fa-phone"></i> phone</h3>
<p>+91 8919102340</p>
</div>
</div>
<div class="col-sm-4">
<div class="single-about-add-info">
<h3><i class="fa fa-envelope"></i> email</h3>
<p>[email protected]</p>
</div>
</div>
<div class="col-sm-4">
<div class="single-about-add-info">
<h3><i class="fa fa-globe"></i> website</h3>
<p>coming soon</p>
</div>
</div>
</div>
<div class="tech-highlights">
<span><i class="fa fa-code"></i> Java</span>
<span><i class="fa fa-python"></i> Python</span>
<span><i class="fa fa-cloud"></i> Azure</span>
</div>
</div>
</div>
<div class="col-sm-offset-1 col-sm-5">
<div class="single-about-img">
<img src="assets/images/about/profile_image.jpg" alt="profile_image">
<div class="about-list-icon">
<ul>
<li>
<a href="#">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="#">
<i class="fa fa-dribbble" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="#">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="#">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="#">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</li><!-- / li -->
</ul><!-- / ul -->
</div><!-- /.about-list-icon -->
</div>
</div>
</div>
</div>
</div>
</section><!--/.about-->
<!--about end -->
<!--education start -->
<section id="education" class="education">
<div class="section-heading text-center">
<h2>education</h2>
</div>
<div class="container">
<div class="education-horizontal-timeline">
<div class="row">
<div class="col-sm-6">
<div class="single-horizontal-timeline education-card">
<div class="education-icon">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="experience-time">
<h2>2023 - 2027</h2>
<h3>Btech <span>of </span> computer science and engineering (AIML)</h3>
</div><!--/.experience-time-->
<div class="timeline-horizontal-border">
<i class="fa fa-circle" aria-hidden="true"></i>
<span class="single-timeline-horizontal"></span>
</div>
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
<i class="fa fa-university" aria-hidden="true"></i> Mahatma Gandhi Institue Of
Technology
</h4>
<h5><i class="fa fa-map-marker" aria-hidden="true"></i> Hyderabad, Telangana, India
</h5>
<p class="description">
I'm mastering Java, Data Structures & Algorithms,and the MERN stack, while
applying these skills in projects like a CovidHealthTech and ATM Interface.
Balancing rigorous coursework with roles in tech communities and internships. My
current role as a software engineering fellow at headstarter.ai enriches my
practical experience.
</p>
<div class="education-tags">
<span><i class="fa fa-code"></i> Java</span>
<span><i class="fa fa-sitemap"></i> DSA</span>
<span><i class="fa fa-database"></i> MERN</span>
</div>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div>
</div>
<div class="col-sm-6">
<div class="single-horizontal-timeline education-card">
<div class="education-icon">
<i class="fa fa-school"></i>
</div>
<div class="experience-time">
<h2>2017 - 2023</h2>
<h3>High School <span>at </span>Narayana </h3>
</div><!--/.experience-time-->
<div class="timeline-horizontal-border">
<i class="fa fa-circle" aria-hidden="true"></i>
<span class="single-timeline-horizontal"></span>
</div>
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
<i class="fa fa-building" aria-hidden="true"></i> Narayana High School
</h4>
<h5><i class="fa fa-map-marker" aria-hidden="true"></i> Jubliee Hills, Hyderabad
</h5>
<p class="description">
In 10th class, I achieved a perfect CGPA of 10/10, demonstrating my strong
academic performance. By 12th class, I maintained high standards with a score of
90%, reflecting my continued dedication and excellence. Winning the Space
Settlement Contest by NASA further highlighted my creative and problem-solving
skills.
</p>
<div class="education-highlights">
<span><i class="fa fa-star"></i> 10/10 CGPA</span>
<span><i class="fa fa-trophy"></i> NASA Contest Winner</span>
<span><i class="fa fa-certificate"></i> 90% in 12th</span>
</div>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div>
</div>
</div>
</div>
</div>
</section><!--/.education-->
<!--education end -->
<!--skills start -->
<section id="skills" class="skills">
<div class="skill-content">
<div class="section-heading text-center">
<h2>skills</h2>
</div>
<div class="container">
<div class="skills-intro text-center">
<p class="lead">My expertise spans technical and soft skills that allow me to deliver exceptional
results</p>
</div>
<div class="row">
<div class="col-md-6">
<div class="single-skill-content">
<h3 class="technical-skills-heading"><i class="fa fa-cogs"></i> Technical Skills</h3>
<div class="barWrapper">
<span class="progressText"><i class="fa fa-git"></i> GIt</span>
<div class="single-progress-txt">
<div class="progress">
<div class="progress-bar skill-70" role="progressbar" aria-valuenow="70"
aria-valuemin="10" aria-valuemax="100" data-percent="70">
<span class="skill-count">70%</span>
</div>
</div>
<h3>70%</h3>
</div>
</div>
<div class="barWrapper">
<span class="progressText"><i class="fa fa-exchange"></i> Rest API</span>
<div class="single-progress-txt">
<div class="progress">
<div class="progress-bar skill-90" role="progressbar" aria-valuenow="90"
aria-valuemin="10" aria-valuemax="100" data-percent="90">
<span class="skill-count">90%</span>
</div>
</div>
<h3>90%</h3>
</div>
</div>
<div class="barWrapper">
<span class="progressText"><i class="fa fa-cloud"></i> Microsoft Azure</span>
<div class="single-progress-txt">
<div class="progress">
<div class="progress-bar skill-50" role="progressbar" aria-valuenow="50"
aria-valuemin="10" aria-valuemax="100" data-percent="50">
<span class="skill-count">50%</span>
</div>
</div>
<h3>50%</h3>
</div>
</div>
<div class="barWrapper">
<span class="progressText"><i class="fa fa-code"></i> Java</span>
<div class="single-progress-txt">
<div class="progress">
<div class="progress-bar skill-90" role="progressbar" aria-valuenow="90"
aria-valuemin="10" aria-valuemax="100" data-percent="90">
<span class="skill-count">90%</span>
</div>
</div>
<h3>90%</h3>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="single-skill-content">
<h3 class="professional-skills-heading"><i class="fa fa-briefcase"></i> Professional Skills
</h3>
<div class="barWrapper">
<span class="progressText"><i class="fa fa-html5"></i> HTML 5</span>
<div class="single-progress-txt">
<div class="progress">
<div class="progress-bar skill-90" role="progressbar" aria-valuenow="90"
aria-valuemin="10" aria-valuemax="100" data-percent="90">
<span class="skill-count">90%</span>
</div>
</div>
<h3>90%</h3>
</div>
</div>
<div class="barWrapper">
<span class="progressText"><i class="fa fa-css3"></i> CSS 3</span>
<div class="single-progress-txt">
<div class="progress">
<div class="progress-bar skill-85" role="progressbar" aria-valuenow="85"
aria-valuemin="10" aria-valuemax="100" data-percent="85">
<span class="skill-count">85%</span>
</div>
</div>
<h3>85%</h3>
</div>
</div>
<div class="barWrapper">
<span class="progressText"><i class="fa fa-comments"></i> Communication</span>
<div class="single-progress-txt">
<div class="progress">
<div class="progress-bar skill-97" role="progressbar" aria-valuenow="97"
aria-valuemin="10" aria-valuemax="100" data-percent="97">
<span class="skill-count">97%</span>
</div>
</div>
<h3>97%</h3>
</div>
</div>
<div class="barWrapper">
<span class="progressText"><i class="fa fa-lightbulb-o"></i> Creativity</span>
<div class="single-progress-txt">
<div class="progress">
<div class="progress-bar skill-90" role="progressbar" aria-valuenow="90"
aria-valuemin="10" aria-valuemax="100" data-percent="90">
<span class="skill-count">90%</span>
</div>
</div>
<h3>90%</h3>
</div>
</div>
</div>
</div>
</div>
<div class="additional-skills">
<div class="skill-badges">
<span><i class="fa fa-code-fork"></i> Version Control</span>
<span><i class="fa fa-terminal"></i> CLI</span>
<span><i class="fa fa-users"></i> Teamwork</span>
<span><i class="fa fa-tasks"></i> Project Management</span>
<span><i class="fa fa-bug"></i> Debugging</span>
</div>
</div>
</div>
</div>
</section>
<!--skills end -->
<!--experience start -->
<section id="experience" class="experience">
<div class="section-heading text-center">
<h2>experience</h2>
</div>
<div class="container">
<div class="experience-content">
<div class="main-timeline">
<ul>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>jul 2024 - Present</h2>
<h3>Software engineering Fellow</h3>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
Headstarter.io
</h4>
<h5>New york, USA</h5>
<p class="description">
As a software engineering fellow at headstarter.ai, I will develop
innovative solutions, collaborate on cutting-edge projects, and
enhance my technical skills. This role will allow me to apply my
knowledge in real-world scenarios and contribute to impactful
technology initiatives.
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-offset-1 col-md-5 experience-time-responsive">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
Microsoft
</h2>
<h3>Future Ready Talent Intern</h3>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-5">
<div class="timeline">
<div class="timeline-content text-right">
<h4 class="title">
May-Jul 2024
</h4>
<h5>Future Ready Talent Intern</h5>
<p class="description">
I gained invaluable hands-on experience with Microsoft Azure
services through a healthcare application project, where I developed
a solution to combat COVID-19 misinformation and improve public
health communication. Leveraging Azure Health Bot Service and static
web app services, I enhanced my understanding of cloud computing and
AI through a well-structured process and practical application. This
project boosted my confidence in developing real-world healthcare
solutions. Additionally, I utilized GitHub for version control,
improving my skills in managing and deploying applications
effectively.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5 experience-time-main">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
Microsoft
</h2>
<h3>Hyderabad,Telangana</h3>
</div><!--/.experience-time-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>Mar-Apr(2024)</h2>
<h3>Java Programming Intern</h3>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
Oasis Infobyte Ltd.
</h4>
<h5>Remote</h5>
<p class="description">
During my internship at Oasis Infobyte, I developed a Java-based
**ATM Interface** to streamline transactions and enhance user
convenience. This project deepened my understanding of Java and
practical application development. Additionally, I created an
engaging **Guess the Number** game, which honed my skills in
interactive game development and user input handling. Both projects
provided valuable hands-on experience and solidified my passion for
software development.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
</ul>
</div><!--.main-timeline-->
</div><!--.experience-content-->
</div>
</section><!--/.experience-->
<!--experience end -->
<!--profiles start -->
<section id="profiles" class="profiles">
<div class="profiles-details">
<div class="section-heading text-center">
<h2>profiles</h2>
</div>
<div class="container">
<div class="profiles-content">
<div class="row">
<div class="col-sm-3">
<div class="single-profile">
<div class="profile-txt">
<a href="https://www.linkedin.com/in/nagajaideep" target="_blank" rel="noopener"><i
class="fa fa-linkedin"></i></a>
<div class="profile-icon-name">Linkedin</div>
</div>
<div class="single-profile-overlay">
<div class="profile-txt">
<a href="https://www.linkedin.com/in/nagajaideep" target="_blank"
rel="noopener"><i class="fa fa-linkedin"></i></a>
<div class="profile-icon-name">Linkedin</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="single-profile">
<div class="profile-txt">
<a href="https://github.com/nagajaideep" target="_blank" rel="noopener"><i
class="fa fa-github"></i></a>
<div class="profile-icon-name">Github</div>
</div>
<div class="single-profile-overlay">
<div class="profile-txt">
<a href="https://github.com/nagajaideep" target="_blank" rel="noopener"><i
class="fa fa-github"></i></a>
<div class="profile-icon-name">Github</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="single-profile">
<div class="profile-txt">
<a href="https://leetcode.com/nagajaideep/" target="_blank" rel="noopener"><i
class="fa fa-code"></i></a>
<div class="profile-icon-name">LeetCode</div>
</div>
<div class="single-profile-overlay">
<div class="profile-txt">
<a href="https://leetcode.com/nagajaideep/" target="_blank" rel="noopener"><i
class="fa fa-code"></i></a>
<div class="profile-icon-name">LeetCode</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--profiles end -->
<!--portfolio start -->
<section id="portfolio" class="portfolio">
<div class="portfolio-details">
<div class="section-heading text-center">
<h2>Projects</h2>
<p class="section-subtitle">Innovative solutions I've developed</p>
</div>
<!-- <div class="container">
<div class="portfolio-content">
<div class="portfolio-filters text-center">
<ul class="filter-options">
<li class="active" data-filter="*">All</li>
<li data-filter=".web">Web</li>
<li data-filter=".java">Java</li>
<li data-filter=".healthcare">Healthcare</li>
</ul>
</div> -->
<div class="isotope">
<div class="row">
<div class="col-sm-4">
<div class="item healthcare web">
<img src="assets/images/portfolio/p1.jpg" alt="CovidHealthTech project" />
<div class="isotope-overlay">
<a href="https://github.com/mnagajaideepchowdary/CovidHealthTech" class="project-link"
target="_blank" rel="noopener">
<h3><i class="fa fa-heartbeat"></i> CovidHealthTech</h3>
<p>Healthcare | Azure Cloud</p>
<span class="view-project">View Project <i class="fa fa-arrow-right"></i></span>
</a>
</div>
<div class="project-description">
<p>A healthcare application leveraging Microsoft Azure services to combat
COVID-19 misinformation and improve public health communication.</p>
<div class="tech-stack">
<span><i class="fa fa-cloud"></i> Azure</span>
<span><i class="fa fa-medkit"></i> Health Bot</span>
<span><i class="fa fa-globe"></i> Static Web Apps</span>
</div>
</div>
</div>
<div class="item java">
<img src="assets/images/portfolio/p2.jpg" alt="ATM Interface project" />
<div class="isotope-overlay">
<a href="#" class="project-link">
<h3><i class="fa fa-credit-card"></i> ATM Interface</h3>
<p>Java | Banking System</p>
<span class="view-project">View Project <i class="fa fa-arrow-right"></i></span>
</a>
</div>
<div class="project-description">
<p>A comprehensive Java-based ATM interface that simulates banking operations
with secure transaction handling and user-friendly design.</p>
<div class="tech-stack">
<span><i class="fa fa-coffee"></i> Java</span>
<span><i class="fa fa-cubes"></i> OOP</span>
<span><i class="fa fa-file-text"></i> File I/O</span>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="item java">
<img src="assets/images/portfolio/p3.jpg" alt="Guess the Number game" />
<div class="isotope-overlay">
<a href="#" class="project-link">
<h3><i class="fa fa-gamepad"></i> Guess the Number</h3>
<p>Java | Interactive Game</p>
<span class="view-project">View Project <i class="fa fa-arrow-right"></i></span>
</a>
</div>
<div class="project-description">
<p>An engaging console-based number guessing game with multiple difficulty
levels and score tracking functionality.</p>
<div class="tech-stack">
<span><i class="fa fa-coffee"></i> Java</span>
<span><i class="fa fa-random"></i> Random</span>
<span><i class="fa fa-keyboard-o"></i> User Input</span>
</div>
</div>
</div>
<div class="item web">
<img src="assets/images/portfolio/p4.jpg" alt="Personal Portfolio" />
<div class="isotope-overlay">
<a href="https://github.com/nagajaideep/Personal-Portfolio" class="project-link"
target="_blank" rel="noopener">
<h3><i class="fa fa-id-card"></i> Portfolio Website</h3>
<p>HTML | CSS | JavaScript</p>
<span class="view-project">View Project <i class="fa fa-arrow-right"></i></span>
</a>
</div>
<div class="project-description">
<p>A responsive personal portfolio website showcasing my skills, projects, and
professional journey.</p>
<div class="tech-stack">
<span><i class="fa fa-html5"></i> HTML5</span>
<span><i class="fa fa-css3"></i> CSS3</span>
<span><i class="fa fa-code"></i> JavaScript</span>
<span><i class="fa fa-bootstrap"></i> Bootstrap</span>
</div>
</div>
</div>
</div>
</div>
<div class="text-center view-all-projects">
<a href="https://github.com/nagajaideep" target="_blank" rel="noopener" class="btn-custom">View All
Projects on GitHub <i class="fa fa-github"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--contact start -->
<section id="contact" class="contact">
<div class="section-heading text-center">
<h2>contact me</h2>
</div>
<div class="container">
<div class="contact-content">
<div class="row">
<div class="col-md-offset-1 col-md-5 col-sm-6">
<div class="single-contact-box">
<div class="contact-form">
<form>
<div class="row">
<div class="col-sm-6 col-xs-12">
<div class="form-group">
<input type="text" class="form-control" id="name" placeholder="Name*"
name="name">
</div>
</div>
<div class="col-sm-6 col-xs-12">
<div class="form-group">
<input type="email" class="form-control" id="email" placeholder="Email*"
name="email">
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<input type="text" class="form-control" id="subject"
placeholder="Subject" name="subject">
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<textarea class="form-control" rows="8" id="comment"
placeholder="Message"></textarea>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="single-contact-btn">
<a class="contact-btn" href="#" role="button">Submit <i
class="fa fa-paper-plane"></i></a>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="col-md-offset-1 col-md-5 col-sm-6">
<div class="single-contact-box">
<div class="contact-adress">
<div class="contact-add-head">
<h3><i class="fa fa-user-circle"></i> Nagajaideep</h3>
<p><i class="fa fa-briefcase"></i> Software engineering Fellow </p>
</div>
<div class="contact-add-info">
<div class="single-contact-add-info">
<h3><i class="fa fa-phone"></i> phone</h3>
<p>+91 8919102340</p>
</div>
<div class="single-contact-add-info">
<h3><i class="fa fa-envelope"></i> email</h3>
<p>[email protected]</p>
</div>
<div class="single-contact-add-info">
<h3><i class="fa fa-globe"></i> website</h3>
<p><a href="https://nagajaideep.github.io/Personal-Portfolio/" target="_blank"
rel="noopener" title="Visit my personal portfolio">Visit my personal
portfolio</a></p>
</div>
</div>
</div>
<div class="hm-foot-icon">
<ul>
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-github"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--contact end -->
<!--footer-copyright start-->
<footer id="footer-copyright" class="footer-copyright">
<div class="container">
<div class="hm-footer-copyright text-center">
<p>
© copyright @nagajaideepchowdary. design and developed by Nagajaideep <a
href="https://www.themesine.com/">themesine</a>
</p><!--/p-->
</div><!--/.text-center-->
</div><!--/.container-->
<div id="scroll-Top">
<div class="return-to-top">
<i class="fa fa-angle-up " id="scroll-top"></i>
</div>
</div><!--/.scroll-Top-->
</footer><!--/.footer-copyright-->
<!--footer-copyright end-->
<!-- Include all js compiled plugins (below), or include individual files as needed -->
<script src="assets/js/jquery.js"></script>
<!--modernizr.min.js-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<!--bootstrap.min.js-->
<script src="assets/js/bootstrap.min.js"></script>
<!-- bootsnav js -->
<script src="assets/js/bootsnav.js"></script>
<!-- jquery.sticky.js -->
<script src="assets/js/jquery.sticky.js"></script>
<!-- for progress bar start-->
<!-- progressbar js -->
<script src="assets/js/progressbar.js"></script>
<!-- appear js -->
<script src="assets/js/jquery.appear.js"></script>
<!-- for progress bar end -->
<!--owl.carousel.js-->
<script src="assets/js/owl.carousel.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"
integrity="sha512-0QbL0ph8Tc8g5bLhfVzSqxe9GERORsKhIn1IrpxDAgUsbBGz/V7iSav2zzW325XGd1OMLdL4UiqRJj702IeqnQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!--Custom JS-->
<script src="assets/js/custom.js"></script>
<script src="assets/js/progress.js"></script>
<script src="assets/js/projects.js"></script>
<script>
// Emergency fix for progress bars
$(window).on('load', function () {
// Force progress bars to their correct width
setTimeout(function () {
$('.skill-50').css('width', '50%');
$('.skill-70').css('width', '70%');
$('.skill-85').css('width', '85%');
$('.skill-90').css('width', '90%');
$('.skill-97').css('width', '97%');
}, 1000);
});
</script>
</body>
</html>