-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinvest.html
More file actions
1300 lines (1107 loc) · 61.7 KB
/
invest.html
File metadata and controls
1300 lines (1107 loc) · 61.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Hyippro - The best investment platform offering secure and profitable opportunities.">
<meta name="keywords" content="Hyippro, Investment, Finance, Secure Investment, Profitable Platform">
<meta name="author" content="Hyippro Team">
<meta property="og:title" content="Hyippro - Profitable Investment Platform">
<meta property="og:description" content="Join Hyippro today and explore secure and profitable investment options.">
<meta property="og:image" content="https://example.com/og-image.jpg">
<meta property="og:url" content="https://www.hyippro.com">
<meta name="twitter:card" content="summary_large_image">
<title>Hyippro - Secure & Profitable Investment Platform</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css">
<!-- Add Font Awesome CDN for Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
<style>
/* Custom Scrollbar for smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Scrollbar Styles */
::-webkit-scrollbar {
width: 10px; /* Width of the scrollbar */
}
::-webkit-scrollbar-track {
background: #f1f1f1; /* Background color of the track */
border-radius: 10px; /* Rounded corners */
}
::-webkit-scrollbar-thumb {
background: #4a90e2; /* Initial color of the scrollbar thumb */
border-radius: 10px; /* Rounded corners */
border: 2px solid #f1f1f1; /* Space around the thumb */
animation: scrollColorChange 3s infinite alternate; /* Animation effect */
}
::-webkit-scrollbar-thumb:hover {
background: #357ab8; /* Darker shade on hover */
}
/* Scroll Thumb Color Animation */
@keyframes scrollColorChange {
0% {
background: #4a90e2;
}
50% {
background: #6ab0f5;
}
100% {
background: #357ab8;
}
}
/* For Firefox */
* {
scrollbar-width: thin; /* Thin scrollbar */
scrollbar-color: #4a90e2 #f1f1f1; /* Thumb color and track color */
} /* Font Style for Headings */
h1, h2, h3, h4, h5, h6 {
font-family: "Space Grotesk", sans-serif;
color: var(--white);
margin-bottom: 15px;
font-weight: 700;
}
/* Custom Font Size for H1 */
h1 {
font-size: calc(1.375rem + 1.5vw);
}
/* Custom Font Size and Styles for H3 */
h3 {
font-family: 'Bruno Ace SC', cursive;
font-size: 18px;
font-weight: 400;
}
/* Media Query for Larger Screens */
@media (min-width: 1200px) {
h1 {
font-size: 2.5rem;
}
}
/* Margin and Spacing Adjustments */
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: .5rem;
font-weight: 500;
line-height: 1.2;
}
/* Styling for .h1 and h2 for Consistency */
.h1, h1 {
font-size: calc(1.375rem + 1.5vw);
}
/* Floating Buttons */
.floating-btn {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 100;
}
.floating-btn button {
background-color: #4a90e2;
color: white;
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: background-color 0.3s ease;
margin-bottom: 10px;
}
.floating-btn button:hover {
background-color: #357ab8;
}
</style>
</head>
<body class="bg-gray-900 text-gray-200">
<!-- Header (Sticky on Scroll) -->
<header id="header" class="bg-gray-900 shadow-md py-4 px-6 flex justify-between items-center fixed top-0 left-0 w-full z-50 transition-all duration-300">
<div class="text-xl font-bold text-white">Hyippro</div>
<nav class="hidden md:flex space-x-6">
<a href="#about" class="hover:text-[#9ff550]">About Us</a>
<a href="#process" class="hover:text-[#9ff550]">Process</a>
<a href="#plans" class="hover:text-[#9ff550]">Investment Plans</a>
<a href="#investor" class="hover:text-[#9ff550]">Top Investors</a>
<a href="#investor" class="hover:text-[#9ff550]">Blog</a>
<a href="#investor" class="hover:text-[#9ff550]">Login</a>
</nav>
<!-- User Dropdown Button -->
<div class="relative">
<!-- Conditionally Render the Button and Dropdown -->
<button id="userButton" class="px-4 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-400" onclick="toggleDropdown()">Account</button>
<!-- Dropdown Menu -->
<div id="userDropdown" class="absolute right-0 mt-2 w-48 bg-white text-gray-900 rounded-md shadow-lg hidden">
<ul class="space-y-2 p-2">
<li><a href="login.html" class="block px-4 py-2 text-sm">Login</a></li>
<!-- Assuming logged-in user will see these options -->
<li class="hidden" id="userProfile"><a href="#profile" class="block px-4 py-2 text-sm">Profile</a></li>
<li class="hidden" id="logout"><a href="#logout" class="block px-4 py-2 text-sm">Logout</a></li>
</ul>
</div>
</div>
</header>
<!-- Script to Toggle Dropdown (Mocking Login State) -->
<script>
// Mocking user login state
let isLoggedIn = false; // Change to `true` when user is logged in
function toggleDropdown() {
const dropdown = document.getElementById('userDropdown');
dropdown.classList.toggle('hidden');
// Show Profile and Logout if logged in
const loginSignUp = document.querySelectorAll('#userDropdown .block');
const userProfile = document.getElementById('userProfile');
const logout = document.getElementById('logout');
if (isLoggedIn) {
loginSignUp.forEach(item => item.classList.add('hidden')); // Hide Login/Signup
userProfile.classList.remove('hidden'); // Show Profile
logout.classList.remove('hidden'); // Show Logout
} else {
loginSignUp.forEach(item => item.classList.remove('hidden')); // Show Login/Signup
userProfile.classList.add('hidden'); // Hide Profile
logout.classList.add('hidden'); // Hide Logout
}
}
</script>
<!-- Hero Section -->
<section class="relative h-auto sm:h-[950px] flex items-center justify-center text-white bg-cover bg-center bg-gradient-to-r from-gray-900 to-gray-800" style="background-image: url('https://hyip-pro.bugfinder.app/assets/upload/contents/2IHstGFbEXbvaAfbOd041lxOGTDIOT.webp');">
<div class="absolute inset-0 bg-black bg-opacity-50"></div>
<div class="absolute left-1/8 sm:left-1/4 md:left-80 top-1/2 transform -translate-y-1/2 pl-6 sm:pl-8 md:pl-16 px-4 text-left space-y-4 sm:space-y-6 md:space-y-8 max-w-xl w-full">
<!-- H3 with Custom Font Style -->
<h3 class="text-lg sm:text-xl md:text-xl text-white opacity-80 transition-transform transform hover:scale-105 hover:tracking-wide duration-300" style="font-family: 'Bruno Ace SC', cursive; font-size: 18px; font-weight: 400;">
A Profitable Platform for High-Margin Investment
</h3>
<!-- H1 with Custom Font Style -->
<h1 class="text-2xl sm:text-3xl md:text-4xl font-extrabold text-white leading-tight transition-transform transform hover:scale-105 hover:tracking-wide duration-300">
BEST INVESTMENTS PLAN FOR
</h1>
<h1 class="text-2xl sm:text-3xl md:text-4xl font-extrabold text-white leading-tight transition-transform transform hover:scale-105 hover:tracking-wide duration-300">
WORLDWIDE
</h1>
<!-- Learn More Button -->
<a href="#learn-more" class="inline-block mt-4 sm:mt-6 px-6 sm:px-8 py-3 bg-[#1e9a4e] text-white font-bold rounded-lg shadow-xl transform hover:bg-blue-500 hover:scale-105 transition duration-300">
Learn More
</a>
</div>
<!-- Right Side Stats Section -->
<div class="absolute right-8 sm:right-16 md:right-80 top-1/2 transform -translate-y-1/2 pr-6 sm:pr-8 md:pr-16 text-right space-y-4 sm:space-y-6 md:space-y-8 hidden sm:block">
<p class="text-2xl sm:text-3xl md:text-5xl font-extrabold text-white animate__animated animate__fadeIn animate__delay-1s">25,609</p>
<p class="text-sm sm:text-lg md:text-xl text-white opacity-80">All Members</p>
<p class="text-2xl sm:text-3xl md:text-5xl font-extrabold text-white animate__animated animate__fadeIn animate__delay-2s">12.5M</p>
<p class="text-sm sm:text-lg md:text-xl text-white opacity-80">Average Investment</p>
<p class="text-2xl sm:text-3xl md:text-5xl font-extrabold text-white animate__animated animate__fadeIn animate__delay-3s">200</p>
<p class="text-sm sm:text-lg md:text-xl text-white opacity-80">Countries Supported</p>
</div>
</section>
<!-- About Us -->
<section id="about" class="py-20 px-6 bg-gradient-to-r from-gray-900 to-gray-800" style="background-image: url('https://hyip-pro.bugfinder.app/assets/themes/screaminlizard/img/bg/Vector-10.svg');">
<div class="container mx-auto flex flex-col md:flex-row items-center justify-between text-center md:text-left">
<!-- Left Side: Text -->
<div class="md:w-1/2 text-white p-12">
<p class="mt-4 font-bold text-[#9ff550]"> ABOUT US</p>
<h2 class="text-4xl font-bold mb-6">ABOUT US</h2>
<p class="text-lg mb-6">Planshyip is an investment company, whose team is working on making money from the volatility of cryptocurrencies and offering great returns to our clients.</p>
<p class="text-lg mb-6">We focus on secure investments with the phrasal sequence of the Lorem Ipsum text being now so widespread that many rely on it as part of the process.Lorem, ipsum dolor sit amet consectetur elit. Laboriosam hic impedit. Lorem ipsum dolor sit amet consectetur, adipisicing elit. Tenetur, id!</p>
<p class="text-lg mb-6">Cupiditate laborum ut et minima laudantium doloribus quidem sit non. Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<a href="#know-more" class="mt-6 inline-block px-8 py-3 bg-blue-600 text-white font-semibold rounded-lg hover:bg-blue-500">Know More</a>
</div>
<!-- Right Side: Image -->
<div class="md:w-1/2 mt-8 md:mt-0">
<img src="https://hyip-pro.bugfinder.app/assets/upload/contents/GdPGXoDZcl9MWyinHVQlbvqMbOSIqM.webp" alt="Hyippro Image" class="w-full h-auto rounded-lg shadow-lg">
</div>
</div>
</section>
<section id="process" class="py-24 px-6 bg-gradient-to-r from-gray-900 to-gray-800" style="background-image: url('https://hyip-pro.bugfinder.app/assets/themes/screaminlizard/img/bg/Vector-10.svg');">
<p class="mt-4 font-bold text-xl text-center text-[#9ff550]">PROCESS</p>
<h2 class="text-4xl font-bold text-white mb-16 text-center animate__animated animate__fadeIn animate__delay-2s">How It Works?</h2>
<div class="container mx-auto grid grid-cols-1 md:grid-cols-2 gap-16 text-left">
<div class="text-white mb-8 md:mb-0 animate__animated animate__fadeIn animate__delay-1s">
<ol class="space-y-14 relative">
<!-- Step 1: Register -->
<li class="process-step px-4 transform transition-transform hover:scale-105 duration-300 ease-in-out">
<div class="step-number bg-white text-blue-600 rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-4 text-lg font-semibold">1</div>
<div class="step-content">
<h4 class="text-lg font-semibold text-white mb-3">Register & Log In</h4>
<p class="text-sm text-gray-300">Create an account to access the platform. Log in to begin your investment journey and manage your profile.</p>
</div>
</li>
<!-- Step 2: Add Funds -->
<li class="process-step px-4 transform transition-transform hover:scale-105 duration-300 ease-in-out">
<div class="step-number bg-white text-teal-500 rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-4 text-lg font-semibold">2</div>
<div class="step-content">
<h4 class="text-lg font-semibold text-white mb-3">Add Funds</h4>
<p class="text-sm text-gray-300">Choose your preferred payment method and deposit funds to begin investing in various services.</p>
</div>
</li>
<!-- Step 3: Select a Service -->
<li class="process-step px-4 transform transition-transform hover:scale-105 duration-300 ease-in-out">
<div class="step-number bg-white text-yellow-500 rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-4 text-lg font-semibold">3</div>
<div class="step-content">
<h4 class="text-lg font-semibold text-white mb-3">Select a Service</h4>
<p class="text-sm text-gray-300">Choose the right services based on your goals and start building your investment portfolio for future growth.</p>
</div>
</li>
<!-- Step 4: Enjoy Results -->
<li class="process-step px-4 transform transition-transform hover:scale-105 duration-300 ease-in-out">
<div class="step-number bg-white text-pink-500 rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-4 text-lg font-semibold">4</div>
<div class="step-content">
<h4 class="text-lg font-semibold text-white mb-3">Enjoy Super Results</h4>
<p class="text-sm text-gray-300">Watch your investments grow and enjoy incredible returns as your hard work pays off.</p>
</div>
</li>
<!-- Connecting Lines -->
<div class="connecting-lines absolute top-0 left-1/2 transform -translate-x-1/2 w-1/4 h-full bg-gradient-to-b from-blue-500 via-teal-500 to-pink-500 opacity-80 animation-pulse"></div>
</ol>
</div>
<!-- Right Side: Image -->
<div class="animate__animated animate__fadeIn animate__delay-7s flex justify-center items-center">
<img src="https://hyip-pro.bugfinder.app/assets/upload/contents/PRSKOOrKH7YCkZraJ4z1AdgW3xHJvW.webp" alt="Process Image" class="w-full h-full max-w-md h-auto rounded-lg shadow-2xl transition-transform transform hover:scale-105 duration-300 ease-in-out">
</div>
</div>
</section>
<style>
.process-step {
position: relative;
transition: transform 0.3s ease-in-out;
}
.process-step:hover {
transform: translateY(-10px);
}
.step-number {
position: absolute;
top: 0;
left: -35px;
transform: translateY(-50%);
font-size: 1.25rem;
font-weight: bold;
}
.step-content {
padding-top: 8px;
}
.connecting-lines {
position: absolute;
left: -20px;
top: -70px;
height: calc(100% - 60px);
width: 6px;
background: linear-gradient(to bottom, rgba(59, 130, 246, 1), rgba(37, 99, 235, 1));
opacity: 0.6;
border-radius: 2px;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
background: linear-gradient(to bottom, rgba(59, 130, 246, 1), rgba(37, 99, 235, 1));
}
50% {
background: linear-gradient(to bottom, rgba(255, 105, 180, 1), rgba(255, 100, 150, 1));
}
100% {
background: linear-gradient(to bottom, rgba(59, 130, 246, 1), rgba(37, 99, 235, 1));
}
}
/* Enhanced fade-in animation for process steps */
.process-step {
animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
/* Smooth fade-in effect */
.animate__fadeIn {
animation: fadeIn 2s ease-out;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
<!-- Investment Plans -->
<section id="plans" class="py-20 px-6 text-center bg-cover bg-gradient-to-t from-gray-900 via-black to-transparent" style="background-image: url('https://hyip-pro.bugfinder.app/assets/themes/screaminlizard/img/bg/Vector-10.svg');">
<p class="mt-4 font-bold text-[#9ff550]">INVEST OFFER</p>
<h2 class="text-4xl font-bold text-white mb-8">Investment Plans</h2>
<p class="mt-4 text-gray-300 mb-12">As a certified, registered company, we guarantee that all investments are handled with the highest standards and compliance with legal requirements.</p>
<div class="mt-12 grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-12">
<!-- Business Plan -->
<div class="p-8 bg-transparent border-4 border-green-500 rounded-lg shadow-2xl hover:shadow-3xl transition-all duration-300">
<h3 class="text-3xl font-semibold text-green-500 mb-4">Business Plan</h3>
<p class="mt-2 text-lg text-white">6% Every Day</p>
<p class="mt-4 text-xl font-semibold text-white">$69 - $999</p>
<p class="mt-4 text-lg text-white">Profit For Lifetime</p>
<p class="mt-2 text-lg text-white">Capital will back: <span class="font-semibold">Yes</span></p>
<p class="mt-2 text-lg text-white">Lifetime Earning</p>
<button class="mt-6 px-6 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-400" onclick="openModal('Baby Plan', '$99 - $888', '6.00 USD')">Invest Now</button>
</div>
<!-- Baby Plan -->
<div class="p-8 bg-transparent border-4 border-blue-500 rounded-lg shadow-2xl hover:shadow-3xl transition-all duration-300">
<h3 class="text-3xl font-semibold text-blue-500 mb-4">Baby Plan</h3>
<p class="mt-2 text-lg text-white">$6.00 Every Day</p>
<p class="mt-4 text-xl font-semibold text-white">$99 - $888</p>
<p class="mt-4 text-lg text-white">Profit For Every Day</p>
<p class="mt-2 text-lg text-white">Capital will back: <span class="font-semibold">Yes</span></p>
<p class="mt-2 text-lg text-white">Total 0 USD + Capital</p>
<button class="mt-6 px-6 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-400" onclick="openModal('Baby Plan', '$99 - $888', '6.00 USD')">Invest Now</button>
</div>
<!-- Hatchling Plan -->
<div class="p-8 bg-transparent border-4 border-yellow-500 rounded-lg shadow-2xl hover:shadow-3xl transition-all duration-300">
<h3 class="text-3xl font-semibold text-yellow-500 mb-4">Hatchling Plan</h3>
<p class="mt-2 text-lg text-white">6% Every Day</p>
<p class="mt-4 text-xl font-semibold text-white">$120</p>
<p class="mt-4 text-lg text-white">Profit For Lifetime</p>
<p class="mt-2 text-lg text-white">Capital will back: <span class="font-semibold">No</span></p>
<p class="mt-2 text-lg text-white">Lifetime Earning</p>
<button class="mt-6 px-6 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-400" onclick="openModal('Baby Plan', '$99 - $888', '6.00 USD')">Invest Now</button>
</div>
<!-- Secondary Pack -->
<div class="p-8 bg-transparent border-4 border-purple-500 rounded-lg shadow-2xl hover:shadow-3xl transition-all duration-300">
<h3 class="text-3xl font-semibold text-purple-500 mb-4">Secondary Pack</h3>
<p class="mt-2 text-lg text-white">$3.00 Every Day</p>
<p class="mt-4 text-xl font-semibold text-white">$89 - $666</p>
<p class="mt-4 text-lg text-white">Profit For Every Day</p>
<p class="mt-2 text-lg text-white">Capital will back: <span class="font-semibold">Yes</span></p>
<p class="mt-2 text-lg text-white">Total 1080 USD + Capital</p>
<button class="mt-6 px-6 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-400" onclick="openModal('Baby Plan', '$99 - $888', '6.00 USD')">Invest Now</button>
</div>
<!-- Starter Pack 1 -->
<div class="p-8 bg-transparent border-4 border-teal-500 rounded-lg shadow-2xl hover:shadow-3xl transition-all duration-300">
<h3 class="text-3xl font-semibold text-teal-500 mb-4">Starter Pack</h3>
<p class="mt-2 text-lg text-white">1% Every Day</p>
<p class="mt-4 text-xl font-semibold text-white">$50 - $400</p>
<p class="mt-4 text-lg text-white">Profit For Lifetime</p>
<p class="mt-2 text-lg text-white">Capital will back: <span class="font-semibold">Yes</span></p>
<p class="mt-2 text-lg text-white">Lifetime Earning</p>
<button class="mt-6 px-6 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-400" onclick="openModal('Baby Plan', '$99 - $888', '6.00 USD')">Invest Now</button>
</div>
<!-- Starter Pack 2 -->
<div class="p-8 bg-transparent border-4 border-teal-500 rounded-lg shadow-2xl hover:shadow-3xl transition-all duration-300">
<h3 class="text-3xl font-semibold text-teal-500 mb-4">Starter Pack</h3>
<p class="mt-2 text-lg text-white">1% Every Day</p>
<p class="mt-4 text-xl font-semibold text-white">$40 - $400</p>
<p class="mt-4 text-lg text-white">Profit For Lifetime</p>
<p class="mt-2 text-lg text-white">Capital will back: <span class="font-semibold">Yes</span></p>
<p class="mt-2 text-lg text-white">Lifetime Earning</p>
<button class="mt-6 px-6 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-400" onclick="openModal('Baby Plan', '$99 - $888', '6.00 USD')">Invest Now</button>
</div>
</div>
</section>
<!-- Popup Modal -->
<div id="investModal" class="fixed inset-0 bg-black bg-opacity-80 hidden items-center justify-center z-50">
<div class="bg-gradient-to-t from-gray-900 via-black to-transparent p-6 rounded-lg shadow-2xl w-96 text-center relative">
<button class="absolute top-2 right-2 text-red-500 text-xl font-bold" onclick="closeModal()">×</button>
<h2 class="text-2xl font-bold text-white mb-4" id="modalTitle">Invest Now</h2>
<p class="text-lg text-gray-300 mb-2" id="modalPlan">Baby Plan</p>
<p class="text-sm text-gray-500" id="modalRange">Invest: $99 - $888</p>
<p class="text-sm text-gray-500" id="modalInterest">Interest: 6.00 USD</p>
<p class="text-sm text-gray-500 mb-4">Per 24 hours, 0 times</p>
<div class="mt-4">
<label for="amount" class="block text-gray-200 font-semibold">Enter Amount (USD)</label>
<input type="number" id="amount" class="mt-2 w-full px-4 py-2 border border-gray-600 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 bg-transparent text-white" placeholder="Enter amount">
</div>
<button class="mt-6 px-6 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-500 transition-colors duration-300 w-full" onclick="checkout()">Invest Now</button>
</div>
</div>
<script>
function openModal(plan, range, interest) {
document.getElementById('investModal').style.display = 'flex';
document.getElementById('modalPlan').innerText = plan;
document.getElementById('modalRange').innerText = `Invest: ${range}`;
document.getElementById('modalInterest').innerText = `Interest: ${interest}`;
}
function closeModal() {
document.getElementById('investModal').style.display = 'none';
}
function checkout() {
const amount = document.getElementById('amount').value;
if (amount && amount > 0) {
alert(`You have invested $${amount}. Thank you!`);
closeModal();
} else {
alert('Please enter a valid amount.');
}
}
</script>
<style>
/* Hover shadow effect */
.hover\:shadow-3xl:hover {
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
/* Modal styling */
#investModal {
display: none;
}
.bg-gradient-to-t {
background: linear-gradient(to top, #1a202c, #2d3748);
}
.bg-transparent {
background-color: transparent;
}
.focus:ring-blue-500 {
outline: 2px solid #3182ce;
}
/* Transition and hover effect */
.hover\:bg-blue-400:hover {
background-color: #63b3ed;
}
/* Modal input field */
input[type="number"] {
background-color: #2d3748;
color: white;
border-color: #4a5568;
}
/* Button hover */
.hover\:bg-blue-500:hover {
background-color: #3182ce;
}
.transition-all {
transition: all 0.3s ease-in-out;
}
</style>
<style>
/* Card Styles */
.bg-transparent {
background-color: transparent !important;
}
.border-4 {
border-width: 1px;
}
.shadow-2xl {
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.hover\:shadow-3xl:hover {
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.text-green-500 {
color: #10B981;
}
.text-blue-500 {
color: #3B82F6;
}
.text-yellow-500 {
color: #F59E0B;
}
.text-purple-500 {
color: #8B5CF6;
}
.text-teal-500 {
color: #14B8A6;
}
.hover\:bg-green-400:hover {
background-color: #6EE7B7;
}
.hover\:bg-blue-400:hover {
background-color: #60A5FA;
}
.hover\:bg-yellow-400:hover {
background-color: #FBBF24;
}
.hover\:bg-purple-400:hover {
background-color: #A78BFA;
}
.hover\:bg-teal-400:hover {
background-color: #2DD4BF;
}
</style>
<!-- Why Choose Investment -->
<section class="py-20 px-6 text-center bg-cover bg-gradient-to-t from-gray-900 via-black to-transparent" style="background-image: url('https://hyip-pro.bugfinder.app/assets/themes/screaminlizard/img/bg/Vector-10.svg');">
<p class="mt-4 font-bold text-[#9ff550]">CHOOSE INVESTMENT</p>
<h2 class="text-4xl font-bold text-white">Why Choose Our Investment Plans?</h2>
<p class="mt-6 text-lg text-gray-400">Our investment plans provide a high return with a focus on security, transparency, and customer satisfaction. Choose the plan that aligns with your goals and experience sustainable growth.</p>
<div class="mt-12 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-12">
<!-- Expert Management -->
<div class="p-8 border border-gray-700 rounded-lg shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="flex justify-center items-center mb-6 text-4xl text-gray-300">
<i class="fas fa-cogs"></i>
</div>
<h3 class="text-2xl font-semibold text-white">Expert Management</h3>
<p class="mt-4 text-gray-300">Our team helps agencies define their new business objectives and create professional software to achieve them. We ensure that each project is managed with the utmost care and precision.</p>
</div>
<!-- Registered Company -->
<div class="p-8 border border-gray-700 rounded-lg shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="flex justify-center items-center mb-6 text-4xl text-gray-300">
<i class="fas fa-flag-checkered"></i>
</div>
<h3 class="text-2xl font-semibold text-white">Registered Company</h3>
<p class="mt-4 text-gray-300">We are a legally registered company, ensuring that all investments are handled with the highest levels of professionalism and regulatory compliance.</p>
</div>
<!-- Secure Investment -->
<div class="p-8 border border-gray-700 rounded-lg shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="flex justify-center items-center mb-6 text-4xl text-gray-300">
<i class="fas fa-lock"></i>
</div>
<h3 class="text-2xl font-semibold text-white">Secure Investment</h3>
<p class="mt-4 text-gray-300">Our investment plans are designed with security in mind, offering you peace of mind that your assets are protected from unforeseen risks.</p>
</div>
<!-- Verified Security -->
<div class="p-8 border border-gray-700 rounded-lg shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="flex justify-center items-center mb-6 text-4xl text-gray-300">
<i class="fas fa-check-circle"></i>
</div>
<h3 class="text-2xl font-semibold text-white">Verified Security</h3>
<p class="mt-4 text-gray-300">We prioritize verified security protocols to ensure the safety of your personal and financial data, maintaining a secure environment for all transactions.</p>
</div>
<!-- Instant Withdrawal -->
<div class="p-8 border border-gray-700 rounded-lg shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="flex justify-center items-center mb-6 text-4xl text-gray-300">
<i class="fas fa-credit-card"></i>
</div>
<h3 class="text-2xl font-semibold text-white">Instant Withdrawal</h3>
<p class="mt-4 text-gray-300">Experience quick and hassle-free withdrawals, allowing you to access your funds whenever you need them, without delays.</p>
</div>
<!-- Registered Company (Duplicate, optional) -->
<div class="p-8 border border-gray-700 rounded-lg shadow-xl hover:shadow-2xl transition-all duration-300">
<div class="flex justify-center items-center mb-6 text-4xl text-gray-300">
<i class="fas fa-flag-checkered"></i>
</div>
<h3 class="text-2xl font-semibold text-white">Registered Company</h3>
<p class="mt-4 text-gray-300">As a certified, registered company, we guarantee that all investments are handled with the highest standards and compliance with legal requirements.</p>
</div>
</div>
</section>
<!-- Top Investors -->
<section id="investor" class="py-20 px-6 text-center bg-cover bg-gradient-to-t from-gray-900 via-black to-transparent" style="background-image: url('https://hyip-pro.bugfinder.app/assets/themes/screaminlizard/img/bg/Vector-10.svg');">
<p class="mt-4 font-bold text-[#9ff550]">INVESTOR</p>
<h2 class="text-4xl font-bold text-white mb-12">World Wide Top Investors</h2>
<div class="mt-12 grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-12">
<!-- Investor 1 -->
<div class="p-8 bg-transparent border-2 border-gray-700 rounded-lg shadow-md hover:shadow-2xl transition-all duration-300">
<h3 class="text-3xl font-semibold text-blue-400 mb-4">John Doe</h3>
<p class="text-xl text-white">Total Invested: <span class="font-bold">$50,000</span></p>
<p class="text-xl text-white mt-2">Total Earnings: <span class="font-bold">$25,000</span></p>
</div>
<!-- Investor 2 -->
<div class="p-8 bg-transparent border-2 border-gray-700 rounded-lg shadow-md hover:shadow-2xl transition-all duration-300">
<h3 class="text-3xl font-semibold text-blue-400 mb-4">Jane Smith</h3>
<p class="text-xl text-white">Total Invested: <span class="font-bold">$30,000</span></p>
<p class="text-xl text-white mt-2">Total Earnings: <span class="font-bold">$15,000</span></p>
</div>
<!-- Investor 3 -->
<div class="p-8 bg-transparent border-2 border-gray-700 rounded-lg shadow-md hover:shadow-2xl transition-all duration-300">
<h3 class="text-3xl font-semibold text-blue-400 mb-4">Michael Brown</h3>
<p class="text-xl text-white">Total Invested: <span class="font-bold">$20,000</span></p>
<p class="text-xl text-white mt-2">Total Earnings: <span class="font-bold">$10,000</span></p>
</div>
<!-- Investor 4 -->
<div class="p-8 bg-transparent border-2 border-gray-700 rounded-lg shadow-md hover:shadow-2xl transition-all duration-300">
<h3 class="text-3xl font-semibold text-blue-400 mb-4">Emily Davis</h3>
<p class="text-xl text-white">Total Invested: <span class="font-bold">$40,000</span></p>
<p class="text-xl text-white mt-2">Total Earnings: <span class="font-bold">$18,000</span></p>
</div>
<!-- Investor 5 -->
<div class="p-8 bg-transparent border-2 border-gray-700 rounded-lg shadow-md hover:shadow-2xl transition-all duration-300">
<h3 class="text-3xl font-semibold text-blue-400 mb-4">Olivia Martin</h3>
<p class="text-xl text-white">Total Invested: <span class="font-bold">$60,000</span></p>
<p class="text-xl text-white mt-2">Total Earnings: <span class="font-bold">$35,000</span></p>
</div>
<!-- Investor 6 -->
<div class="p-8 bg-transparent border-2 border-gray-700 rounded-lg shadow-md hover:shadow-2xl transition-all duration-300">
<h3 class="text-3xl font-semibold text-blue-400 mb-4">James Wilson</h3>
<p class="text-xl text-white">Total Invested: <span class="font-bold">$25,000</span></p>
<p class="text-xl text-white mt-2">Total Earnings: <span class="font-bold">$12,000</span></p>
</div>
</div>
</section>
<style>
/* Professional adjustments */
#investor {
background-size: cover;
background-position: center;
}
.p-8 {
padding: 2rem;
}
.border-2 {
border-width: 2px;
}
.border-gray-700 {
border-color: #374151;
}
.rounded-lg {
border-radius: 0.5rem;
}
.shadow-md {
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.hover\:shadow-2xl:hover {
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.text-blue-400 {
color: #60a5fa;
}
.font-semibold {
font-weight: 600;
}
.text-xl {
font-size: 1.25rem;
}
.font-bold {
font-weight: 700;
}
</style>
<!-- Last Deposits & Withdrawals -->
<section class="py-20 px-6 text-center bg-cover bg-gradient-to-t from-gray-900 via-black to-transparent" style="background-image: url('https://hyip-pro.bugfinder.app/assets/themes/screaminlizard/img/bg/Vector-10.svg');">
<p class="mt-4 font-bold text-[#9ff550]">NOT HIDDEN CHARGEs</p>
<h2 class="text-4xl font-bold text-white">Last Deposits & Withdrawals</h2>
<p class="mt-4 text-gray-300">As a certified, registered company, we guarantee that all investments are handled with the highest standards and compliance with legal requirements.</p>
<!-- Tabs for Deposit and Withdrawal -->
<div class="mt-6">
<div class="flex flex-wrap justify-center space-x-4 gap-4">
<button id="depositTab" class="px-6 py-3 text-lg font-semibold text-white bg-[#9ff550] rounded-md hover:bg-[#9ff550] transition duration-300 focus:outline-none focus:ring-2 focus:ring-gray-500">
Last Deposit
</button>
<button id="withdrawalTab" class="px-6 py-3 text-lg font-semibold text-white bg-gray-800 rounded-md hover:bg-[#9ff550] transition duration-300 focus:outline-none focus:ring-2 focus:ring-gray-500">
Last Withdrawal
</button>
</div>
<!-- Deposit Table -->
<div id="depositContent" class="mt-6">
<table class="mx-auto table-auto text-white w-full rounded-lg overflow-hidden">
<thead class="bg-[#9ff550]">
<tr>
<th class="py-3 px-6 text-left text-sm font-semibold">Name</th>
<th class="py-3 px-6 text-left text-sm font-semibold">Amount</th>
<th class="py-3 px-6 text-left text-sm font-semibold">Gateway</th>
<th class="py-3 px-6 text-left text-sm font-semibold">Date</th>
</tr>
</thead>
<tbody>
<tr class="hover:bg-[#9ff550] transition-colors">
<td class="py-3 px-6">Yu Ula</td>
<td class="py-3 px-6">$20,000</td>
<td class="py-3 px-6">Stripe</td>
<td class="py-3 px-6">12 Jan 2025</td>
</tr>
<tr class="hover:bg-[#9ff550] transition-colors">
<td class="py-3 px-6">Yu Ula</td>
<td class="py-3 px-6">$100</td>
<td class="py-3 px-6">Stripe</td>
<td class="py-3 px-6">28 Dec 2024</td>
</tr>
<tr class="hover:bg-[#9ff550] transition-colors">
<td class="py-3 px-6">Yu Ula</td>
<td class="py-3 px-6">$37,037.04</td>
<td class="py-3 px-6">Binance</td>
<td class="py-3 px-6">05 Dec 2024</td>
</tr>
</tbody>
</table>
</div>
<!-- Withdrawal Table -->
<div id="withdrawalContent" class="mt-6 hidden">
<table class="mx-auto table-auto text-white w-full shadow-lg rounded-lg overflow-hidden">
<thead class="bg-gray-800">
<tr>
<th class="py-3 px-6 text-left text-sm font-semibold">Name</th>
<th class="py-3 px-6 text-left text-sm font-semibold">Amount</th>
<th class="py-3 px-6 text-left text-sm font-semibold">Gateway</th>
<th class="py-3 px-6 text-left text-sm font-semibold">Date</th>
</tr>
</thead>
<tbody>
<tr class="hover:bg-[#9ff550] transition-colors">
<td class="py-3 px-6">Yu Ula</td>
<td class="py-3 px-6">$10</td>
<td class="py-3 px-6">Stripe</td>
<td class="py-3 px-6">23 Nov 2024</td>
</tr>
<tr class="hover:bg-[#9ff550] transition-colors">
<td class="py-3 px-6">Yu Ula</td>
<td class="py-3 px-6">$70.73</td>
<td class="py-3 px-6">Midtrans</td>
<td class="py-3 px-6">23 Nov 2024</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- JavaScript for Tab Switching -->
<script>
document.getElementById('depositTab').addEventListener('click', function() {
document.getElementById('depositContent').classList.remove('hidden');
document.getElementById('withdrawalContent').classList.add('hidden');
document.getElementById('depositTab').classList.add('bg-gray-800');
document.getElementById('withdrawalTab').classList.remove('bg-gray-800');
});
document.getElementById('withdrawalTab').addEventListener('click', function() {
document.getElementById('withdrawalContent').classList.remove('hidden');
document.getElementById('depositContent').classList.add('hidden');
document.getElementById('withdrawalTab').classList.add('bg-gray-800');
document.getElementById('depositTab').classList.remove('bg-gray-800');
});
</script>
<style>
/* Make tables responsive */
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 10px;
text-align: left;
}
/* Make text center aligned on smaller screens */
@media screen and (max-width: 768px) {
h2 {
font-size: 2rem;
}
.text-center {
text-align: center;
}
.flex {
flex-direction: column;
}
.px-6 {
padding-left: 1.5rem;
padding-right: 1.5rem;
}
.py-3 {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
}
}
/* Make the tables scrollable on very small screens */
@media screen and (max-width: 480px) {
table {
display: block;
overflow-x: auto;
white-space: nowrap;
}
th, td {
display: inline-block;
}
}
</style>
<!-- Referral Bonus -->
<section class="py-20 px-6 text-center bg-cover bg-gradient-to-t from-gray-900 via-black to-transparent" style="background-image: url('https://hyip-pro.bugfinder.app/assets/themes/screaminlizard/img/bg/Vector-10.svg');">
<h2 class="text-4xl font-bold text-white">Referral Bonus Levels</h2>
<p class="mt-6 text-lg">Earn up to 60% commission for every successful referral! Invite your friends and grow your earnings.</p>
<div class="mt-8 grid grid-cols-1 sm:grid-cols-3 gap-8">
<div class="text-white p-6 rounded-lg">
<h3 class="text-2xl font-semibold">Level 1</h3>
<p class="text-xl mt-4">60% Commission</p>
</div>
<div class="text-white p-6 rounded-lg">
<h3 class="text-2xl font-semibold">Level 2</h3>
<p class="text-xl mt-4">30% Commission</p>
</div>
<div class="text-white p-6 rounded-lg">
<h3 class="text-2xl font-semibold">Level 3</h3>
<p class="text-xl mt-4">15% Commission</p>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 px-6 text-center bg-cover bg-gradient-to-t from-gray-900 via-black to-transparent" style="background-image: url('https://hyip-pro.bugfinder.app/assets/themes/screaminlizard/img/bg/Vector-10.svg');">
<div class="max-w-screen-xl mx-auto text-white">
<h2 class="text-4xl font-bold mb-12">What Our Clients Say</h2>
<!-- Testimonials Slider -->
<div class="relative overflow-hidden">
<div class="testimonial-slider flex transition-transform duration-1000 ease-in-out">
<!-- Testimonial 1 -->
<div class="p-8 bg-gray-800 rounded-lg border border-gray-700 w-full max-w-md mx-auto">
<p class="text-lg mb-4">"Hyippro has been a game changer for me. My investments have grown steadily, and I am earning more than I ever expected!"</p>
<p class="text-xl font-semibold text-blue-500">- Sarah Lee</p>
</div>
<!-- Testimonial 2 -->
<div class="p-8 bg-gray-800 rounded-lg border border-gray-700 w-full max-w-md mx-auto">
<p class="text-lg mb-4">"I highly recommend Hyippro to anyone looking for a trustworthy and secure investment platform. Their plans are well worth it!"</p>
<p class="text-xl font-semibold text-blue-500">- David Kim</p>
</div>
<!-- Testimonial 3 -->
<div class="p-8 bg-gray-800 rounded-lg border border-gray-700 w-full max-w-md mx-auto">
<p class="text-lg mb-4">"Excellent customer support and great returns on my investment. I am very happy with the results!"</p>
<p class="text-xl font-semibold text-blue-500">- Jessica Clark</p>
</div>
</div>
<!-- Navigation Buttons -->
<div class="absolute inset-0 flex justify-between items-center px-4">
<button id="prev" class="text-white bg-black bg-opacity-50 hover:bg-opacity-70 p-3 rounded-full"><i class="fas fa-chevron-left"></i></button>
<button id="next" class="text-white bg-black bg-opacity-50 hover:bg-opacity-70 p-3 rounded-full"><i class="fas fa-chevron-right"></i></button>
</div>
</div>
</div>
</section>
<script>
let currentSlide = 0;
const slides = document.querySelectorAll('.testimonial-slider > div');
const totalSlides = slides.length;
const sliderWrapper = document.querySelector('.testimonial-slider');
// Function to go to the next slide
function goToNextSlide() {
currentSlide = (currentSlide + 1) % totalSlides;
updateSliderPosition();
}
// Function to go to the previous slide