-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1642 lines (1524 loc) · 93.6 KB
/
index.html
File metadata and controls
1642 lines (1524 loc) · 93.6 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">
<meta name="description" content="Thoubic Imran - Power Platform Developer & IT Support Engineer at Sonovision-Aetos. Specializing in Power Apps, Automation, and IoT solutions with hands-on enterprise experience.">
<meta name="keywords" content="Power Platform Developer, Power Apps, Power Automate, IT Support Engineer, Automation Engineer, Sonovision-Aetos, IoT Developer">
<meta name="author" content="Thoubic Imran">
<title>Thoubic Imran | Power Platform Developer @ Sonovision-Aetos</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<!-- Header & Navigation -->
<header class="header" role="banner">
<div class="container">
<a href="#home" class="logo">
<span class="logo-icon">TI</span>
<div class="logo-text">
<span class="logo-name">Thoubic Imran</span>
<span class="logo-tagline">Power Platform Developer</span>
</div>
</a>
<nav class="nav" role="navigation">
<ul class="nav-links">
<li><a href="#home" class="nav-link active"><i class="fas fa-home"></i><span>Home</span></a></li>
<li><a href="#about" class="nav-link"><i class="fas fa-user"></i><span>About</span></a></li>
<li><a href="#experience" class="nav-link"><i class="fas fa-briefcase"></i><span>Experience</span></a></li>
<li><a href="#skills" class="nav-link"><i class="fas fa-tools"></i><span>Skills</span></a></li>
<li><a href="#projects" class="nav-link"><i class="fas fa-project-diagram"></i><span>Projects</span></a></li>
<li><a href="#certifications" class="nav-link"><i class="fas fa-award"></i><span>Certifications</span></a></li>
<li><a href="#contact" class="nav-link btn-contact"><i class="fas fa-envelope"></i><span>Contact</span></a></li>
</ul>
<div class="nav-actions">
<a href="Thoubic_Imran_Resume.pdf" download class="btn-resume-mobile">
<i class="fas fa-download"></i>
</a>
<button class="hamburger" aria-label="Toggle navigation menu" aria-expanded="false">
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
</button>
</div>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero" aria-label="Introduction">
<div class="container">
<div class="hero-content">
<div class="hero-text">
<div class="hero-badge">
<i class="fas fa-building"></i>
<span>Currently @ Sonovision-Aetos</span>
</div>
<h1 class="hero-title">
<span class="hero-greeting">Hello, I'm</span>
<span class="hero-name">Thoubic Imran</span>
<span class="hero-role">Power Platform & IT Support Engineer</span>
</h1>
<p class="hero-description">
Transforming business processes through Power Platform automation, developing enterprise applications,
and providing technical support solutions at Sonovision-Aetos. Passionate about creating efficient,
scalable solutions that drive business value.
</p>
<div class="hero-stats">
<div class="stat-item">
<div class="stat-number" data-count="6">7</div>
<div class="stat-label">Projects</div>
</div>
<div class="stat-item">
<div class="stat-number" data-count="10+">10</div>
<div class="stat-label">Certifications</div>
</div>
<div class="stat-item">
<div class="stat-number">3+</div>
<div class="stat-label">Months Experience</div>
</div>
</div>
<div class="hero-actions">
<a href="#experience" class="btn btn-primary btn-lg">
<i class="fas fa-briefcase"></i>
<span>View Experience</span>
</a>
<a href="#projects" class="btn btn-outline btn-lg">
<i class="fas fa-code"></i>
<span>View Projects</span>
</a>
</div>
</div>
<div class="hero-visual">
<div class="profile-container">
<div class="profile-image">
<img src="IMG_20240806_144601.jpg"
alt="Thoubic Imran - Power Platform Developer"
class="profile-img">
<div class="profile-frame"></div>
</div>
<div class="floating-tech">
<div class="tech-icon" style="--delay: 0s;">
<i class="fab fa-microsoft" title="Power Platform"></i>
</div>
<div class="tech-icon" style="--delay: 0.5s;">
<i class="fas fa-cogs" title="Automation"></i>
</div>
<div class="tech-icon" style="--delay: 1s;">
<i class="fas fa-headset" title="IT Support"></i>
</div>
<div class="tech-icon" style="--delay: 1.5s;">
<i class="fas fa-cloud" title="Cloud"></i>
</div>
<div class="tech-icon" style="--delay: 2s;">
<i class="fas fa-microchip" title="IoT"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="hero-scroll">
<a href="#about" class="scroll-down">
<i class="fas fa-chevron-down"></i>
</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="section about-section">
<div class="container">
<div class="section-header">
<span class="section-subtitle">Professional Profile</span>
<h2 class="section-title">About <span class="highlight">Me</span></h2>
<div class="section-divider">
<div class="divider-line"></div>
<div class="divider-dot"></div>
<div class="divider-line"></div>
</div>
</div>
<div class="about-content">
<div class="about-image-section">
<div class="image-wrapper">
<img src="Imran Full size photo.png"
alt="Thoubic Imran working at Sonovision-Aetos"
class="about-img">
<div class="image-overlay">
<div class="overlay-content">
<i class="fas fa-building"></i>
<h3>Sonovision-Aetos</h3>
</div>
</div>
</div>
<div class="education-card">
<h3 class="card-title">
<i class="fas fa-graduation-cap"></i>
<span>Education</span>
</h3>
<div class="education-timeline">
<div class="timeline-item">
<div class="timeline-year">2021 - 2025</div>
<div class="timeline-content">
<h4>B.E Computer Science & Engineering</h4>
<p class="institution">Dhanalakshmi Srinivasan Engineering College</p>
<div class="timeline-details">
<span class="grade">CGPA: 7.95</span>
<span class="status">Expected 2025</span>
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-year">2020 - 2021</div>
<div class="timeline-content">
<h4>HSLC</h4>
<p class="institution">Vidya Mandir Matriculation HSS</p>
<div class="timeline-details">
<span class="grade">Percentage: 88.2%</span>
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-year">2018 - 2019</div>
<div class="timeline-content">
<h4>SSLC</h4>
<p class="institution">TSN Matriculation School</p>
<div class="timeline-details">
<span class="grade">Percentage: 86.2%</span>
</div>
</div>
</div>
</div>
<!-- Achievements Section -->
<div class="achievements-section">
<h3>
<i class="fas fa-trophy"></i>
<span>Achievements & Activities</span>
</h3>
<div class="achievements-list">
<div class="achievement-item">
<div class="achievement-icon">
<i class="fas fa-medal"></i>
</div>
<div class="achievement-content">
<h4>Power Platform Excellence</h4>
<p>Received recognition for developing efficient automation solutions at Sonovision-Aetos</p>
</div>
</div>
<div class="achievement-item">
<div class="achievement-icon">
<i class="fas fa-chalkboard-teacher"></i>
</div>
<div class="achievement-content">
<h4>Technical Workshops</h4>
<p>Conducted Power Platform training sessions for team members</p>
</div>
</div>
<div class="achievement-item">
<div class="achievement-icon">
<i class="fas fa-lightbulb"></i>
</div>
<div class="achievement-content">
<h4>Process Innovation</h4>
<p>Proposed and implemented workflow improvements saving 15+ hours weekly</p>
</div>
</div>
<div class="achievement-item">
<div class="achievement-icon">
<i class="fas fa-graduation-cap"></i>
</div>
<div class="achievement-content">
<h4>Academic Excellence</h4>
<p>Maintained strong academic record while gaining professional experience</p>
</div>
</div>
</div>
</div>
<div class="current-status">
<div class="status-badge">
<i class="fas fa-code"></i>
<i class="fas fa-trophy"></i>
<span>PowerApp Developer</span>
</div>
<p>Starting professional Career with Sonovision-Aetos</p>
</div>
</div>
</div>
<div class="about-text-section">
<div class="about-intro">
<h3>Professional Summary</h3>
<p class="lead">Power Platform Developer and IT Support Engineer at Sonovision-Aetos, currently Graduated B.E in Computer Science & Engineering.Specializing in business process automation, enterprise application development, and technical support solutions.</p>
<div class="highlight-card">
<i class="fas fa-bullseye"></i>
<div class="highlight-content">
<h4>Current Focus</h4>
<p>Developing and maintaining Power Platform solutions, providing IT support, and automating business processes to enhance operational efficiency at Sonovision-Aetos.</p>
</div>
</div>
</div>
<div class="personal-info">
<h3>Quick Facts</h3>
<div class="info-grid">
<div class="info-item">
<div class="info-icon">
<i class="fas fa-building"></i>
</div>
<div class="info-content">
<span class="info-label">Current Role</span>
<span class="info-value">Power Platform Developer</span>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-calendar"></i>
</div>
<div class="info-content">
<span class="info-label">Joined</span>
<span class="info-value">Sep 1, 2025</span>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="info-content">
<span class="info-label">Location</span>
<span class="info-value">Bangalore, India</span>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-phone"></i>
</div>
<div class="info-content">
<span class="info-label">Contact</span>
<a href="tel:+919514217005" class="info-value">+91 9514217005</a>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-envelope"></i>
</div>
<div class="info-content">
<span class="info-label">Email</span>
<a href="mailto:thoubicimran005@gmail.com" class="info-value">thoubicimran005@gmail.com</a>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-clock"></i>
</div>
<div class="info-content">
<span class="info-label">Availability</span>
<span class="info-value">Open to Opportunities</span>
</div>
</div>
</div>
</div>
<div class="about-passion">
<h3>Why Choose Me?</h3>
<p>I combine technical expertise in Power Platform with strong problem-solving skills and a commitment to delivering value. My approach focuses on understanding business needs and creating practical, efficient solutions that make a real impact.</p>
<div class="value-propositions">
<div class="value-item">
<i class="fas fa-bolt"></i>
<h4>Quick Learner</h4>
<p>Rapidly adapt to new technologies and business requirements</p>
</div>
<div class="value-item">
<i class="fas fa-handshake"></i>
<h4>Team Player</h4>
<p>Collaborate effectively with cross-functional teams</p>
</div>
<div class="value-item">
<i class="fas fa-chart-line"></i>
<h4>Results-Driven</h4>
<p>Focus on delivering measurable business value</p>
</div>
<div class="value-item">
<i class="fas fa-shield-alt"></i>
<h4>Quality Focus</h4>
<p>Commitment to delivering robust, well-tested solutions</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="section experience-section">
<div class="container">
<div class="section-header">
<span class="section-subtitle">Work History</span>
<h2 class="section-title">Professional <span class="highlight">Experience</span></h2>
<div class="section-divider">
<div class="divider-line"></div>
<div class="divider-dot"></div>
<div class="divider-line"></div>
</div>
</div>
<div class="experience-content">
<!-- Current Role -->
<div class="current-role">
<div class="role-badge">
<i class="fas fa-star"></i>
<span>Current Position</span>
</div>
<div class="company-card">
<div class="company-header">
<div class="company-logo">
<div class="logo-placeholder">
<i class="fas fa-building"></i>
</div>
<div class="company-details">
<h3>Sonovision-Aetos Technical Services Pvt Ltd</h3>
<div class="company-info">
<span class="company-location">
<i class="fas fa-map-marker-alt"></i>
Bangalore, India
</span>
<span class="employment-duration">
<i class="fas fa-calendar-alt"></i>
Sep 2025 - Present
</span>
<span class="employment-type">
<i class="fas fa-briefcase"></i>
Full-time Employment
</span>
</div>
</div>
</div>
</div>
<div class="role-details">
<h4>Power Platform Developer & IT Support Engineer</h4>
<p class="role-description">
Developing and maintaining enterprise applications using Microsoft Power Platform,
providing technical support, and automating business processes to enhance operational efficiency.
</p>
<div class="role-responsibilities">
<h5>Key Responsibilities</h5>
<div class="responsibilities-grid">
<div class="responsibility">
<i class="fas fa-cube"></i>
<div>
<h6>Power Apps Development</h6>
<p>Design and develop canvas/model-driven apps for business processes</p>
</div>
</div>
<div class="responsibility">
<i class="fas fa-cogs"></i>
<div>
<h6>Process Automation</h6>
<p>Create automated workflows using Power Automate to streamline operations</p>
</div>
</div>
<div class="responsibility">
<i class="fas fa-headset"></i>
<div>
<h6>Technical Support</h6>
<p>Provide IT support and troubleshooting for enterprise applications</p>
</div>
</div>
<div class="responsibility">
<i class="fas fa-database"></i>
<div>
<h6>Data Management</h6>
<p>Manage SharePoint lists and data integration between systems</p>
</div>
</div>
</div>
</div>
<div class="achievements">
<h5>Key Achievements</h5>
<div class="achievements-list">
<div class="achievement-item">
<i class="fas fa-check-circle"></i>
<span>Developed 3+ production Power Apps for internal processes</span>
</div>
<div class="achievement-item">
<i class="fas fa-check-circle"></i>
<span>Automated 5+ manual workflows saving 20+ hours weekly</span>
</div>
<div class="achievement-item">
<i class="fas fa-check-circle"></i>
<span>Reduced support ticket resolution time by 40%</span>
</div>
<div class="achievement-item">
<i class="fas fa-check-circle"></i>
<span>Maintained 100% uptime for critical business applications</span>
</div>
</div>
</div>
<div class="technologies-used">
<h5>Technologies Used</h5>
<div class="tech-tags">
<span class="tech-tag">Power Apps</span>
<span class="tech-tag">Power Automate</span>
<span class="tech-tag">Power BI</span>
<span class="tech-tag">SharePoint</span>
<span class="tech-tag">Power Platform</span>
<span class="tech-tag">Microsoft 365</span>
<span class="tech-tag">Excel</span>
<span class="tech-tag">SQL</span>
</div>
</div>
</div>
</div>
</div>
<!-- Previous Internship -->
<div class="previous-role">
<h4>Previous Experience & Internships</h4>
<div class="internship-card">
<div class="internship-header">
<h5>Supports & Services Intern</h5>
<span class="internship-duration">3 Months Internship</span>
</div>
<div class="internship-details">
<p>Gained hands-on experience in Power Platform development and enterprise application support,
which led to the current full-time position.</p>
<div class="internship-responsibilities">
<h6>Key Responsibilities:</h6>
<ul>
<li><i class="fas fa-check"></i> Assisted in developing canvas apps for internal process automation</li>
<li><i class="fas fa-check"></i> Created documentation for Power Automate workflows</li>
<li><i class="fas fa-check"></i> Provided Level 1 technical support for business applications</li>
<li><i class="fas fa-check"></i> Participated in requirements gathering sessions</li>
<li><i class="fas fa-check"></i> Tested and debugged Power Platform solutions</li>
</ul>
</div>
<div class="internship-outcomes">
<h6>Learning Outcomes:</h6>
<ul>
<li><i class="fas fa-star"></i> Gained practical experience in enterprise application development</li>
<li><i class="fas fa-star"></i> Developed understanding of business process automation</li>
<li><i class="fas fa-star"></i> Learned best practices for Power Platform solutions</li>
</ul>
</div>
<div class="internship-skills">
<span class="skill-tag">Power Apps</span>
<span class="skill-tag">Workflow Automation</span>
<span class="skill-tag">Technical Documentation</span>
<span class="skill-tag">Requirements Analysis</span>
<span class="skill-tag">User Support</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="section skills-section">
<div class="container">
<div class="section-header">
<span class="section-subtitle">Technical Expertise</span>
<h2 class="section-title">Skills & <span class="highlight">Capabilities</span></h2>
<div class="section-divider">
<div class="divider-line"></div>
<div class="divider-dot"></div>
<div class="divider-line"></div>
</div>
</div>
<div class="skills-content">
<div class="skills-intro">
<p class="intro-text">Combining hands-on professional experience with strong technical skills to deliver effective solutions.</p>
</div>
<div class="skills-container">
<!-- Technical Skills -->
<div class="technical-skills">
<div class="skills-category">
<h3 class="category-title">
<i class="fab fa-microsoft"></i>
<span>Microsoft Power Platform</span>
</h3>
<div class="skills-grid">
<div class="skill-item">
<div class="skill-chart">
<div class="circular-progress" data-percentage="90">
<svg class="progress-ring" width="80" height="80">
<circle class="progress-ring-circle" stroke-width="4" fill="transparent" r="36" cx="40" cy="40"/>
</svg>
<span class="progress-value">90%</span>
</div>
</div>
<div class="skill-info">
<h4>Power Apps Development</h4>
<p>Canvas & Model-driven apps, UI/UX, Data integration</p>
<div class="skill-experience">
<i class="fas fa-briefcase"></i>
<span>Professional Experience</span>
</div>
</div>
</div>
<div class="skill-item">
<div class="skill-chart">
<div class="circular-progress" data-percentage="85">
<svg class="progress-ring" width="80" height="80">
<circle class="progress-ring-circle" stroke-width="4" fill="transparent" r="36" cx="40" cy="40"/>
</svg>
<span class="progress-value">85%</span>
</div>
</div>
<div class="skill-info">
<h4>Power Automate</h4>
<p>Workflow automation, Cloud/Desktop flows, Error handling</p>
<div class="skill-experience">
<i class="fas fa-briefcase"></i>
<span>Professional Experience</span>
</div>
</div>
</div>
<div class="skill-item">
<div class="skill-chart">
<div class="circular-progress" data-percentage="80">
<svg class="progress-ring" width="80" height="80">
<circle class="progress-ring-circle" stroke-width="4" fill="transparent" r="36" cx="40" cy="40"/>
</svg>
<span class="progress-value">80%</span>
</div>
</div>
<div class="skill-info">
<h4>SharePoint & Power BI</h4>
<p>Data management, Lists/Libraries, Basic dashboards</p>
<div class="skill-experience">
<i class="fas fa-briefcase"></i>
<span>Professional Experience</span>
</div>
</div>
</div>
</div>
</div>
<div class="skills-category">
<h3 class="category-title">
<i class="fas fa-cloud"></i>
<span>Cloud & Development</span>
</h3>
<div class="skills-grid">
<div class="skill-item">
<div class="skill-chart">
<div class="circular-progress" data-percentage="85">
<svg class="progress-ring" width="80" height="80">
<circle class="progress-ring-circle" stroke-width="4" fill="transparent" r="36" cx="40" cy="40"/>
</svg>
<span class="progress-value">85%</span>
</div>
</div>
<div class="skill-info">
<h4>Python Development</h4>
<p>Automation, Data processing, Web frameworks</p>
</div>
</div>
<div class="skill-item">
<div class="skill-chart">
<div class="circular-progress" data-percentage="80">
<svg class="progress-ring" width="80" height="80">
<circle class="progress-ring-circle" stroke-width="4" fill="transparent" r="36" cx="40" cy="40"/>
</svg>
<span class="progress-value">80%</span>
</div>
</div>
<div class="skill-info">
<h4>AWS Cloud Services</h4>
<p>EC2, S3, IAM, Cloud fundamentals</p>
</div>
</div>
<div class="skill-item">
<div class="skill-chart">
<div class="circular-progress" data-percentage="75">
<svg class="progress-ring" width="80" height="80">
<circle class="progress-ring-circle" stroke-width="4" fill="transparent" r="36" cx="40" cy="40"/>
</svg>
<span class="progress-value">75%</span>
</div>
</div>
<div class="skill-info">
<h4>Web Development</h4>
<p>HTML/CSS/JavaScript, Flask, Streamlit</p>
</div>
</div>
</div>
</div>
<div class="skills-category">
<h3 class="category-title">
<i class="fas fa-tools"></i>
<span>Tools & Technologies</span>
</h3>
<div class="tools-grid">
<div class="tool-item">
<i class="fab fa-git-alt"></i>
<span>Git & GitHub</span>
</div>
<div class="tool-item">
<i class="fas fa-database"></i>
<span>SQL/MySQL</span>
</div>
<div class="tool-item">
<i class="fab fa-docker"></i>
<span>Docker Basics</span>
</div>
<div class="tool-item">
<i class="fas fa-microchip"></i>
<span>IoT/Embedded</span>
</div>
<div class="tool-item">
<i class="fas fa-file-excel"></i>
<span>Excel Advanced</span>
</div>
<div class="tool-item">
<i class="fas fa-server"></i>
<span>IT Support</span>
</div>
</div>
</div>
</div>
<!-- Soft Skills - Stacked Cards -->
<div class="soft-skills">
<div class="soft-skills-header">
<h3 class="soft-skills-title">
<i class="fas fa-users"></i>
<span>Professional Attributes</span>
</h3>
<p class="soft-skills-description">Key strengths that complement technical expertise</p>
</div>
<div class="soft-skills-stack">
<!-- Card 1 -->
<div class="soft-skill-card">
<div class="card-front">
<div class="skill-icon">
<i class="fas fa-lightbulb"></i>
</div>
<div class="skill-content">
<h4>Problem Solving</h4>
<p>Analytical approach to identify and solve complex technical challenges</p>
</div>
</div>
<div class="card-back">
<h5>Real Example</h5>
<p>Reduced manual data entry time by 70% by automating SharePoint list updates at Sonovision-Aetos</p>
</div>
</div>
<!-- Card 2 -->
<div class="soft-skill-card">
<div class="card-front">
<div class="skill-icon">
<i class="fas fa-comments"></i>
</div>
<div class="skill-content">
<h4>Communication</h4>
<p>Clear technical communication with both technical and non-technical stakeholders</p>
</div>
</div>
<div class="card-back">
<h5>Real Example</h5>
<p>Created user-friendly documentation that reduced support queries by 60%</p>
</div>
</div>
<!-- Card 3 -->
<div class="soft-skill-card">
<div class="card-front">
<div class="skill-icon">
<i class="fas fa-tasks"></i>
</div>
<div class="skill-content">
<h4>Time Management</h4>
<p>Efficient task prioritization while balancing work and final year studies</p>
</div>
</div>
<div class="card-back">
<h5>Real Example</h5>
<p>Successfully delivers projects on time while maintaining academic performance</p>
</div>
</div>
<!-- Card 4 -->
<div class="soft-skill-card">
<div class="card-front">
<div class="skill-icon">
<i class="fas fa-rocket"></i>
</div>
<div class="skill-content">
<h4>Quick Learning</h4>
<p>Rapid adaptation to new technologies and business requirements</p>
</div>
</div>
<div class="card-back">
<h5>Real Example</h5>
<p>Mastered Power Platform tools within weeks and contributed to production projects</p>
</div>
</div>
<!-- Card 5 -->
<div class="soft-skill-card">
<div class="card-front">
<div class="skill-icon">
<i class="fas fa-handshake"></i>
</div>
<div class="skill-content">
<h4>Team Collaboration</h4>
<p>Effective teamwork in cross-functional environments</p>
</div>
</div>
<div class="card-back">
<h5>Real Example</h5>
<p>Collaborated with 3 departments to streamline approval workflows</p>
</div>
</div>
<!-- Card 6 -->
<div class="soft-skill-card">
<div class="card-front">
<div class="skill-icon">
<i class="fas fa-brain"></i>
</div>
<div class="skill-content">
<h4>Critical Thinking</h4>
<p>Systematic analysis to determine optimal solutions</p>
</div>
</div>
<div class="card-back">
<h5>Real Example</h5>
<p>Identified and fixed performance bottlenecks in existing Power Apps</p>
</div>
</div>
</div>
<div class="additional-skills-info">
<div class="additional-card">
<div class="additional-icon">
<i class="fas fa-language"></i>
</div>
<div class="additional-content">
<h4>Language Proficiency</h4>
<div class="language-list">
<div class="language-item">
<span class="language-name">English</span>
<span class="language-level">Professional Proficiency</span>
</div>
<div class="language-item">
<span class="language-name">Tamil</span>
<span class="language-level">Native Speaker</span>
</div>
</div>
</div>
</div>
<div class="additional-card">
<div class="additional-icon">
<i class="fas fa-certificate"></i>
</div>
<div class="additional-content">
<h4>Continuous Learning</h4>
<p>Currently pursuing advanced Power Platform certifications and exploring AI integration in automation solutions.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="section projects-section">
<div class="container">
<div class="section-header">
<span class="section-subtitle">Portfolio Showcase</span>
<h2 class="section-title">Featured <span class="highlight">Projects</span></h2>
<div class="section-divider">
<div class="divider-line"></div>
<div class="divider-dot"></div>
<div class="divider-line"></div>
</div>
</div>
<div class="projects-filter">
<button class="filter-btn active" data-filter="all">All Projects</button>
<button class="filter-btn" data-filter="professional">Professional</button>
<button class="filter-btn" data-filter="personal">Personal</button>
<button class="filter-btn" data-filter="automation">Automation</button>
</div>
<div class="projects-grid">
<!-- Professional Project -->
<div class="project-card" data-category="professional automation">
<div class="project-image">
<div class="project-badge">Professional</div>
<img src="images/project-business-app.jpg" alt="Business Process Automation Dashboard">
<div class="project-overlay">
<div class="overlay-content">
<h3>Enterprise Solution</h3>
<p>Used at Sonovision-Aetos</p>
</div>
</div>
</div>
<div class="project-content">
<div class="project-tags">
<span class="project-tag">Power Apps</span>
<span class="project-tag">Power Automate</span>
<span class="project-tag">SharePoint</span>
<span class="project-tag">Enterprise</span>
</div>
<h3 class="project-title">Auction Bidding.</h3>
<div class="project-case-study">
<div class="case-study-item">
<div class="case-study-icon">
<i class="fas fa-exclamation-circle"></i>
</div>
<div class="case-study-content">
<h4>Business Challenge</h4>
<p>Manual approval processes causing delays and errors in enterprise operations at Sonovision-Aetos.</p>
</div>
</div>
<div class="case-study-item">
<div class="case-study-icon">
<i class="fas fa-cogs"></i>
</div>
<div class="case-study-content">
<h4>My Solution</h4>
<p>Developed Power Apps with automated workflows integrated with SharePoint for seamless data management.</p>
</div>
</div>
<div class="case-study-item">
<div class="case-study-icon">
<i class="fas fa-chart-line"></i>
</div>
<div class="case-study-content">
<h4>Business Impact</h4>
<p>70% reduction in processing time, improved accuracy, and streamlined operations across departments.</p>
</div>
</div>
</div>
<div class="project-features">
<h4>Key Features</h4>
<ul>
<li><i class="fas fa-check"></i> Custom Power Apps with responsive design</li>
<li><i class="fas fa-check"></i> Automated approval workflows with notifications</li>
<li><i class="fas fa-check"></i> Real-time status tracking and reporting</li>
<li><i class="fas fa-check"></i> Secure role-based access control</li>
</ul>
</div>
<div class="project-links">
<span class="project-note">
<i class="fas fa-building"></i>
Proprietary - Developed for Sonovision-Aetos
</span>
</div>
</div>
</div>
<!-- Personal Project 1 -->
<div class="project-card" data-category="personal">
<div class="project-image">
<img src="Quantum Computing.jpeg" alt="Resource Management Simulation">
<div class="project-overlay">
<div class="overlay-content">
<h3>Academic Project</h3>
<p>Published on GitHub</p>
</div>
</div>
</div>
<div class="project-content">
<div class="project-tags">
<span class="project-tag">Python</span>
<span class="project-tag">Quantum Algorithms</span>
<span class="project-tag">Streamlit</span>
<span class="project-tag">Research</span>
</div>
<h3 class="project-title">Quantum-Optimized Resource Management</h3>
<div class="project-case-study">
<div class="case-study-item">
<div class="case-study-icon">
<i class="fas fa-exclamation-circle"></i>
</div>
<div class="case-study-content">
<h4>Research Problem</h4>
<p>Inefficient resource allocation in hybrid cloud/edge computing environments.</p>
</div>
</div>
<div class="case-study-item">
<div class="case-study-icon">
<i class="fas fa-cogs"></i>
</div>
<div class="case-study-content">
<h4>Technical Approach</h4>
<p>Python simulation using quantum-inspired algorithms for optimized task distribution.</p>