-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2743 lines (2511 loc) · 175 KB
/
index.html
File metadata and controls
2743 lines (2511 loc) · 175 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nayan Ray – Web & WordPress Developer | Code Creativity Bd</title>
<!-- Primary Meta Tags -->
<meta name="description" content="Nayan Ray is a professional web developer in Jessore, Bangladesh, crafting modern WordPress websites, eCommerce platforms, and responsive UI/UX solutions.">
<meta name="keywords" content="Nayan Ray, WordPress developer, web designer Jessore, responsive web development, full-stack developer, ecommerce websites, Code Creativity Bd, SEO web design">
<meta name="google-site-verification" content="a3Vb7VcQMpDWIf_bC6BleWGKTI1I6LY8UduzhiMLVP8">
<meta name="google-adsense-account" content="ca-pub-7510411789737814">
<!-- Open Graph / Facebook -->
<meta property="og:title" content="Nayan Ray – Web & WordPress Developer">
<meta property="og:description" content="Modern web design and WordPress development services by Nayan Ray. Build your next project with Code Creativity Bd.">
<meta property="og:image" content="https://dev-nayanray.github.io/assets/nayan-ray.png">
<meta property="og:url" content="https://dev-nayanray.github.io/">
<meta property="og:type" content="website">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Nayan Ray – Web & WordPress Developer">
<meta name="twitter:description" content="WordPress and Web Design expert from Jessore, Bangladesh. Check out the portfolio and services.">
<meta name="twitter:image" content="https://dev-nayanray.github.io/assets/nayan-ray.png">
<!-- Canonical URL -->
<link rel="canonical" href="https://dev-nayanray.github.io/">
<!-- Favicon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="icon" type="image/png" href="https://dev-nayanray.github.io/assets/nayan-ray.png">
<!-- CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css">
<!-- JavaScript -->
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.5.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.5.0/firebase-firestore.js"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7510411789737814"
crossorigin="anonymous"></script>
<script async custom-element="amp-auto-ads"
src="https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js">
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7510411789737814"
crossorigin="anonymous"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7XJFTXZYPT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7XJFTXZYPT');
</script>
<script>
// Define dataLayer and the gtag function.
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
// Set default consent to 'denied' as a placeholder
// Determine actual values based on your own requirements
gtag('consent', 'default', {
'ad_storage': 'denied',
'ad_user_data': 'denied',
'ad_personalization': 'denied',
'analytics_storage': 'denied'
});
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=TAG_ID">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'TAG_ID');
</script>
<!-- Create one update function for each consent parameter -->
<script>
function consentGrantedAdStorage() {
gtag('consent', 'update', {
'ad_storage': 'granted'
});
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Nayan Ray",
"url": "https://dev-nayanray.github.io/",
"sameAs": [
"https://github.com/dev-nayanray",
"https://www.linkedin.com/in/nayanray",
"https://www.fiverr.com/wp_nayanray"
],
"jobTitle": "Web & WordPress Developer",
"worksFor": {
"@type": "Organization",
"name": "Code Creativity Bd"
},
"image": "https://dev-nayanray.github.io/assets/nayan-ray.png",
"description": "Professional web and WordPress developer offering custom website design, eCommerce projects, and responsive web development services based in Jessore, Bangladesh."
}
</script>
<!-- Invoke your consent functions when a user interacts with your banner -->
<style>
/* Custom styles for dark mode */
.dark .dark\:bg-gray-900 {
background-color: #1a202c;
}
.dark .dark\:text-white {
color: #fff;
}
.dark .dark\:bg-gray-800 {
background-color: #2d3748;
}
.dark .dark\:text-gray-400 {
color: #cbd5e0;
}
/* Fixed header styles */
header {
position: fixed;
top: 0;
width: 100%;
z-index: 10;
transition: background-color 0.3s;
}
.header-spacing {
height: 68px; /* Adjust based on header height */
}
.laptop-screen {
background: linear-gradient(145deg, #1e293b, #1e40af);
}
.laptop-frame {
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 20px 50px rgba(0, 0, 0, 0.35);
}
.laptop-screen-border {
border-width: 5px;
border-image: linear-gradient(90deg, red, yellow, green, blue) 1;
}
.laptop-screen:hover .laptop-screen-border {
border-image: linear-gradient(90deg, pink, orange, purple, cyan) 1;
}
.testimonial-card {
background: linear-gradient(145deg, #f3f4f6, #e5e7eb);
transition: transform 0.3s ease-in-out;
}
.testimonial-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.slick-prev, .slick-next {
font-size: 2rem;
color: #4b5563;
}
/* Additional custom styles */
.message-container {
max-height: 70vh; /* Limit chat container height */
}
.message-bubble {
max-width: 70%; /* Limit width of message bubbles */
}
.dark-mode-icon {
display: none; /* Hide dark mode icon by default */
}
.light-mode-icon {
display: inline; /* Show light mode icon by default */
}
</style>
</head>
<body class="bg-white dark:bg-gray-900 text-gray-900 dark:text-white">
<!-- <button onclick="consentGrantedAdStorage">Yes</button> -->
<!-- Header Section -->
<amp-auto-ads type="adsense"
data-ad-client="ca-pub-7510411789737814">
</amp-auto-ads>
<header class="bg-white/95 dark:bg-gray-900/95 backdrop-blur-md border-b dark:border-gray-700 shadow-sm sticky top-0 z-50 transition-colors duration-300">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16 sm:h-20">
<!-- Logo -->
<a href="#" class="flex items-center space-x-2 group">
<span class="text-2xl font-bold bg-gradient-to-r from-purple-600 to-blue-500 bg-clip-text text-transparent dark:from-purple-400 dark:to-blue-300 transition-all duration-300 group-hover:opacity-80">
Nayan Ray
</span>
</a>
<!-- Desktop Navigation -->
<nav class="hidden md:flex items-center space-x-6">
<div class="flex space-x-4 sm:space-x-6">
<a href="https://dev-nayanray.github.io/" class="relative text-gray-600 dark:text-gray-300 hover:text-gray-900 dark:hover:text-white text-sm font-medium transition-all duration-300 before:absolute before:-bottom-1 before:left-0 before:w-0 before:h-0.5 before:bg-purple-500 hover:before:w-full before:transition-all before:duration-300">
Home
</a>
<a href="about.html" class="relative text-gray-600 dark:text-gray-300 hover:text-gray-900 dark:hover:text-white text-sm font-medium transition-all duration-300 before:absolute before:-bottom-1 before:left-0 before:w-0 before:h-0.5 before:bg-purple-500 hover:before:w-full before:transition-all before:duration-300">
About
</a>
<a href="service.html" class="relative text-gray-600 dark:text-gray-300 hover:text-gray-900 dark:hover:text-white text-sm font-medium transition-all duration-300 before:absolute before:-bottom-1 before:left-0 before:w-0 before:h-0.5 before:bg-purple-500 hover:before:w-full before:transition-all before:duration-300">
Services
</a>
<a href="portfolio.html" class="relative text-gray-600 dark:text-gray-300 hover:text-gray-900 dark:hover:text-white text-sm font-medium transition-all duration-300 before:absolute before:-bottom-1 before:left-0 before:w-0 before:h-0.5 before:bg-purple-500 hover:before:w-full before:transition-all before:duration-300">
Portfolio
</a>
<a href="contact.html" class="relative text-gray-600 dark:text-gray-300 hover:text-gray-900 dark:hover:text-white text-sm font-medium transition-all duration-300 before:absolute before:-bottom-1 before:left-0 before:w-0 before:h-0.5 before:bg-purple-500 hover:before:w-full before:transition-all before:duration-300">
Contact
</a>
</div>
<!-- Action Buttons -->
<div class="flex items-center space-x-4 ml-4">
<a href="#" class="bg-gradient-to-r from-purple-600 to-blue-500 dark:from-purple-500 dark:to-blue-400 text-white px-6 py-1.5 rounded-full text-sm font-medium hover:shadow-lg hover:shadow-purple-500/30 transition-all duration-300 transform hover:scale-105">
Hire Me
</a>
<!-- Dark Mode Toggle -->
<button id="dark-mode-toggle" class="p-2 rounded-full bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 transition-colors duration-300 relative">
<div class="relative w-5 h-5">
<svg class="w-5 h-5 text-gray-800 dark:text-yellow-400 absolute inset-0 opacity-100 dark:opacity-0 transition-opacity duration-300" fill="currentColor" viewBox="0 0 20 20">
<path d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z" clip-rule="evenodd"></path>
</svg>
<svg class="w-5 h-5 text-gray-600 dark:text-yellow-400 absolute inset-0 opacity-0 dark:opacity-100 transition-opacity duration-300" fill="currentColor" viewBox="0 0 20 20">
<path d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"></path>
</svg>
</div>
</button>
</div>
</nav>
<!-- Mobile Menu Button -->
<button id="mobile-menu-button" class="md:hidden p-2 rounded-lg text-gray-600 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-700 transition-colors duration-300">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="md:hidden hidden absolute top-16 inset-x-0 bg-white dark:bg-gray-900 border-b dark:border-gray-700 transition-all duration-300">
<div class="px-4 py-4 space-y-4">
<a href="#" class="block text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors duration-300">Home</a>
<a href="about.html" class="block text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors duration-300">About</a>
<a href="service.html" class="block text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors duration-300">Services</a>
<a href="portfolio.html" class="block text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors duration-300">Portfolio</a>
<a href="contact.html" class="block text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors duration-300">Contact</a>
<a href="#" class="block bg-gradient-to-r from-purple-600 to-blue-500 dark:from-purple-500 dark:to-blue-400 text-white px-6 py-2 rounded-full text-sm font-medium hover:shadow-lg hover:shadow-purple-500/30 transition-all duration-300 transform hover:scale-105">
Hire Me
</a>
</div>
</div>
</header>
<script>
// Dark Mode Toggle with Smooth Transition
const darkModeToggle = document.getElementById('dark-mode-toggle');
const htmlElement = document.documentElement;
// Function to set dark mode with transition
function setDarkMode(enabled) {
htmlElement.style.transition = 'background-color 0.3s ease, color 0.3s ease';
if (enabled) {
htmlElement.classList.add('dark');
} else {
htmlElement.classList.remove('dark');
}
localStorage.setItem('dark-mode', enabled ? 'enabled' : 'disabled');
// Remove transition after animation completes
setTimeout(() => {
htmlElement.style.transition = '';
}, 300);
}
// Initialize dark mode
if (localStorage.getItem('dark-mode') === 'enabled') {
setDarkMode(true);
}
darkModeToggle.addEventListener('click', () => {
const isDark = htmlElement.classList.contains('dark');
setDarkMode(!isDark);
});
// Mobile Menu Toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', (e) => {
e.stopPropagation();
mobileMenu.classList.toggle('hidden');
});
// Close mobile menu when clicking outside
document.addEventListener('click', (event) => {
if (!mobileMenu.contains(event.target) && !mobileMenuButton.contains(event.target)) {
mobileMenu.classList.add('hidden');
}
});
// Close menu on ESC key
document.addEventListener('keydown', (e) => {
if (e.key === 'Escape') {
mobileMenu.classList.add('hidden');
}
});
</script>
<section class="relative min-h-screen flex items-center justify-center overflow-hidden isolate">
<!-- Animated gradient veil -->
<div class="absolute inset-0 bg-[linear-gradient(45deg,transparent_20%,hsl(var(--primary)/.03)_50%,transparent_80%)] opacity-40 animate-gradient-veil"></div>
<!-- Geometric background pattern -->
<div class="absolute inset-0 bg-[radial-gradient(circle_at_center,#fff_1px,transparent_0)] bg-[size:40px_40px] opacity-[0.02] dark:opacity-[0.03]"></div>
<!-- Content container -->
<div class="relative max-w-6xl mx-auto px-4 sm:px-6 lg:px-8 w-full py-24">
<div class="flex flex-col items-center text-center">
<!-- Animated badge -->
<div class="mb-8 animate-fade-in-up">
<span class="inline-flex items-center gap-2 bg-white/5 backdrop-blur-sm border border-gray-200 dark:border-gray-800 rounded-full py-2 px-4 text-sm text-gray-600 dark:text-gray-300 hover:bg-gray-50/50 dark:hover:bg-gray-900 transition-all">
<span class="relative flex h-2 w-2">
<span class="animate-ping absolute inline-flex h-full w-full rounded-full bg-emerald-400 opacity-75"></span>
<span class="relative inline-flex rounded-full h-2 w-2 bg-emerald-500"></span>
</span>
Available for new projects
</span>
</div>
<!-- Hero content -->
<div class="max-w-3xl mx-auto space-y-8">
<!-- Name with gradient stroke effect -->
<h1 class="text-6xl md:text-8xl font-black tracking-tight text-center">
<span class="text-transparent bg-clip-text bg-gradient-to-r from-gray-900/90 via-gray-900 to-gray-900/90 dark:from-gray-100 dark:via-gray-200 dark:to-gray-100 relative">
<span class="absolute inset-0 bg-gradient-to-r from-blue-500 to-purple-500 text-transparent bg-clip-text animate-text-shine opacity-20"></span>
Nayan Ray
</span>
</h1>
<!-- Animated typing title -->
<div class="relative inline-block">
<div class="absolute inset-0 bg-gradient-to-r from-blue-500 to-purple-500 blur-2xl opacity-20 animate-pulse"></div>
<p class="text-2xl md:text-3xl font-medium bg-gradient-to-r from-gray-600 to-gray-800 dark:from-gray-300 dark:to-gray-100 bg-clip-text text-transparent relative">
WordPress & Full-Stack Developer
<span class="typing-cursor">|</span>
</p>
</div>
<!-- Description with animated border -->
<div class="relative max-w-2xl mx-auto">
<div class="absolute -inset-2 rounded-2xl bg-gradient-to-r from-blue-500/30 to-purple-500/30 blur-xl opacity-30 animate-gradient-rotate"></div>
<p class="relative text-lg text-gray-600 dark:text-gray-300 leading-relaxed bg-white/30 dark:bg-gray-900/30 backdrop-blur-sm rounded-2xl p-6">
Crafting high-performance web experiences with modern WordPress development
and cutting-edge full-stack solutions. Focused on scalable architecture
and intuitive user experiences.
</p>
</div>
<!-- CTA buttons with holographic effect -->
<div class="flex flex-col sm:flex-row gap-4 justify-center relative group pt-8">
<div class="absolute -inset-1 rounded-2xl bg-gradient-to-r from-blue-500 to-purple-500 opacity-0 group-hover:opacity-10 transition-opacity duration-300 blur-lg"></div>
<a href="#contact" class="relative px-8 py-4 bg-gradient-to-r from-blue-600 to-purple-600 text-white rounded-xl transition-all duration-300 hover:shadow-2xl hover:shadow-blue-500/20 flex items-center gap-2 group/btn">
<span>Start Project</span>
<svg class="w-4 h-4 group-hover/btn:translate-x-1 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"/>
</svg>
</a>
<a href="#work" class="relative px-8 py-4 border-2 border-gray-200/50 dark:border-gray-800 text-gray-600 dark:text-gray-300 rounded-xl transition-all duration-300 hover:bg-white/5 hover:border-transparent hover:shadow-lg backdrop-blur-sm">
View Case Studies
</a>
</div>
</div>
<!-- Tech stack grid -->
<div class="mt-16 grid grid-cols-4 sm:grid-cols-8 gap-4 opacity-90 hover:opacity-100 transition-opacity">
<!-- WordPress -->
<div class="p-3 bg-white dark:bg-gray-900 rounded-xl flex items-center justify-center shadow-sm hover:shadow-lg transition-all duration-300 hover:-translate-y-1">
<svg class="w-8 h-8 text-[#21759B]" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<path fill="currentColor" d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 472c-119.3 0-216-96.7-216-216S136.7 40 256 40s216 96.7 216 216-96.7 216-216 216z"/>
<path fill="currentColor" d="M369.9 185.5c-9.6-33.7-39.5-58.5-74.7-58.5h-77.1c-5.2 0-9.5 4.2-9.5 9.5s4.2 9.5 9.5 9.5h77.1c26.3 0 49.2 18 56.1 43.5h-88.4c-5.2 0-9.5 4.2-9.5 9.5s4.2 9.5 9.5 9.5h89.3c-.2 3.1-.6 6.1-1.3 9H215.5l26.5 76.6-36.4 109.1c-52.6-19.3-90.6-69.6-90.6-128.7 0-75.5 61.5-137 137-137s137 61.5 137 137c0 23.8-6.2 46.2-17 65.8l-38.4-114.6 6.8-20.3z"/>
</svg>
</div>
<!-- React -->
<div class="p-3 bg-white dark:bg-gray-900 rounded-xl flex items-center justify-center shadow-sm hover:shadow-lg transition-all duration-300 hover:-translate-y-1">
<svg class="w-8 h-8 text-[#61DAFB]" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path fill="currentColor" d="M12 15.6a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2zm0-10.8c-2.7 0-5.4.5-7.8 1.5l1.6 2.9c1.8-.7 3.8-1.1 6.1-1.1s4.3.4 6.1 1.1l1.6-2.9c-2.4-1-5.1-1.5-7.6-1.5zm0 15.6c2.7 0 5.4-.5 7.8-1.5l-1.6-2.9c-1.8.7-3.8 1.1-6.1 1.1s-4.3-.4-6.1-1.1l-1.6 2.9c2.4 1 5.1 1.5 7.6 1.5zm10.8-7.8c0-2.7-.5-5.4-1.5-7.8l-2.9 1.6c.7 1.8 1.1 3.8 1.1 6.1s-.4 4.3-1.1 6.1l2.9 1.6c1-2.4 1.5-5.1 1.5-7.6zm-19.2 0c0 2.7.5 5.4 1.5 7.8l2.9-1.6c-.7-1.8-1.1-3.8-1.1-6.1s.4-4.3 1.1-6.1L3.6 7.8C2.6 10.2 2.1 12.9 2.1 15.6z"/>
</svg>
</div>
<!-- Tailwind CSS -->
<div class="p-3 bg-white dark:bg-gray-900 rounded-xl flex items-center justify-center shadow-sm hover:shadow-lg transition-all duration-300 hover:-translate-y-1">
<svg class="w-8 h-8 text-[#38B2AC]" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 154">
<path fill="currentColor" d="M128 0C93.867 0 74.667 17.067 70.4 51.2c12.8-17.067 27.733-23.467 44.8-19.2 9.6 2.667 16.533 9.6 23.467 16.533 12.8 12.8 27.733 27.733 58.667 27.733 34.133 0 53.333-17.067 57.6-51.2-12.8 17.067-27.733 23.467-44.8 19.2-9.6-2.667-16.533-9.6-23.467-16.533C173.867 17.067 158.933 0 128 0zm-57.6 76.8C36.267 76.8 17.067 93.867 12.8 128c12.8-17.067 27.733-23.467 44.8-19.2 9.6 2.667 16.533 9.6 23.467 16.533 12.8 12.8 27.733 27.733 58.667 27.733 34.133 0 53.333-17.067 57.6-51.2-12.8 17.067-27.733 23.467-44.8 19.2-9.6-2.667-16.533-9.6-23.467-16.533-12.8-12.8-27.733-27.733-58.667-27.733z"/>
</svg>
</div>
<!-- Laravel -->
<div class="p-3 bg-white dark:bg-gray-900 rounded-xl flex items-center justify-center shadow-sm hover:shadow-lg transition-all duration-300 hover:-translate-y-1">
<svg class="w-8 h-8 text-[#FF2D20]" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path fill="currentColor" d="M2 3.5l6-1.5 2 4.5-6 1.5zm2.5 5.6l2.4.6 4.8 8.3-2.4-.6zm11.2-.1l2.4.6 2.9-5-2.4-.6zm.9 1.5l-2.8 5.1-4.8-8.3 2.8-5.1zM20.7 4.8l-3.7-.9L17.6 0 24 1.6zm-2.2 8.2l-4.8 8.3 3.7.9 4.8-8.3z"/>
</svg>
</div>
<!-- PHP -->
<div class="p-3 bg-white dark:bg-gray-900 rounded-xl flex items-center justify-center shadow-sm hover:shadow-lg transition-all duration-300 hover:-translate-y-1">
<svg class="w-8 h-8 text-[#8892BF]" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<path fill="currentColor" d="M64 0C28.7 0 0 28.7 0 64s28.7 64 64 64 64-28.7 64-64S99.3 0 64 0zm0 119C34 119 9 94 9 64S34 9 64 9s55 25 55 55-25 55-55 55z"/>
<path fill="currentColor" d="M35 87h10l3-18h8l-1 6h7l1-6h9l-3 18h9l3-18h9l-1 6h7l1-6h8l-3 18h10l5-30H30z"/>
</svg>
</div>
<!-- JavaScript -->
<div class="p-3 bg-white dark:bg-gray-900 rounded-xl flex items-center justify-center shadow-sm hover:shadow-lg transition-all duration-300 hover:-translate-y-1">
<svg class="w-8 h-8 text-[#F7DF1E]" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<path fill="currentColor" d="M1.408 1.408h125.184v125.185H1.408z"/>
<path fill="#000" d="M116.732 116.732H11.27V11.27h105.462z"/>
<path fill="#000" d="M97.305 96.918c-1.984 4.345-5.79 6.685-11.375 6.685-6.125 0-9.99-2.748-11.696-8.244l8.78-5.21c.6 2.14 1.14 3.688 2.82 4.73 1.393.873 3.41.934 4.4-.313 1.063-1.365.87-3.466-.686-4.635l-6.25-4.38c-6.346-4.35-8.115-11.96-3.842-18.117 3.905-6.114 11.97-8.44 18.29-5.4 4.98 2.45 7.237 6.125 8.74 10.5l-8.82 3.85c-.6-1.723-1.17-3.063-2.448-4.17-1.42-1.16-3.646-1.312-4.6.6-.94 1.81.282 3.51 1.946 4.676l5.3 3.92c7.058 5.208 7.828 11.698 5.112 17.332z"/>
</svg>
</div>
<!-- HTML5 -->
<div class="p-3 bg-white dark:bg-gray-900 rounded-xl flex items-center justify-center shadow-sm hover:shadow-lg transition-all duration-300 hover:-translate-y-1">
<svg class="w-8 h-8 text-[#E34F26]" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<path fill="currentColor" d="M19.1 116.5L9 0h110l-10.1 116.5-44.2 12.3z"/>
</svg>
</div>
<!-- CSS3 -->
<div class="p-3 bg-white dark:bg-gray-900 rounded-xl flex items-center justify-center shadow-sm hover:shadow-lg transition-all duration-300 hover:-translate-y-1">
<svg class="w-8 h-8 text-[#1572B6]" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<path fill="currentColor" d="M19 3l9.5 107.4 35.6 9.9 35.6-9.9L109 3z"/>
</svg>
</div>
<!-- MySQL -->
<div class="p-3 bg-white dark:bg-gray-900 rounded-xl flex items-center justify-center shadow-sm hover:shadow-lg transition-all duration-300 hover:-translate-y-1">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mysql/mysql-original.svg" class="w-8 h-8" alt="MySQL">
</div>
</div>
</div>
</div>
<!-- Scroll indicator -->
<div class="absolute bottom-8 left-1/2 -translate-x-1/2 animate-bounce-slow">
<div class="w-8 h-12 border-2 border-gray-300 dark:border-gray-700 rounded-2xl flex items-center justify-center">
<div class="w-1 h-3 bg-gray-400 dark:bg-gray-500 rounded-full animate-scroll-indicator"></div>
</div>
</div>
</section>
<style>
@keyframes gradient-veil {
0% { background-position: -100% 50% }
100% { background-position: 200% 50% }
}
@keyframes text-shine {
from { background-position: 0 50% }
to { background-position: 100% 50% }
}
@keyframes gradient-rotate {
0% { transform: rotate(0deg) }
100% { transform: rotate(360deg) }
}
@keyframes scroll-indicator {
0%, 100% { transform: translateY(-5px); opacity: 0.4 }
50% { transform: translateY(5px); opacity: 1 }
}
.animate {
&-gradient-veil {
background-size: 400% 400%;
animation: gradient-veil 12s linear infinite;
}
&-text-shine {
background: linear-gradient(
to right,
#3b82f6 20%,
#8b5cf6 30%,
#3b82f6 70%
);
background-size: 200% auto;
background-clip: text;
animation: text-shine 3s linear infinite;
}
&-gradient-rotate {
animation: gradient-rotate 8s linear infinite;
}
&-fade-in-up {
animation: fadeInUp 0.8s ease-out;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
<a href="https://kwork.com?ref=22059479" target="_blank"><img src="https://cdn.kwork.com/images/partner/en/03.jpg" alt="Kwork.com – freelance services from $10"></a>
<section class="relative py-20 bg-gradient-to-b from-blue-50 to-white dark:from-gray-900 dark:to-gray-800 overflow-hidden">
<!-- Animated Background -->
<div class="absolute inset-0 opacity-10 dark:opacity-5">
<div class="absolute inset-0 bg-gradient-to-r from-purple-100 to-blue-100 dark:from-purple-900 dark:to-blue-900 animate-gradient"></div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="grid lg:grid-cols-2 gap-12 items-center">
<!-- Profile Column -->
<div class="relative group flex justify-center lg:justify-end">
<div class="relative w-72 h-72 rounded-2xl overflow-hidden transform transition-all duration-500 hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-br from-purple-500 to-blue-600 opacity-20"></div>
<img src="assets/nayan-ray.png" alt="Nayan Ray"
class="w-full h-full object-cover object-top rounded-2xl border-8 border-white/20 dark:border-gray-800">
<div class="absolute -bottom-6 left-1/2 -translate-x-1/2 bg-white dark:bg-gray-800 px-6 py-3 rounded-full shadow-lg">
<div class="flex items-center space-x-2">
<div class="flex text-yellow-400">
★★★★★
</div>
<span class="text-sm font-semibold bg-gradient-to-r from-purple-600 to-blue-600 bg-clip-text text-transparent">
Top Rated
</span>
</div>
</div>
</div>
<div class="absolute -right-8 -top-8 w-32 h-32 bg-gradient-to-r from-purple-500 to-blue-600 rounded-full opacity-10 group-hover:opacity-20 transition-opacity duration-300"></div>
</div>
<!-- Bio Column -->
<div class="space-y-6">
<h2 class="text-4xl md:text-5xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-purple-600 to-blue-600">
Crafting Digital Excellence
</h2>
<div class="space-y-4 text-gray-600 dark:text-gray-300 text-lg">
<p class="flex items-start">
<span class="shrink-0 mt-1.5 w-2 h-2 bg-gradient-to-r from-purple-500 to-blue-500 rounded-full mr-3"></span>
<span>Full-stack developer with 3+ years experience specializing in WordPress, Laravel, and modern JavaScript frameworks</span>
</p>
<p class="flex items-start">
<span class="shrink-0 mt-1.5 w-2 h-2 bg-gradient-to-r from-purple-500 to-blue-500 rounded-full mr-3"></span>
<span>Lead Developer at Coupon Themes & Founder of NexGen Devs - Delivering enterprise-grade solutions</span>
</p>
<p class="flex items-start">
<span class="shrink-0 mt-1.5 w-2 h-2 bg-gradient-to-r from-purple-500 to-blue-500 rounded-full mr-3"></span>
<span>Expert in performance optimization, SEO-friendly development, and responsive design systems</span>
</p>
</div>
<!-- Stats & Social -->
<div class="grid grid-cols-2 gap-4 mt-8">
<div class="p-4 bg-white dark:bg-gray-800 rounded-xl border border-gray-100 dark:border-gray-700">
<div class="text-2xl font-bold bg-gradient-to-r from-purple-600 to-blue-600 bg-clip-text text-transparent">
3+
</div>
<div class="text-sm text-gray-500 dark:text-gray-400">
Years Experience
</div>
</div>
<div class="p-4 bg-white dark:bg-gray-800 rounded-xl border border-gray-100 dark:border-gray-700">
<div class="text-2xl font-bold bg-gradient-to-r from-purple-600 to-blue-600 bg-clip-text text-transparent">
50+
</div>
<div class="text-sm text-gray-500 dark:text-gray-400">
Projects Delivered
</div>
</div>
</div>
<!-- Social Links -->
<div class="flex space-x-4 mt-6">
<a href="#" class="p-2 bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-700 rounded-lg transition-all border border-gray-100 dark:border-gray-700">
<svg class="w-6 h-6 text-gray-700 dark:text-gray-300" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
</svg>
</a>
<a href="#" class="p-2 bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-700 rounded-lg transition-all border border-gray-100 dark:border-gray-700">
<svg class="w-6 h-6 text-gray-700 dark:text-gray-300" fill="currentColor" viewBox="0 0 24 24">
<path d="M23.499 6.203a3.008 3.008 0 00-2.089-2.089c-1.618-.423-5.968-.423-5.968-.423s-4.35 0-5.967.423a3.008 3.008 0 00-2.089 2.09A31.258 31.258 0 000 12.01a31.258 31.258 0 003.386 5.785 3.008 3.008 0 002.089 2.089c1.868.489 5.968.489 5.968.489s4.35 0 5.969-.489a3.008 3.008 0 002.089-2.09 31.258 31.258 0 003.384-5.785 31.258 31.258 0 00-3.384-5.808zm-14.954 6.635V8.356l5.629 3.14-5.629 3.14z"/>
</svg>
</a>
<!-- Add other social icons -->
</div>
<a href="#contact" class="mt-8 inline-flex items-center px-8 py-3 bg-gradient-to-r from-purple-600 to-blue-600 text-white rounded-xl hover:shadow-lg transition-all transform hover:scale-[1.02]">
<span>Let's Connect</span>
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"/>
</svg>
</a>
</div>
</div>
</div>
</section>
<section class="relative bg-gradient-to-br from-gray-50 to-blue-50 dark:from-gray-900 dark:to-gray-800 py-16 overflow-hidden">
<!-- Animated background elements -->
<div class="absolute inset-0 opacity-20 dark:opacity-30">
<div class="absolute w-96 h-96 bg-purple-500/20 rounded-full -top-48 -left-48 mix-blend-multiply blur-2xl animate-pulse"></div>
<div class="absolute w-96 h-96 bg-blue-500/20 rounded-full -bottom-48 -right-48 mix-blend-multiply blur-2xl animate-pulse delay-300"></div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative">
<div class="text-center mb-16">
<h2 class="text-4xl md:text-5xl font-bold bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent dark:from-blue-400 dark:to-purple-300 mb-4">Crafted Innovations</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">Exploring the intersection of design and technology through impactful digital solutions</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8" id="projects">
<!-- LeMagStyle -->
<div class="group relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-300 ease-[cubic-bezier(0.4,0,0.2,1)]">
<div class="absolute inset-0 bg-gradient-to-br from-blue-100 to-purple-100 dark:from-gray-700 dark:to-gray-900 opacity-0 group-hover:opacity-50 rounded-2xl transition-opacity duration-300"></div>
<a href="https://lemagstyle.com" target="_blank" class="block overflow-hidden rounded-t-2xl">
<div class="relative h-60 overflow-hidden">
<img src="assets/lemag.png" alt="LeMagStyle Project"
class="w-full h-full object-cover transform transition-transform duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/60 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<div class="flex gap-2">
<span class="px-3 py-1 text-xs font-medium bg-blue-600/80 text-white rounded-full">Laravel</span>
<span class="px-3 py-1 text-xs font-medium bg-purple-600/80 text-white rounded-full">Vue.js</span>
</div>
</div>
</div>
</a>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">LeMagStyle eCommerce</h3>
<p class="text-gray-600 dark:text-gray-300 line-clamp-2">Modern eCommerce platform featuring AI-powered product recommendations and seamless payment integrations</p>
<div class="mt-4 flex items-center justify-between">
<a href="https://lemagstyle.com" target="_blank"
class="inline-flex items-center text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300 transition-colors">
Live Demo
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
<span class="text-sm text-gray-500 dark:text-gray-400">2023</span>
</div>
</div>
</div>
<!-- Chapzz -->
<div class="group relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="absolute inset-0 bg-gradient-to-br from-green-100 to-cyan-100 dark:from-gray-700 dark:to-gray-900 opacity-0 group-hover:opacity-50 rounded-2xl transition-opacity duration-300"></div>
<a href="https://chapzz.com" target="_blank" class="block overflow-hidden rounded-t-2xl">
<div class="relative h-60 overflow-hidden">
<img src="assets/chapzz.png" alt="Chapzz Project"
class="w-full h-full object-cover transform transition-transform duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/60 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<div class="flex gap-2">
<span class="px-3 py-1 text-xs font-medium bg-green-600/80 text-white rounded-full">React</span>
<span class="px-3 py-1 text-xs font-medium bg-cyan-600/80 text-white rounded-full">Node.js</span>
</div>
</div>
</div>
</a>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">Chapzz Coupon Platform</h3>
<p class="text-gray-600 dark:text-gray-300 line-clamp-2">Affiliate marketing ecosystem with real-time analytics and automated commission tracking</p>
<div class="mt-4 flex items-center justify-between">
<a href="https://chapzz.com" target="_blank"
class="inline-flex items-center text-green-600 dark:text-green-400 hover:text-green-800 dark:hover:text-green-300 transition-colors">
Explore
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
<span class="text-sm text-gray-500 dark:text-gray-400">2023</span>
</div>
</div>
</div>
<!-- Promozone Italia -->
<div class="group relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="absolute inset-0 bg-gradient-to-br from-orange-100 to-rose-100 dark:from-gray-700 dark:to-gray-900 opacity-0 group-hover:opacity-50 rounded-2xl transition-opacity duration-300"></div>
<a href="https://promozoneitalia.it" target="_blank" class="block overflow-hidden rounded-t-2xl">
<div class="relative h-60 overflow-hidden">
<img src="assets/promozone.png" alt="Promozone Italia"
class="w-full h-full object-cover transform transition-transform duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/60 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<div class="flex gap-2">
<span class="px-3 py-1 text-xs font-medium bg-orange-600/80 text-white rounded-full">PHP</span>
<span class="px-3 py-1 text-xs font-medium bg-rose-600/80 text-white rounded-full">MySQL</span>
</div>
</div>
</div>
</a>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">Promozone Italia</h3>
<p class="text-gray-600 dark:text-gray-300 line-clamp-2">Secure investment platform with multi-tiered profit sharing and blockchain integration</p>
<div class="mt-4 flex items-center justify-between">
<a href="invest.html" target="_blank"
class="inline-flex items-center text-orange-600 dark:text-orange-400 hover:text-orange-800 dark:hover:text-orange-300 transition-colors">
View Project
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
<span class="text-sm text-gray-500 dark:text-gray-400">2023</span>
</div>
</div>
</div>
<!-- WBLB Loan Application -->
<div class="group relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="absolute inset-0 bg-gradient-to-br from-indigo-100 to-pink-100 dark:from-gray-700 dark:to-gray-900 opacity-0 group-hover:opacity-50 rounded-2xl transition-opacity duration-300"></div>
<a href="https://wblb.net" target="_blank" class="block overflow-hidden rounded-t-2xl">
<div class="relative h-60 overflow-hidden">
<img src="assets/wblbn.png" alt="WBLB Loan Application"
class="w-full h-full object-cover transform transition-transform duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/60 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<div class="flex gap-2">
<span class="px-3 py-1 text-xs font-medium bg-indigo-600/80 text-white rounded-full">Angular</span>
<span class="px-3 py-1 text-xs font-medium bg-pink-600/80 text-white rounded-full">Spring Boot</span>
</div>
</div>
</div>
</a>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">WBLB Loan System</h3>
<p class="text-gray-600 dark:text-gray-300 line-clamp-2">AI-driven loan processing platform with automated risk assessment and document verification</p>
<div class="mt-4 flex items-center justify-between">
<a href="https://wblb.net" target="_blank"
class="inline-flex items-center text-indigo-600 dark:text-indigo-400 hover:text-indigo-800 dark:hover:text-indigo-300 transition-colors">
See Demo
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
<span class="text-sm text-gray-500 dark:text-gray-400">2023</span>
</div>
</div>
</div>
<!-- Rainshield BD -->
<div class="group relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="absolute inset-0 bg-gradient-to-br from-blue-100 to-green-100 dark:from-gray-700 dark:to-gray-900 opacity-0 group-hover:opacity-50 rounded-2xl transition-opacity duration-300"></div>
<a href="http://rainshieldbd.mollasonsgroup.com/" target="_blank" class="block overflow-hidden rounded-t-2xl">
<div class="relative h-60 overflow-hidden">
<img src="assets/rainshieldbd.png" alt="Rainshield BD"
class="w-full h-full object-cover transform transition-transform duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/60 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<div class="flex gap-2">
<span class="px-3 py-1 text-xs font-medium bg-blue-600/80 text-white rounded-full">WordPress</span>
<span class="px-3 py-1 text-xs font-medium bg-green-600/80 text-white rounded-full">Elementor</span>
</div>
</div>
</div>
</a>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">Rainshield BD</h3>
<p class="text-gray-600 dark:text-gray-300 line-clamp-2">Rain protection product showcase website built with modern WordPress design practices.</p>
<div class="mt-4 flex items-center justify-between">
<a href="http://rainshieldbd.mollasonsgroup.com/" target="_blank"
class="inline-flex items-center text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300 transition-colors">
Explore
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
<span class="text-sm text-gray-500 dark:text-gray-400">2024</span>
</div>
</div>
</div>
<!-- Nikhil Electronics -->
<div class="group relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="absolute inset-0 bg-gradient-to-br from-gray-100 to-blue-100 dark:from-gray-700 dark:to-gray-900 opacity-0 group-hover:opacity-50 rounded-2xl transition-opacity duration-300"></div>
<a href="https://nikhil.mollasonsgroup.com/" target="_blank" class="block overflow-hidden rounded-t-2xl">
<div class="relative h-60 overflow-hidden">
<img src="assets/nikhil.png" alt="Nikhil Electronics"
class="w-full h-full object-cover transform transition-transform duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/60 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<div class="flex gap-2">
<span class="px-3 py-1 text-xs font-medium bg-indigo-600/80 text-white rounded-full">WooCommerce</span>
<span class="px-3 py-1 text-xs font-medium bg-yellow-500/80 text-white rounded-full">WordPress</span>
</div>
</div>
</div>
</a>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">Nikhil Electronics</h3>
<p class="text-gray-600 dark:text-gray-300 line-clamp-2">Modern eCommerce website for electronic devices, offering a seamless shopping experience with WooCommerce.</p>
<div class="mt-4 flex items-center justify-between">
<a href="https://nikhil.mollasonsgroup.com/" target="_blank"
class="inline-flex items-center text-indigo-600 dark:text-indigo-400 hover:text-indigo-800 dark:hover:text-indigo-300 transition-colors">
Explore
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
<span class="text-sm text-gray-500 dark:text-gray-400">2024</span>
</div>
</div>
</div>
<!-- Sociends -->
<div class="group relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="absolute inset-0 bg-gradient-to-br from-cyan-100 to-blue-100 dark:from-gray-700 dark:to-gray-900 opacity-0 group-hover:opacity-50 rounded-2xl transition-opacity duration-300"></div>
<a href="https://sociends.com/" target="_blank" class="block overflow-hidden rounded-t-2xl">
<div class="relative h-60 overflow-hidden">
<img src="assets/sociends.png" alt="Sociends"
class="w-full h-full object-cover transform transition-transform duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/60 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<div class="flex gap-2">
<span class="px-3 py-1 text-xs font-medium bg-cyan-600/80 text-white rounded-full">React</span>
<span class="px-3 py-1 text-xs font-medium bg-blue-600/80 text-white rounded-full">Node.js</span>
</div>
</div>
</div>
</a>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">Sociends</h3>
<p class="text-gray-600 dark:text-gray-300 line-clamp-2">Social networking platform with real-time interactions, built with React and Node.js for smooth performance.</p>
<div class="mt-4 flex items-center justify-between">
<a href="https://sociends.com/" target="_blank"
class="inline-flex items-center text-cyan-600 dark:text-cyan-400 hover:text-cyan-800 dark:hover:text-cyan-300 transition-colors">
Explore
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
<span class="text-sm text-gray-500 dark:text-gray-400">2024</span>
</div>
</div>
</div>
<!-- YouthIT -->
<div class="group relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="absolute inset-0 bg-gradient-to-br from-green-100 to-teal-100 dark:from-gray-700 dark:to-gray-900 opacity-0 group-hover:opacity-50 rounded-2xl transition-opacity duration-300"></div>
<a href="https://youthit.net/" target="_blank" class="block overflow-hidden rounded-t-2xl">
<div class="relative h-60 overflow-hidden">
<img src="assets/youthit.png" alt="YouthIT"
class="w-full h-full object-cover transform transition-transform duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/60 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<div class="flex gap-2">
<span class="px-3 py-1 text-xs font-medium bg-green-600/80 text-white rounded-full">WordPress</span>
<span class="px-3 py-1 text-xs font-medium bg-teal-600/80 text-white rounded-full">Elementor</span>
</div>
</div>
</div>
</a>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">YouthIT</h3>
<p class="text-gray-600 dark:text-gray-300 line-clamp-2">Youth-oriented IT services website built with WordPress and Elementor for easy content management and engagement.</p>
<div class="mt-4 flex items-center justify-between">
<a href="https://youthit.net/" target="_blank"
class="inline-flex items-center text-green-600 dark:text-green-400 hover:text-green-800 dark:hover:text-green-300 transition-colors">
Explore
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
<span class="text-sm text-gray-500 dark:text-gray-400">2024</span>
</div>
</div>
</div>
<!-- Hyippro -->
<div class="group relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="absolute inset-0 bg-gradient-to-br from-yellow-100 to-red-100 dark:from-gray-700 dark:to-gray-900 opacity-0 group-hover:opacity-50 rounded-2xl transition-opacity duration-300"></div>
<a href="invest.html" target="_blank" class="block overflow-hidden rounded-t-2xl">
<div class="relative h-60 overflow-hidden">
<img src="assets/hyippro.png" alt="Hyippro Platform"
class="w-full h-full object-cover transform transition-transform duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/60 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<div class="flex gap-2">
<span class="px-3 py-1 text-xs font-medium bg-yellow-600/80 text-white rounded-full">Django</span>
<span class="px-3 py-1 text-xs font-medium bg-red-600/80 text-white rounded-full">PostgreSQL</span>
</div>
</div>
</div>
</a>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">Hyippro Investments</h3>
<p class="text-gray-600 dark:text-gray-300 line-clamp-2">High-yield investment platform with real-time portfolio tracking and secure transactions</p>
<div class="mt-4 flex items-center justify-between">
<a href="invest.html" target="_blank"
class="inline-flex items-center text-yellow-600 dark:text-yellow-400 hover:text-yellow-800 dark:hover:text-yellow-300 transition-colors">
Explore
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
<span class="text-sm text-gray-500 dark:text-gray-400">2023</span>
</div>
</div>
</div>
<!-- AllBDJobs -->
<div class="group relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="absolute inset-0 bg-gradient-to-br from-teal-100 to-violet-100 dark:from-gray-700 dark:to-gray-900 opacity-0 group-hover:opacity-50 rounded-2xl transition-opacity duration-300"></div>
<a href="DataStructure_Presention.html" target="_blank" class="block overflow-hidden rounded-t-2xl">
<div class="relative h-60 overflow-hidden">
<img src="assets/allbdjob.png" alt="AllBDJobs Platform"
class="w-full h-full object-cover transform transition-transform duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/60 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<div class="flex gap-2">
<span class="px-3 py-1 text-xs font-medium bg-teal-600/80 text-white rounded-full">Next.js</span>
<span class="px-3 py-1 text-xs font-medium bg-violet-600/80 text-white rounded-full">MongoDB</span>
</div>
</div>
</div>
</a>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">AllBDJobs Portal</h3>
<p class="text-gray-600 dark:text-gray-300 line-clamp-2">Comprehensive job marketplace with AI-powered matching and employer analytics</p>
<div class="mt-4 flex items-center justify-between">
<a href="DataStructure_Presention.html" target="_blank"
class="inline-flex items-center text-teal-600 dark:text-teal-400 hover:text-teal-800 dark:hover:text-teal-300 transition-colors">
Visit Site
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
<span class="text-sm text-gray-500 dark:text-gray-400">2023</span>
</div>
</div>
</div>
<!-- Lovers Pleasures -->
<div class="group relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="absolute inset-0 bg-gradient-to-br from-pink-100 to-purple-100 dark:from-gray-700 dark:to-gray-900 opacity-0 group-hover:opacity-50 rounded-2xl transition-opacity duration-300"></div>
<a href="https://loverspleasures.com" target="_blank" class="block overflow-hidden rounded-t-2xl">
<div class="relative h-60 overflow-hidden">
<img src="assets/loverpleasure.png" alt="Lovers Pleasures"
class="w-full h-full object-cover transform transition-transform duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/60 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<div class="flex gap-2">
<span class="px-3 py-1 text-xs font-medium bg-pink-600/80 text-white rounded-full">WordPress</span>
<span class="px-3 py-1 text-xs font-medium bg-purple-600/80 text-white rounded-full">Coupon Deals</span>
</div>
</div>
</div>
</a>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">Lovers Pleasures</h3>
<p class="text-gray-600 dark:text-gray-300 line-clamp-2">Adult toy coupon and deal aggregation platform featuring curated discounts and special offers</p>
<div class="mt-4 flex items-center justify-between">
<a href="https://loverspleasures.com" target="_blank"
class="inline-flex items-center text-pink-600 dark:text-pink-400 hover:text-pink-800 dark:hover:text-pink-300 transition-colors">
Visit Site
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
<span class="text-sm text-gray-500 dark:text-gray-400">2024</span>
</div>
</div>
</div>
<!-- InovaPub FR -->
<div class="group relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="absolute inset-0 bg-gradient-to-br from-blue-100 to-cyan-100 dark:from-gray-700 dark:to-gray-900 opacity-0 group-hover:opacity-50 rounded-2xl transition-opacity duration-300"></div>
<a href="https://inovapub.fr" target="_blank" class="block overflow-hidden rounded-t-2xl">
<div class="relative h-60 overflow-hidden">
<img src="assets/inovapun.png" alt="InovaPub FR"
class="w-full h-full object-cover transform transition-transform duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/60 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<div class="flex gap-2">
<span class="px-3 py-1 text-xs font-medium bg-blue-600/80 text-white rounded-full">WordPress</span>
<span class="px-3 py-1 text-xs font-medium bg-cyan-600/80 text-white rounded-full">Elementor</span>
</div>
</div>
</div>
</a>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">InovaPub FR</h3>
<p class="text-gray-600 dark:text-gray-300 line-clamp-2">Business publication platform featuring industry insights and professional resources</p>
<div class="mt-4 flex items-center justify-between">
<a href="https://inovapub.fr" target="_blank"
class="inline-flex items-center text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300 transition-colors">
View Project
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
<span class="text-sm text-gray-500 dark:text-gray-400">2025</span>
</div>
</div>