-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsms-confirmation-for-woocommerce.html
More file actions
1100 lines (1028 loc) · 71.4 KB
/
sms-confirmation-for-woocommerce.html
File metadata and controls
1100 lines (1028 loc) · 71.4 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="bn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SMS Confirmation for WooCommerce - SMS.net.bd এর অফিসিয়াল প্লাগিন</title>
<meta name="description" content="ওয়ুকমার্সের জন্য SMS.net.bd এর অফিসিয়াল এসএমএস নোটিফিকেশন প্লাগিন। অর্ডার কনফার্মেশন, ডেলিভারি আপডেট এবং কাস্টমার নোটিফিকেশন পাঠান স্বয়ংক্রিয়ভাবে।">
<meta name="keywords" content="woocommerce sms plugin, bangladesh sms service, sms.net.bd, order confirmation sms, ecommerce notification">
<link rel="canonical" href="https://sms.net.bd/woocommerce-plugin">
<!-- Open Graph Tags -->
<meta property="og:title" content="SMS Confirmation for WooCommerce - SMS.net.bd এর অফিসিয়াল প্লাগিন">
<meta property="og:description" content="ওয়ুকমার্সের জন্য SMS.net.bd এর অফিসিয়াল এসএমএস নোটিফিকেশন প্লাগিন">
<meta property="og:image" content="https://sms.net.bd/images/plugin-og-image.jpg">
<meta property="og:url" content="https://sms.net.bd/woocommerce-plugin">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="SMS Confirmation for WooCommerce - SMS.net.bd এর অফিসিয়াল প্লাগিন">
<meta name="twitter:description" content="ওয়ুকমার্সের জন্য SMS.net.bd এর অফিসিয়াল এসএমএস নোটিফিকেশন প্লাগিন">
<meta name="twitter:image" content="https://sms.net.bd/images/plugin-twitter-image.jpg">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.sticky-header {
position: sticky;
top: 0;
z-index: 1000;
transition: all 0.3s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.8s ease-out; }
.whatsapp-chat {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 999;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
.feature-card {
@apply p-8 bg-white rounded-2xl border border-gray-200 hover:border-blue-100 transition-all;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.gradient-text {
background: linear-gradient(45deg, #2563eb, #3b82f6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>
</head>
<body class="bg-gray-50">
<!-- WhatsApp Chat -->
<a href="https://wa.me/+8801981-308611" target="_blank" class="whatsapp-chat bg-green-500 text-white w-16 h-16 rounded-full flex items-center justify-center shadow-xl">
<i class="fab fa-whatsapp text-2xl"></i>
</a>
<!-- Sticky Header -->
<header class="sticky-header bg-white shadow-sm">
<nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<!-- Logo and Brand Name -->
<div class="flex items-center">
<img src="logo.png" alt="SMS Logo" class="h-12 w-auto" loading="lazy">
<span class="ml-3 text-xl font-bold text-gray-800">SMS Confirmation for WooCommerce</span>
</div>
<!-- Desktop Navigation -->
<div class="hidden md:flex items-center space-x-8">
<a href="#features" class="text-gray-700 hover:text-blue-600">ফিচার্স</a>
<a href="#installation" class="block text-gray-700 hover:text-blue-600 py-2">ইনস্টল</a>
<a href="#pricing" class="text-gray-700 hover:text-blue-600">মূল্য</a>
<a href="#blog" class="text-gray-700 hover:text-blue-600">ব্লগ</a>
<a href="https://wordpress.org/plugins/sms-confirmation-for-woocommerce/" class="bg-blue-600 text-white px-6 py-2 rounded-lg hover:bg-blue-700">ডাউনলোড করুন</a>
</div>
<!-- Mobile Menu Toggle Button -->
<div class="md:hidden">
<button id="mobile-menu-button" class="text-gray-700 hover:text-blue-600 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</nav>
<!-- Mobile Menu (Hidden by Default) -->
<div id="mobile-menu" class="md:hidden hidden bg-white shadow-lg">
<div class="container mx-auto px-6 py-4">
<a href="#features" class="block text-gray-700 hover:text-blue-600 py-2">ফিচার্স</a>
<a href="#installation" class="block text-gray-700 hover:text-blue-600 py-2">ইনস্টল</a>
<a href="#pricing" class="block text-gray-700 hover:text-blue-600 py-2">মূল্য</a>
<a href="#blog" class="block text-gray-700 hover:text-blue-600 py-2">ব্লগ</a>
<a href="https://wordpress.org/plugins/sms-confirmation-for-woocommerce/" class="block bg-blue-600 text-white px-6 py-2 rounded-lg text-center hover:bg-blue-700">ডাউনলোড করুন</a>
</div>
</div>
</header>
<!-- JavaScript for Mobile Menu Toggle -->
<script>
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const mobileMenu = document.getElementById('mobile-menu');
mobileMenu.classList.toggle('hidden');
});
</script>
<section class="pt-32 pb-20 bg-gradient-to-br from-blue-900 to-blue-600 relative overflow-hidden">
<!-- Background Animation -->
<div class="absolute inset-0 z-0">
<div class="absolute top-0 left-0 w-1/2 h-full bg-gradient-to-r from-blue-800/20 to-transparent animate-gradient-x"></div>
<div class="absolute bottom-0 right-0 w-1/2 h-full bg-gradient-to-l from-blue-800/20 to-transparent animate-gradient-x-reverse"></div>
<div class="absolute inset-0 bg-[url('assets/hero-pattern.svg')] bg-cover opacity-10 animate-pattern-move"></div>
</div>
<div class="container mx-auto px-6 relative z-10">
<div class="flex flex-col lg:flex-row items-center gap-12">
<!-- Left Content -->
<div class="lg:w-1/2 text-white">
<div class="mb-8 flex items-center gap-2">
<span class="px-4 py-1 bg-white/20 rounded-full animate-pulse">🔥 সর্বশেষ ভার্সন ১.০.০</span>
<span class="px-4 py-1 bg-green-500 rounded-full animate-bounce">⭐ ৫ এর মধ্যে ৪.৯</span>
</div>
<h1 class="text-4xl md:text-5xl font-bold mb-6 leading-tight">
<span class="gradient-text animate-gradient-text">WooCommerce Order </span> জন্য এসএমএস নোটিফিকেশন সমাধান
</h1>
<p class="text-xl opacity-90 mb-8">WooCommerce এর সাথে ইন্টিগ্রেট করে অর্ডার কনফার্মেশনের সময় এসএমএস নোটিফিকেশন পাঠানোর সুবিধা প্রদান করে।</p>
<div class="flex flex-wrap gap-4">
<a href="https://wordpress.org/plugins/sms-confirmation-for-woocommerce" class="bg-white text-blue-600 px-8 py-4 rounded-lg font-semibold hover:bg-gray-50 transition-all transform hover:-translate-y-1 hover:shadow-lg">
📘 বিনামূল্যে ডাউনলোড করুন
</a>
<a href="https://demo.sms.net.bd/woocommerce" class="border-2 border-white text-white px-8 py-4 rounded-lg hover:bg-white/10 transition-all transform hover:-translate-y-1 hover:shadow-lg">
🎥 লাইভ ডেমো দেখুন
</a>
</div>
</div>
<!-- Right Content -->
<div class="lg:w-1/2 mt-12 lg:mt-0 relative">
<!-- Floating Badge -->
<div class="absolute -top-10 -right-8 bg-white p-4 rounded-2xl shadow-lg animate-float">
<div class="flex items-center gap-2">
<div class="animate-ping w-3 h-3 bg-green-500 rounded-full"></div>
<span class="text-sm font-semibold">রিয়েল-টাইম আপডেট</span>
</div>
</div>
<!-- Image with Floating Animation -->
<div class="relative">
<img src="assets/all-devices-white.png" alt="প্লাগিন ড্যাশবোর্ড" class="rounded-2xl shadow-2xl border-4 border-none transform hover:scale-105 transition-transform animate-float" loading="lazy">
<div class="absolute -bottom-8 -left-8 bg-white p-4 rounded-2xl shadow-lg animate-float-reverse">
<div class="flex items-center gap-2">
<i class="fas fa-rocket text-blue-600 text-xl"></i>
<span class="text-sm font-semibold">১০০% নির্ভরযোগ্য</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Custom Animations -->
<style>
@keyframes gradient-x {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
@keyframes gradient-x-reverse {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
@keyframes pattern-move {
0% { background-position: 0 0; }
100% { background-position: 100% 100%; }
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
@keyframes float-reverse {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(10px); }
}
@keyframes gradient-text {
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
.animate-gradient-x { animation: gradient-x 10s linear infinite; }
.animate-gradient-x-reverse { animation: gradient-x-reverse 10s linear infinite; }
.animate-pattern-move { animation: pattern-move 20s linear infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-float-reverse { animation: float-reverse 3s ease-in-out infinite; }
.animate-gradient-text {
background: linear-gradient(45deg, #6EE7B7, #3B82F6, #9333EA);
background-size: 200% 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: gradient-text 5s ease infinite;
}
</style>
<section id="features" class="py-20 bg-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-16">মূল বৈশিষ্ট্যাবলী</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature Card 1 -->
<div class="feature-card transform transition-all duration-300 hover:-translate-y-2 hover:shadow-xl">
<div class="p-8 bg-gradient-to-br from-blue-50 to-white rounded-2xl border border-blue-100">
<div class="flex items-center gap-4 mb-6">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center">
<i class="fas fa-sync-alt text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-blue-800">রিয়েল-টাইম নোটিফিকেশন</h3>
</div>
<p class="text-gray-600">অর্ডার স্ট্যাটাস পরিবর্তনের ২ সেকেন্ডের মধ্যে এসএমএস ডেলিভারি</p>
<div class="mt-6 flex items-center gap-2 text-blue-600">
<i class="fas fa-arrow-right"></i>
<span class="text-sm font-semibold">আরও জানুন</span>
</div>
</div>
</div>
<!-- Feature Card 2 -->
<div class="feature-card transform transition-all duration-300 hover:-translate-y-2 hover:shadow-xl">
<div class="p-8 bg-gradient-to-br from-green-50 to-white rounded-2xl border border-green-100">
<div class="flex items-center gap-4 mb-6">
<div class="w-12 h-12 bg-green-100 rounded-lg flex items-center justify-center">
<i class="fas fa-tools text-green-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-green-800">কাস্টমাইজেশান</h3>
</div>
<p class="text-gray-600">এসএমএস টেমপ্লেট, টাইমিং এবং রিসিপিয়েন্ট কাস্টমাইজ করুন</p>
<div class="mt-6 flex items-center gap-2 text-green-600">
<i class="fas fa-arrow-right"></i>
<span class="text-sm font-semibold">আরও জানুন</span>
</div>
</div>
</div>
<!-- Feature Card 3 -->
<div class="feature-card transform transition-all duration-300 hover:-translate-y-2 hover:shadow-xl">
<div class="p-8 bg-gradient-to-br from-purple-50 to-white rounded-2xl border border-purple-100">
<div class="flex items-center gap-4 mb-6">
<div class="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center">
<i class="fas fa-chart-line text-purple-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-purple-800">বিস্তারিত রিপোর্ট</h3>
</div>
<p class="text-gray-600">প্রতিদিনের এসএমএস লগ এবং ডেলিভারি রিপোর্ট পাওয়া যায় এর সাহায্যে </p>
<div class="mt-6 flex items-center gap-2 text-purple-600">
<i class="fas fa-arrow-right"></i>
<span class="text-sm font-semibold">আরও জানুন</span>
</div>
</div>
</div>
<!-- Feature Card 4 -->
<div class="feature-card transform transition-all duration-300 hover:-translate-y-2 hover:shadow-xl">
<div class="p-8 bg-gradient-to-br from-orange-50 to-white rounded-2xl border border-orange-100">
<div class="flex items-center gap-4 mb-6">
<div class="w-12 h-12 bg-orange-100 rounded-lg flex items-center justify-center">
<i class="fas fa-shield-alt text-orange-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-orange-800">ডাটা সুরক্ষা</h3>
</div>
<p class="text-gray-600">GDPR কম্প্লায়েন্ট ডাটা হ্যান্ডলিং ও SSL এনক্রিপশন</p>
<div class="mt-6 flex items-center gap-2 text-orange-600">
<i class="fas fa-arrow-right"></i>
<span class="text-sm font-semibold">আরও জানুন</span>
</div>
</div>
</div>
<!-- Feature Card 5 -->
<div class="feature-card transform transition-all duration-300 hover:-translate-y-2 hover:shadow-xl">
<div class="p-8 bg-gradient-to-br from-pink-50 to-white rounded-2xl border border-pink-100">
<div class="flex items-center gap-4 mb-6">
<div class="w-12 h-12 bg-pink-100 rounded-lg flex items-center justify-center">
<i class="fas fa-users text-pink-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-pink-800">এডমিন নোটিফিকেশন</h3>
</div>
<p class="text-gray-600">নতুন অর্ডার এলে এডমিনকে এসএমএস নোটিফিকেশন</p>
<div class="mt-6 flex items-center gap-2 text-pink-600">
<i class="fas fa-arrow-right"></i>
<span class="text-sm font-semibold">আরও জানুন</span>
</div>
</div>
</div>
<!-- Feature Card 6 -->
<div class="feature-card transform transition-all duration-300 hover:-translate-y-2 hover:shadow-xl">
<div class="p-8 bg-gradient-to-br from-teal-50 to-white rounded-2xl border border-teal-100">
<div class="flex items-center gap-4 mb-6">
<div class="w-12 h-12 bg-teal-100 rounded-lg flex items-center justify-center">
<i class="fas fa-comments text-teal-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-teal-800">গ্রাহক সাপোর্ট</h3>
</div>
<p class="text-gray-600">২৪/৭ গ্রাহক সাপোর্ট এবং টেকনিক্যাল সহায়তা</p>
<div class="mt-6 flex items-center gap-2 text-teal-600">
<i class="fas fa-arrow-right"></i>
<span class="text-sm font-semibold">আরও জানুন</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="pricing" class="py-24 bg-gray-50 relative overflow-hidden">
<!-- Animated background elements -->
<div class="absolute inset-0 opacity-10">
<div class="absolute left-20 top-40 w-64 h-64 bg-blue-200 rounded-full mix-blend-multiply filter blur-xl opacity-30 animate-float"></div>
<div class="absolute right-32 top-20 w-48 h-48 bg-green-200 rounded-full mix-blend-multiply filter blur-xl opacity-30 animate-float delay-500"></div>
<div class="absolute left-1/2 bottom-0 w-72 h-72 bg-purple-200 rounded-full mix-blend-multiply filter blur-xl opacity-30 animate-float delay-1000"></div>
</div>
<div class="container mx-auto px-4 md:px-6 relative">
<div class="max-w-2xl mx-auto text-center mb-20">
<h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">মূল্য পরিকল্পনা</h2>
<p class="text-lg text-gray-600">সহজ ও স্বচ্ছ মূল্য কাঠামো</p>
</div>
<div class="grid md:grid-cols-3 gap-6 lg:gap-8 items-stretch">
<!-- Standard Plan -->
<div class="group relative bg-white p-8 rounded-2xl border border-gray-100 hover:border-blue-100 shadow-lg hover:shadow-xl transition-all duration-300 hover:-translate-y-2">
<div class="absolute inset-x-0 top-0 h-1 bg-gradient-to-r from-blue-400 to-blue-200 opacity-0 group-hover:opacity-100 transition-opacity"></div>
<div class="space-y-6">
<div class="flex items-center gap-4 mb-6">
<div class="w-14 h-14 bg-blue-50 rounded-xl flex items-center justify-center shadow-sm">
<svg class="w-7 h-7 text-blue-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
</svg>
</div>
<h3 class="text-2xl font-extrabold text-gray-900">স্ট্যান্ডার্ড</h3>
</div>
<div class="bg-gradient-to-br from-blue-50 to-blue-100 p-5 rounded-xl border border-blue-100">
<div class="flex items-end justify-center gap-1">
<span class="text-4xl font-black text-blue-700">৳০.৩০</span>
<span class="text-gray-600 mb-1 font-medium">/এসএমএস</span>
</div>
</div>
<ul class="space-y-4 my-8">
<li class="flex items-center gap-3 text-gray-700">
<div class="w-2.5 h-2.5 bg-blue-500 rounded-full animate-pulse"></div>
<span class="font-medium">প্রতিদিন ৫০০+ এসএমএস</span>
</li>
<li class="flex items-center gap-3 text-gray-700">
<div class="w-2.5 h-2.5 bg-blue-500 rounded-full animate-pulse"></div>
<span class="font-medium">২৪/৭ সাপোর্ট</span>
</li>
<li class="flex items-center gap-3 text-gray-700">
<div class="w-2.5 h-2.5 bg-blue-500 rounded-full animate-pulse"></div>
<span class="font-medium">বিস্তারিত রিপোর্ট</span>
</li>
</ul>
<a href="#" class="block w-full py-3.5 px-6 text-center font-semibold text-blue-600 bg-white border-2 border-blue-600 hover:bg-blue-600 hover:text-white hover:shadow-lg rounded-xl transition-all duration-300 transform hover:scale-[1.02]">
বিনামূল্যে শুরু করুন
</a>
</div>
</div>
<!-- Premium Plan (Featured) -->
<div class="group relative bg-gradient-to-b from-green-50 to-white p-8 rounded-2xl border-2 border-green-200 shadow-2xl hover:shadow-3xl transition-all duration-300 hover:-translate-y-3">
<div class="absolute -top-4 right-6 bg-green-500 text-white px-5 py-1.5 rounded-full shadow-lg text-sm font-semibold animate-bounce">
<div class="absolute -right-1.5 top-3 w-3 h-3 bg-green-500 rotate-45"></div>
সেরা অফার
</div>
<div class="space-y-6">
<div class="flex items-center gap-4 mb-6">
<div class="w-14 h-14 bg-green-50 rounded-xl flex items-center justify-center shadow-sm">
<svg class="w-7 h-7 text-green-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
</svg>
</div>
<h3 class="text-2xl font-extrabold text-gray-900">প্রিমিয়াম</h3>
</div>
<div class="bg-gradient-to-br from-green-50 to-green-100 p-5 rounded-xl border border-green-100">
<div class="flex items-end justify-center gap-1">
<span class="text-4xl font-black text-green-700">৳০.২৫</span>
<span class="text-gray-600 mb-1 font-medium">/এসএমএস</span>
</div>
</div>
<ul class="space-y-4 my-8">
<li class="flex items-center gap-3 text-gray-700">
<div class="w-2.5 h-2.5 bg-green-500 rounded-full animate-pulse"></div>
<span class="font-medium">প্রতিদিন ১০০০+ এসএমএস</span>
</li>
<li class="flex items-center gap-3 text-gray-700">
<div class="w-2.5 h-2.5 bg-green-500 rounded-full animate-pulse"></div>
<span class="font-medium">প্রায়োরিটি সাপোর্ট</span>
</li>
<li class="flex items-center gap-3 text-gray-700">
<div class="w-2.5 h-2.5 bg-green-500 rounded-full animate-pulse"></div>
<span class="font-medium">উন্নত রিপোর্টিং</span>
</li>
</ul>
<a href="#" class="block w-full py-3.5 px-6 text-center font-semibold text-white bg-gradient-to-br from-green-600 to-green-500 hover:from-green-700 hover:to-green-600 hover:shadow-lg rounded-xl transition-all duration-300 transform hover:scale-[1.02] shadow-md">
এখনই আপগ্রেড করুন
</a>
</div>
</div>
<!-- Enterprise Plan -->
<div class="group relative bg-white p-8 rounded-2xl border border-gray-100 hover:border-purple-100 shadow-lg hover:shadow-xl transition-all duration-300 hover:-translate-y-2">
<div class="absolute inset-x-0 top-0 h-1 bg-gradient-to-r from-purple-400 to-purple-200 opacity-0 group-hover:opacity-100 transition-opacity"></div>
<div class="space-y-6">
<div class="flex items-center gap-4 mb-6">
<div class="w-14 h-14 bg-purple-50 rounded-xl flex items-center justify-center shadow-sm">
<svg class="w-7 h-7 text-purple-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
</svg>
</div>
<h3 class="text-2xl font-extrabold text-gray-900">এন্টারপ্রাইজ</h3>
</div>
<div class="bg-gradient-to-br from-purple-50 to-purple-100 p-5 rounded-xl border border-purple-100">
<div class="flex items-end justify-center gap-1">
<span class="text-4xl font-black text-purple-700">৳০.২০</span>
<span class="text-gray-600 mb-1 font-medium">/এসএমএস</span>
</div>
</div>
<ul class="space-y-4 my-8">
<li class="flex items-center gap-3 text-gray-700">
<div class="w-2.5 h-2.5 bg-purple-500 rounded-full animate-pulse"></div>
<span class="font-medium">প্রতিদিন ৫০০০+ এসএমএস</span>
</li>
<li class="flex items-center gap-3 text-gray-700">
<div class="w-2.5 h-2.5 bg-purple-500 rounded-full animate-pulse"></div>
<span class="font-medium">ডেডিকেটেড সাপোর্ট</span>
</li>
<li class="flex items-center gap-3 text-gray-700">
<div class="w-2.5 h-2.5 bg-purple-500 rounded-full animate-pulse"></div>
<span class="font-medium">কাস্টমাইজড সমাধান</span>
</li>
</ul>
<a href="#" class="block w-full py-3.5 px-6 text-center font-semibold text-purple-600 bg-white border-2 border-purple-600 hover:bg-purple-600 hover:text-white hover:shadow-lg rounded-xl transition-all duration-300 transform hover:scale-[1.02]">
বিশেষ পরামর্শ নিন
</a>
</div>
</div>
</div>
<div class="mt-16 text-center">
<div class="inline-flex items-center gap-3 bg-white px-8 py-4 rounded-full shadow-lg border border-gray-100">
<svg class="w-6 h-6 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"></path>
</svg>
<p class="text-gray-700 font-medium">কাস্টম প্যাকেজের জন্য কল করুন:
<a href="tel:+8801234567890" class="text-blue-600 hover:text-blue-700 font-semibold underline">+৮৮০ ১২৩৪ ৫৬৭৮৯০</a>
</p>
</div>
</div>
</div>
</section>
<style>
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.animate-float {
animation: float 8s ease-in-out infinite;
}
.delay-500 {
animation-delay: 500ms;
}
.delay-1000 {
animation-delay: 1000ms;
}
</style>
<!-- Blog Section -->
<section id="blog" class="py-20 bg-white">
<div class="container mx-auto px-4 md:px-6">
<div class="max-w-4xl mx-auto text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">সাম্প্রতিক ব্লগ পোস্ট</h2>
<p class="text-lg text-gray-600">জানুন আমাদের সর্বশেষ আপডেট ও বিশেষ গাইডলাইন</p>
</div>
<div class="grid md:grid-cols-3 gap-8 lg:gap-8">
<!-- Blue Card -->
<article class="group relative bg-white rounded-2xl border border-gray-100 hover:border-blue-200 shadow-lg hover:shadow-2xl transition-all duration-300 hover:-translate-y-2">
<div class="overflow-hidden rounded-t-2xl relative">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSUQcM3EhbEyjuKDXKOl4QHF4Sx47CMs5d3bQL5U1snua1xBEp76pDwf5AnHhW-yA_UmtM&usqp=CAU"
alt="ওয়ুকমার্সে এসএমএস নোটিফিকেশন"
class="w-full h-48 object-cover transform group-hover:scale-105 transition-transform duration-300"
loading="lazy">
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-gray-900/40 to-transparent h-32"></div>
<div class="absolute top-4 right-4 bg-white/90 backdrop-blur-sm px-3 py-1.5 rounded-full flex items-center text-sm text-gray-700 shadow-sm">
<svg class="w-4 h-4 mr-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
৫ মিনিটের পড়া
</div>
</div>
<div class="p-6">
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-blue-100/80 text-blue-800 text-xs font-medium rounded-full hover:bg-blue-200 transition-colors">গাইডলাইন</span>
<span class="px-3 py-1 bg-gray-100 text-gray-600 text-xs font-medium rounded-full hover:bg-gray-200 transition-colors">ওয়ুকমার্স</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3 hover:text-blue-600 transition-colors">ওয়ুকমার্সে এসএমএস নোটিফিকেশন সেটআপ গাইড</h3>
<p class="text-gray-600 mb-4 line-clamp-2">স্টেপ বাই স্টেপ গাইডলাইন সহ শিখুন কিভাবে ওয়ুকমার্স স্টোরে এসএমএস নোটিফিকেশন সেটআপ করবেন</p>
<div class="flex items-center justify-between border-t pt-4">
<a href="https://blog.sms.net.bd/woocommerce-sms-guide" class="text-blue-600 hover:text-blue-700 font-medium flex items-center group">
বিস্তারিত জানুন
<svg class="w-4 h-4 ml-2 transform group-hover: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="M9 5l7 7-7 7"></path>
</svg>
</a>
<time class="text-gray-500 text-sm">১০ জুন, ২০২৪</time>
</div>
</div>
</article>
<!-- Green Card -->
<article class="group relative bg-white rounded-2xl border border-gray-100 hover:border-green-200 shadow-lg hover:shadow-2xl transition-all duration-300 hover:-translate-y-2">
<div class="overflow-hidden rounded-t-2xl relative">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSg2C9frm8sa6_hICkSeISXKNaOJoX59ItZIg&s"
alt="এসএমএস মার্কেটিং এর সুবিধা"
class="w-full h-48 object-cover transform group-hover:scale-105 transition-transform duration-300"
loading="lazy">
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-gray-900/40 to-transparent h-32"></div>
<div class="absolute top-4 right-4 bg-white/90 backdrop-blur-sm px-3 py-1.5 rounded-full flex items-center text-sm text-gray-700 shadow-sm">
<svg class="w-4 h-4 mr-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
৮ মিনিটের পড়া
</div>
</div>
<div class="p-6">
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-green-100/80 text-green-800 text-xs font-medium rounded-full hover:bg-green-200 transition-colors">মার্কেটিং</span>
<span class="px-3 py-1 bg-gray-100 text-gray-600 text-xs font-medium rounded-full hover:bg-gray-200 transition-colors">বিজনেস</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3 hover:text-green-600 transition-colors">এসএমএস মার্কেটিং এর সুবিধা</h3>
<p class="text-gray-600 mb-4 line-clamp-2">জেনে নিন কিভাবে এসএমএস মার্কেটিং আপনার ব্যবসার বিক্রি বাড়াতে সাহায্য করে</p>
<div class="flex items-center justify-between border-t pt-4">
<a href="https://blog.sms.net.bd/sms-marketing-benefits" class="text-green-600 hover:text-green-700 font-medium flex items-center group">
বিস্তারিত জানুন
<svg class="w-4 h-4 ml-2 transform group-hover: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="M9 5l7 7-7 7"></path>
</svg>
</a>
<time class="text-gray-500 text-sm">১০ জুন, ২০২৪</time>
</div>
</div>
</article>
<!-- Purple Card -->
<article class="group relative bg-white rounded-2xl border border-gray-100 hover:border-purple-200 shadow-lg hover:shadow-2xl transition-all duration-300 hover:-translate-y-2">
<div class="overflow-hidden rounded-t-2xl relative">
<img src="https://cdn.learnwoo.com/wp-content/uploads/2021/08/WooCommerce-SMS-Notifications.png"
alt="গ্রাহক সন্তুষ্টি বাড়ানোর উপায়"
class="w-full h-48 object-cover transform group-hover:scale-105 transition-transform duration-300"
loading="lazy">
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-gray-900/40 to-transparent h-32"></div>
<div class="absolute top-4 right-4 bg-white/90 backdrop-blur-sm px-3 py-1.5 rounded-full flex items-center text-sm text-gray-700 shadow-sm">
<svg class="w-4 h-4 mr-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
৬ মিনিটের পড়া
</div>
</div>
<div class="p-6">
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-purple-100/80 text-purple-800 text-xs font-medium rounded-full hover:bg-purple-200 transition-colors">গ্রাহক সেবা</span>
<span class="px-3 py-1 bg-gray-100 text-gray-600 text-xs font-medium rounded-full hover:bg-gray-200 transition-colors">টিপস</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3 hover:text-purple-600 transition-colors">গ্রাহক সন্তুষ্টি বাড়ানোর উপায়</h3>
<p class="text-gray-600 mb-4 line-clamp-2">এসএমএস নোটিফিকেশন ব্যবহার করে কিভাবে গ্রাহক সন্তুষ্টি বাড়ানো যায়</p>
<div class="flex items-center justify-between border-t pt-4">
<a href="https://blog.sms.net.bd/customer-satisfaction" class="text-purple-600 hover:text-purple-700 font-medium flex items-center group">
বিস্তারিত জানুন
<svg class="w-4 h-4 ml-2 transform group-hover: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="M9 5l7 7-7 7"></path>
</svg>
</a>
<time class="text-gray-500 text-sm">১০ জুন, ২০২৪</time>
</div>
</div>
</article>
</div>
</div>
</section>
<section id="installation" class="py-20 bg-gradient-to-br from-gray-50 to-blue-50">
<div class="container mx-auto px-4 md:px-6">
<h2 class="text-4xl font-bold text-center mb-16 text-gray-800 animate-fade-in">প্লাগিন ইন্সটলেশন গাইড</h2>
<div class="max-w-5xl mx-auto">
<!-- Progress Steps -->
<div class="relative mb-16 animate-fade-in-up">
<div class="flex justify-between">
<div class="step-item flex flex-col items-center w-1/4">
<div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold text-lg shadow-lg ring-4 ring-blue-100 transition-all duration-300">1</div>
<span class="mt-2 text-sm font-medium text-gray-600">ডাউনলোড</span>
</div>
<div class="step-item flex flex-col items-center w-1/4">
<div class="w-12 h-12 bg-green-600 rounded-full flex items-center justify-center text-white font-bold text-lg shadow-lg ring-4 ring-green-100">2</div>
<span class="mt-2 text-sm font-medium text-gray-600">API সেটআপ</span>
</div>
<div class="step-item flex flex-col items-center w-1/4">
<div class="w-12 h-12 bg-purple-600 rounded-full flex items-center justify-center text-white font-bold text-lg shadow-lg ring-4 ring-purple-100">3</div>
<span class="mt-2 text-sm font-medium text-gray-600">কাস্টমাইজ</span>
</div>
<div class="step-item flex flex-col items-center w-1/4">
<div class="w-12 h-12 bg-orange-600 rounded-full flex items-center justify-center text-white font-bold text-lg shadow-lg ring-4 ring-orange-100">4</div>
<span class="mt-2 text-sm font-medium text-gray-600">টেস্ট</span>
</div>
</div>
<div class="absolute top-6 left-0 right-0 h-1 bg-gray-200 -z-10">
<div class="absolute h-full bg-gradient-to-r from-blue-500 via-green-500 to-purple-500 progress-bar" style="width: 75%"></div>
</div>
</div>
<!-- Timeline Cards with Connecting Lines -->
<div class="relative space-y-24">
<!-- Central Timeline Line -->
<div class="absolute left-1/2 w-1 h-full bg-gray-200 -translate-x-1/2 timeline-line"></div>
<!-- Step 1 - Left Aligned -->
<div class="group relative animate-fade-in-up delay-100 md:w-3/4 md:mr-auto">
<div class="absolute md:-left-14 left-0 top-4 w-8 h-8 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold shadow-lg z-10 step-circle">
<div class="inner-circle"></div>
1
</div>
<div class="bg-white rounded-xl shadow-lg p-8 border-l-4 border-blue-600 transform transition-all duration-300 hover:shadow-2xl hover:-translate-y-2">
<div class="absolute right-0 top-8 -mr-[calc(25%+12px)] hidden md:block w-1/4 h-1 bg-blue-600 connector-line"></div>
<div class="flex items-start gap-6">
<div class="w-14 h-14 bg-gradient-to-br from-blue-100 to-blue-50 rounded-xl flex items-center justify-center">
<i class="fas fa-download text-blue-600 text-2xl"></i>
</div>
<div class="flex-1">
<h3 class="text-2xl font-bold text-gray-800 mb-3">প্লাগিন ডাউনলোড করুন</h3>
<p class="text-gray-600 leading-relaxed mb-4">ওয়ার্ডপ্রেস অ্যাডমিন প্যানেলে যান → প্লাগিন → নতুন যোগ করুন → "SMS Confirmation for WooCommerce" সার্চ করুন → ইন্সটল করুন → অ্যাক্টিভেট করুন।</p>
<div class="bg-blue-50 p-4 rounded-lg border border-blue-100">
<p class="text-sm text-blue-800 flex items-center gap-2">
<i class="fas fa-lightbulb text-blue-500"></i>
টিপ: সরাসরি প্লাগিনের ZIP ফাইল ডাউনলোড করে ম্যানুয়ালিও ইন্সটল করতে পারেন।
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Step 2 - Right Aligned -->
<div class="group relative animate-fade-in-up delay-200 md:w-3/4 md:ml-auto">
<div class="absolute md:-right-14 right-0 top-4 w-8 h-8 bg-green-600 rounded-full flex items-center justify-center text-white font-bold shadow-lg z-10 step-circle">
<div class="inner-circle"></div>
2
</div>
<div class="bg-white rounded-xl shadow-lg p-8 border-r-4 border-green-600 transform transition-all duration-300 hover:shadow-2xl hover:-translate-y-2">
<div class="absolute left-0 top-8 -ml-[calc(25%+12px)] hidden md:block w-1/4 h-1 bg-green-600 connector-line"></div>
<div class="flex flex-row-reverse items-start gap-6">
<div class="w-14 h-14 bg-gradient-to-br from-green-100 to-green-50 rounded-xl flex items-center justify-center">
<i class="fas fa-key text-green-600 text-2xl"></i>
</div>
<div class="flex-1">
<h3 class="text-2xl font-bold text-gray-800 mb-3">API কী সেটআপ করুন</h3>
<p class="text-gray-600 leading-relaxed mb-4">SMS.net.bd একাউন্ট থেকে API কী সংগ্রহ করুন → ওয়ার্ডপ্রেস অ্যাডমিন প্যানেলে প্লাগিন সেটিংসে API কী ইনপুট করুন → সংরক্ষণ করুন।</p>
<div class="bg-green-50 p-4 rounded-lg border border-green-100">
<p class="text-sm text-green-800 flex items-center gap-2">
<i class="fas fa-shield-alt text-green-500"></i>
নিরাপত্তা: API কী কখনোই শেয়ার করবেন না এবং নিরাপদ স্থানে সংরক্ষণ করুন।
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Step 3 - Left Aligned -->
<div class="group relative animate-fade-in-up delay-300 md:w-3/4 md:mr-auto">
<div class="absolute md:-left-14 left-0 top-4 w-8 h-8 bg-purple-600 rounded-full flex items-center justify-center text-white font-bold shadow-lg z-10 step-circle">
<div class="inner-circle"></div>
3
</div>
<div class="bg-white rounded-xl shadow-lg p-8 border-l-4 border-purple-600 transform transition-all duration-300 hover:shadow-2xl hover:-translate-y-2">
<div class="absolute right-0 top-8 -mr-[calc(25%+12px)] hidden md:block w-1/4 h-1 bg-purple-600 connector-line"></div>
<div class="flex items-start gap-6">
<div class="w-14 h-14 bg-gradient-to-br from-purple-100 to-purple-50 rounded-xl flex items-center justify-center">
<i class="fas fa-edit text-purple-600 text-2xl"></i>
</div>
<div class="flex-1">
<h3 class="text-2xl font-bold text-gray-800 mb-3">টেমপ্লেট কাস্টমাইজ করুন</h3>
<p class="text-gray-600 leading-relaxed mb-4">প্লাগিন সেটিংসে গিয়ে এসএমএস টেমপ্লেট কাস্টমাইজ করুন → অর্ডার স্ট্যাটাস অনুযায়ী মেসেজ সেট করুন → সংরক্ষণ করুন।</p>
<div class="bg-purple-50 p-4 rounded-lg border border-purple-100">
<p class="text-sm text-purple-800 flex items-center gap-2">
<i class="fas fa-code text-purple-500"></i>
নোট: ডাইনামিক ট্যাগ ব্যবহার করে অর্ডার ডিটেইলস এসএমএসে যোগ করতে পারেন।
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Step 4 - Right Aligned -->
<div class="group relative animate-fade-in-up delay-400 md:w-3/4 md:ml-auto">
<div class="absolute md:-right-14 right-0 top-4 w-8 h-8 bg-orange-600 rounded-full flex items-center justify-center text-white font-bold shadow-lg z-10 step-circle">
<div class="inner-circle"></div>
4
</div>
<div class="bg-white rounded-xl shadow-lg p-8 border-r-4 border-orange-600 transform transition-all duration-300 hover:shadow-2xl hover:-translate-y-2">
<div class="absolute left-0 top-8 -ml-[calc(25%+12px)] hidden md:block w-1/4 h-1 bg-orange-600 connector-line"></div>
<div class="flex flex-row-reverse items-start gap-6">
<div class="w-14 h-14 bg-gradient-to-br from-orange-100 to-orange-50 rounded-xl flex items-center justify-center">
<i class="fas fa-check-circle text-orange-600 text-2xl"></i>
</div>
<div class="flex-1">
<h3 class="text-2xl font-bold text-gray-800 mb-3">টেস্ট করুন এবং ব্যবহার শুরু করুন</h3>
<p class="text-gray-600 leading-relaxed mb-4">একটি টেস্ট অর্ডার তৈরি করুন এবং অর্ডার স্ট্যাটাস "Completed" এ পরিবর্তন করুন → গ্রাহকের মোবাইলে এসএমএস নোটিফিকেশন পাঠানো হয়েছে কিনা তা যাচাই করুন।</p>
<div class="bg-orange-50 p-4 rounded-lg border border-orange-100">
<p class="text-sm text-orange-800 flex items-center gap-2">
<i class="fas fa-bug text-orange-500"></i>
সমস্যা হলে: WooCommerce লগ চেক করুন বা ডিবাগ মোড চালু করুন।
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<style>
/* Animation Styles */
.timeline-line {
background: linear-gradient(to bottom,
#3b82f6 0%,
#16a34a 33%,
#9333ea 66%,
#ea580c 100%);
background-size: 100% 400%;
animation: fillLine 2s ease-out forwards;
}
@keyframes fillLine {
0% { background-position: 0 100%; }
100% { background-position: 0 0; }
}
.step-circle {
transition: transform 0.3s ease;
}
.step-circle .inner-circle {
content: '';
position: absolute;
width: 0;
height: 0;
background: currentColor;
border-radius: 50%;
transition: all 0.5s ease;
}
.group:hover .step-circle {
transform: scale(1.1);
}
.group:hover .step-circle .inner-circle {
width: 120%;
height: 120%;
opacity: 0.2;
}
.connector-line {
opacity: 0;
animation: drawConnector 1s ease-out forwards;
animation-delay: 0.5s;
}
@keyframes drawConnector {
0% {
width: 0;
opacity: 0;
}
100% {
width: 25%;
opacity: 1;
}
}
@media (min-width: 768px) {
.group:nth-child(odd) .connector-line {
right: -25%;
left: auto;
}
.group:nth-child(even) .connector-line {
left: -25%;
right: auto;
}
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Animate elements on scroll
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const step = entry.target;
// Animate connector line
const connector = step.querySelector('.connector-line');
if (connector) {
connector.style.animation = 'drawConnector 1s ease-out forwards';
}
// Animate step circle
const circle = step.querySelector('.step-circle');
if (circle) {
circle.style.transform = 'scale(1.1)';
setTimeout(() => circle.style.transform = 'scale(1)', 500);
}
}
});
}, { threshold: 0.5 });
document.querySelectorAll('.group').forEach(group => observer.observe(group));
});
</script>
<!-- Add these scripts before closing body tag -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://kit.fontawesome.com/abc123def4.js" crossorigin="anonymous"></script>
<!-- Testimonials Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-16">ব্যবহারকারীদের মন্তব্য</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial Card 1 -->
<div class="bg-gradient-to-br from-blue-50 to-white p-6 rounded-2xl border border-blue-100 shadow-sm hover:shadow-lg transition-shadow">
<p class="text-gray-600 mb-4">"এই প্লাগিনটি ব্যবহার করে আমাদের গ্রাহক সন্তুষ্টি অনেক বেড়েছে। অর্ডার আপডেট স্বয়ংক্রিয়ভাবে পাঠানো হয়, যা আমাদের অনেক সময় বাঁচিয়েছে।"</p>
<div class="flex items-center gap-4">
<img src="assets/user-1.jpg" alt="ব্যবহারকারী" class="w-12 h-12 rounded-full border-2 border-blue-200">
<div>
<h4 class="font-bold text-blue-800">আরিফুল ইসলাম</h4>
<p class="text-sm text-gray-500">ঢাকা শপ</p>
</div>
</div>
</div>
<!-- Testimonial Card 2 -->
<div class="bg-gradient-to-br from-green-50 to-white p-6 rounded-2xl border border-green-100 shadow-sm hover:shadow-lg transition-shadow">
<p class="text-gray-600 mb-4">"SMS.net.bd এর প্লাগিনটি খুবই সহজ এবং ব্যবহারবান্ধব। গ্রাহকরা এখন সময়মতো অর্ডার আপডেট পাচ্ছেন।"</p>
<div class="flex items-center gap-4">
<img src="assets/user-2.jpg" alt="ব্যবহারকারী" class="w-12 h-12 rounded-full border-2 border-green-200">
<div>
<h4 class="font-bold text-green-800">সুমাইয়া আক্তার</h4>
<p class="text-sm text-gray-500">চট্টগ্রাম শপ</p>
</div>
</div>
</div>
<!-- Testimonial Card 3 -->
<div class="bg-gradient-to-br from-purple-50 to-white p-6 rounded-2xl border border-purple-100 shadow-sm hover:shadow-lg transition-shadow">
<p class="text-gray-600 mb-4">"এসএমএস নোটিফিকেশন আমাদের ব্যবসার বিক্রি বাড়াতে সাহায্য করেছে। গ্রাহকরা এখন আরও বেশি আস্থা রাখছেন।"</p>
<div class="flex items-center gap-4">
<img src="assets/user-3.jpg" alt="ব্যবহারকারী" class="w-12 h-12 rounded-full border-2 border-purple-200">
<div>
<h4 class="font-bold text-purple-800">রাকিব হাসান</h4>
<p class="text-sm text-gray-500">রাজশাহী শপ</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-20 bg-gradient-to-br from-gray-50 to-blue-50">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold text-center mb-16 text-gray-800">প্রায়শই জিজ্ঞাসিত প্রশ্ন</h2>
<div class="max-w-3xl mx-auto space-y-6">
<!-- FAQ Card 1 -->
<div class="bg-white p-8 rounded-2xl border border-blue-100 shadow-lg hover:shadow-2xl transition-shadow duration-300">
<details class="group">
<summary class="flex justify-between items-center cursor-pointer">
<h3 class="text-xl font-semibold text-blue-800">এসএমএস ডেলিভারি রেট কেমন?</h3>
<i class="fas fa-chevron-down text-blue-600 transform transition-transform group-open:rotate-180"></i>
</summary>
<p class="mt-4 text-gray-600">SMS.net.bd এর ৯৯.৯% ডেলিভারি সাকসেস রেট রয়েছে। বাংলাদেশের সকল অপারেটরে সরাসরি কানেকশান এর মাধ্যমে আমরা সর্বোচ্চ ডেলিভারিবিলিটি নিশ্চিত করি।</p>
</details>
</div>
<!-- FAQ Card 2 -->
<div class="bg-white p-8 rounded-2xl border border-green-100 shadow-lg hover:shadow-2xl transition-shadow duration-300">
<details class="group">
<summary class="flex justify-between items-center cursor-pointer">
<h3 class="text-xl font-semibold text-green-800">কতক্ষণে এসএমএস পৌঁছায়?</h3>
<i class="fas fa-chevron-down text-green-600 transform transition-transform group-open:rotate-180"></i>
</summary>
<p class="mt-4 text-gray-600">আমাদের সিস্টেমে এসএমএস সাধারণত ২-৫ সেকেন্ডের মধ্যে ডেলিভারি হয়ে থাকে। নেটওয়ার্ক কনজেশন এর ক্ষেত্রে সর্বোচ্চ ১ মিনিট সময় লাগতে পারে।</p>
</details>
</div>
<!-- FAQ Card 3 -->
<div class="bg-white p-8 rounded-2xl border border-purple-100 shadow-lg hover:shadow-2xl transition-shadow duration-300">
<details class="group">
<summary class="flex justify-between items-center cursor-pointer">
<h3 class="text-xl font-semibold text-purple-800">এসএমএস খরচ কত?</h3>
<i class="fas fa-chevron-down text-purple-600 transform transition-transform group-open:rotate-180"></i>
</summary>
<p class="mt-4 text-gray-600">আমাদের এসএমএস খরচ প্রতিটি এসএমএসের জন্য ৳০.৩০ থেকে শুরু হয়। বাল্ক এসএমএসের জন্য বিশেষ ডিসকাউন্ট উপলব্ধ।</p>
</details>
</div>
<!-- FAQ Card 4 -->
<div class="bg-white p-8 rounded-2xl border border-blue-100 shadow-lg hover:shadow-2xl transition-shadow duration-300">
<details class="group">
<summary class="flex justify-between items-center cursor-pointer">
<h3 class="text-xl font-semibold text-blue-800">এই প্লাগিন কি যেকোনো এসএমএস প্রোভাইডারের সাথে কাজ করে?</h3>
<i class="fas fa-chevron-down text-blue-600 transform transition-transform group-open:rotate-180"></i>
</summary>
<p class="mt-4 text-gray-600">না, এই প্লাগিনটি বিশেষভাবে SMS.net.bd এর জন্য তৈরি করা হয়েছে।</p>
</details>
</div>
<!-- FAQ Card 5 -->
<div class="bg-white p-8 rounded-2xl border border-green-100 shadow-lg hover:shadow-2xl transition-shadow duration-300">
<details class="group">
<summary class="flex justify-between items-center cursor-pointer">
<h3 class="text-xl font-semibold text-green-800">আমি কি এসএমএস মেসেজ কাস্টমাইজ করতে পারব?</h3>
<i class="fas fa-chevron-down text-green-600 transform transition-transform group-open:rotate-180"></i>
</summary>
<p class="mt-4 text-gray-600">এখনো না, তবে ভবিষ্যত আপডেটে মেসেজ কাস্টমাইজেশনের সুবিধা যোগ করার পরিকল্পনা রয়েছে।</p>
</details>
</div>
<!-- FAQ Card 6 -->
<div class="bg-white p-8 rounded-2xl border border-purple-100 shadow-lg hover:shadow-2xl transition-shadow duration-300">
<details class="group">
<summary class="flex justify-between items-center cursor-pointer">
<h3 class="text-xl font-semibold text-purple-800">এই প্লাগিন কি বাংলাদেশের বাইরে কাজ করবে?</h3>
<i class="fas fa-chevron-down text-purple-600 transform transition-transform group-open:rotate-180"></i>
</summary>
<p class="mt-4 text-gray-600">এটি বাংলাদেশী ফোন নম্বরের জন্য অপ্টিমাইজ করা হয়েছে। অন্যান্য দেশের জন্য কিছু মডিফিকেশন প্রয়োজন হতে পারে।</p>
</details>
</div>
<!-- FAQ Card 7 -->
<div class="bg-white p-8 rounded-2xl border border-orange-100 shadow-lg hover:shadow-2xl transition-shadow duration-300">
<details class="group">
<summary class="flex justify-between items-center cursor-pointer">
<h3 class="text-xl font-semibold text-orange-800">এই প্লাগিন কি লগিং সাপোর্ট করে?</h3>
<i class="fas fa-chevron-down text-orange-600 transform transition-transform group-open:rotate-180"></i>
</summary>
<p class="mt-4 text-gray-600">হ্যাঁ! এই প্লাগিনটি ডিবাগিং এর জন্য WooCommerce এর বিল্ট-ইন লগিং সিস্টেম ব্যবহার করে।</p>
</details>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gradient-to-br from-gray-900 to-gray-800 text-white py-12">
<!-- Sticky Back to Top Button -->
<div class="fixed bottom-8 right-8 z-50">
<a href="#top" class="bg-blue-600 text-white px-6 py-2 rounded-lg hover:bg-blue-700 transition-colors shadow-lg">
<i class="fas fa-arrow-up mr-2"></i>উপরে যান
</a>
</div>
<div class="container mx-auto px-6">
<div class="grid md:grid-cols-4 gap-8">
<!-- Company Info -->
<div>
<div class="flex items-center mb-4">
<img src="logo.png" alt="SMS.net.bd Logo" class="h-12 w-auto">
<span class="ml-3 text-xl font-bold">SMS Confirmation for WooCommerce</span>
</div>
<ul class="space-y-2">
<li>
<a href="https://profiles.wordpress.org/markhubs/" class="text-gray-400 hover:text-white transition-colors">
<i class="fas fa-info-circle mr-2"></i>কোম্পানি সম্পর্কে
</a>
</li>
<li>
<a href="https://profiles.wordpress.org/markhubs/" class="text-gray-400 hover:text-white transition-colors">
<i class="fas fa-briefcase mr-2"></i>ক্যারিয়ার
</a>
</li>
<li>
<a href="https://profiles.wordpress.org/markhubs/" class="text-gray-400 hover:text-white transition-colors">
<i class="fas fa-envelope mr-2"></i>যোগাযোগ