-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnayan.html
More file actions
973 lines (893 loc) · 54.7 KB
/
nayan.html
File metadata and controls
973 lines (893 loc) · 54.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nayan Ray - Portfolio</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.floating {
animation: float 4s ease-in-out infinite;
}
.gradient-text {
background: linear-gradient(45deg, #3b82f6, #06b6d4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.cyber-glow {
text-shadow: 0 0 10px rgba(59, 130, 246, 0.8), 0 0 20px rgba(59, 130, 246, 0.6);
}
.holographic-border {
position: relative;
overflow: hidden;
}
.holographic-border::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
animation: rotate 6s linear infinite;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.card-hover {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}
</style>
</head>
<body class="bg-gray-900 font-[Poppins] text-gray-300">
<!-- Background Effects -->
<div class="fixed inset-0 bg-[url('https://www.transparenttextures.com/patterns/dark-stripes.png')] opacity-10"></div>
<div class="fixed inset-0 bg-gradient-to-b from-transparent via-blue-900/20 to-gray-900"></div>
<div class="fixed inset-0 opacity-20 bg-[length:40px_40px] bg-[linear-gradient(to_right,gray_1px,transparent_1px),linear-gradient(to_bottom,gray_1px,transparent_1px)]"></div>
<!-- Navigation -->
<nav class="fixed w-full bg-gray-900/90 backdrop-blur-sm z-50 border-b border-white/10">
<div class="container mx-auto px-6 py-4 flex flex-col md:flex-row justify-between items-center">
<a href="#" class="text-2xl font-bold gradient-text cyber-glow">Nayan Ray</a>
<div class="mt-4 md:mt-0 space-y-4 md:space-y-0 md:space-x-8">
<a href="#home" class="block md:inline hover:text-cyan-400 transition">Home</a>
<a href="#skills" class="block md:inline hover:text-cyan-400 transition">Skills</a>
<a href="#projects" class="block md:inline hover:text-cyan-400 transition">Projects</a>
<a href="#blog" class="block md:inline hover:text-cyan-400 transition">Blog</a>
<a href="#testimonials" class="block md:inline hover:text-cyan-400 transition">Testimonials</a>
<a href="#faq" class="block md:inline hover:text-cyan-400 transition">FAQ</a>
<a href="#contact" class="block md:inline hover:text-cyan-400 transition">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="min-h-screen relative pt-24 overflow-hidden">
<!-- Animated background elements -->
<div class="absolute inset-0 z-0 opacity-20">
<div class="absolute -top-32 -left-48 w-96 h-96 bg-cyan-400/20 rounded-full blur-3xl animate-pulse-slow"></div>
<div class="absolute -bottom-48 -right-32 w-96 h-96 bg-blue-400/20 rounded-full blur-3xl animate-pulse-slow delay-1000"></div>
</div>
<div class="container mx-auto px-6 py-16 relative z-10">
<div class="flex flex-col md:flex-row items-center gap-12">
<!-- Content Section -->
<div class="flex-1 space-y-8" data-aos="fade-right">
<div class="relative">
<h1 class="text-5xl md:text-7xl font-bold mb-6 cyber-glow animate-title">
<span class="gradient-text">N</span><span class="gradient-text delay-75">a</span><span class="gradient-text delay-150">y</span><span class="gradient-text delay-200">a</span><span class="gradient-text delay-300">n</span>
<span class="gradient-text delay-400">R</span><span class="gradient-text delay-500">a</span><span class="gradient-text delay-600">y</span>
</h1>
<div class="absolute bottom-0 left-0 w-full h-1 bg-gradient-to-r from-cyan-400 to-blue-600 animate-line-expand origin-left"></div>
</div>
<p class="text-xl md:text-2xl mb-8 leading-relaxed opacity-90 animate-fade-in-up">
Crafting <span class="text-cyan-400 hover:text-cyan-300 transition-all cursor-pointer">digital experiences</span> through<br>
<span class="text-blue-400 hover:text-blue-300 transition-all cursor-pointer">Full-Stack Development</span> ×
<span class="text-purple-400 hover:text-purple-300 transition-all cursor-pointer">Innovative Solutions</span>
</p>
<!-- Skill Tags Grid -->
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mb-12 animate-tags">
<div class="skill-tag">
<span class="text-cyan-400">✦</span> WordPress Expert
</div>
<div class="skill-tag">
<span class="text-blue-400">✦</span> Custom PHP
</div>
<div class="skill-tag">
<span class="text-purple-400">✦</span> React Solutions
</div>
<div class="skill-tag">
<span class="text-cyan-400">✦</span> API Architect
</div>
<div class="skill-tag">
<span class="text-blue-400">✦</span> UI/UX Design
</div>
<div class="skill-tag">
<span class="text-purple-400">✦</span> DevOps
</div>
</div>
<!-- CTA & Socials -->
<div class="flex items-center gap-6 animate-fade-in-up">
<a href="#contact" class="cta-button">
Let's Collaborate
<span class="cta-arrow">→</span>
</a>
<div class="flex space-x-4">
<a href="#" class="social-icon hover:text-cyan-400">
<i class="fab fa-github"></i>
</a>
<a href="#" class="social-icon hover:text-blue-400">
<i class="fab fa-linkedin"></i>
</a>
<a href="#" class="social-icon hover:text-purple-400">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
</div>
<!-- Profile Image with Enhanced Animation -->
<div class="floating relative group" data-aos="fade-left">
<div class="absolute inset-0 bg-gradient-to-r from-blue-400 to-cyan-400 rounded-full blur-lg opacity-30 animate-pulse"></div>
<div class="relative overflow-hidden rounded-full border-4 border-white/20 hover:border-cyan-400/50 transition-all duration-300 cursor-pointer shadow-2xl shadow-cyan-400/20 profile-image-container">
<div class="profile-image-border"></div>
<img src="https://avatars.githubusercontent.com/u/123110672?v=4"
class="w-72 h-72 object-cover transform transition duration-500 hover:scale-110"
alt="Nayan Ray Profile">
</div>
<div class="absolute -bottom-8 left-1/2 -translate-x-1/2 px-4 py-2 bg-black/50 rounded-full border border-white/10 text-sm animate-bounce-slow">
🚀 Available for Projects
</div>
</div>
</div>
</div>
</section>
<style>
/* Custom Animations */
@keyframes titleEntry {
0% { opacity: 0; transform: translateY(20px); }
100% { opacity: 1; transform: translateY(0); }
}
@keyframes lineExpand {
0% { transform: scaleX(0); }
100% { transform: scaleX(1); }
}
.animate-title span {
display: inline-block;
opacity: 0;
transform: translateY(20px);
animation: titleEntry 0.5s forwards;
}
.animate-title span:nth-child(1) { animation-delay: 0.1s; }
.animate-title span:nth-child(2) { animation-delay: 0.2s; }
.animate-title span:nth-child(3) { animation-delay: 0.3s; }
.animate-title span:nth-child(4) { animation-delay: 0.4s; }
.animate-title span:nth-child(5) { animation-delay: 0.5s; }
.animate-title span:nth-child(6) { animation-delay: 0.6s; }
.animate-title span:nth-child(7) { animation-delay: 0.7s; }
.animate-line-expand {
animation: lineExpand 1s ease-out forwards;
animation-delay: 1s;
}
.skill-tag {
@apply bg-white/5 px-4 py-2 rounded-full border border-white/10 hover:border-cyan-400/50 transition-all flex items-center text-sm;
}
.cta-button {
@apply bg-gradient-to-r from-cyan-400 to-blue-600 px-8 py-4 rounded-full font-semibold flex items-center gap-2 hover:gap-3 transition-all hover:shadow-2xl hover:shadow-cyan-400/20;
}
.social-icon {
@apply text-xl transition-transform hover:scale-125;
}
.profile-image-container {
perspective: 1000px;
}
.profile-image-border {
@apply absolute inset-0 border-4 border-transparent rounded-full animate-spin-slow;
border-top-color: #00ffff;
border-bottom-color: #0066ff;
}
@keyframes spin {
100% { transform: rotate(360deg); }
}
.animate-spin-slow {
animation: spin 12s linear infinite;
}
@keyframes bounce-slow {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.animate-bounce-slow {
animation: bounce-slow 3s infinite;
}
</style>
<!-- Skills Section -->
<section id="skills" class="py-20 relative bg-gradient-to-tr from-gray-900 via-blue-900/20 to-gray-800">
<div class="container mx-auto px-6 relative z-10">
<h2 class="text-4xl font-bold mb-16 gradient-text text-center cyber-glow">
Technical Arsenal
</h2>
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<!-- WordPress -->
<div class="bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/wordpress/wordpress-plain.svg"
class="w-20 h-20 mx-auto transition-transform duration-300 hover:scale-110"
alt="WordPress">
<p class="text-center mt-4 font-semibold hover:text-cyan-400 transition">WordPress</p>
</div>
<!-- HTML5 -->
<div class="bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-plain.svg"
class="w-20 h-20 mx-auto transition-transform duration-300 hover:scale-110"
alt="HTML5">
<p class="text-center mt-4 font-semibold hover:text-cyan-400 transition">HTML5</p>
</div>
<!-- CSS3 -->
<div class="bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-plain.svg"
class="w-20 h-20 mx-auto transition-transform duration-300 hover:scale-110"
alt="CSS3">
<p class="text-center mt-4 font-semibold hover:text-cyan-400 transition">CSS3</p>
</div>
<!-- JavaScript -->
<div class="bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-plain.svg"
class="w-20 h-20 mx-auto transition-transform duration-300 hover:scale-110"
alt="JavaScript">
<p class="text-center mt-4 font-semibold hover:text-cyan-400 transition">JavaScript</p>
</div>
<!-- React -->
<div class="bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/react/react-original.svg"
class="w-20 h-20 mx-auto transition-transform duration-300 hover:scale-110"
alt="React">
<p class="text-center mt-4 font-semibold hover:text-cyan-400 transition">React</p>
</div>
<!-- Node.js -->
<div class="bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/nodejs/nodejs-plain.svg"
class="w-20 h-20 mx-auto transition-transform duration-300 hover:scale-110"
alt="Node.js">
<p class="text-center mt-4 font-semibold hover:text-cyan-400 transition">Node.js</p>
</div>
<!-- Python -->
<div class="bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-plain.svg"
class="w-20 h-20 mx-auto transition-transform duration-300 hover:scale-110"
alt="Python">
<p class="text-center mt-4 font-semibold hover:text-cyan-400 transition">Python</p>
</div>
<!-- Git -->
<div class="bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-plain.svg"
class="w-20 h-20 mx-auto transition-transform duration-300 hover:scale-110"
alt="Git">
<p class="text-center mt-4 font-semibold hover:text-cyan-400 transition">Git</p>
</div>
<!-- PHP -->
<div class="bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/php/php-plain.svg"
class="w-20 h-20 mx-auto transition-transform duration-300 hover:scale-110"
alt="PHP">
<p class="text-center mt-4 font-semibold hover:text-cyan-400 transition">PHP</p>
</div>
<!-- AWS -->
<div class="bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/amazonwebservices/amazonwebservices-plain-wordmark.svg"
class="w-20 h-20 mx-auto transition-transform duration-300 hover:scale-110"
alt="AWS">
<p class="text-center mt-4 font-semibold hover:text-cyan-400 transition">AWS</p>
</div>
<!-- MongoDB -->
<div class="bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mongodb/mongodb-plain.svg"
class="w-20 h-20 mx-auto transition-transform duration-300 hover:scale-110"
alt="MongoDB">
<p class="text-center mt-4 font-semibold hover:text-cyan-400 transition">MongoDB</p>
</div>
<!-- MySQL -->
<div class="bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<img src="https://www.vectorlogo.zone/logos/mysql/mysql-official.svg"
class="w-20 h-20 mx-auto transition-transform duration-300 hover:scale-110"
alt="MySQL">
<p class="text-center mt-4 font-semibold hover:text-cyan-400 transition">MySQL</p>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 bg-gradient-to-br from-gray-900 via-blue-900/20 to-gray-800">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 gradient-text text-center cyber-glow">
Featured Creations
</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1: Promozone Italia -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover relative overflow-hidden">
<!-- Holographic Effect -->
<div class="absolute inset-0 bg-[radial-gradient(circle_at_center,_rgba(0,255,255,0.1)_0%,_transparent_70%)] opacity-0 group-hover:opacity-100 transition-opacity duration-500"></div>
<!-- Project Image -->
<div class="holographic-border mb-6 overflow-hidden rounded-xl bg-gray-800">
<img src="https://via.placeholder.com/600x400"
class="w-full h-48 object-cover transition-transform duration-500 group-hover:scale-110"
alt="Promozone Italia">
</div>
<!-- Project Title -->
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">Promozone Italia</h3>
<!-- Project Description -->
<p class="mb-4 opacity-90">A dynamic website for Promozone Italia, showcasing their services and expertise in promotional marketing. Built with WordPress and custom plugins.</p>
<!-- Tags -->
<div class="flex gap-2 flex-wrap mb-4">
<span class="bg-cyan-400/10 text-cyan-400 px-3 py-1 rounded-full text-sm">WordPress</span>
<span class="bg-blue-400/10 text-blue-400 px-3 py-1 rounded-full text-sm">PHP</span>
<span class="bg-purple-400/10 text-purple-400 px-3 py-1 rounded-full text-sm">Custom Plugins</span>
</div>
<!-- Visit Project Button -->
<a href="https://promozoneitalia.it/" target="_blank" class="inline-block bg-cyan-400/10 text-cyan-400 px-4 py-2 rounded-full hover:bg-cyan-400/20 transition">
Visit Project →
</a>
</div>
<!-- Project 2: Sunnati Shefa -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover relative overflow-hidden">
<!-- Holographic Effect -->
<div class="absolute inset-0 bg-[radial-gradient(circle_at_center,_rgba(0,255,255,0.1)_0%,_transparent_70%)] opacity-0 group-hover:opacity-100 transition-opacity duration-500"></div>
<!-- Project Image -->
<div class="holographic-border mb-6 overflow-hidden rounded-xl bg-gray-800">
<img src="https://via.placeholder.com/600x400"
class="w-full h-48 object-cover transition-transform duration-500 group-hover:scale-110"
alt="Sunnati Shefa">
</div>
<!-- Project Title -->
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">Sunnati Shefa</h3>
<!-- Project Description -->
<p class="mb-4 opacity-90">A modern and responsive website for Sunnati Shefa, highlighting their healthcare services. Built with React and Tailwind CSS.</p>
<!-- Tags -->
<div class="flex gap-2 flex-wrap mb-4">
<span class="bg-cyan-400/10 text-cyan-400 px-3 py-1 rounded-full text-sm">React</span>
<span class="bg-blue-400/10 text-blue-400 px-3 py-1 rounded-full text-sm">Tailwind CSS</span>
<span class="bg-green-400/10 text-green-400 px-3 py-1 rounded-full text-sm">JavaScript</span>
</div>
<!-- Visit Project Button -->
<a href="https://sunnatishefa.com/" target="_blank" class="inline-block bg-cyan-400/10 text-cyan-400 px-4 py-2 rounded-full hover:bg-cyan-400/20 transition">
Visit Project →
</a>
</div>
<!-- Project 3: Sociends -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover relative overflow-hidden">
<!-- Holographic Effect -->
<div class="absolute inset-0 bg-[radial-gradient(circle_at_center,_rgba(0,255,255,0.1)_0%,_transparent_70%)] opacity-0 group-hover:opacity-100 transition-opacity duration-500"></div>
<!-- Project Image -->
<div class="holographic-border mb-6 overflow-hidden rounded-xl bg-gray-800">
<img src="https://via.placeholder.com/600x400"
class="w-full h-48 object-cover transition-transform duration-500 group-hover:scale-110"
alt="Sociends">
</div>
<!-- Project Title -->
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">Sociends</h3>
<!-- Project Description -->
<p class="mb-4 opacity-90">A social networking platform built with Node.js and MongoDB, featuring real-time updates and user authentication.</p>
<!-- Tags -->
<div class="flex gap-2 flex-wrap mb-4">
<span class="bg-cyan-400/10 text-cyan-400 px-3 py-1 rounded-full text-sm">Node.js</span>
<span class="bg-blue-400/10 text-blue-400 px-3 py-1 rounded-full text-sm">MongoDB</span>
<span class="bg-yellow-400/10 text-yellow-400 px-3 py-1 rounded-full text-sm">Express</span>
</div>
<!-- Visit Project Button -->
<a href="https://sociends.com/" target="_blank" class="inline-block bg-cyan-400/10 text-cyan-400 px-4 py-2 rounded-full hover:bg-cyan-400/20 transition">
Visit Project →
</a>
</div>
<!-- Project 4: Lemagstyle -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover relative overflow-hidden">
<!-- Holographic Effect -->
<div class="absolute inset-0 bg-[radial-gradient(circle_at_center,_rgba(0,255,255,0.1)_0%,_transparent_70%)] opacity-0 group-hover:opacity-100 transition-opacity duration-500"></div>
<!-- Project Image -->
<div class="holographic-border mb-6 overflow-hidden rounded-xl bg-gray-800">
<img src="https://via.placeholder.com/600x400"
class="w-full h-48 object-cover transition-transform duration-500 group-hover:scale-110"
alt="Lemagstyle">
</div>
<!-- Project Title -->
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">Lemagstyle</h3>
<!-- Project Description -->
<p class="mb-4 opacity-90">A fashion and lifestyle blog built with Django and PostgreSQL, featuring rich text editing and user profiles.</p>
<!-- Tags -->
<div class="flex gap-2 flex-wrap mb-4">
<span class="bg-cyan-400/10 text-cyan-400 px-3 py-1 rounded-full text-sm">Django</span>
<span class="bg-blue-400/10 text-blue-400 px-3 py-1 rounded-full text-sm">PostgreSQL</span>
<span class="bg-purple-400/10 text-purple-400 px-3 py-1 rounded-full text-sm">Python</span>
</div>
<!-- Visit Project Button -->
<a href="https://lemagstyle.com/" target="_blank" class="inline-block bg-cyan-400/10 text-cyan-400 px-4 py-2 rounded-full hover:bg-cyan-400/20 transition">
Visit Project →
</a>
</div>
<!-- Add more projects as needed -->
</div>
</div>
</section>
<!-- Blog Section -->
<section id="blog" class="py-20 bg-gradient-to-tr from-gray-900 via-blue-900/20 to-gray-800">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 gradient-text text-center cyber-glow">
Blog
</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Blog Post 1 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<!-- Blog Image -->
<img src="https://miro.medium.com/v2/resize:fit:1400/1*d044eA8ePGr0xYZXVSeXqg.png"
class="w-full h-48 object-cover rounded-xl mb-6 transition-transform duration-500 group-hover:scale-105"
alt="Blog Image">
<!-- Blog Category and Date -->
<div class="flex items-center gap-2 mb-4">
<span class="bg-cyan-400/10 text-cyan-400 px-3 py-1 rounded-full text-sm">Web Development</span>
<span class="text-sm opacity-70">October 10, 2023</span>
</div>
<!-- Blog Title -->
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">Mastering React Hooks</h3>
<!-- Blog Description -->
<p class="mb-4 opacity-90">Learn how to use React Hooks effectively to build dynamic and reusable components in your applications.</p>
<!-- Read More Link -->
<a href="#" class="text-cyan-400 hover:text-cyan-300 transition flex items-center gap-2">
Read More →
</a>
</div>
<!-- Blog Post 2 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<!-- Blog Image -->
<img src="https://pinkdogdigital.com/wp-content/uploads/2024/04/The-Role-of-Accessibility-in-Modern-Web-Design.jpg"
class="w-full h-48 object-cover rounded-xl mb-6 transition-transform duration-500 group-hover:scale-105"
alt="Blog Image">
<!-- Blog Category and Date -->
<div class="flex items-center gap-2 mb-4">
<span class="bg-purple-400/10 text-purple-400 px-3 py-1 rounded-full text-sm">UI/UX Design</span>
<span class="text-sm opacity-70">September 25, 2023</span>
</div>
<!-- Blog Title -->
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">Designing for Accessibility</h3>
<!-- Blog Description -->
<p class="mb-4 opacity-90">Discover best practices for creating accessible and inclusive designs that work for everyone.</p>
<!-- Read More Link -->
<a href="#" class="text-cyan-400 hover:text-cyan-300 transition flex items-center gap-2">
Read More →
</a>
</div>
<!-- Blog Post 3 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<!-- Blog Image -->
<img src="https://www.docker.com/app/uploads/2022/12/Docker-Temporary-Image-Social-Thumbnail-1200x630-1.png"
class="w-full h-48 object-cover rounded-xl mb-6 transition-transform duration-500 group-hover:scale-105"
alt="Blog Image">
<!-- Blog Category and Date -->
<div class="flex items-center gap-2 mb-4">
<span class="bg-green-400/10 text-green-400 px-3 py-1 rounded-full text-sm">DevOps</span>
<span class="text-sm opacity-70">August 15, 2023</span>
</div>
<!-- Blog Title -->
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">Getting Started with Docker</h3>
<!-- Blog Description -->
<p class="mb-4 opacity-90">A beginner's guide to Docker, covering containerization, images, and deployment workflows.</p>
<!-- Read More Link -->
<a href="#" class="text-cyan-400 hover:text-cyan-300 transition flex items-center gap-2">
Read More →
</a>
</div>
<!-- Blog Post 4 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<!-- Blog Image -->
<img src="https://media2.dev.to/dynamic/image/width=1600,height=900,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fees3uq66qx8vwwu3su11.jpg"
class="w-full h-48 object-cover rounded-xl mb-6 transition-transform duration-500 group-hover:scale-105"
alt="Blog Image">
<!-- Blog Category and Date -->
<div class="flex items-center gap-2 mb-4">
<span class="bg-yellow-400/10 text-yellow-400 px-3 py-1 rounded-full text-sm">JavaScript</span>
<span class="text-sm opacity-70">July 30, 2023</span>
</div>
<!-- Blog Title -->
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">Advanced JavaScript Techniques</h3>
<!-- Blog Description -->
<p class="mb-4 opacity-90">Explore advanced JavaScript concepts like closures, promises, and async/await for better code efficiency.</p>
<!-- Read More Link -->
<a href="#" class="text-cyan-400 hover:text-cyan-300 transition flex items-center gap-2">
Read More →
</a>
</div>
<!-- Blog Post 5 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<!-- Blog Image -->
<img src="https://cdn.mindmajix.com/blog/images/aws-lambda-100819.png"
class="w-full h-48 object-cover rounded-xl mb-6 transition-transform duration-500 group-hover:scale-105"
alt="Blog Image">
<!-- Blog Category and Date -->
<div class="flex items-center gap-2 mb-4">
<span class="bg-blue-400/10 text-blue-400 px-3 py-1 rounded-full text-sm">Cloud Computing</span>
<span class="text-sm opacity-70">June 20, 2023</span>
</div>
<!-- Blog Title -->
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">Introduction to AWS Lambda</h3>
<!-- Blog Description -->
<p class="mb-4 opacity-90">Learn how to build serverless applications using AWS Lambda and integrate them with other AWS services.</p>
<!-- Read More Link -->
<a href="#" class="text-cyan-400 hover:text-cyan-300 transition flex items-center gap-2">
Read More →
</a>
</div>
<!-- Blog Post 6 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<!-- Blog Image -->
<img src="https://media.licdn.com/dms/image/v2/D4D12AQHqOVqI3XCbLQ/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1677829179317?e=2147483647&v=beta&t=15vPxonGMwU4_PZpPSZs3j7PAAwR9Gy_dU8qBOLMzcg"
class="w-full h-48 object-cover rounded-xl mb-6 transition-transform duration-500 group-hover:scale-105"
alt="Blog Image">
<!-- Blog Category and Date -->
<div class="flex items-center gap-2 mb-4">
<span class="bg-red-400/10 text-red-400 px-3 py-1 rounded-full text-sm">Machine Learning</span>
<span class="text-sm opacity-70">May 10, 2023</span>
</div>
<!-- Blog Title -->
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">Getting Started with TensorFlow</h3>
<!-- Blog Description -->
<p class="mb-4 opacity-90">A beginner's guide to TensorFlow, covering basic concepts and building your first machine learning model.</p>
<!-- Read More Link -->
<a href="#" class="text-cyan-400 hover:text-cyan-300 transition flex items-center gap-2">
Read More →
</a>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 bg-gradient-to-br from-gray-900 via-blue-900/20 to-gray-800">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 gradient-text text-center cyber-glow">
Testimonials
</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover relative">
<!-- Quote Icon -->
<div class="absolute top-6 left-6 text-cyan-400 opacity-20 text-4xl">“</div>
<p class="mb-4 opacity-90">"Nayan is an exceptional developer with a keen eye for detail. His work is always top-notch and delivered on time. Highly recommended!"</p>
<div class="flex items-center gap-4">
<div class="w-12 h-12 rounded-full bg-cyan-400/10 flex items-center justify-center">
<span class="text-cyan-400 text-xl">A</span>
</div>
<div>
<p class="text-cyan-400 font-semibold">Alice Johnson</p>
<p class="text-sm opacity-70">CEO, Tech Solutions</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover relative">
<!-- Quote Icon -->
<div class="absolute top-6 left-6 text-cyan-400 opacity-20 text-4xl">“</div>
<p class="mb-4 opacity-90">"Working with Nayan was a pleasure. He understood our requirements perfectly and delivered beyond expectations. Truly a professional!"</p>
<div class="flex items-center gap-4">
<div class="w-12 h-12 rounded-full bg-cyan-400/10 flex items-center justify-center">
<span class="text-cyan-400 text-xl">J</span>
</div>
<div>
<p class="text-cyan-400 font-semibold">John Doe</p>
<p class="text-sm opacity-70">Founder, Innovate Inc.</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover relative">
<!-- Quote Icon -->
<div class="absolute top-6 left-6 text-cyan-400 opacity-20 text-4xl">“</div>
<p class="mb-4 opacity-90">"Nayan's expertise in web development is unmatched. He transformed our vision into a stunning reality. We couldn't be happier!"</p>
<div class="flex items-center gap-4">
<div class="w-12 h-12 rounded-full bg-cyan-400/10 flex items-center justify-center">
<span class="text-cyan-400 text-xl">S</span>
</div>
<div>
<p class="text-cyan-400 font-semibold">Sarah Lee</p>
<p class="text-sm opacity-70">Marketing Director, Bright Ideas</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Roadmap Section -->
<section id="roadmap" class="py-20 bg-gradient-to-br from-gray-900 via-blue-900/20 to-gray-800">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 gradient-text text-center cyber-glow">
Roadmap
</h2>
<div class="relative">
<!-- Timeline Line -->
<div class="absolute left-1/2 h-full w-1 bg-gradient-to-b from-cyan-400 to-blue-500"></div>
<!-- Roadmap Items -->
<div class="space-y-8">
<!-- Roadmap Item 1 -->
<div class="flex items-center w-full roadmap-item" data-aos="fade-up" data-aos-delay="100">
<!-- Left Side -->
<div class="w-1/2 pr-8 text-right">
<h3 class="text-2xl font-bold mb-2 group-hover:text-cyan-400 transition">Q1 2023</h3>
<p class="opacity-90">Launched my portfolio website and started freelancing.</p>
</div>
<!-- Timeline Dot -->
<div class="w-8 h-8 bg-cyan-400 rounded-full flex items-center justify-center relative z-10 hover:scale-110 transition-transform duration-300">
<div class="w-4 h-4 bg-white rounded-full"></div>
</div>
<!-- Right Side (Empty) -->
<div class="w-1/2"></div>
</div>
<!-- Roadmap Item 2 -->
<div class="flex items-center w-full roadmap-item" data-aos="fade-up" data-aos-delay="200">
<!-- Left Side (Empty) -->
<div class="w-1/2"></div>
<!-- Timeline Dot -->
<div class="w-8 h-8 bg-cyan-400 rounded-full flex items-center justify-center relative z-10 hover:scale-110 transition-transform duration-300">
<div class="w-4 h-4 bg-white rounded-full"></div>
</div>
<!-- Right Side -->
<div class="w-1/2 pl-8">
<h3 class="text-2xl font-bold mb-2 group-hover:text-cyan-400 transition">Q2 2023</h3>
<p class="opacity-90">Developed 10+ client projects, including e-commerce and blog platforms.</p>
</div>
</div>
<!-- Roadmap Item 3 -->
<div class="flex items-center w-full roadmap-item" data-aos="fade-up" data-aos-delay="300">
<!-- Left Side -->
<div class="w-1/2 pr-8 text-right">
<h3 class="text-2xl font-bold mb-2 group-hover:text-cyan-400 transition">Q3 2023</h3>
<p class="opacity-90">Expanded skills in React, Node.js, and cloud technologies like AWS.</p>
</div>
<!-- Timeline Dot -->
<div class="w-8 h-8 bg-cyan-400 rounded-full flex items-center justify-center relative z-10 hover:scale-110 transition-transform duration-300">
<div class="w-4 h-4 bg-white rounded-full"></div>
</div>
<!-- Right Side (Empty) -->
<div class="w-1/2"></div>
</div>
<!-- Roadmap Item 4 -->
<div class="flex items-center w-full roadmap-item" data-aos="fade-up" data-aos-delay="400">
<!-- Left Side (Empty) -->
<div class="w-1/2"></div>
<!-- Timeline Dot -->
<div class="w-8 h-8 bg-cyan-400 rounded-full flex items-center justify-center relative z-10 hover:scale-110 transition-transform duration-300">
<div class="w-4 h-4 bg-white rounded-full"></div>
</div>
<!-- Right Side -->
<div class="w-1/2 pl-8">
<h3 class="text-2xl font-bold mb-2 group-hover:text-cyan-400 transition">Q4 2023</h3>
<p class="opacity-90">Planning to launch a SaaS product and contribute to open-source projects.</p>
</div>
</div>
<!-- Roadmap Item 5 -->
<div class="flex items-center w-full roadmap-item" data-aos="fade-up" data-aos-delay="500">
<!-- Left Side -->
<div class="w-1/2 pr-8 text-right">
<h3 class="text-2xl font-bold mb-2 group-hover:text-cyan-400 transition">Q1 2024</h3>
<p class="opacity-90">Goal: Build a team and scale my development agency.</p>
</div>
<!-- Timeline Dot -->
<div class="w-8 h-8 bg-cyan-400 rounded-full flex items-center justify-center relative z-10 hover:scale-110 transition-transform duration-300">
<div class="w-4 h-4 bg-white rounded-full"></div>
</div>
<!-- Right Side (Empty) -->
<div class="w-1/2"></div>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="faq" class="py-20 bg-gradient-to-tr from-gray-900 via-blue-900/20 to-gray-800">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 gradient-text text-center cyber-glow">
FAQ
</h2>
<div class="grid md:grid-cols-2 gap-8">
<!-- FAQ 1 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">What services do you offer?</h3>
<p class="mb-4 opacity-90">I specialize in web development, including front-end, back-end, and full-stack solutions. I also offer UI/UX design and DevOps services.</p>
</div>
<!-- FAQ 2 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">How do I get started with a project?</h3>
<p class="mb-4 opacity-90">Simply reach out via the contact form or email. We'll discuss your requirements, timeline, and budget to get started.</p>
</div>
<!-- FAQ 3 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">Do you work with remote clients?</h3>
<p class="mb-4 opacity-90">Yes, I work with clients worldwide. Communication is done via email, video calls, and project management tools.</p>
</div>
<!-- FAQ 4 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">What technologies do you use?</h3>
<p class="mb-4 opacity-90">I use modern technologies like React, Node.js, Python, WordPress, and cloud platforms like AWS and Azure.</p>
</div>
<!-- FAQ 5 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">Can you maintain existing websites?</h3>
<p class="mb-4 opacity-90">Absolutely! I provide maintenance and support services for existing websites, including updates, bug fixes, and performance optimization.</p>
</div>
<!-- FAQ 6 -->
<div class="group bg-white/5 p-8 rounded-2xl border border-white/10 hover:border-cyan-400/50 transition-all duration-300 card-hover">
<h3 class="text-2xl font-bold mb-4 group-hover:text-cyan-400 transition">What is your pricing model?</h3>
<p class="mb-4 opacity-90">Pricing depends on the project scope and complexity. I offer both fixed-price and hourly-rate models.</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gradient-to-tr from-gray-900 via-blue-900/20 to-gray-800">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 gradient-text text-center cyber-glow">
Let's Collaborate
</h2>
<div class="max-w-2xl mx-auto bg-white/5 rounded-2xl p-8 border border-white/10 backdrop-blur-sm hover:border-cyan-400/50 transition-all duration-300">
<form class="space-y-6">
<input type="text" placeholder="Name"
class="w-full bg-white/5 rounded-xl px-6 py-4 border border-white/10 focus:outline-none focus:border-cyan-400 focus:ring-2 focus:ring-cyan-400/30 transition placeholder-gray-400 hover:border-cyan-400/50">
<input type="email" placeholder="Email"
class="w-full bg-white/5 rounded-xl px-6 py-4 border border-white/10 focus:outline-none focus:border-cyan-400 focus:ring-2 focus:ring-cyan-400/30 transition placeholder-gray-400 hover:border-cyan-400/50">
<textarea rows="5" placeholder="Message"
class="w-full bg-white/5 rounded-xl px-6 py-4 border border-white/10 focus:outline-none focus:border-cyan-400 focus:ring-2 focus:ring-cyan-400/30 transition placeholder-gray-400 hover:border-cyan-400/50"></textarea>
<button class="w-full bg-gradient-to-r from-blue-400 to-cyan-400 px-8 py-4 rounded-xl font-bold text-gray-900 hover:opacity-90 transition-all duration-300 hover:shadow-lg hover:shadow-cyan-400/20">
Send Message
</button>
</form>
</div>
</div>
</section>
<footer class="bg-gray-900/90 py-16 border-t border-white/10 backdrop-blur-xl relative overflow-hidden">
<!-- Animated Background Elements -->
<div class="absolute inset-0 z-0 opacity-15">
<div class="absolute -top-20 -left-40 w-96 h-96 bg-cyan-400/10 rounded-full blur-3xl animate-pulse-slow"></div>
<div class="absolute -bottom-40 -right-40 w-96 h-96 bg-blue-400/10 rounded-full blur-3xl animate-pulse-slow delay-1000"></div>
</div>
<!-- Floating Grid Pattern -->
<div class="absolute inset-0 z-0 opacity-10 bg-[url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIGZpbGw9Im5vbmUiLz48cmVjdCB3aWR0aD0iMiIgaGVpZ2h0PSIyIiB4PSIyMCIgeT0iMjAiIGZpbGw9IiNmZmYiIG9wYWNpdHk9Ii4xIi8+PC9zdmc+')]
animate-grid-pan"></div>
<div class="container mx-auto px-6 relative z-10">
<!-- Footer Content Grid -->
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<!-- Brand Column -->
<div class="space-y-4">
<h3 class="text-2xl font-bold gradient-text">Nayan Ray</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Bridging imagination with implementation through cutting-edge digital solutions.
</p>
</div>
<!-- Quick Links -->
<div class="space-y-4">
<h4 class="text-gray-300 font-semibold mb-3">Explore</h4>
<ul class="space-y-2">
<li><a href="#home" class="footer-link hover:text-cyan-400">Home</a></li>
<li><a href="#projects" class="footer-link hover:text-blue-400">Projects</a></li>
<li><a href="#skills" class="footer-link hover:text-purple-400">Skills</a></li>
<li><a href="#contact" class="footer-link hover:text-rose-400">Contact</a></li>
</ul>
</div>
<!-- Connect -->
<div class="space-y-4">
<h4 class="text-gray-300 font-semibold mb-3">Connect</h4>
<div class="flex flex-col space-y-2">
<a href="mailto:hello@nayanray.com" class="footer-link hover:text-cyan-400">
✉️ hello@nayanray.com
</a>
<a href="tel:+1234567890" class="footer-link hover:text-blue-400">
📞 +1 (234) 567-890
</a>
</div>
</div>
<!-- Newsletter -->
<div class="space-y-4">
<h4 class="text-gray-300 font-semibold mb-3">Stay Updated</h4>
<form class="flex gap-2">
<input type="email" placeholder="Your email"
class="flex-1 bg-white/5 rounded-lg px-4 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-cyan-400">
<button class="bg-cyan-400/10 hover:bg-cyan-400/20 border border-cyan-400/30 px-4 py-2 rounded-lg text-sm transition-all">
Subscribe
</button>
</form>
</div>
</div>
<!-- Divider -->
<div class="border-t border-white/10 my-8"></div>
<!-- Bottom Section -->
<div class="flex flex-col md:flex-row items-center justify-between gap-6">
<!-- Social Links -->
<div class="flex space-x-6">
<a href="#" class="social-icon group" aria-label="GitHub">
<i class="fab fa-github"></i>
<span class="social-tooltip">GitHub</span>
</a>
<a href="#" class="social-icon group" aria-label="LinkedIn">
<i class="fab fa-linkedin"></i>
<span class="social-tooltip">LinkedIn</span>
</a>
<a href="#" class="social-icon group" aria-label="Twitter">
<i class="fab fa-twitter"></i>
<span class="social-tooltip">Twitter</span>
</a>
<a href="#" class="social-icon group" aria-label="Dribbble">
<i class="fab fa-dribbble"></i>
<span class="social-tooltip">Dribbble</span>
</a>
</div>
<!-- Copyright -->
<p class="text-gray-400 text-sm text-center">
© 2024 Nayan Ray. Crafted with
<span class="text-rose-400 animate-heartbeat">♥</span>
and <span class="gradient-text font-medium">innovation</span>
</p>
<!-- Back to Top -->
<a href="#home" class="back-to-top group" aria-label="Back to top">
<i class="fas fa-chevron-up"></i>
<span class="back-to-top-tooltip">Top</span>
</a>
</div>
</div>
</footer>
<style>
/* Animations */
@keyframes waveFlow {
0% { transform: translateX(0); }
50% { transform: translateX(-30px); }
100% { transform: translateX(0); }
}
.wave-animation {
animation: waveFlow 12s ease-in-out infinite;
}
@keyframes gridPan {
100% { background-position: 50px 50px; }
}
.animate-grid-pan {
animation: gridPan 20s linear infinite;
}
@keyframes heartbeat {
0% { transform: scale(1); }
25% { transform: scale(1.2); }
50% { transform: scale(1); }
75% { transform: scale(0.9); }
100% { transform: scale(1); }
}
.animate-heartbeat {
animation: heartbeat 1.5s infinite;
}
/* Component Styles */
.footer-link {
@apply text-gray-400 text-sm transition-all hover:pl-2 hover:opacity-100 flex items-center gap-2;
}
.social-icon {
@apply relative text-xl text-gray-400 hover:text-cyan-400 transition-all p-2 rounded-full;
}
.social-icon:hover .social-tooltip {
@apply opacity-100 translate-y-0;
}
.social-tooltip {
@apply absolute bottom-full left-1/2 -translate-x-1/2 mb-2 px-3 py-1 text-xs bg-gray-800 rounded-full opacity-0 transition-all translate-y-1;
}
.back-to-top {
@apply relative w-10 h-10 flex items-center justify-center bg-gray-800/50 hover:bg-cyan-400/20 rounded-full border border-white/10 hover:border-cyan-400/30 transition-all;
}
.back-to-top-tooltip {
@apply absolute bottom-full left-1/2 -translate-x-1/2 mb-2 px-2 py-1 text-xs bg-gray-800 rounded-full opacity-0 transition-all translate-y-1;
}
.back-to-top:hover .back-to-top-tooltip {
@apply opacity-100 translate-y-0;
}
.gradient-text {
background: linear-gradient(45deg, #00ffff, #0066ff);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>
</body>
</html>