-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliveupx-skype-clone.html
1131 lines (984 loc) · 39.4 KB
/
liveupx-skype-clone.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Buy our complete white-label Skype Clone solution to launch your own video/audio calling platform. Feature-rich, customizable, and ready for Android & iOS.">
<title>Buy Skype Clone App | Video Conferencing Solution | Liveupx</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary-color: #4f46e5;
--secondary-color: #7c3aed;
--accent-color: #06b6d4;
--text-color: #1f2937;
--light-text: #6b7280;
--white: #ffffff;
--light-bg: #f9fafb;
--dark-bg: #111827;
--border-radius: 12px;
--box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
color: var(--text-color);
line-height: 1.6;
overflow-x: hidden;
background-color: var(--light-bg);
}
h1, h2, h3, h4 {
font-weight: 700;
line-height: 1.2;
}
p {
margin-bottom: 1rem;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.btn {
display: inline-block;
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius);
font-weight: 600;
text-decoration: none;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-primary {
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
color: var(--white);
border: none;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
}
section {
padding: 5rem 0;
}
/* Header Styles */
header {
position: fixed;
top: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 1rem 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
height: 44px;
}
nav ul {
display: flex;
list-style: none;
gap: 2rem;
}
nav a {
color: var(--text-color);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
nav a:hover {
color: var(--primary-color);
}
/* Hero Section */
.hero {
min-height: 100vh;
background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('assets/product-images/hulu-clone-app-bg1.jpg');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
padding-top: 5rem;
color: var(--white);
}
.hero-content {
max-width: 600px;
margin-left: auto;
padding: 2rem;
background: rgba(0,0,0,0.6);
border-radius: var(--border-radius);
backdrop-filter: blur(10px);
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1.5rem;
background: linear-gradient(90deg, var(--white), var(--accent-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.hero h2 {
font-size: 1.5rem;
font-weight: 500;
color: var(--white);
margin-bottom: 2rem;
}
/* Features Section */
.features {
background-color: var(--white);
}
.section-title {
text-align: center;
margin-bottom: 3rem;
}
.section-title h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--primary-color);
}
.section-title span {
color: var(--secondary-color);
}
.section-title .underline {
display: inline-block;
width: 100px;
height: 4px;
background-image: linear-gradient(90deg, transparent, var(--primary-color), transparent);
margin: 0 auto;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.feature-card {
background: var(--white);
border-radius: var(--border-radius);
padding: 2rem;
box-shadow: var(--box-shadow);
transition: transform 0.3s ease;
height: 100%;
}
.feature-card:hover {
transform: translateY(-10px);
}
.feature-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white);
font-size: 1.5rem;
margin-bottom: 1.5rem;
}
.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
/* App Flow Section */
.app-flow {
background-color: var(--light-bg);
background-image: url('assets/product-images/paper.jpg');
background-blend-mode: overlay;
}
.app-flow-item {
display: flex;
align-items: center;
margin-bottom: 4rem;
}
.app-flow-item:nth-child(even) {
flex-direction: row-reverse;
}
.app-flow-image {
flex: 1;
text-align: center;
}
.app-flow-image img {
max-width: 80%;
border-radius: 10px;
box-shadow: var(--box-shadow);
}
.app-flow-content {
flex: 1;
padding: 2rem;
}
.app-flow-content-inner {
background-color: var(--dark-bg);
color: var(--white);
padding: 2rem;
border-radius: var(--border-radius);
position: relative;
}
.app-flow-item:nth-child(odd) .app-flow-content-inner::before {
content: '';
position: absolute;
left: -20px;
top: 50%;
transform: translateY(-50%);
border-width: 20px;
border-style: solid;
border-color: transparent var(--dark-bg) transparent transparent;
}
.app-flow-item:nth-child(even) .app-flow-content-inner::before {
content: '';
position: absolute;
right: -20px;
top: 50%;
transform: translateY(-50%);
border-width: 20px;
border-style: solid;
border-color: transparent transparent transparent var(--dark-bg);
}
/* Why Choose Us Section */
.why-choose-us {
background-color: var(--white);
}
.why-choose-row {
display: flex;
align-items: center;
gap: 2rem;
margin-bottom: 2rem;
}
.why-choose-image {
flex: 1;
text-align: center;
}
.why-choose-image img {
max-width: 80%;
border-radius: 10px;
box-shadow: var(--box-shadow);
}
.why-choose-content {
flex: 1;
}
.why-choose-list {
list-style: none;
}
.why-choose-list li {
margin-bottom: 0.75rem;
display: flex;
align-items: center;
}
.why-choose-list li i {
color: var(--primary-color);
margin-right: 0.5rem;
}
/* Key Features Section */
.key-features {
background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7)), url('assets/product-images/hulu-clone-app-bg2.jpg');
background-size: cover;
background-position: center;
color: var(--white);
}
.key-features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.key-feature-card {
padding: 2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
transition: 0.3s ease;
}
.key-feature-card:hover {
background-color: rgba(255, 255, 255, 0.1);
transform: scale(1.03);
z-index: 1;
}
.key-feature-card i {
font-size: 2rem;
color: var(--accent-color);
margin-bottom: 1rem;
}
.key-feature-card h3 {
margin-bottom: 1rem;
}
/* FAQ Section */
.faq {
background-color: var(--light-bg);
}
.faq-container {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
margin-bottom: 1rem;
border-radius: var(--border-radius);
background-color: var(--white);
overflow: hidden;
box-shadow: var(--box-shadow);
}
.faq-question {
padding: 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
font-weight: 600;
}
.faq-question i {
color: var(--primary-color);
transition: transform 0.3s ease;
}
.faq-question.active i {
transform: rotate(180deg);
}
.faq-answer {
padding: 0 1.5rem;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.active {
padding: 0 1.5rem 1.5rem;
max-height: 200px;
}
/* CTA Section */
.cta {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white);
text-align: center;
}
.cta h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.cta p {
max-width: 600px;
margin: 0 auto 2rem;
}
.cta .btn {
background-color: var(--white);
color: var(--primary-color);
}
/* Contact Section */
.contact {
background-color: var(--white);
}
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2rem;
}
.contact-form {
background-color: var(--light-bg);
padding: 2rem;
border-radius: var(--border-radius);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-control {
width: 100%;
padding: 0.75rem;
border: 1px solid #ddd;
border-radius: 5px;
font-family: 'Poppins', sans-serif;
}
/* Footer */
footer {
background-color: var(--dark-bg);
color: var(--white);
padding: 4rem 0;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}
.footer-column h3 {
font-size: 1.2rem;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.7rem;
}
.footer-column h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 2px;
background: var(--primary-color);
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 0.8rem;
}
.footer-links a {
color: #a0aec0;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: var(--white);
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
color: var(--white);
font-size: 1.2rem;
transition: all 0.3s ease;
}
.social-links a:hover {
background: var(--primary-color);
transform: translateY(-3px);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
margin-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #a0aec0;
font-size: 0.9rem;
}
/* Responsive */
@media (max-width: 992px) {
.app-flow-item {
flex-direction: column;
}
.app-flow-item:nth-child(even) {
flex-direction: column;
}
.app-flow-item:nth-child(odd) .app-flow-content-inner::before,
.app-flow-item:nth-child(even) .app-flow-content-inner::before {
display: none;
}
.why-choose-row {
flex-direction: column;
}
}
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}
.hero-content {
max-width: 100%;
}
nav ul {
display: none;
}
}
/* Animation */
.fade-in {
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.5s ease forwards;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
[data-animation] {
opacity: 0;
}
[data-animation].animated {
opacity: 1;
}
.delay-1 {
animation-delay: 0.1s;
}
.delay-2 {
animation-delay: 0.2s;
}
.delay-3 {
animation-delay: 0.3s;
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="container header-container">
<a href="https://liveupx.com" class="logo-container">
<img src="https://liveupx.com/wp-content/uploads/2023/10/liveupx185x44.png" alt="Liveupx Logo" class="logo">
</a>
<nav>
<ul>
<li><a href="https://liveupx.com">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#app-flow">App Flow</a></li>
<li><a href="#why-choose">Why Choose Us</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content fade-in">
<h1>Skype Clone App</h1>
<h2>Complete white-label solution to launch your own Skype-like Application.</h2>
<p>Our Skype Clone Script is a powerful and feature-rich Video Conferencing Platform that allows you to develop and launch your own branded video and audio calling app quickly.</p>
<a href="#contact" class="btn btn-primary">BUY NOW - Skype Clone App</a>
</div>
</div>
</section>
<!-- Description Section -->
<section class="features" id="features">
<div class="container">
<div class="section-title">
<h2>Multiplayer <span>Skype Clone App</span> Development</h2>
<div class="underline"></div>
</div>
<div class="row">
<div class="col-md-6">
<div class="description-content">
<p>
Recent upgradations of the Skype App make it simple to use while bringing sophistication to the user experience. The tantalizing experience created by Skype has resulted in bringing it to one of the top-grossing apps worldwide.
</p>
<p>
Now, this exquisite piece of technology can be yours. We help you launch a video/audio conferencing platform just like Skype with our white-label solution. We provide an end-to-end solution with high-quality performance that works on web, mobile, and TV platforms.
</p>
<a href="#contact" class="btn btn-primary">BUY NOW - Skype Clone App</a>
</div>
</div>
<div class="col-md-6">
<div class="description-image">
<img src="assets/product-images/meetings/iPhoneX.png" alt="Skype Clone App Interface" style="max-width: 80%;">
</div>
</div>
</div>
</div>
</section>
<!-- Features Grid -->
<section class="features-section" id="main-features">
<div class="container">
<div class="section-title">
<h2>Why Choose our <span>Skype Clone App</span>?</h2>
<div class="underline"></div>
</div>
<div class="features-grid">
<div class="feature-card fade-in delay-1">
<div class="feature-icon">
<i class="fas fa-palette"></i>
</div>
<h3>Complete Customization</h3>
<p>Fully customizable and brandable to match your business identity and requirements.</p>
</div>
<div class="feature-card fade-in delay-2">
<div class="feature-icon">
<i class="fas fa-mobile-alt"></i>
</div>
<h3>Cross-Platform</h3>
<p>Available for Android and iOS platforms with the same rich feature set.</p>
</div>
<div class="feature-card fade-in delay-3">
<div class="feature-icon">
<i class="fas fa-users"></i>
</div>
<h3>High User Capacity</h3>
<p>Easily accommodate a large number of users active simultaneously.</p>
</div>
<div class="feature-card fade-in delay-1">
<div class="feature-icon">
<i class="fas fa-cogs"></i>
</div>
<h3>Admin Panel</h3>
<p>Dedicated admin panel to manage all features and users of the application.</p>
</div>
<div class="feature-card fade-in delay-2">
<div class="feature-icon">
<i class="fas fa-code"></i>
</div>
<h3>Source Code Access</h3>
<p>Provides complete source code for unlimited customization possibilities.</p>
</div>
<div class="feature-card fade-in delay-3">
<div class="feature-icon">
<i class="fas fa-headset"></i>
</div>
<h3>Technical Support</h3>
<p>Free bug support during the support period to ensure your app runs smoothly.</p>
</div>
</div>
</div>
</section>
<!-- App Flow Section -->
<section class="app-flow" id="app-flow">
<div class="container">
<div class="section-title">
<h2>User <span>Application Flow</span></h2>
<div class="underline"></div>
</div>
<div class="app-flow-item">
<div class="app-flow-image">
<img src="assets/product-images/meetings/iPhoneX.png" alt="User Login">
</div>
<div class="app-flow-content">
<div class="app-flow-content-inner">
<h3>Add a user</h3>
<p>Users can access their accounts by entering their username and password.</p>
</div>
</div>
</div>
<div class="app-flow-item">
<div class="app-flow-image">
<img src="assets/product-images/meetings/iPhoneX1.png" alt="Video Conference">
</div>
<div class="app-flow-content">
<div class="app-flow-content-inner">
<h3>Video conference</h3>
<p>Users can initiate or join video conferences with multiple participants for seamless communication.</p>
</div>
</div>
</div>
<div class="app-flow-item">
<div class="app-flow-image">
<img src="assets/product-images/meetings/iPhoneX2.png" alt="Conversation Flow">
</div>
<div class="app-flow-content">
<div class="app-flow-content-inner">
<h3>Flow of conversation</h3>
<p>Intuitive interface for smooth conversation flow between participants in a call.</p>
</div>
</div>
</div>
<div class="app-flow-item">
<div class="app-flow-image">
<img src="assets/product-images/meetings/iPhoneX3.png" alt="Meeting Participation">
</div>
<div class="app-flow-content">
<div class="app-flow-content-inner">
<h3>Participate in the Meeting</h3>
<p>Users can easily participate in meetings with features like screen sharing, chat, and more.</p>
</div>
</div>
</div>
<div class="app-flow-item">
<div class="app-flow-image">
<img src="assets/product-images/meetings/iPhoneX4.png" alt="Pin Chatting">
</div>
<div class="app-flow-content">
<div class="app-flow-content-inner">
<h3>Pin chatting</h3>
<p>Pin important conversations to keep them easily accessible at the top of the chat list.</p>
</div>
</div>
</div>
<div class="app-flow-item">
<div class="app-flow-image">
<img src="assets/product-images/meetings/iPhoneX5.png" alt="Chat History">
</div>
<div class="app-flow-content">
<div class="app-flow-content-inner">
<h3>Introducing History</h3>
<p>View and manage your chat history to keep track of past conversations and shared content.</p>
</div>
</div>
</div>
<div class="app-flow-item">
<div class="app-flow-image">
<img src="assets/product-images/meetings/iPhoneX6.png" alt="Chat Interface">
</div>
<div class="app-flow-content">
<div class="app-flow-content-inner">
<h3>Chat</h3>
<p>Send text messages, emojis, files, and other content through the intuitive chat interface.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Why Choose Us -->
<section class="why-choose-us" id="why-choose">
<div class="container">
<div class="section-title">
<h2>What makes us <span>distinct</span>?</h2>
<div class="underline"></div>
</div>
<div class="why-choose-row">
<div class="why-choose-content">
<p>At Liveupx, we stand out from other Skype Clone App development companies for several key reasons:</p>
<ul class="why-choose-list">
<li><i class="fas fa-check-circle"></i> Comprehensive customizations</li>
<li><i class="fas fa-check-circle"></i> Timely deployment</li>
<li><i class="fas fa-check-circle"></i> Secure installation</li>
<li><i class="fas fa-check-circle"></i> Multi-platform operations</li>
<li><i class="fas fa-check-circle"></i> Appropriate support & maintenance</li>
<li><i class="fas fa-check-circle"></i> Cost-efficient solutions</li>
<li><i class="fas fa-check-circle"></i> Powerful admin dashboard</li>
<li><i class="fas fa-check-circle"></i> Performance scalability</li>
<li><i class="fas fa-check-circle"></i> Cloud tech integration</li>
</ul>
</div>
<div class="why-choose-image">
<img src="assets/product-images/meetings/iPhoneX2.png" alt="Skype Clone App Features">
</div>
</div>
</div>
</section>
<!-- Key Features Section -->
<section class="key-features">
<div class="container">
<div class="section-title">
<h2>Key <span>Features</span></h2>
<div class="underline"></div>
</div>
<div class="key-features-grid">
<div class="key-feature-card">
<i class="fas fa-user"></i>
<h3>User Profile</h3>
<p>Users can create and manage their profiles with personal details, payment options, and favorites.</p>
</div>
<div class="key-feature-card">
<i class="fas fa-dollar-sign"></i>
<h3>Payment Gateway</h3>
<p>Integrated payment solutions for secure transactions when users purchase premium features.</p>
</div>
<div class="key-feature-card">
<i class="fas fa-search"></i>
<h3>Content Search</h3>
<p>Powerful search functionality to find contacts, messages, and shared content quickly.</p>
</div>
<div class="key-feature-card">
<i class="fas fa-comments"></i>
<h3>Comments</h3>
<p>Enable feedback and discussion with comment features for shared content and media.</p>
</div>
<div class="key-feature-card">
<i class="fas fa-bell"></i>
<h3>Push Notifications</h3>
<p>Keep users informed with instant notifications about calls, messages, and updates.</p>
</div>
<div class="key-feature-card">
<i class="fas fa-star"></i>
<h3>Review and Ratings</h3>
<p>Allow users to rate and review content, enhancing engagement and discovery.</p>
</div>
<div class="key-feature-card">
<i class="fas fa-play-circle"></i>
<h3>Manual Playlist</h3>
<p>Users can create custom playlists of content to watch later or share with others.</p>
</div>
<div class="key-feature-card">
<i class="fas fa-laptop-mobile"></i>
<h3>Multiple Device Support</h3>
<p>Compatible with Android, iOS, and web platforms for seamless cross-device usage.</p>
</div>
<div class="key-feature-card">
<i class="fas fa-language"></i>
<h3>Multiple Language Support</h3>
<p>Expand your user base with support for multiple languages and localization.</p>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="faq" id="faq">
<div class="container">
<div class="section-title">
<h2>Frequently Asked <span>Questions</span></h2>
<div class="underline"></div>
</div>
<div class="faq-container">
<div class="faq-item">
<div class="faq-question">
<span>Can I claim complete ownership of the Skype Clone After Purchase?</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>Yes, once you purchase the license, you can claim complete ownership of the mobile app and website. The solution becomes your intellectual property to use as needed.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<span>Does Liveupx provide technical support after purchase?</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>Yes, we provide three months of free technical support to ensure your application runs smoothly and address any issues that may arise.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<span>Can I customize the Skype Clone script?</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>Yes, we can customize the Skype Clone script as per your specific requirements. Our solution provides full flexibility to adapt the app to your needs.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<span>How do I install this script and App?</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>Liveupx offers complementary services for script installation and app publishing to ensure a smooth setup process.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<span>How can I get a demo for the Skype Clone?</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>You can submit a request for the admin demo by contacting us. Our team will get back to you with more details and arrange a demonstration.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<span>Is this a one-time payment for this script?</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>Yes, it is a one-time payment for the script. Additional customization, if needed, will be charged on an hourly basis.</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta">
<div class="container">
<h2>Ready to Launch Your Own Video Conferencing Platform?</h2>
<p>Get started today with our powerful Skype Clone solution and take your business to the next level.</p>
<a href="#contact" class="btn">Buy Now - Skype Clone App</a>
</div>
</section>