-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1429 lines (1324 loc) · 84.5 KB
/
index.html
File metadata and controls
1429 lines (1324 loc) · 84.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ibrahim Portfolio</title>
<link rel="icon" type="image/png" href="images/favicon.png">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.1/devicon.min.css">
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: { "50": "#eff6ff", "100": "#dbeafe", "200": "#bfdbfe", "300": "#93c5fd", "400": "#60a5fa", "500": "#3b82f6", "600": "#2563eb", "700": "#1d4ed8", "800": "#1e40af", "900": "#1e3a8a", "950": "#172554" },
purple: { "500": "#8b5cf6", "600": "#7c3aed", "700": "#6d28d9" }
},
animation: {
'bounce-slow': 'bounce 3s linear infinite',
'gradient': 'gradient 15s ease infinite',
'spin-slow': 'spin 15s linear infinite',
'morphing': 'morphing 10s ease-in-out infinite',
'floating': 'floating 3s ease-in-out infinite',
},
keyframes: {
gradient: {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center'
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center'
}
},
morphing: {
'0%': {
'border-radius': '60% 40% 30% 70%/60% 30% 70% 40%'
},
'50%': {
'border-radius': '30% 60% 70% 40%/50% 60% 30% 60%'
},
'100%': {
'border-radius': '60% 40% 30% 70%/60% 30% 70% 40%'
}
},
floating: {
'0%, 100%': {
transform: 'translateY(0)'
},
'50%': {
transform: 'translateY(-20px)'
}
}
}
}
}
}
</script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
</head>
<body class="transition-colors duration-300">
<div id="floating-icons" class="fixed inset-0 pointer-events-none z-0"></div>
<!-- Social Media Sidebar -->
<div class="fixed right-0 top-1/2 transform -translate-y-1/2 z-50">
<div class="flex flex-col space-y-4">
<a href="#" class="social-icon group relative flex items-center justify-end">
<span
class="w-12 h-12 flex items-center justify-center bg-blue-600 text-white rounded-l-full shadow-lg transition-all duration-300 group-hover:w-32">
<i class="fab fa-facebook-f text-xl"></i>
</span>
</a>
<a href="#" class="social-icon group relative flex items-center justify-end">
<span
class="w-12 h-12 flex items-center justify-center bg-black text-white rounded-l-full shadow-lg transition-all duration-300 group-hover:w-32">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512" class="w-5 h-5">
<path
d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z" />
</svg>
</span>
</a>
<a href="#" class="social-icon group relative flex items-center justify-end">
<span
class="w-12 h-12 flex items-center justify-center bg-gradient-to-r from-purple-500 via-pink-500 to-orange-500 text-white rounded-l-full shadow-lg transition-all duration-300 group-hover:w-32">
<i class="fab fa-instagram text-xl"></i>
</span>
</a>
<a href="#" class="social-icon group relative flex items-center justify-end">
<span
class="w-12 h-12 flex items-center justify-center bg-blue-700 text-white rounded-l-full shadow-lg transition-all duration-300 group-hover:w-32">
<i class="fab fa-linkedin-in text-xl"></i>
</span>
</a>
<a href="#" class="social-icon group relative flex items-center justify-end">
<span
class="w-12 h-12 flex items-center justify-center bg-gray-800 text-white rounded-l-full shadow-lg transition-all duration-300 group-hover:w-32">
<i class="fab fa-github text-xl"></i>
</span>
</a>
<a href="#" class="social-icon group relative flex items-center justify-end">
<span
class="w-12 h-12 flex items-center justify-center bg-black text-white rounded-l-full shadow-lg transition-all duration-300 group-hover:w-32">
<i class="ph ph-threads-logo text-xl"></i> <!-- Added text-xl -->
</span>
</a>
</div>
</div>
<!-- Header -->
<header>
<div class="header-container">
<div class="modern-header transition-all duration-300">
<div class="flex justify-between items-center">
<a href="#" class="flex items-center">
<span class="text-2xl font-bold modern-logo">IB.dev</span>
</a>
<nav class="hidden md:flex items-center space-x-2">
<a href="#home" class="modern-nav-link">HOME</a>
<a href="#about" class="modern-nav-link">ABOUT</a>
<a href="#services" class="modern-nav-link">SERVICES</a>
<a href="#skills" class="modern-nav-link">SKILLS</a>
<a href="#portfolio" class="modern-nav-link">PORTFOLIO</a>
<a href="#blog" class="modern-nav-link">BLOG</a>
<a href="#contact" class="modern-nav-link">CONTACT</a>
</nav>
<div class="flex items-center space-x-4">
<label class="toggle-switch">
<input type="checkbox" id="theme-toggle" checked>
<span class="toggle-slider">
<i class="fas fa-sun sun-icon"></i>
<i class="fas fa-moon moon-icon"></i>
</span>
</label>
<a href="#contact" class="hidden md:block hire-me-btn text-white font-medium">
HIRE ME <i class="fas fa-arrow-right ml-2"></i>
</a>
<button id="mobileMenuButton"
class="md:hidden focus:outline-none text-gray-300 dark:text-gray-300">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</div>
</div>
</header>
<!-- Mobile Menu -->
<div id="mobileMenu" class="mobile-menu">
<div class="flex justify-end p-6">
<button id="closeMenu" class="text-white focus:outline-none">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<div class="flex flex-col items-center justify-center h-full">
<a href="#home" class="text-white text-xl mb-6 hover:text-primary-500 transition-colors">HOME</a>
<a href="#about" class="text-white text-xl mb-6 hover:text-primary-500 transition-colors">ABOUT</a>
<a href="#services" class="text-white text-xl mb-6 hover:text-primary-500 transition-colors">SERVICES</a>
<a href="#skills" class="text-white text-xl mb-6 hover:text-primary-500 transition-colors">SKILLS</a>
<a href="#portfolio" class="text-white text-xl mb-6 hover:text-primary-500 transition-colors">PORTFOLIO</a>
<a href="#blog" class="text-white text-xl mb-6 hover:text-primary-500 transition-colors">BLOG</a>
<a href="#contact" class="text-white text-xl mb-6 hover:text-primary-500 transition-colors">CONTACT</a>
<a href="#contact" class="hire-me-btn text-white px-6 py-2 rounded-full font-medium mt-4">
HIRE ME <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Hero Section -->
<section id="home" class="relative">
<div class="curve-bg"></div>
<div class="container mx-auto px-6 flex flex-col md:flex-row items-center justify-center">
<div class="md:w-1/2 z-10" data-aos="fade-right">
<div class="mb-4">
<h3 class="text-lg uppercase tracking-wider text-gray-600 dark:text-gray-400 mb-2">HEY THERE!</h3>
<h1 class="text-4xl md:text-5xl font-bold mb-3">
I AM <span class="gradient-text">IBRAHIM</span>
</h1>
<h2 class="text-xl font-medium text-gray-700 dark:text-gray-300 mb-4">
<span id="typed-role"></span>
</h2>
</div>
<div class="mb-6">
<button
class="bg-gradient-to-r from-primary-600 to-purple-600 text-white px-6 py-2 rounded-full font-medium hover:shadow-lg transform hover:scale-105 transition-all duration-300">
SEE MY WORK
</button>
</div>
<div class="grid grid-cols-3 gap-2 max-w-md">
<div class="stats-card">
<h3 class="text-2xl font-bold gradient-text">15k+</h3>
<p class="text-xs text-gray-600 dark:text-gray-400">Happy Customer</p>
</div>
<div class="stats-card">
<h3 class="text-2xl font-bold gradient-text">12k+</h3>
<p class="text-xs text-gray-600 dark:text-gray-400">Ticket Solved</p>
</div>
<div class="stats-card">
<h3 class="text-2xl font-bold gradient-text">9/10</h3>
<p class="text-xs text-gray-600 dark:text-gray-400">Average Rating</p>
</div>
</div>
</div>
<div class="md:w-1/2 mt-8 md:mt-0 z-10 flex justify-center md:mt-4 lg:mt-6" data-aos="fade-left">
<div class="hero-image-container">
<div class="blob blob-1 morphing-blob"></div>
<div class="blob blob-2 morphing-blob"></div>
<div class="pulse-rings">
<div class="pulse-ring-element ring-1 pulse-ring"></div>
<div class="pulse-ring-element ring-2 pulse-ring"></div>
<div class="pulse-ring-element ring-3 pulse-ring"></div>
</div>
<div class="badge badge-1 floating">
<div class="badge-icon bg-purple-600">
<i class="fas fa-code"></i>
</div>
<span class="text-sm font-medium text-gray-800">2k+ Projects</span>
</div>
<div class="badge badge-2 floating">
<div class="badge-icon bg-blue-600">
<i class="fas fa-laptop-code"></i>
</div>
<span class="text-sm font-medium text-gray-800">Web Designer</span>
</div>
<div class="badge badge-3 floating">
<div class="badge-icon bg-pink-600">
<i class="fas fa-paint-brush"></i>
</div>
<span class="text-sm font-medium text-gray-800">UI/UX Designer</span>
</div>
<div class="hero-image">
<img src="images/Portrait_d_un_homme_élégant-removebg-preview.png" alt="Ibrahim"
class="w-full h-full object-cover">
</div>
</div>
</div>
</div>
<!-- Wave Divider -->
<div class="wave-divider absolute bottom-0 left-0 w-full overflow-hidden">
<svg class="wave" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none">
<defs>
<linearGradient id="divider-gradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#3b82f6" />
<stop offset="50%" stop-color="#8b5cf6" />
<stop offset="100%" stop-color="#6d28d9" />
</linearGradient>
<linearGradient id="divider-gradient-dark" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#2563eb" />
<stop offset="50%" stop-color="#7c3aed" />
<stop offset="100%" stop-color="#5b21b6" />
</linearGradient>
</defs>
<path class="wave-path"
d="M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,186.7C672,213,768,235,864,224C960,213,1056,171,1152,149.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z">
</path>
</svg>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 section-bg">
<div class="container mx-auto px-6 max-w-7xl">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0" data-aos="fade-right">
<h2 class="text-4xl font-bold mb-6 gradient-text">About Me</h2>
<p class="text-lg mb-4 text-gray-700 dark:text-gray-300">
I am a passionate web developer with a strong foundation in modern web technologies. My
journey began with a fascination for creating interactive web experiences, and it has evolved
into a
commitment to delivering high-quality, user-friendly applications.
</p>
<p class="text-lg mb-4 text-gray-700 dark:text-gray-300">
With expertise in React, Node.js, and TypeScript, I thrive on transforming ideas into
reality through clean and efficient code. I enjoy collaborating with teams and clients to create
solutions that not only meet their needs but also exceed their expectations.
</p>
<p class="text-lg mb-4 text-gray-700 dark:text-gray-300">
In my spare time, I love exploring new technologies, contributing to open-source projects,
and sharing my knowledge with the developer community.
</p>
<button
class="bg-gradient-to-r from-primary-600 to-purple-600 text-white px-6 py-3 rounded-full transform hover:scale-105 transition-all duration-300">
Download Resume
</button>
</div>
<div class="md:w-1/2 relative" data-aos="fade-left">
<div
class="absolute -z-10 inset-0 morphing-blob bg-gradient-to-r from-primary-500 via-purple-500 to-pink-500 animate-gradient opacity-30">
</div>
<div class="relative w-96 h-96 mx-auto">
<div
class="absolute inset-0 rounded-full bg-gradient-to-r from-primary-600 via-purple-500 to-pink-500 animate-spin-slow">
</div>
<div class="profile-container">
<div class="rotating-border"></div>
<div class="relative w-full h-full rounded-full p-1">
<img src="images/Portrait d'un homme souriant copy.png" alt="Profile Picture"
class="rounded-full w-full h-full object-cover p-2 bg-white transition-transform duration-500">
</div>
<div class="tech-icon">
<i class="devicon-react-original text-blue-500 text-xl"></i>
</div>
<div class="tech-icon">
<i class="devicon-javascript-plain text-yellow-500 text-xl"></i>
</div>
<div class="tech-icon">
<i class="devicon-nodejs-plain text-green-500 text-xl"></i>
</div>
<div class="tech-icon">
<i class="devicon-html5-plain text-orange-500 text-xl"></i>
</div>
<div
class="absolute -top-6 -right-6 w-20 h-20 bg-primary-500 rounded-full blur-xl opacity-50 animate-pulse">
</div>
<div
class="absolute -bottom-6 -left-6 w-20 h-20 bg-purple-500 rounded-full blur-xl opacity-50 animate-pulse delay-700">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 section-bg">
<div class="container mx-auto px-6 max-w-7xl">
<div class="text-center mb-16" data-aos="fade-up">
<div class="inline-block px-6 py-2 bg-purple-100 text-purple-600 rounded-full font-medium mb-4">
MY SERVICES
</div>
<h2 class="text-4xl font-bold mb-4">My Provided Features</h2>
<p class="text-lg text-gray-600 dark:text-gray-400 max-w-2xl mx-auto">
Delivering exceptional digital solutions tailored to your specific needs
</p>
</div>
<!-- Services Cards -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="service-card group relative bg-white dark:bg-gray-800 rounded-xl shadow-md transition-all duration-300 hover:shadow-xl hover:-translate-y-2"
data-aos="fade-up" data-aos-delay="100">
<!-- Dots decoration -->
<div class="absolute left-0 top-1/4 h-1/2">
<div class="flex flex-col space-y-2">
<div class="w-1.5 h-1.5 rounded-full bg-purple-500"></div>
<div class="w-1.5 h-1.5 rounded-full bg-purple-500"></div>
<div class="w-1.5 h-1.5 rounded-full bg-purple-500"></div>
<div class="w-1.5 h-1.5 rounded-full bg-purple-500"></div>
<div class="w-1.5 h-1.5 rounded-full bg-purple-500"></div>
<div class="w-1.5 h-1.5 rounded-full bg-purple-500"></div>
</div>
</div>
<div class="p-8">
<div
class="flex items-center justify-center w-16 h-16 rounded-full border-2 border-purple-500 mb-6 mx-auto group-hover:bg-purple-500 transition-all duration-300">
<i
class="fas fa-laptop-code text-purple-500 text-xl group-hover:text-white transition-colors duration-300"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">Web Development</h3>
<div class="flex justify-center mb-4">
<div class="w-12 h-1 bg-gray-300"></div>
</div>
<p class="text-gray-600 dark:text-gray-400 text-center">
Custom website development with responsive design, optimized performance, and seamless user
experience across all devices.
</p>
</div>
</div>
<!-- Service 2 -->
<div class="service-card group relative bg-purple-600 text-white rounded-xl shadow-md transition-all duration-300 hover:shadow-xl hover:-translate-y-2"
data-aos="fade-up" data-aos-delay="200">
<div class="p-8">
<div
class="flex items-center justify-center w-16 h-16 rounded-full border-2 border-white mb-6 mx-auto group-hover:bg-white transition-all duration-300">
<i
class="fas fa-paint-brush text-white text-xl group-hover:text-purple-600 transition-colors duration-300"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">UI/UX Design</h3>
<div class="flex justify-center mb-4">
<div class="w-12 h-1 bg-white/30"></div>
</div>
<p class="text-white/80 text-center">
Creating intuitive, engaging user interfaces with a focus on user experience, accessibility,
and
modern design principles.
</p>
</div>
</div>
<!-- Service 3 -->
<div class="service-card group relative bg-white dark:bg-gray-800 rounded-xl shadow-md transition-all duration-300 hover:shadow-xl hover:-translate-y-2"
data-aos="fade-up" data-aos-delay="300">
<div class="p-8">
<div
class="flex items-center justify-center w-16 h-16 rounded-full border-2 border-purple-500 mb-6 mx-auto group-hover:bg-purple-500 transition-all duration-300">
<i
class="fab fa-wordpress text-purple-500 text-xl group-hover:text-white transition-colors duration-300"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">WP Developing</h3>
<div class="flex justify-center mb-4">
<div class="w-12 h-1 bg-gray-300"></div>
</div>
<p class="text-gray-600 dark:text-gray-400 text-center">
Custom WordPress theme and plugin development, site optimization, and maintenance for
scalable
content management.
</p>
</div>
</div>
<!-- Service 4 -->
<div class="service-card group relative bg-white dark:bg-gray-800 rounded-xl shadow-md transition-all duration-300 hover:shadow-xl hover:-translate-y-2"
data-aos="fade-up" data-aos-delay="400">
<div class="p-8">
<div
class="flex items-center justify-center w-16 h-16 rounded-full border-2 border-purple-500 mb-6 mx-auto group-hover:bg-purple-500 transition-all duration-300">
<i
class="fas fa-mobile-alt text-purple-500 text-xl group-hover:text-white transition-colors duration-300"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">Mobile App Development</h3>
<div class="flex justify-center mb-4">
<div class="w-12 h-1 bg-gray-300"></div>
</div>
<p class="text-gray-600 dark:text-gray-400 text-center">
Native and cross-platform mobile application development with focus on performance,
usability,
and modern features.
</p>
</div>
</div>
<!-- Service 5 -->
<div class="service-card group relative bg-white dark:bg-gray-800 rounded-xl shadow-md transition-all duration-300 hover:shadow-xl hover:-translate-y-2"
data-aos="fade-up" data-aos-delay="500">
<div class="p-8">
<div
class="flex items-center justify-center w-16 h-16 rounded-full border-2 border-purple-500 mb-6 mx-auto group-hover:bg-purple-500 transition-all duration-300">
<i
class="fas fa-search text-purple-500 text-xl group-hover:text-white transition-colors duration-300"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">SEO Optimization</h3>
<div class="flex justify-center mb-4">
<div class="w-12 h-1 bg-gray-300"></div>
</div>
<p class="text-gray-600 dark:text-gray-400 text-center">
Improving search engine visibility with technical SEO, content optimization, and performance
enhancements.
</p>
</div>
</div>
<!-- Service 6 -->
<div class="service-card group relative bg-white dark:bg-gray-800 rounded-xl shadow-md transition-all duration-300 hover:shadow-xl hover:-translate-y-2"
data-aos="fade-up" data-aos-delay="600">
<div class="p-8">
<div
class="flex items-center justify-center w-16 h-16 rounded-full border-2 border-purple-500 mb-6 mx-auto group-hover:bg-purple-500 transition-all duration-300">
<i
class="fas fa-server text-purple-500 text-xl group-hover:text-white transition-colors duration-300"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">API Development</h3>
<div class="flex justify-center mb-4">
<div class="w-12 h-1 bg-gray-300"></div>
</div>
<p class="text-gray-600 dark:text-gray-400 text-center">
Building robust, scalable APIs for seamless integration between applications and services.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20 section-bg">
<div class="container mx-auto px-6 max-w-7xl">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-4xl font-bold mb-4 gradient-text">My Skills</h2>
<p class="text-lg text-gray-600 dark:text-gray-400 max-w-2xl mx-auto">
A comprehensive overview of my technical expertise and professional capabilities
</p>
</div>
<!-- Skills Categories -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Frontend Development -->
<div class="skills-card bg-white dark:bg-gray-800 rounded-xl shadow-lg p-6 transition-all duration-300 hover:shadow-xl hover:-translate-y-2"
data-aos="fade-up" data-aos-delay="100">
<div
class="flex items-center justify-center w-16 h-16 rounded-full bg-gradient-to-r from-blue-400 to-blue-600 text-white mb-6 mx-auto">
<i class="fas fa-code text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">Frontend Development</h3>
<div class="space-y-4">
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">HTML5/CSS3</span>
<span class="text-gray-500 dark:text-gray-400">95%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-blue-400 to-blue-600 h-2 rounded-full"
style="width: 95%"></div>
</div>
</div>
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">JavaScript</span>
<span class="text-gray-500 dark:text-gray-400">90%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-blue-400 to-blue-600 h-2 rounded-full"
style="width: 90%"></div>
</div>
</div>
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">React</span>
<span class="text-gray-500 dark:text-gray-400">85%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-blue-400 to-blue-600 h-2 rounded-full"
style="width: 85%"></div>
</div>
</div>
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">Tailwind CSS</span>
<span class="text-gray-500 dark:text-gray-400">92%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-blue-400 to-blue-600 h-2 rounded-full"
style="width: 92%"></div>
</div>
</div>
</div>
</div>
<!-- Backend Development -->
<div class="skills-card bg-white dark:bg-gray-800 rounded-xl shadow-lg p-6 transition-all duration-300 hover:shadow-xl hover:-translate-y-2"
data-aos="fade-up" data-aos-delay="200">
<div
class="flex items-center justify-center w-16 h-16 rounded-full bg-gradient-to-r from-green-400 to-green-600 text-white mb-6 mx-auto">
<i class="fas fa-server text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">Backend Development</h3>
<div class="space-y-4">
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">Node.js</span>
<span class="text-gray-500 dark:text-gray-400">88%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-green-400 to-green-600 h-2 rounded-full"
style="width: 88%"></div>
</div>
</div>
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">Express.js</span>
<span class="text-gray-500 dark:text-gray-400">85%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-green-400 to-green-600 h-2 rounded-full"
style="width: 85%"></div>
</div>
</div>
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">MongoDB</span>
<span class="text-gray-500 dark:text-gray-400">80%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-green-400 to-green-600 h-2 rounded-full"
style="width: 80%"></div>
</div>
</div>
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">SQL</span>
<span class="text-gray-500 dark:text-gray-400">78%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-green-400 to-green-600 h-2 rounded-full"
style="width: 78%"></div>
</div>
</div>
</div>
</div>
<!-- DevOps -->
<div class="skills-card bg-white dark:bg-gray-800 rounded-xl shadow-lg p-6 transition-all duration-300 hover:shadow-xl hover:-translate-y-2"
data-aos="fade-up" data-aos-delay="300">
<div
class="flex items-center justify-center w-16 h-16 rounded-full bg-gradient-to-r from-purple-400 to-purple-600 text-white mb-6 mx-auto">
<i class="fas fa-cogs text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">DevOps</h3>
<div class="space-y-4">
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">Git/GitHub</span>
<span class="text-gray-500 dark:text-gray-400">92%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-purple-400 to-purple-600 h-2 rounded-full"
style="width: 92%"></div>
</div>
</div>
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">Docker</span>
<span class="text-gray-500 dark:text-gray-400">75%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-purple-400 to-purple-600 h-2 rounded-full"
style="width: 75%"></div>
</div>
</div>
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">CI/CD</span>
<span class="text-gray-500 dark:text-gray-400">80%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-purple-400 to-purple-600 h-2 rounded-full"
style="width: 80%"></div>
</div>
</div>
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">AWS</span>
<span class="text-gray-500 dark:text-gray-400">70%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-purple-400 to-purple-600 h-2 rounded-full"
style="width: 70%"></div>
</div>
</div>
</div>
</div>
<!-- AI Skills -->
<div class="skills-card bg-white dark:bg-gray-800 rounded-xl shadow-lg p-6 transition-all duration-300 hover:shadow-xl hover:-translate-y-2"
data-aos="fade-up" data-aos-delay="400">
<div
class="flex items-center justify-center w-16 h-16 rounded-full bg-gradient-to-r from-pink-400 to-pink-600 text-white mb-6 mx-auto">
<i class="fas fa-brain text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">AI Skills</h3>
<div class="space-y-4">
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">Prompt Engineering</span>
<span class="text-gray-500 dark:text-gray-400">90%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-pink-400 to-pink-600 h-2 rounded-full"
style="width: 90%"></div>
</div>
</div>
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">AI Integration</span>
<span class="text-gray-500 dark:text-gray-400">85%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-pink-400 to-pink-600 h-2 rounded-full"
style="width: 85%"></div>
</div>
</div>
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">LLM Fine-tuning</span>
<span class="text-gray-500 dark:text-gray-400">75%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-pink-400 to-pink-600 h-2 rounded-full"
style="width: 75%"></div>
</div>
</div>
<div class="skill-item">
<div class="flex justify-between mb-1">
<span class="text-gray-700 dark:text-gray-300">AI-assisted Development</span>
<span class="text-gray-500 dark:text-gray-400">95%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-gradient-to-r from-pink-400 to-pink-600 h-2 rounded-full"
style="width: 95%"></div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-16" data-aos="fade-up">
<h3 class="text-2xl font-bold mb-8 text-center">Additional Technical Skills</h3>
<div class="flex flex-wrap justify-center gap-4">
<div
class="skill-tag bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full text-gray-700 dark:text-gray-300 hover:bg-primary-100 hover:text-primary-600 transition-colors duration-300">
TypeScript
</div>
<div
class="skill-tag bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full text-gray-700 dark:text-gray-300 hover:bg-primary-100 hover:text-primary-600 transition-colors duration-300">
Next.js
</div>
<div
class="skill-tag bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full text-gray-700 dark:text-gray-300 hover:bg-primary-100 hover:text-primary-600 transition-colors duration-300">
GraphQL
</div>
<div
class="skill-tag bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full text-gray-700 dark:text-gray-300 hover:bg-primary-100 hover:text-primary-600 transition-colors duration-300">
Redux
</div>
<div
class="skill-tag bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full text-gray-700 dark:text-gray-300 hover:bg-primary-100 hover:text-primary-600 transition-colors duration-300">
Jest
</div>
<div
class="skill-tag bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full text-gray-700 dark:text-gray-300 hover:bg-primary-100 hover:text-primary-600 transition-colors duration-300">
Firebase
</div>
<div
class="skill-tag bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full text-gray-700 dark:text-gray-300 hover:bg-primary-100 hover:text-primary-600 transition-colors duration-300">
Webpack
</div>
<div
class="skill-tag bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full text-gray-700 dark:text-gray-300 hover:bg-primary-100 hover:text-primary-600 transition-colors duration-300">
Sass/SCSS
</div>
<div
class="skill-tag bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full text-gray-700 dark:text-gray-300 hover:bg-primary-100 hover:text-primary-600 transition-colors duration-300">
RESTful APIs
</div>
<div
class="skill-tag bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full text-gray-700 dark:text-gray-300 hover:bg-primary-100 hover:text-primary-600 transition-colors duration-300">
Responsive Design
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-20 section-bg">
<div class="container mx-auto px-6 max-w-7xl">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-4xl font-bold mb-4 gradient-text">My Portfolio</h2>
<p class="text-lg text-gray-600 dark:text-gray-400 max-w-2xl mx-auto">
Showcasing my latest projects and creative work
</p>
</div>
<div class="flex flex-wrap justify-center mb-12" data-aos="fade-up">
<button
class="portfolio-filter-btn active m-2 px-6 py-2 rounded-full bg-gray-100 text-gray-800 dark:text-gray-200 hover:bg-primary-500 hover:text-white transition-all duration-300"
data-filter="all">All</button>
<button
class="portfolio-filter-btn m-2 px-6 py-2 rounded-full bg-gray-100 text-gray-800 dark:text-gray-200 hover:bg-primary-500 hover:text-white transition-all duration-300"
data-filter="web">Web Development</button>
<button
class="portfolio-filter-btn m-2 px-6 py-2 rounded-full bg-gray-100 text-gray-800 dark:text-gray-200 hover:bg-primary-500 hover:text-white transition-all duration-300"
data-filter="mobile">Mobile Apps</button>
<button
class="portfolio-filter-btn m-2 px-6 py-2 rounded-full bg-gray-100 text-gray-800 dark:text-gray-200 hover:bg-primary-500 hover:text-white transition-all duration-300"
data-filter="ui">UI/UX Design</button>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 portfolio-container">
<!-- Project 1 -->
<div class="portfolio-item" data-category="web" data-aos="fade-up" data-aos-delay="100">
<div
class="portfolio-card group relative overflow-hidden rounded-xl shadow-lg transition-all duration-500 hover:shadow-2xl">
<div class="relative overflow-hidden">
<img src="images/E-commerce Platform.png" alt="E-commerce Website"
class="w-full h-64 object-cover object-center transition-transform duration-700 group-hover:scale-110">
<div
class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-500 flex flex-col justify-end p-6">
<div
class="transform translate-y-8 group-hover:translate-y-0 transition-transform duration-500">
<h3 class="text-xl font-bold text-white mb-2">E-commerce Platform</h3>
<p class="text-gray-300 mb-4">A full-featured online store with payment integration
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">React</span>
<span
class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">Node.js</span>
<span
class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">MongoDB</span>
</div>
<div class="flex space-x-3">
<a href="#" class="portfolio-btn">
<i class="fas fa-link text-white"></i>
</a>
<a href="#" class="portfolio-btn">
<i class="fab fa-github text-white"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="portfolio-item" data-category="mobile" data-aos="fade-up" data-aos-delay="200">
<div
class="portfolio-card group relative overflow-hidden rounded-xl shadow-lg transition-all duration-500 hover:shadow-2xl">
<div class="relative overflow-hidden">
<img src="images/Fitness Tracker App.webp" alt="Fitness App"
class="w-full h-64 object-cover object-center transition-transform duration-700 group-hover:scale-110">
<div
class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-500 flex flex-col justify-end p-6">
<div
class="transform translate-y-8 group-hover:translate-y-0 transition-transform duration-500">
<h3 class="text-xl font-bold text-white mb-2">Fitness Tracker App</h3>
<p class="text-gray-300 mb-4">Mobile application for tracking workouts and nutrition
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">React
Native</span>
<span
class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">Firebase</span>
<span class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">Redux</span>
</div>
<div class="flex space-x-3">
<a href="#" class="portfolio-btn">
<i class="fas fa-link text-white"></i>
</a>
<a href="#" class="portfolio-btn">
<i class="fab fa-github text-white"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="portfolio-item" data-category="ui" data-aos="fade-up" data-aos-delay="300">
<div
class="portfolio-card group relative overflow-hidden rounded-xl shadow-lg transition-all duration-500 hover:shadow-2xl">
<div class="relative overflow-hidden">
<img src="images/Analytics Dashboard.png" alt="Dashboard UI"
class="w-full h-64 object-cover object-center transition-transform duration-700 group-hover:scale-110">
<div
class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-500 flex flex-col justify-end p-6">
<div
class="transform translate-y-8 group-hover:translate-y-0 transition-transform duration-500">
<h3 class="text-xl font-bold text-white mb-2">Analytics Dashboard</h3>
<p class="text-gray-300 mb-4">Modern UI design for a data analytics platform</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">Figma</span>
<span class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">Tailwind
CSS</span>
<span
class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">Chart.js</span>
</div>
<div class="flex space-x-3">
<a href="#" class="portfolio-btn">
<i class="fas fa-link text-white"></i>
</a>
<a href="#" class="portfolio-btn">
<i class="fab fa-github text-white"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project 4 -->
<div class="portfolio-item" data-category="web" data-aos="fade-up" data-aos-delay="100">
<div
class="portfolio-card group relative overflow-hidden rounded-xl shadow-lg transition-all duration-500 hover:shadow-2xl">
<div class="relative overflow-hidden">
<img src="images/Content Management System.webp" alt="Blog Platform"
class="w-full h-64 object-cover object-center transition-transform duration-700 group-hover:scale-110">
<div
class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-500 flex flex-col justify-end p-6">
<div
class="transform translate-y-8 group-hover:translate-y-0 transition-transform duration-500">
<h3 class="text-xl font-bold text-white mb-2">Content Management System</h3>
<p class="text-gray-300 mb-4">Custom CMS with markdown support and SEO features</p>
<div class="flex flex-wrap gap-2 mb-4">
<span
class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">Next.js</span>
<span
class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">Prisma</span>
<span
class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">PostgreSQL</span>
</div>
<div class="flex space-x-3">
<a href="#" class="portfolio-btn">
<i class="fas fa-link text-white"></i>
</a>
<a href="#" class="portfolio-btn">
<i class="fab fa-github text-white"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project 5 -->
<div class="portfolio-item" data-category="mobile" data-aos="fade-up" data-aos-delay="200">
<div
class="portfolio-card group relative overflow-hidden rounded-xl shadow-lg transition-all duration-500 hover:shadow-2xl">
<div class="relative overflow-hidden">
<img src="images/Travel Companion.png" alt="Travel App"
class="w-full h-64 object-cover object-center transition-transform duration-700 group-hover:scale-110">
<div
class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-500 flex flex-col justify-end p-6">
<div
class="transform translate-y-8 group-hover:translate-y-0 transition-transform duration-500">
<h3 class="text-xl font-bold text-white mb-2">Travel Companion</h3>
<p class="text-gray-300 mb-4">Mobile app for travel planning and itinerary
management</p>
<div class="flex flex-wrap gap-2 mb-4">
<span
class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">Flutter</span>
<span class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">Google Maps
API</span>
<span
class="px-3 py-1 bg-white/20 rounded-full text-white text-xs">Firebase</span>
</div>
<div class="flex space-x-3">