-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
957 lines (955 loc) · 45.5 KB
/
index.php
File metadata and controls
957 lines (955 loc) · 45.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
<?php
// Copyright @ISmartCoder
// Updates Channel: t.me/TheSmartDev
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta name="description" content="Smart Multifunctional Web: Your ultimate toolkit for financial, network, media, text, image, and web tools. Developed by Abir Arafat Chawdhury (@ISmartCoder).">
<meta name="keywords" content="Smart Multifunctional Web, toolkit, financial tools, media downloader, network tools, text tools, image tools, web tools, @ISmartCoder">
<meta name="author" content="Abir Arafat Chawdhury (@ISmartCoder)">
<title>Smart Multifunctional Web - Ultimate Toolkit</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/ScrollTrigger.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vanilla-tilt/1.7.0/vanilla-tilt.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<style>
body {
font-family: 'Inter', sans-serif;
color: #1f2937;
overflow-x: hidden;
overflow-y: auto;
margin: 0;
background: linear-gradient(135deg, #f9fafb, #d1d5db);
}
#three-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.4;
will-change: transform;
}
.section-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 1.5rem;
padding: 2rem;
margin: 1.5rem auto;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
transition: transform 0.4s ease, box-shadow 0.4s ease;
border: 1px solid rgba(0, 0, 0, 0.1);
max-width: 95vw;
}
@media (min-width: 640px) {
.section-card {
padding: 2.5rem;
max-width: 85vw;
}
.section-card:hover {
transform: translateY(-15px);
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}
}
.tool-card {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
backdrop-filter: blur(8px);
border-radius: 1.2rem;
padding: 2rem;
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
max-width: 95vw;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.tool-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(16, 185, 129, 0.3));
opacity: 0;
transition: opacity 0.3s ease;
z-index: 0;
}
.tool-card:hover::before {
opacity: 1;
}
.tool-card:hover {
transform: scale(1.05) rotate(1deg);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.tool-card-content {
position: relative;
z-index: 1;
}
.tool-card.financial { border-left: 5px solid #3b82f6; }
.tool-card.financial .holo-glow { background: linear-gradient(45deg, #3b82f6, #60a5fa); }
.tool-card.network { border-left: 5px solid #10b981; }
.tool-card.network .holo-glow { background: linear-gradient(45deg, #10b981, #34d399); }
.tool-card.media { border-left: 5px solid #8b5cf6; }
.tool-card.media .holo-glow { background: linear-gradient(45deg, #8b5cf6, #a78bfa); }
.tool-card.text { border-left: 5px solid #f59e0b; }
.tool-card.text .holo-glow { background: linear-gradient(45deg, #f59e0b, #fbbf24); }
.tool-card.image { border-left: 5px solid #ec4899; }
.tool-card.image .holo-glow { background: linear-gradient(45deg, #ec4899, #f472b6); }
.tool-card.web { border-left: 5px solid #ef4444; }
.tool-card.web .holo-glow { background: linear-gradient(45deg, #ef4444, #f87171); }
.holo-glow {
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
opacity: 0.2;
pointer-events: none;
transition: opacity 0.3s ease;
}
.tool-card:hover .holo-glow {
opacity: 0.4;
}
@media (min-width: 640px) {
.tool-card {
padding: 2.5rem;
max-width: 80vw;
}
}
.feature-card {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
backdrop-filter: blur(8px);
border-radius: 1.2rem;
padding: 1.5rem;
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-align: center;
position: relative;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(16, 185, 129, 0.3));
opacity: 0;
transition: opacity 0.3s ease;
z-index: 0;
}
.feature-card:hover::before {
opacity: 1;
}
.feature-card:hover {
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.feature-card-content {
position: relative;
z-index: 1;
}
.glow {
font-family: 'Poppins', sans-serif;
text-shadow: 0 0 8px rgba(31, 41, 55, 0.6), 0 0 16px rgba(31, 41, 55, 0.4);
letter-spacing: 0.75px;
}
.stylish-text {
font-family: 'Poppins', sans-serif;
letter-spacing: 0.75px;
color: #1f2937;
}
.btn-glow {
background: linear-gradient(90deg, #1f2937, #4b5563);
color: #ffffff;
transition: all 0.3s ease;
padding: 0.75rem 1.5rem;
border-radius: 0.75rem;
font-size: 0.9rem;
box-shadow: 0 2px 5px rgba(31, 41, 55, 0.3);
position: relative;
overflow: hidden;
}
.btn-glow::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: left 0.3s ease;
}
.btn-glow:hover::before {
left: 100%;
}
.btn-glow:hover {
box-shadow: 0 0 20px rgba(31, 41, 55, 0.6);
transform: scale(1.05);
}
@media (min-width: 640px) {
.btn-glow {
padding: 1rem 2rem;
font-size: 1rem;
}
}
.logo {
border-radius: 50%;
object-fit: cover;
border: 3px solid #1f2937;
box-shadow: 0 0 15px rgba(31, 41, 55, 0.4);
width: 24vw;
height: 24vw;
max-width: 120px;
max-height: 120px;
margin: 0 auto;
position: relative;
animation: logoGlow 3s ease-in-out infinite;
transition: transform 0.4s ease-in-out;
}
.logo:hover {
transform: scale(1.1);
}
@keyframes logoGlow {
0% { box-shadow: 0 0 10px rgba(59, 130, 246, 0.5), 0 0 20px rgba(59, 130, 246, 0.3); }
50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.5); }
100% { box-shadow: 0 0 10px rgba(59, 130, 246, 0.5), 0 0 20px rgba(59, 130, 246, 0.3); }
}
@media (min-width: 640px) {
.logo {
max-width: 160px;
max-height: 160px;
}
}
@media (min-width: 768px) {
.logo {
max-width: 200px;
max-height: 200px;
}
}
.status-indicator {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-weight: bold;
font-size: 0.9rem;
color: #10b981;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.status-indicator:hover {
transform: translateY(-2px);
}
@media (min-width: 640px) {
.status-indicator {
font-size: 1rem;
}
}
.status-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #10b981;
animation: pulse 2.5s infinite;
}
@keyframes pulse {
0% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.2); opacity: 0.8; }
100% { transform: scale(1); opacity: 1; }
}
.section-container {
opacity: 0;
transform: translateY(50px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-container.visible {
opacity: 1;
transform: translateY(0);
}
.masonry-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
padding: 0 1.5rem;
}
.tool-icon {
transition: transform 0.3s ease;
}
.tool-card:hover .tool-icon {
transform: scale(1.2) rotate(5deg);
}
.owner-card {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
backdrop-filter: blur(8px);
border-radius: 1.2rem;
padding: 2rem;
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
border: 1px solid rgba(255, 255, 255, 0.2);
position: relative;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.owner-card:hover {
transform: scale(1.02);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.owner-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(16, 185, 129, 0.3));
opacity: 0;
transition: opacity 0.3s ease;
z-index: 0;
}
.owner-card:hover::before {
opacity: 1;
}
.owner-card-content {
position: relative;
z-index: 1;
}
.footer-link {
color: #1f2937;
transition: color 0.3s ease, transform 0.3s ease;
}
.footer-link:hover {
color: #3b82f6;
transform: translateY(-2px);
}
.social-icon {
transition: transform 0.5s ease, color 0.5s ease, text-shadow 0.5s ease;
position: relative;
}
.social-icon:hover {
transform: scale(1.3) rotate(360deg);
color: #3b82f6;
text-shadow: 0 0 12px rgba(59, 130, 246, 0.9);
animation: pulseGlow 1.5s infinite;
}
@keyframes pulseGlow {
0% { text-shadow: 0 0 12px rgba(59, 130, 246, 0.9); }
50% { text-shadow: 0 0 18px rgba(59, 130, 246, 1); }
100% { text-shadow: 0 0 12px rgba(59, 130, 246, 0.9); }
}
.footer-container {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.35));
backdrop-filter: blur(12px);
border-radius: 1rem;
padding: 3rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.3);
position: relative;
overflow: hidden;
}
.footer-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
opacity: 0.3;
z-index: 0;
}
.footer-content {
position: relative;
z-index: 1;
}
</style>
</head>
<body>
<!-- Three.js Canvas -->
<canvas id="three-canvas"></canvas>
<!-- Hero Section -->
<header class="text-center py-6 sm:py-12">
<img src="https://i.ibb.co/yBNCxwvM/enhanced.png" alt="Smart Multifunctional Web Logo" class="logo">
<div class="flex items-center justify-center mt-4 sm:mt-6">
<h1 class="text-4xl sm:text-5xl md:text-6xl font-bold glow stylish-text mr-4">Smart Multifunctional Web</h1>
<span class="inline-block w-10 h-10">
<svg class="w-full h-full" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10" fill="#28a745" stroke="#ffffff" stroke-width="2"/>
<path d="M9 12.5L11 15L15 9" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</div>
<p class="welcome-message mt-2 sm:mt-3 tracking-wide stylish-text text-lg sm:text-xl leading-relaxed max-w-5xl mx-auto">
The Ultimate Toolkit: Empowering users with tools for financial analysis, media downloading, network diagnostics, and more. Built with passion by @ISmartCoder. It's Still Under Active Development Not Fully Operational & Daily Updated By @TheSmartDev
</p>
<div class="status-indicator mt-4 text-lg sm:text-xl stylish-text flex items-center justify-center">
<span class="status-dot mr-2"></span> Status: <i>Online</i>
</div>
</header>
<!-- Financial Tools Section -->
<section id="financial-tools" class="section-container section-card max-w-5xl mx-auto">
<h2 class="text-3xl sm:text-4xl font-semibold text-center mb-6 sm:mb-8 glow stylish-text">Financial Tools</h2>
<div class="masonry-grid">
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-credit-card text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Credit Card Generator</h3>
<p class="text-base stylish-text mb-4">Generate valid credit card numbers for testing purposes.</p>
<a href="./utils/FinancialUtils/ccxen.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-search-dollar text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Bin Checker</h3>
<p class="text-base stylish-text mb-4">Verify details of a credit card BIN number.</p>
<a href="./utils/FinancialUtils/binchk.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-list-alt text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Multi Bin Checker</h3>
<p class="text-base stylish-text mb-4">Check multiple BINs simultaneously.</p>
<a href="./utils/FinancialUtils/mbinchk.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fab fa-bitcoin text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Binance P2P</h3>
<p class="text-base stylish-text mb-4">Access Binance P2P trading data.</p>
<a href="./utils/FinancialUtils/bnp2p.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-chart-line text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Binance Token Price</h3>
<p class="text-base stylish-text mb-4">Track real-time Binance token prices.</p>
<a href="./utils/FinancialUtils/ptoken.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-arrow-up text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Binance Gainers</h3>
<p class="text-base stylish-text mb-4">View top gaining tokens on Binance.</p>
<a href="./utils/FinancialUtils/gainers.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-arrow-down text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Binance Losers</h3>
<p class="text-base stylish-text mb-4">Monitor underperforming Binance tokens.</p>
<a href="./utils/FinancialUtils/losers.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-exchange-alt text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Binance Token Price Exchanger</h3>
<p class="text-base stylish-text mb-4">Compare token prices across exchanges.</p>
<a href="./utils/FinancialUtils/tknchng.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-university text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Bank Credit Card Extrapolator</h3>
<p class="text-base stylish-text mb-4">Extrapolate credit card details from partial data.</p>
<button onclick="useTool('Bank Credit Card Extrapolator')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-database text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Bank Bin Database</h3>
<p class="text-base stylish-text mb-4">Access a comprehensive Banks BIN database.</p>
<a href="./utils/FinancialUtils/bnbank.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-globe text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Country Bin Database</h3>
<p class="text-base stylish-text mb-4">Search BINs by country.</p>
<a href="./utils/FinancialUtils/bncntry.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-key text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Stripe Keys Checker</h3>
<p class="text-base stylish-text mb-4">Verify Stripe API keys for validity.</p>
<a href="./utils/FinancialUtils/skchk.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card financial" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-info-circle text-4xl mb-4 text-blue-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Stripe Keys Info</h3>
<p class="text-base stylish-text mb-4">Retrieve detailed Stripe key information.</p>
<a href="./utils/FinancialUtils/skchk.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
</div>
</section>
<!-- Network Tools Section -->
<section id="network-tools" class="section-container section-card max-w-5xl mx-auto">
<h2 class="text-3xl sm:text-4xl font-semibold text-center mb-6 sm:mb-8 glow stylish-text">Network Tools</h2>
<div class="masonry-grid">
<div class="tool-card network" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-network-wired text-4xl mb-4 text-green-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Proxy Checker</h3>
<p class="text-base stylish-text mb-4">Test proxy servers for speed and reliability.</p>
<a href="./utils/NetUtils/proxychk.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card network" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-globe-americas text-4xl mb-4 text-green-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">IP Checker</h3>
<p class="text-base stylish-text mb-4">Analyze details of any IP address.</p>
<a href="./utils/NetUtils/ipinfo.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card network" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-globe text-4xl mb-4 text-green-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Domain Checker</h3>
<p class="text-base stylish-text mb-4">Verify domain availability and WHOIS data.</p>
<button onclick="useTool('Domain Checker')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card network" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-server text-4xl mb-4 text-green-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Domain to IP</h3>
<p class="text-base stylish-text mb-4">Resolve domains to their IP addresses.</p>
<button onclick="useTool('Domain to IP')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card network" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-user-secret text-4xl mb-4 text-green-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">User Agent Checker</h3>
<p class="text-base stylish-text mb-4">Identify browser and device user agents.</p>
<button onclick="useTool('User Agent Checker')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card network" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-info-circle text-4xl mb-4 text-green-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">My IP Info Check</h3>
<p class="text-base stylish-text mb-4">Get detailed information about your IP.</p>
<button onclick="useTool('My IP Info Check')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
</div>
</section>
<!-- Media Tools Section -->
<section id="media-tools" class="section-container section-card max-w-5xl mx-auto">
<h2 class="text-3xl sm:text-4xl font-semibold text-center mb-6 sm:mb-8 glow stylish-text">Media Tools</h2>
<div class="masonry-grid">
<div class="tool-card media" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fab fa-youtube text-4xl mb-4 text-purple-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">YouTube Video Downloader</h3>
<p class="text-base stylish-text mb-4">Download YouTube videos in various formats.</p>
<a href="./utils/MediaUtils/ytdl.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card media" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fab fa-facebook text-4xl mb-4 text-purple-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Facebook Video Downloader</h3>
<p class="text-base stylish-text mb-4">Save videos from Facebook effortlessly.</p>
<a href="./utils/MediaUtils/fbdl.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card media" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fab fa-x-twitter text-4xl mb-4 text-purple-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Twitter Video Downloader</h3>
<p class="text-base stylish-text mb-4">Download videos from Twitter.</p>
<a href="./utils/MediaUtils/twitdl.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card media" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-th text-4xl mb-4 text-purple-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Thread Video Downloader</h3>
<p class="text-base stylish-text mb-4">Grab videos from Thread platforms.</p>
<a href="./utils/MediaUtils/thrdl.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card media" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fab fa-tiktok text-4xl mb-4 text-purple-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">TikTok Video Downloader</h3>
<p class="text-base stylish-text mb-4">Download TikTok videos without watermarks.</p>
<a href="./utils/MediaUtils/tikdl.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card media" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fab fa-instagram text-4xl mb-4 text-purple-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Instagram Video Downloader</h3>
<p class="text-base stylish-text mb-4">Save Instagram videos and reels.</p>
<a href="./utils/MediaUtils/insta.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card media" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fab fa-pinterest text-4xl mb-4 text-purple-600 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Pinterest Video Downloader</h3>
<p class="text-base stylish-text mb-4">Download videos from Pinterest with ease.</p>
<a href="./utils/MediaUtils/pntdl.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
</div>
</section>
<!-- Text Tools Section -->
<section id="text-tools" class="section-container section-card max-w-5xl mx-auto">
<h2 class="text-3xl sm:text-4xl font-semibold text-center mb-6 sm:mb-8 glow stylish-text">Text Tools</h2>
<div class="masonry-grid">
<div class="tool-card text" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-spell-check text-4xl mb-4 text-amber-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Grammar Checker</h3>
<p class="text-base stylish-text mb-4">Correct grammar and improve your writing.</p>
<button onclick="useTool('Grammar Checker')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card text" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-check-circle text-4xl mb-4 text-amber-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Spell Checker</h3>
<p class="text-base stylish-text mb-4">Identify and fix spelling mistakes.</p>
<button onclick="useTool('Spell Checker')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card text" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-volume-up text-4xl mb-4 text-amber-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Pronunciation Checker</h3>
<p class="text-base stylish-text mb-4">Verify word pronunciation with audio guides.</p>
<a href="./utils/TextUtil/prne.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card text" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-thesaurus text-4xl mb-4 text-amber-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Synonym Antonym Checker</h3>
<p class="text-base stylish-text mb-4">Find synonyms and antonyms for words.</p>
<a href="./utils/TextUtil/synant.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card text" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-code text-4xl mb-4 text-amber-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Decoders</h3>
<p class="text-base stylish-text mb-4">Decode Base64, URL, and other formats.</p>
<button onclick="useTool('Decoders')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card text" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-language text-4xl mb-4 text-amber-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Google Translator</h3>
<p class="text-base stylish-text mb-4">Translate text across multiple languages.</p>
<a href="./utils/TextUtil/gtr.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
</div>
</section>
<!-- Image Tools Section -->
<section id="image-tools" class="section-container section-card max-w-5xl mx-auto">
<h2 class="text-3xl sm:text-4xl font-semibold text-center mb-6 sm:mb-8 glow stylish-text">Image Tools</h2>
<div class="masonry-grid">
<div class="tool-card image" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-image text-4xl mb-4 text-pink-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Image Enhancer</h3>
<p class="text-base stylish-text mb-4">Enhance image quality with AI-powered tools.</p>
<button onclick="useTool('Image Enhancer')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card image" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-file-alt text-4xl mb-4 text-pink-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Image OCR</h3>
<p class="text-base stylish-text mb-4">Extract text from images with high accuracy.</p>
<button onclick="useTool('Image OCR')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card image" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-search text-4xl mb-4 text-pink-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Image Analysis</h3>
<p class="text-base stylish-text mb-4">Analyze images for objects and metadata.</p>
<button onclick="useTool('Image Analysis')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
</div>
</section>
<!-- Web Tools Section -->
<section id="web-tools" class="section-container section-card max-w-5xl mx-auto">
<h2 class="text-3xl sm:text-4xl font-semibold text-center mb-6 sm:mb-8 glow stylish-text">Web Tools</h2>
<div class="masonry-grid">
<div class="tool-card web" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-ticket-alt text-4xl mb-4 text-red-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Site Coupon Scraper</h3>
<p class="text-base stylish-text mb-4">Extract coupons from websites.</p>
<button onclick="useTool('Site Coupon Scraper')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card web" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-code text-4xl mb-4 text-red-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Website Source Code Downloader</h3>
<p class="text-base stylish-text mb-4">Download a website’s source code.</p>
<button onclick="useTool('Website Source Code Downloader')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card web" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-camera text-4xl mb-4 text-red-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Website SS Capture</h3>
<p class="text-base stylish-text mb-4">Capture high-quality website screenshots.</p>
<button onclick="useTool('Website SS Capture')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card web" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-user-check text-4xl mb-4 text-red-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">User Info Checker</h3>
<p class="text-base stylish-text mb-4">Retrieve user information from platforms.</p>
<a href="./utils/WebUtils/userinfo.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card web" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fab fa-telegram text-4xl mb-4 text-red-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Telegram Bot Users Export</h3>
<p class="text-base stylish-text mb-4">Export user data from Telegram bots.</p>
<button onclick="useTool('Telegram Bot Users Export')" class="btn-glow font-bold">Use Tool</button>
</div>
</div>
<div class="tool-card web" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-map-marker-alt text-4xl mb-4 text-red-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Fake Address Generator</h3>
<p class="text-base stylish-text mb-4">Generate realistic fake addresses.</p>
<a href="./utils/WebUtils/fakeadrs.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
<div class="tool-card web" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow"></div>
<div class="tool-card-content">
<i class="fas fa-envelope text-4xl mb-4 text-red-500 tool-icon"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Temp Mail</h3>
<p class="text-base stylish-text mb-4">Create temporary email addresses.</p>
<a href="./utils/WebUtils/tmail.php" class="btn-glow font-bold">Use Tool</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="section-container section-card max-w-5xl mx-auto">
<h2 class="text-3xl sm:text-4xl font-semibold text-center mb-6 sm:mb-8 glow stylish-text">Why Choose Us?</h2>
<div class="masonry-grid">
<div class="feature-card" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow" style="background: linear-gradient(45deg, #3b82f6, #60a5fa);"></div>
<div class="feature-card-content">
<i class="fas fa-rocket text-4xl mb-4 text-blue-600"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Lightning Fast</h3>
<p class="text-base stylish-text mb-4">Experience blazing-fast performance with optimized tools for instant results.</p>
</div>
</div>
<div class="feature-card" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow" style="background: linear-gradient(45deg, #3b82f6, #60a5fa);"></div>
<div class="feature-card-content">
<i class="fas fa-tools text-4xl mb-4 text-blue-600"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Versatile Toolkit</h3>
<p class="text-base stylish-text mb-4">Access a wide range of tools for financial, media, and web tasks in one place.</p>
</div>
</div>
<div class="feature-card" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow" style="background: linear-gradient(45deg, #3b82f6, #60a5fa);"></div>
<div class="feature-card-content">
<i class="fas fa-shield-alt text-4xl mb-4 text-blue-600"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Secure & Reliable</h3>
<p class="text-base stylish-text mb-4">Built with security in mind, ensuring safe and dependable operations.</p>
</div>
</div>
<div class="feature-card" data-tilt data-tilt-max="15" data-tilt-glare data-tilt-max-glare="0.4">
<div class="holo-glow" style="background: linear-gradient(45deg, #3b82f6, #60a5fa);"></div>
<div class="feature-card-content">
<i class="fas fa-lightbulb text-4xl mb-4 text-blue-600"></i>
<h3 class="text-xl font-bold stylish-text mb-2">Innovative Solutions</h3>
<p class="text-base stylish-text mb-4">Cutting-edge tools designed to redefine the digital landscape with creativity.</p>
</div>
</div>
</div>
</section>
<!-- Owner Section -->
<section id="owner" class="section-container section-card max-w-5xl mx-auto text-center">
<h2 class="text-3xl sm:text-4xl font-semibold mb-6 sm:mb-8 glow stylish-text">Owner Of This Project</h2>
<div class="owner-card">
<div class="holo-glow" style="background: linear-gradient(45deg, #3b82f6, #60a5fa);"></div>
<div class="owner-card-content">
<img src="https://i.ibb.co/M5R2zkx9/enhanced-2.png" alt="Developer Profile Logo" class="logo mb-4">
<p class="text-base sm:text-lg stylish-text mb-4">Abir Arafat Chawdhury, a visionary entrepreneur and tech enthusiast, leads the charge as CEO and founder of Abir X Official Community. Crafting innovative web projects, Abir brings clients' visions to life through freelancing on Upwork and Fiverr. His passion for coding fuels a mission to create smarter, cutting-edge solutions that redefine the digital landscape.</p>
<a href="https://t.me/ISmartCoder" target="_blank" class="inline-flex items-center btn-glow font-bold py-2 px-4 sm:py-3 sm:px-6 rounded-xl mt-4 stylish-text">
<i class="fab fa-telegram mr-2 text-lg sm:text-xl"></i> Contact @ISmartCoder
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gradient-to-r from-gray-100 to-gray-200 py-8 sm:py-12 mt-auto">
<div class="footer-container max-w-5xl mx-auto text-center">
<div class="footer-content">
<h3 class="text-2xl sm:text-3xl font-semibold mb-4 sm:mb-6 glow stylish-text">Connect with Us</h3>
<div class="flex justify-center space-x-4 sm:space-x-8 flex-wrap mb-8">
<a href="https://facebook.com/abirxdhackz" target="_blank" class="social-icon"><i class="fab fa-facebook-f text-2xl sm:text-3xl"></i></a>
<a href="https://instagram.com/abirxdhackz" target="_blank" class="social-icon"><i class="fab fa-instagram text-2xl sm:text-3xl"></i></a>
<a href="https://x.com/abirxdhackz" target="_blank" class="social-icon"><i class="fab fa-x-twitter text-2xl sm:text-3xl"></i></a>
<a href="https://github.com/abirxdhack" target="_blank" class="social-icon"><i class="fab fa-github text-2xl sm:text-3xl"></i></a>
<a href="https://youtube.com/@abirxdhackz" target="_blank" class="social-icon"><i class="fab fa-youtube text-2xl sm:text-3xl"></i></a>
<a href="https://t.me/ISmartCoder" target="_blank" class="social-icon"><i class="fab fa-telegram text-2xl sm:text-3xl"></i></a>
</div>
<p class="text-base sm:text-lg stylish-text mb-6">Empowering the digital world with innovative tools and solutions, crafted with passion by @ISmartCoder.</p>
<div class="flex justify-center space-x-4 sm:space-x-6 mb-8">
<a href="#privacy" class="text-sm stylish-text footer-link">Privacy Policy</a>
<a href="#terms" class="text-sm stylish-text footer-link">Terms of Service</a>
<a href="https://t.me/TheSmartDev" class="text-sm stylish-text footer-link">Updates</a>
</div>
<p class="text-base sm:text-lg font-bold stylish-text">© 2025 Smart Multifunctional Web. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Scripts -->
<script>
// Three.js Particle Background
const canvas = document.getElementById('three-canvas');
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer({ canvas, alpha: true });
renderer.setSize(window.innerWidth, window.innerHeight);
camera.position.z = 5;
const particles = new THREE.Group();
const colors = [0x3b82f6, 0x10b981, 0x8b5cf6];
for (let i = 0; i < 400; i++) {
const geometry = new THREE.SphereGeometry(0.02, 16, 16);
const material = new THREE.MeshBasicMaterial({ color: colors[Math.floor(Math.random() * colors.length)] });
const particle = new THREE.Mesh(geometry, material);
particle.position.set(
(Math.random() - 0.5) * 12,
(Math.random() - 0.5) * 12,
(Math.random() - 0.5) * 12
);
particle.userData.velocity = new THREE.Vector3(
(Math.random() - 0.5) * 0.02,
(Math.random() - 0.5) * 0.02,
(Math.random() - 0.5) * 0.02
);
particles.add(particle);
}
scene.add(particles);
function animate() {
requestAnimationFrame(animate);
particles.children.forEach(particle => {
particle.position.add(particle.userData.velocity);
if (Math.abs(particle.position.x) > 6) particle.userData.velocity.x *= -1;
if (Math.abs(particle.position.y) > 6) particle.userData.velocity.y *= -1;
if (Math.abs(particle.position.z) > 6) particle.userData.velocity.z *= -1;
});
particles.rotation.y += 0.001;
renderer.render(scene, camera);
}
animate();
window.addEventListener('resize', () => {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
// GSAP Scroll Animations
gsap.registerPlugin(ScrollTrigger);
document.querySelectorAll('.section-container').forEach(section => {
gsap.to(section, {
scrollTrigger: {
trigger: section,
start: 'top 80%',
end: 'bottom 20%',
toggleClass: 'visible',
once: false
}
});
});
VanillaTilt.init(document.querySelectorAll('.tool-card, .feature-card, .owner-card'), {
max: 15,
speed: 400,
glare: true,
'max-glare': 0.4
});
function useTool(toolName) {
alert(`${toolName} is coming soon! Check t.me/TheSmartDev for updates.`);
}
</script>
</body>
</html>