-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1166 lines (1094 loc) · 45.6 KB
/
index.html
File metadata and controls
1166 lines (1094 loc) · 45.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" class="">
<head>
<!-- Meta Tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="ClearFolio - Responsive personal portfolio template built with HTML, Tailwind CSS, and JavaScript."
/>
<meta
name="keywords"
content="ClearFolio, portfolio template, tailwind css, front-end developer"
/>
<meta name="author" content="John Doe" />
<title>John Doe – Personal Portfolio Template</title>
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
bg: "#111111", // Custom dark background
text: "#ffffff", // Primary text color
accent: "#ff004f", // Highlight/Accent color
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
gloria: ['"Gloria Hallelujah"', "cursive"],
tangerine: ['"Tangerine"', "cursive"],
},
},
},
};
</script>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=Merienda:wght@300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tangerine:wght@400;700&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome Icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
/>
<!-- Animate On Scroll (AOS) Library -->
<link href="https://unpkg.com/aos@2.3.4/dist/aos.css" rel="stylesheet" />
<!-- Lottie Animation Library -->
<script src="https://unpkg.com/lottie-web@5.7.4/build/player/lottie.min.js"></script>
<!-- Alpine.js (For UI Interactivity like Navbar Toggle) -->
<script
defer
src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"
></script>
<!-- Custom CSS and JS -->
<link rel="stylesheet" href="css/styles.css" />
<script src="js/script.js"></script>
</head>
<body class="bg-bg text-text">
<!-- Navbar -->
<nav
x-data="{ open: false, activeSection: 'home' }"
x-init="
window.addEventListener('scroll', () => {
const sections = ['home', 'about', 'skills','resume', 'projects', 'services', 'contact'];
const scrollY = window.scrollY + 150;
for (const id of sections) {
const section = document.getElementById(id);
if (section && scrollY >= section.offsetTop && scrollY < section.offsetTop + section.offsetHeight) {
activeSection = id;
}
}
});
"
class="fixed w-full top-0 left-0 z-50 bg-[#111111] text-white border-b border-gray-800 shadow-md transition-all duration-500"
>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<!-- Logo -->
<a
href="#"
class="text-xl md:text-3xl font-extrabold text-[#ff004f] tracking-wide font-gloria"
>
John Doe
</a>
<!-- Desktop Navigation -->
<div
class="hidden md:flex items-center space-x-8 text-md font-medium"
>
<template
x-for="link in ['Home', 'About', 'Skills', 'Resume', 'Projects', 'Services', 'Contact']"
:key="link"
>
<a
:href="'#' + link.toLowerCase()"
class="relative group transition-all duration-300"
>
<span
:class="activeSection === link.toLowerCase() ? 'text-[#ff004f]' : 'text-white'"
class="transition duration-300"
x-text="link"
></span>
<!-- Underline effect -->
<span
class="absolute left-0 -bottom-1 h-[2px] bg-[#ff004f] transition-all duration-300"
:class="activeSection === link.toLowerCase() ? 'w-full' : 'w-0 group-hover:w-full'"
></span>
</a>
</template>
</div>
<!-- Resume Button (Desktop) -->
<div class="hidden md:flex">
<a
href="assets/resume-john-doe.pdf"
target="_blank"
class="bg-[#ff004f] hover:bg-[#e60047] text-white px-5 py-2 rounded-lg font-semibold shadow-lg transform hover:scale-105 transition-all duration-300"
>
Resume
</a>
</div>
<!-- Mobile Menu Button -->
<div class="md:hidden flex items-center">
<button @click="open = !open" class="focus:outline-none">
<!-- Menu Icon -->
<svg
x-show="!open"
xmlns="http://www.w3.org/2000/svg"
class="w-7 h-7"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M4 8h16M4 16h16"
/>
</svg>
<!-- Close Icon -->
<svg
x-show="open"
x-cloak
xmlns="http://www.w3.org/2000/svg"
class="w-7 h-7"
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>
</div>
<!-- Mobile Navigation Dropdown -->
<div
x-show="open"
x-transition:enter="transition ease-out duration-500"
x-transition:enter-start="opacity-0 -translate-y-5"
x-transition:enter-end="opacity-100 translate-y-0"
x-transition:leave="transition ease-in duration-400"
x-transition:leave-start="opacity-100 translate-y-0"
x-transition:leave-end="opacity-0 -translate-y-5"
class="md:hidden bg-[#111111] px-6 py-6 space-y-5 text-center text-base font-medium"
>
<template
x-for="link in ['Home', 'About', 'Skills', 'Resume', 'Projects', 'Services', 'Contact']"
:key="link"
>
<a
:href="'#' + link.toLowerCase()"
:class="activeSection === link.toLowerCase() ? 'text-[#ff004f]' : 'text-white'"
class="block hover:text-[#ff004f] transition duration-300"
x-text="link"
></a>
</template>
<!-- Resume Button (Mobile) -->
<a
href="assets/resume-john-doe.pdf"
target="_blank"
class="inline-block bg-[#ff004f] hover:bg-[#e60047] text-white py-2 px-4 rounded-md transition duration-300 shadow-md"
>
Resume
</a>
</div>
</nav>
<!-- Hero Section -->
<section
id="home"
class="relative bg-bg text-text min-h-[100vh] flex items-center justify-center overflow-hidden px-4 pt-24"
>
<div class="absolute inset-0">
<div
class="absolute top-1/3 left-1/4 w-72 h-72 bg-[#ff004f] opacity-20 rounded-full filter blur-3xl"
></div>
<div
class="absolute bottom-1/4 right-1/4 w-72 h-72 bg-[#ffffff] opacity-10 rounded-full filter blur-3xl"
></div>
</div>
<div
class="relative z-10 max-w-5xl w-full text-center py-20"
data-aos="fade-up"
data-aos-duration="1000"
>
<h1
class="text-4xl sm:text-5xl lg:text-6xl font-extrabold leading-tight mb-6 font-gloria tracking-tight"
>
Hello, I'm
<span
id="typed-name"
class="text-accent inline-block animate__animated animate__fadeIn animate__delay-1s animate__slow underline decoration-wavy decoration-2 underline-offset-4"
>
</span
><span id="cursor" class="text-accent">|</span>
</h1>
<p
class="text-xl sm:text-2xl text-gray-300 font-medium mb-4 animate-fade-in"
data-aos="fade-up"
data-aos-delay="200"
>
A passionate Front-End Developer from India 🇮🇳
</p>
<p
class="text-gray-400 text-lg sm:text-xl max-w-2xl mx-auto mb-8"
data-aos="fade-up"
data-aos-delay="400"
>
I specialize in building sleek, responsive, and interactive web
interfaces using React, Tailwind CSS, and modern JavaScript
frameworks.
</p>
<a
href="#projects"
class="inline-block bg-accent hover:bg-[#e60047] text-white px-8 py-3 rounded-full shadow-xl transform hover:scale-105 transition-all duration-300 font-semibold text-lg"
data-aos="zoom-in"
data-aos-delay="600"
>
View My Work
</a>
</div>
</section>
<!-- About Me Section -->
<section
id="about"
class="relative bg-bg text-text py-24 px-4 sm:px-6 lg:px-8 overflow-hidden"
>
<!-- Background Effects -->
<div
class="absolute top-0 left-0 w-80 h-80 bg-accent opacity-20 blur-[100px] rounded-full"
></div>
<div
class="absolute bottom-0 right-0 w-72 h-72 bg-white opacity-10 blur-[80px] rounded-full"
></div>
<div class="relative max-w-4xl mx-auto text-center z-10">
<div class="mb-10" data-aos="fade-down">
<h2 class="text-3xl sm:text-4xl font-bold tracking-tight text-accent">
About Me
</h2>
<div class="mx-auto mt-2 h-1 w-40 bg-accent rounded-full"></div>
</div>
<!-- Profile Image -->
<div
class="relative mx-auto w-44 h-44 rounded-full overflow-hidden border-[3px] border-accent shadow-xl mb-10"
data-aos="zoom-in"
>
<img
src="assets/images/John-Doe.jpg"
alt="John Doe"
class="w-full h-full object-cover grayscale hover:grayscale-0 transition duration-700"
/>
</div>
<!-- Heading -->
<h2
class="text-4xl sm:text-5xl font-extrabold mb-4 leading-tight"
data-aos="fade-up"
>
Hello, I’m <span class="text-accent">John Doe</span>
</h2>
<!-- Description -->
<p
class="text-lg text-gray-300 mb-5 leading-relaxed max-w-3xl mx-auto"
data-aos="fade-up"
data-aos-delay="100"
>
A front-end developer from India with 2+ years of experience building
lightning-fast, responsive, and pixel-perfect websites using modern
JavaScript frameworks.
</p>
<p
class="text-base text-gray-400 mb-10 max-w-3xl mx-auto"
data-aos="fade-up"
data-aos-delay="200"
>
I focus on elegant UI design, scalable frontend systems, and crafting
enjoyable user journeys. When I’m not coding, I love sketching or
capturing moments.
</p>
<!-- Tech Stack -->
<div class="mb-10" data-aos="fade-up" data-aos-delay="100">
<h3
class="text-sm font-bold text-accent tracking-widest uppercase mb-4"
>
Tech Stack
</h3>
<div class="flex flex-wrap justify-center gap-3">
<span class="bg-white/10 text-white px-4 py-1 rounded-full text-sm"
>HTML</span
>
<span class="bg-white/10 text-white px-4 py-1 rounded-full text-sm"
>Tailwind CSS</span
>
<span class="bg-white/10 text-white px-4 py-1 rounded-full text-sm"
>JavaScript</span
>
<span class="bg-white/10 text-white px-4 py-1 rounded-full text-sm"
>ReactJS</span
>
<span class="bg-white/10 text-white px-4 py-1 rounded-full text-sm"
>Node.js</span
>
<span class="bg-white/10 text-white px-4 py-1 rounded-full text-sm"
>Express.js</span
>
<span class="bg-white/10 text-white px-4 py-1 rounded-full text-sm"
>MongoDB</span
>
</div>
</div>
<!-- CTA -->
<a
href="#projects"
class="inline-flex items-center gap-2 px-6 py-3 bg-accent hover:bg-[#e60047] text-white text-sm font-semibold rounded-full shadow-lg transition-transform transform hover:scale-105"
data-aos="zoom-in-up"
data-aos-delay="300"
>
View My Work
</a>
</div>
</section>
<!-- 6️⃣ Skills Section -->
<section
id="skills"
class="relative bg-bg text-white py-24 px-6 md:px-16 overflow-hidden"
>
<!-- Accent Glow Background -->
<div
class="absolute top-0 left-1/2 transform -translate-x-1/2 w-96 h-96 bg-accent opacity-10 rounded-full blur-[120px] pointer-events-none"
></div>
<div class="max-w-7xl mx-auto relative z-10">
<!-- Section Header -->
<div
class="text-center mb-16"
data-aos="fade-up"
data-aos-duration="800"
>
<h2
class="text-5xl font-extrabold text-accent mb-4 font-poppins tracking-tight"
>
Tech Stack
</h2>
<p class="text-gray-400 text-lg max-w-xl mx-auto">
Languages, libraries & tools I build modern web applications with.
</p>
</div>
<!-- Skills Grid -->
<div
class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 gap-8 text-center"
>
<!-- Skill Card -->
<div
class="group bg-[#1a1a1a] border border-gray-700 rounded-xl p-8 shadow-md transition-all duration-300 transform hover:scale-105 hover:border-accent hover:shadow-[0_0_20px_#ff004f44]"
data-aos="zoom-in"
data-aos-delay="100"
>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original.svg"
alt="HTML5"
class="h-12 mx-auto mb-4 transition-transform group-hover:scale-110 group-hover:-rotate-6"
/>
<p class="font-semibold text-white text-lg">HTML5</p>
</div>
<div
class="group bg-[#1a1a1a] border border-gray-700 rounded-xl p-8 shadow-md transition-all duration-300 transform hover:scale-105 hover:border-accent hover:shadow-[0_0_20px_#ff004f44]"
data-aos="zoom-in"
data-aos-delay="200"
>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-original.svg"
alt="CSS3"
class="h-12 mx-auto mb-4 transition-transform group-hover:scale-110 group-hover:rotate-6"
/>
<p class="font-semibold text-white text-lg">CSS3</p>
</div>
<div
class="group bg-[#1a1a1a] border border-gray-700 rounded-xl p-8 shadow-md transition-all duration-300 transform hover:scale-105 hover:border-accent hover:shadow-[0_0_20px_#ff004f44]"
data-aos="zoom-in"
data-aos-delay="300"
>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg"
alt="JavaScript"
class="h-12 mx-auto mb-4 transition-transform group-hover:scale-110 group-hover:-rotate-6"
/>
<p class="font-semibold text-white text-lg">JavaScript</p>
</div>
<div
class="group bg-[#1a1a1a] border border-gray-700 rounded-xl p-8 shadow-md transition-all duration-300 transform hover:scale-105 hover:border-accent hover:shadow-[0_0_20px_#ff004f44]"
data-aos="zoom-in"
data-aos-delay="400"
>
<img
src="https://upload.wikimedia.org/wikipedia/commons/d/d5/Tailwind_CSS_Logo.svg"
alt="Tailwind"
class="h-12 mx-auto mb-4 transition-transform group-hover:scale-110 group-hover:rotate-6"
/>
<p class="font-semibold text-white text-lg">Tailwind CSS</p>
</div>
<div
class="group bg-[#1a1a1a] border border-gray-700 rounded-xl p-8 shadow-md transition-all duration-300 transform hover:scale-105 hover:border-accent hover:shadow-[0_0_20px_#ff004f44]"
data-aos="zoom-in"
data-aos-delay="500"
>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/react/react-original.svg"
alt="React"
class="h-12 mx-auto mb-4 transition-transform group-hover:scale-110 group-hover:-rotate-6"
/>
<p class="font-semibold text-white text-lg">React</p>
</div>
<div
class="group bg-[#1a1a1a] border border-gray-700 rounded-xl p-8 shadow-md transition-all duration-300 transform hover:scale-105 hover:border-accent hover:shadow-[0_0_20px_#ff004f44]"
data-aos="zoom-in"
data-aos-delay="600"
>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/nodejs/nodejs-original.svg"
alt="Node.js"
class="h-12 mx-auto mb-4 transition-transform group-hover:scale-110 group-hover:rotate-6"
/>
<p class="font-semibold text-white text-lg">Node.js</p>
</div>
<div
class="group bg-[#1a1a1a] border border-gray-700 rounded-xl p-8 shadow-md transition-all duration-300 transform hover:scale-105 hover:border-accent hover:shadow-[0_0_20px_#ff004f44]"
data-aos="zoom-in"
data-aos-delay="700"
>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/express/express-original.svg"
alt="Express.js"
class="h-12 mx-auto mb-4 bg-white p-1 rounded transition-transform group-hover:scale-110 group-hover:-rotate-6"
/>
<p class="font-semibold text-white text-lg">Express.js</p>
</div>
<div
class="group bg-[#1a1a1a] border border-gray-700 rounded-xl p-8 shadow-md transition-all duration-300 transform hover:scale-105 hover:border-accent hover:shadow-[0_0_20px_#ff004f44]"
data-aos="zoom-in"
data-aos-delay="800"
>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mongodb/mongodb-original.svg"
alt="MongoDB"
class="h-12 mx-auto mb-4 transition-transform group-hover:scale-110 group-hover:rotate-6"
/>
<p class="font-semibold text-white text-lg">MongoDB</p>
</div>
</div>
</div>
</section>
<!-- Resume Section -->
<section
id="resume"
class="bg-bg text-white py-24 px-6 md:px-16 overflow-hidden relative"
>
<!-- Background Glow -->
<div
class="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-[500px] h-[500px] bg-accent opacity-10 rounded-full blur-[140px] pointer-events-none"
></div>
<div class="max-w-7xl mx-auto relative z-10">
<div class="text-center mb-16" data-aos="fade-up">
<h2
class="text-5xl font-extrabold text-accent mb-4 font-poppins tracking-tight"
>
Resume
</h2>
<p class="text-gray-400 text-lg max-w-2xl mx-auto">
A quick glance at my education and work experience.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-16 items-start">
<!-- Education Column -->
<div class="flex flex-col space-y-10">
<h3 class="text-3xl font-bold text-accent text-center">
Education
</h3>
<div class="space-y-10">
<div
class="border-l-4 border-accent pl-6 relative"
data-aos="fade-up"
data-aos-delay="100"
>
<div
class="absolute -left-[10px] top-0 w-5 h-5 bg-accent rounded-full"
></div>
<h4 class="text-2xl font-semibold">
B.Tech in Computer Science
</h4>
<p class="text-gray-400 text-sm mb-2">
XYZ University • 2017 – 2021
</p>
<p class="text-gray-300 text-base">
Specialized in frontend development, data structures, and
full-stack web projects.
</p>
</div>
<div
class="border-l-4 border-accent pl-6 relative"
data-aos="fade-up"
data-aos-delay="200"
>
<div
class="absolute -left-[10px] top-0 w-5 h-5 bg-accent rounded-full"
></div>
<h4 class="text-2xl font-semibold">
Higher Secondary Education
</h4>
<p class="text-gray-400 text-sm mb-2">
ABC Senior School • 2015 – 2017
</p>
<p class="text-gray-300 text-base">
Completed with distinction in Science stream with focus on
Mathematics and Computer Science.
</p>
</div>
</div>
</div>
<!-- Experience Column -->
<div class="flex flex-col space-y-10">
<h3 class="text-3xl font-bold text-accent text-center">
Work Experience
</h3>
<div class="space-y-10">
<div
class="border-l-4 border-accent pl-6 relative"
data-aos="fade-up"
data-aos-delay="100"
>
<div
class="absolute -left-[10px] top-0 w-5 h-5 bg-accent rounded-full"
></div>
<h4 class="text-2xl font-semibold">Frontend Developer</h4>
<p class="text-gray-400 text-sm mb-2">
WebTech Studio • 2021 – Present
</p>
<p class="text-gray-300 text-base">
Developed and maintained dynamic websites and dashboards using
React, Tailwind CSS, and RESTful APIs with performance and UX
in focus.
</p>
</div>
<div
class="border-l-4 border-accent pl-6 relative"
data-aos="fade-up"
data-aos-delay="200"
>
<div
class="absolute -left-[10px] top-0 w-5 h-5 bg-accent rounded-full"
></div>
<h4 class="text-2xl font-semibold">Intern - Web Development</h4>
<p class="text-gray-400 text-sm mb-2">
Tech Solutions Pvt Ltd • Jan – Jun 2021
</p>
<p class="text-gray-300 text-base">
Worked on client projects and improved UI consistency across
internal tools using HTML, CSS, and JavaScript.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="bg-bg text-white py-24 px-6 md:px-16">
<div class="max-w-7xl mx-auto">
<!-- Section Header -->
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-4xl font-extrabold mb-4 text-accent font-sora">
My Work Showcase
</h2>
<p class="text-gray-400 text-lg max-w-2xl mx-auto">
A few of the digital experiences I've crafted — blending
performance, precision, and creativity.
</p>
</div>
<!-- Project Grid -->
<div class="grid gap-12 md:grid-cols-2 lg:grid-cols-3">
<!-- Project Card -->
<div
class="relative group bg-black/30 backdrop-blur-md border border-gray-700 p-6 rounded-2xl transition-all hover:shadow-2xl hover:scale-[1.02] duration-300"
data-aos="zoom-in-up"
>
<!-- Image -->
<div class="relative overflow-hidden rounded-xl mb-6">
<img
src="https://images.unsplash.com/photo-1585079542156-2755d9c8a094?auto=format&fit=crop&w=800&q=80"
alt="Project Image"
class="w-full h-48 object-cover transition-transform duration-500 group-hover:scale-105 rounded-xl"
/>
<div
class="absolute inset-0 bg-black/40 opacity-0 group-hover:opacity-100 transition-opacity duration-300"
></div>
</div>
<!-- Text -->
<h3 class="text-xl font-bold text-white mb-2">Portfolio Website</h3>
<p class="text-sm text-gray-400 mb-4">
A clean, developer-focused portfolio built with vanilla JS and
Tailwind CSS.
</p>
<!-- Tags -->
<div class="flex flex-wrap gap-2 text-xs mb-5">
<span class="bg-accent/10 text-accent px-3 py-1 rounded-full">
HTML
</span>
<span class="bg-accent/10 text-accent px-3 py-1 rounded-full">
Tailwind
</span>
<span class="bg-accent/10 text-accent px-3 py-1 rounded-full">
JavaScript
</span>
</div>
<!-- Buttons -->
<div class="flex justify-between items-center text-sm font-medium">
<a href="#" class="text-accent hover:underline transition-all"
>Live Demo →</a
>
<a href="#" class="text-gray-400 hover:text-white transition-all"
>GitHub</a
>
</div>
</div>
<!-- Project Card Example #2 -->
<div
class="relative group bg-black/30 backdrop-blur-md border border-gray-700 p-6 rounded-2xl transition-all hover:shadow-2xl hover:scale-[1.02] duration-300"
data-aos="zoom-in-up"
data-aos-delay="100"
>
<div class="relative overflow-hidden rounded-xl mb-6">
<img
src="https://images.unsplash.com/photo-1603791440384-56cd371ee9a7?auto=format&fit=crop&w=800&q=80"
alt="Project Image"
class="w-full h-48 object-cover transition-transform duration-500 group-hover:scale-105 rounded-xl"
/>
<div
class="absolute inset-0 bg-black/40 opacity-0 group-hover:opacity-100 transition-opacity duration-300"
></div>
</div>
<h3 class="text-xl font-bold text-white mb-2">
Startup Landing Page
</h3>
<p class="text-sm text-gray-400 mb-4">
SEO-optimized responsive site for SaaS startup with React +
Tailwind.
</p>
<div class="flex flex-wrap gap-2 text-xs mb-5">
<span class="bg-accent/10 text-accent px-3 py-1 rounded-full">
React
</span>
<span class="bg-accent/10 text-accent px-3 py-1 rounded-full">
Tailwind
</span>
</div>
<div class="flex justify-between items-center text-sm font-medium">
<a href="#" class="text-accent hover:underline transition-all"
>Live Demo →</a
>
<a href="#" class="text-gray-400 hover:text-white transition-all"
>GitHub</a
>
</div>
</div>
<!-- Project Card Example #3 -->
<div
class="relative group bg-black/30 backdrop-blur-md border border-gray-700 p-6 rounded-2xl transition-all hover:shadow-2xl hover:scale-[1.02] duration-300"
data-aos="zoom-in-up"
data-aos-delay="200"
>
<div class="relative overflow-hidden rounded-xl mb-6">
<img
src="https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=800&q=80"
alt="Project Image"
class="w-full h-48 object-cover transition-transform duration-500 group-hover:scale-105 rounded-xl"
/>
<div
class="absolute inset-0 bg-black/40 opacity-0 group-hover:opacity-100 transition-opacity duration-300"
></div>
</div>
<h3 class="text-xl font-bold text-white mb-2">Admin Dashboard</h3>
<p class="text-sm text-gray-400 mb-4">
Admin panel with charts, stats, and responsive layout using
Chart.js.
</p>
<div class="flex flex-wrap gap-2 text-xs mb-5">
<span class="bg-accent/10 text-accent px-3 py-1 rounded-full">
JavaScript
</span>
<span class="bg-accent/10 text-accent px-3 py-1 rounded-full">
Chart.js
</span>
</div>
<div class="flex justify-between items-center text-sm font-medium">
<a href="#" class="text-accent hover:underline transition-all"
>Live Demo →</a
>
<a href="#" class="text-gray-400 hover:text-white transition-all"
>GitHub</a
>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="bg-bg text-white py-24 px-6 md:px-16">
<div class="max-w-7xl mx-auto">
<!-- Heading -->
<div class="text-center mb-20" data-aos="fade-up">
<h2 class="text-4xl font-extrabold mb-4 text-accent font-sora">
What I Love to Build
</h2>
<p class="text-gray-400 text-lg max-w-2xl mx-auto">
More than just code — I craft digital experiences with performance,
accessibility, and scalability in mind.
</p>
</div>
<!-- Skills Grid -->
<div class="grid gap-10 md:grid-cols-2 lg:grid-cols-3">
<!-- Card 1 -->
<div
class="group relative border border-gray-700 bg-black/20 backdrop-blur p-8 rounded-2xl transition-all hover:border-accent hover:shadow-xl hover:-translate-y-2"
data-aos="zoom-in"
data-aos-delay="100"
>
<div
class="w-12 h-12 flex items-center justify-center bg-accent/20 text-accent rounded-full mb-6 transition group-hover:bg-accent group-hover:text-white"
>
<i class="fas fa-paint-brush text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Design Thinking</h3>
<p class="text-gray-400">
I approach UI/UX with empathy and creativity — creating interfaces
that are both intuitive and engaging.
</p>
</div>
<!-- Card 2 -->
<div
class="group relative border border-gray-700 bg-black/20 backdrop-blur p-8 rounded-2xl transition-all hover:border-accent hover:shadow-xl hover:-translate-y-2"
data-aos="zoom-in"
data-aos-delay="200"
>
<div
class="w-12 h-12 flex items-center justify-center bg-accent/20 text-accent rounded-full mb-6 transition group-hover:bg-accent group-hover:text-white"
>
<i class="fas fa-laptop-code text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Modern Development</h3>
<p class="text-gray-400">
I build fast, responsive web apps using React, Tailwind CSS, and
modern JS — optimized for performance.
</p>
</div>
<!-- Card 3 -->
<div
class="group relative border border-gray-700 bg-black/20 backdrop-blur p-8 rounded-2xl transition-all hover:border-accent hover:shadow-xl hover:-translate-y-2"
data-aos="zoom-in"
data-aos-delay="300"
>
<div
class="w-12 h-12 flex items-center justify-center bg-accent/20 text-accent rounded-full mb-6 transition group-hover:bg-accent group-hover:text-white"
>
<i class="fas fa-rocket text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Scalable Execution</h3>
<p class="text-gray-400">
I bring clean architecture and reusable components that scale with
your product as it grows.
</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section
id="contact"
class="relative bg-gradient-to-br from-[#0f0f0f] via-[#111111] to-[#1a1a1a] text-white py-28 px-6 sm:px-10 overflow-hidden"
>
<!-- Floating Background Effects -->
<div class="absolute inset-0 -z-10">
<div
class="absolute w-72 h-72 bg-[#ff004f] opacity-10 rounded-full blur-3xl top-10 left-10 animate-pulse"
></div>
<div
class="absolute w-96 h-96 bg-[#ff004f] opacity-10 rounded-full blur-2xl bottom-0 right-10 animate-spin-slow"
></div>
<div class="absolute top-0 right-0 w-44 h-44 opacity-25">
<lottie-player
src="https://assets3.lottiefiles.com/packages/lf20_cg3qkhrd.json"
background="transparent"
speed="1"
loop
autoplay
></lottie-player>
</div>
</div>
<!-- Heading -->
<div class="max-w-7xl mx-auto mb-16 text-center" data-aos="fade-up">
<h2
class="text-4xl md:text-5xl font-extrabold mb-4 text-white tracking-tight"
>
Let’s Talk
</h2>
<p class="text-lg text-gray-400 max-w-xl mx-auto">
Have a project, idea, or collaboration in mind? Drop a message and
let’s make it real.
</p>
</div>
<!-- Grid -->
<div
class="max-w-7xl mx-auto grid lg:grid-cols-2 gap-16 items-start relative z-10"
>
<!-- LEFT -->
<div
class="p-10 lg:p-14 bg-gradient-to-tr from-[#1f1f1f] to-[#2b2b2b] rounded-3xl text-white shadow-xl h-full"
data-aos="fade-right"
>
<h3 class="text-3xl font-bold mb-6 text-[#ff004f]">
Let's Build Something Bold
</h3>
<p class="text-gray-300 text-lg mb-10">
Available for freelance, full-time roles, or creative collaboration.
</p>
<ul class="space-y-4 text-base font-medium">
<!-- Email -->
<li>
<a
href="mailto:john.doe@email.com"
class="flex items-center gap-4 p-3 rounded-xl hover:bg-[#1f1f1f] transition group"
>
<div
class="w-9 h-9 rounded-full bg-[#ff004f] flex items-center justify-center transition group-hover:scale-105"
>
<svg
class="w-5 h-5 text-white"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M2 4a2 2 0 012-2h16a2 2 0 012 2v16a2 2 0 01-2 2H4a2 2 0 01-2-2V4zm2 0v.01L12 13l8-8.99V4H4zm16 16V8l-8 8-8-8v12h16z"
/>
</svg>
</div>
<span class="text-white group-hover:text-[#ff004f] transition"
>john.doe@email.com</span
>
</a>
</li>
<!-- LinkedIn -->
<li>
<a
href="https://linkedin.com/in/john-doe"
target="_blank"
class="flex items-center gap-4 p-3 rounded-xl hover:bg-[#1f1f1f] transition group"
>
<div
class="w-9 h-9 rounded-full bg-[#ff004f] flex items-center justify-center transition group-hover:scale-105"
>
<svg
class="w-5 h-5 text-white"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
fill="currentColor"
>
<path
d="M100.28 448H7.4V148.9h92.88zm-46.44-341C24.1 107 0 82.9 0 53.6 0 24.3 24.1 0 53.6 0S107 24.3 107 53.6c0 29.3-24.1 53.4-53.6 53.4zM447.8 448h-92.68V302.4c0-34.7-12.4-58.4-43.4-58.4-23.6 0-37.6 15.9-43.8 31.3-2.3 5.4-2.8 12.9-2.8 20.4V448H172.4s1.2-256.8 0-283.1h92.68v40.1c-.2.3-.5.7-.7 1h.7v-1c12.3-18.9 34.2-45.9 83.4-45.9 60.9 0 106.6 39.7 106.6 125.2V448z"
/>
</svg>
</div>
<span class="text-white group-hover:text-[#ff004f] transition"
>linkedin.com/in/john-doe</span
>
</a>
</li>
<!-- GitHub -->
<li>
<a
href="https://github.com/john-doe"
target="_blank"
class="flex items-center gap-4 p-3 rounded-xl hover:bg-[#1f1f1f] transition group"
>
<div
class="w-9 h-9 rounded-full bg-[#ff004f] flex items-center justify-center transition group-hover:scale-105"
>
<svg
class="w-5 h-5 text-white"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M12 .5A12 12 0 0 0 .5 12a12 12 0 0 0 8.2 11.5c.6.1.8-.3.8-.6v-2.1c-3.3.7-4-1.6-4-1.6-.6-1.5-1.4-2-1.4-2-1.1-.8.1-.8.1-.8 1.2.1 1.8 1.3 1.8 1.3 1.1 1.9 2.9 1.3 3.6 1 .1-.8.4-1.3.7-1.6-2.7-.3-5.5-1.3-5.5-5.9 0-1.3.5-2.4 1.2-3.2-.1-.3-.5-1.5.1-3.1 0 0 1-.3 3.3 1.2a11.6 11.6 0 0 1 6 0c2.3-1.5 3.3-1.2 3.3-1.2.6 1.6.2 2.8.1 3.1.8.9 1.3 1.9 1.3 3.2 0 4.6-2.7 5.6-5.4 5.9.4.3.8 1 .8 2.1v3.1c0 .3.2.7.8.6A12 12 0 0 0 23.5 12 12 12 0 0 0 12 .5z"
/>
</svg>
</div>
<span class="text-white group-hover:text-[#ff004f] transition"
>github.com/john-doe</span
>
</a>
</li>
</ul>
</div>
<!-- RIGHT -->
<div
class="bg-[#181818] p-10 lg:p-12 rounded-3xl shadow-2xl border border-[#2a2a2a]"
data-aos="fade-left"
>
<form class="space-y-8">
<div class="relative">
<input
type="text"