-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
935 lines (834 loc) · 38.6 KB
/
Copy pathindex.html
File metadata and controls
935 lines (834 loc) · 38.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Black Crest</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css" rel="stylesheet">
<link rel="icon" type="img/png" href="./img/project base logo.jpg" style="border-radius: 50%;">
<style>
.desktop-navbar {
backdrop-filter: blur(10px);
background-color: rgba(13, 13, 13, 0.3); /* Light transparency */
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: light;
font-style: normal;
}
html{
scroll-behavior: smooth;
}
html, body{
width: 100vw;
margin: 0;
padding: 0;
overflow-x: hidden;
box-sizing: border-box;
}
::before,
::after{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image:url("./img/background\ image.jpg") ;
background-size: cover;
color: #C5C6D9;
overflow-x: hidden;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: light;
font-style: normal;
padding-top: 70px;
}
.feature-box {
cursor: pointer;
padding: 1rem;
border-radius: 0.5rem;
background-color: #363740;
transition: 0.3s ease;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: light;
font-style: normal;
width: 100%;
}
.feature-box.active {
background: linear-gradient(to right, #3A3959, #777AA6);
color: white;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: light;
font-style: normal;
}
.feature-box:hover {
background-color: #3A3959;
}
.indicator-line {
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: linear-gradient(to bottom, #3A3959, #777AA6);
}
.content-tab {
display: none;
animation: fade 0.4s ease;
}
.content-tab.active {
display: block;
}
@keyframes fade {
from {opacity: 0;}
to {opacity: 1;}
}
.illustration img {
max-width: 100%;
height: auto;
}
.nav-link{
color: #C5C6D9;
}
.nav-link:hover{
color: #3A3959;
}
.nav-link {/* in the name of everything good and holy do not touch*/
--bs-link-hover-color: #777AA6; /* Your desired hover color */
--bs-nav-link-hover-color: var(--bs-link-hover-color);
}
.btn{
background: linear-gradient(to right, #777AA6, #3A3959);
color: #C5C6D9;
-bs-link-hover-color: #777AA6; /* Your desired hover color */
--bs-nav-link-hover-color: var(--bs-link-hover-color);
border: none;
}
.btn:hover{
opacity: 0.8; /* Slightly fade when hovered */
transform: scale(1.05); /* Slightly enlarge on hover */
transition: all 0.3s ease-in-out;
background-color: #3A3959;;
}
.navbar-brand img {
height: 60px;
width: 60px;
margin-right: 10px;
border-radius: 50%;
margin-left: 20px;
}
.features-bg{
background: linear-gradient(to right, #3A3959, #777AA6);
border-radius: 10px;
}
.accordion1 .accordion-item {
margin-bottom: 1.2rem;
overflow: hidden;
background-color: transparent !important;
border: 1px solid #3A3959 ; /* light border */
border-radius: 10px;
}
.accordion1 .accordion-button {
opacity: 0.3;
color: #C5C6D9 !important;
opacity: 1 !important;
font-weight: 600;
padding: 1.75rem 1.75rem;
box-shadow: none;
transition: background 0.3s ease;
font-size: 2rem;
background-color: transparent !important;
border: none;
}
.accordion1 .accordion-button:not(.collapsed) {
background: linear-gradient(to right, #3A3959, #777AA6);
border-bottom: none;
}
.accordion1 .accordion-button:focus {
box-shadow: none;
}
.accordion1 .accordion-body {
background: linear-gradient(to right, #3A3959, #777AA6);
color: #C5C6D9;
padding: 1.25rem 1.5rem;
border-top: 2px solid rgba(255, 255, 255, 0.05);
font-size: 1.1rem;
background-color: transparent;
}
.accordion-button::after {
filter: brightness(200%); /* makes the arrow icon pop on dark bg */
}
.newsletter-section {
background: linear-gradient(to right, #777AA6, #3A3959, #3A3959);
border-radius: 8px;
}
.blackcrest-bg {
background-color: #000;
background-image: url('/path/to/stars-bg.jpg'); /* Replace with actual background or remove */
background-size: cover;
background-position: center;
position: relative;
}
.circle-icon {
width: 100px;
height: 100px;
background-color: #1c1c1c;
border-radius: 50%;
}
a,
a:hover,
a:focus {
outline: none;
text-decoration: none;
}
.btn_theme3 {
color: var(--vtc-text-white-1);
background: linear-gradient(to right, #777AA6, #3A3959);;
position: relative;
overflow: hidden;
display: inline-flex;
justify-content: center;
align-items: center;
padding: 19px 24px;
text-transform: capitalize;
font-size: 16px;
border-radius: 4px;
min-width: -moz-max-content;
min-width: max-content;
transition: all 0.65s ease-in-out;
position: relative;
z-index: 1;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 18px; /* 100% */
text-decoration: none;
}
.pera{
padding : 15px 0px;
font-weight: bold;
}
a{
--bs-link-hover-color: #777AA6; /* Your desired hover color */
--bs-nav-link-hover-color: var(--bs-link-hover-color);
color:#C5C6D9 ;
}
#preloader {
transition: opacity 2s ease;
}
.custom-spinner {
box-sizing: border-box;
position: absolute;
top: 0; left: 0;
width: 90px;
height: 90px;
border: 5px solid #3A3959;
border-top: 2px solid #777AA6;
border-radius: 50%;
animation: spin 1s linear infinite;
z-index: 1;
}
@keyframes spin {
0% { transform: rotate(0deg);}
100% { transform: rotate(360deg);}
}
@media (max-width: 780px) {
.desktop-navbar {
display: none !important;
}
}
@media (min-width: 781px) {
.mobile-navbar {
display: none ;
}
}
/* Mobile Optimization CSS for Small Phones*/
@media (max-width: 576px) {
/* Resize hero text */
H1.display-5 {
Font-size: 1.6rem;
Padding: 0 1rem;
Text-align: center;
padding-top: 30px;
}
p.lead, p {
font-size: 0.95rem;
padding: 0 1rem;
text-align: center;
}
.first .lead {
Padding: 0 1rem;
Margin-bottom: 1.5rem;
}
/* Adjust buttons */
.btn_theme3 {
Font-size: 0.9rem;
Padding: 0.75rem 1.25rem;
Width: 100%;
Text-align: center;
}
.buttons {
Display: flex;
Justify-content: center;
Padding: 0 1rem;
}
/* Make image sections responsive */
.img-fluid {
Max-width: 100%;
Height: auto;
Margin: auto;
Display: block;
}
/* Remove horizontal paddings/margins */
.px-5, .ms-4, .ps-0, .px-4, .ms-0 {
Padding-left: 1rem !important;
Padding-right: 1rem !important;
Margin-left: 0 !important;
Margin-right: 0 !important;
}
/* Fix feature tabs layout */
.feature-box {
Font-size: 0.9rem;
Text-align: center;
margin: 0 auto;
width: 90%;
padding: 1rem;
}
.content-tab img {
margin: 0 auto;
}
.feature-box h5 {
Font-size: 1.1rem;
}
.indicator-line {
Display: none;
}
/* Reduce heading sizes */
H2.display-5, h4, h5 {
Font-size: 1.5rem;
Text-align: center;
}
.accordion-button {
Font-size: 1.1rem !important;
}
/* Responsive newsletter section */
.newsletter-section form {
Flex-direction: column;
Gap: 0.75rem;
}
.newsletter-section input[type=”email”] {
Width: 100%;
}
.newsletter-section button {
Width: 100%;
}
/* Footer stack */
Footer .row {
Flex-direction: column;
Text-align: center;
}
Footer .col {
Margin-bottom: 1.5rem;
}
.hero-img{
max-width: 70%;
}
}
@media (max-width: 1000px){
body{
padding-top: 95px;
}
}
@media (max-width: 780px){
body{
padding-top: 70px;
}
}
carousel-group {
Display: flex;
Justify-content: center;
Gap: 0.75rem;
Flex-wrap: nowrap;
}
.carousel-img {
Width: 100px;
Height: auto;
Border-radius: 10px;
}
/* Smaller sizes = smaller images */
@media (max-width: 768px) {
.carousel-img {
Width: 90px;
}
}
@media (max-width: 576px) {
.carousel-img {
Width: 80px;
}
}
@media (max-width: 480px) {
.carousel-img {
Width: 70px;
}
}
@media (max-width: 360px) {
.carousel-img {
Width: 60px;
}
}
</style>
</head>
<body>
<div id="preloader" style="position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:2000;background:#181828;display:flex;align-items:center;justify-content:center;">
<div style="position:relative; width:90px; height:90px; display:inline-block;">
<div class="custom-spinner"></div>
<img src="./img/project base logo.jpg" alt="Loading..." style="width:60px;height:60px;border-radius:50%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);">
</div>
</div>
<!-- ✅ Mobile Navbar with Offcanvas Sidebar -->
<nav class="navbar navbar-dark fixed-top mobile-navbar">
<div class="container-fluid ">
<a class="navbar-brand" href="#"> </a>
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#mobileSidebar" aria-controls="mobileSidebar">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="offcanvas offcanvas-start text-bg-dark" tabindex="-1" id="mobileSidebar">
<div class="offcanvas-header">
<h5 class="offcanvas-title">
<div class="col-md-3 ms-0 px-0 mb-md-0">
<a class="navbar-brand d-flex align-items-center" href="./index.html">
<img src="./img/project base logo.jpg" alt="Black Crest Logo">
<span class="text-white fw-bold ms-0 px-0">Black Crest</span>
</a>
</div>
</h5>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="offcanvas"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="#">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#work">Pricing</a></li>
<li class="nav-item"><a class="nav-link" href="#faq">FAQs</a></li>
<li class="nav-item"><a class="nav-link" href="#"></a></li>
</ul>
<button class="btn btn-success w-100 mt-2 mb-4" onclick="window.location.href='login.html';">Login</button>
<div class="single-footer-items">
<h3 style="font-weight: bold;">Contact Us</h3>
<div class="contact-box">
<div class="pera">
<a href="tel: +2347066711304" >+234 706 671 1304</a><br>
<a href="tel:+234 813 413 2449"> +234 813 413 2449</a>
</div>
</div>
<div class="contact-box">
<div class="pera">
<a href="">info@mail.com</a>
</div>
</div>
<div class="contact-box">
<div class="pera">
<a href="">8502 Preston Rd. <br> Inglewoo Maine 98380</a>
</div>
</div>
</div>
<div class="contact-infos">
<h3 style="font-weight: bold;">Our Location</h3>
<div class="d-flex mt-4 pt-1">
<a href="#!" class="text-white"><i class="fab fa-facebook-f fa-lg"></i></a>
<a href="#!" class="text-white"><i class="fa-brands fa-x-twitter fa-lg mx-4 px-2"></i></a>
<a href="#!" class="text-white"><i class="fab fa-google fa-lg"></i></a>
<!--<a href="#!" class="text-white"><i class="fa-brands fa-apple fa-lg px-3"></i></a> -->
</div>
</div>
</div>
</div>
</nav>
<!-- ✅ Desktop Full Navbar -->
<div class="desktop-navbar fixed-top py-3 px-4 ">
<div class="container-fluid d-flex flex-wrap align-items-center justify-content-center justify-content-md-between ">
<div class="col-md-3 mb-2 mb-md-0">
<a class="navbar-brand d-flex align-items-center" href="./index.html">
<img src="./img/project base logo.jpg" alt="Black Crest Logo">
<span class="text-white fw-bold">Black Crest</span>
</a>
</div>
<ul class="nav col-12 col-md-auto mb-2 justify-content-center mb-md-0">
<li><a href="#" class="nav-link px-4 ">Home</a></li>
<li><a href="#about" class="nav-link px-4">About</a></li>
<li><a href="#work" class="nav-link px-4">Work</a></li>
<li><a href="#" class="nav-link px-2"> </a></li>
<li><a href="#faq" class="nav-link px-2">FAQ</a></li>
</ul>
<div class="col-md-3 text-end">
<button onclick="window.location.href = 'login.html';" type="button" class="btn me-4">Login</button>
</div>
</div>
</div>
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="row align-items-center">
<div class="col-lg-7">
<div class="first">
<h1 class="display-5 fw-bold lh-1 mb-3 ms-4 px-5" data-aos="fade-right" data-aos-duration="1300 ">EMPOWERING THE FUTURE OF FINTECH</h1>
<p class="lead mb-3 px-5 ms-4" data-aos="fade-right" data-aos-duration="1300" >Step into a new era of financial technology with Black Crest — where precision, protection, and innovation converge. From AI-powered investing to secure blockchain infrastructure, we’re building tools that redefine the way businesses and individuals interact with money. This is more than finance. This is trust, elevated.</p>
</div>
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
<!-- <button type="button" class="btn btn-primary btn-lg ms-5 px-5 ">Primary</button> -->
<div class="buttons px-5 ms-4 " data-aos="fade-right" data-aos-duration="1300">
<a href="./sign up.html" class="btn_theme3 btn_theme_active3 mt_40 wow fadeInDown" data-wow-duration="0.8s">Join the Revolution <i class="fa-solid fa-arrow-right"></i><span></span></a>
</div>
</div>
</div>
<div class="col-12 col-lg-5">
<img src= "./img/first paragraph picture.jpg" class="d-block mx-auto img-fluid mt-3 " data-aos="fade-left" data-aos-duration="1300" alt="" width="500" height="500" loading="lazy" style="border-radius: 50%;">
</div>
</div>
</div>
<div class="px-4 py-5 text-center" >
<h1 class="display-5 fw-bold text">Leading Fintech Innovators & Visionaries</h1>
<div class="px-4 py-5 my-5 text-center">
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">
<div id ="carouselExampleSlidesOnly" class ="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active ">
<div class="d-flex justify-content-center flex-wrap gap-3 carousel-group">
<img src="./img/hero3-slider1.png" class="carousel-img" alt="Slide 1">
<img src="./img/hero3-slider2.png" class="carousel-img" alt="Slide 2">
<img src=" ./img/hero3-slider4.png" class="carousel-img" alt="Slide 3">
</div>
</div>
</div>
</div>
</p>
</div>
<div id="about"></div>
</div>
</div>
<div >
<div class="container px-0" >
<div class="row gx-0">
<div class="col-6 px-0">
<h1 class="display-5 fw-bold lh-1 mb-3 ms-0 ps-0 " >Enter The Realm Of Intelligent Finance</h1>
<p class="lead mb-3 ms-0 ps-0" data-aos="fade-right" data-aos-duration="800"> BlackCrest is reshaping the financial frontier with cutting-edge fintech solutions, secure blockchain integration,
and AI-powered services. Step beyond traditional banking and unlock the power of connected, intelligent finance.</p>
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
<div class="buttons px-1 " data-aos="fade-right" data-aos-duration="1300">
<a href="buy.html" class="btn_theme3 btn_theme_active3 mt_40 wow fadeInDown" data-wow-duration="0.8s">Join the Revolution <i class="fa-solid fa-arrow-right"></i><span></span></a>
</div>
</div>
</div>
<div class="col-2">
</div>
<div class="col-4">
<img src="./assets/icon3.png" class="d-block mx-lg-auto img-fluid" data-aos="fade-left" data-aos-duration="1300" alt="" width="500" height="500" loading="lazy" style="border-radius: 50%;">
</div>
</div>
</div>
<div class="px-5 pt-5 my-5 text-center ">
<h1 class="display-4 fw-bold text"> BlackCrest Roadmap</h1>
<h4 class="fw-bold text"> Build. Secure. Dominate.</h4>
<div class="col-lg-6 mx-auto">
</div>
<div class="overflow-hidden" style="max-height: 30vh;">
<div class="container px-5">
<img src="./assets/icon8.png" class="img-fluid shadow-lg mb-4 pt-5" alt="" width="700" height="500" loading="lazy">
</div>
</div>
<div id ="work"></div>
</div>
</div>
<section class="py-5" >
<div class="container">
<h2 class="text-center fw-bold mb-5">Why Black Crest?</h2>
<div class="row align-items-start">
<!-- Left Column: Feature Tabs -->
<div class="col-lg-5 position-relative mb-4 mb-lg-0">
<div class="indicator-line" data-aos="fade-up" data-aos-duration="1000"></div>
<div class="d-flex flex-column gap-3 ps-4" data-aos="fade-up" data-aos-duration="1000">
<div class="feature-box active" data-id="1"> <h5 class="fw-bold mb-1">Power</h5> <p>Unleash decentralized infrastructure to break boundaries. Blockchain fuels systems that can’t be stopped, silenced, or owned.</p></div>
<div class="feature-box" data-id="2"> <h5 class="fw-bold mb-1">Proof </h5> <p>Every action is verifiable. Immutable records mean no disputes—just facts, secured by code and consensus</p></div>
<div class="feature-box" data-id="3"> <h5 class="fw-bold mb-1">Control</h5> <p>Take back ownership. Your assets, your identity, your rules—no intermediaries, no compromise.</p></div>
</div>
</div>
<!-- Right Column: Tab Content -->
<div class="col-lg-7">
<div id="tab-1" class="content-tab active px-5" data-aos="fade-up" data-aos-duration="1000">
<img src="./assets/icon10.png" alt="Flexibility Image" class="illustration mb-3" height="400" width="400">
<p>Flexibility allows organizations to adapt blockchain for unique business needs, enabling custom workflows and decentralized control.</p>
</div>
<div id="tab-2" class="content-tab px-5" data-aos="fade-up" data-aos-duration="1000">
<img src="./assets/icon9.png" alt="Transference Image" class="illustration mb-3" height="400" width="300">
<p>Transference ensures secure and immutable value exchange across networks, speeding up transactions and enhancing transparency.</p>
</div>
<div id="tab-3" class="content-tab px-5" data-aos="fade-up" data-aos-duration="1000">
<img src="./assets/icon11.png" alt="Security Image" class="illustration mb-3" height="400" width="400">
<p>Blockchain enhances security with cryptographic hashing and decentralization, minimizing fraud and ensuring trustless systems.</p>
</div>
</div>
</div>
</div>
</section>
<div class="container">
<div class="row align-items-center mb-5" >
<div class="col-lg-6">
<div class="heading3">
<h2 class=" display-5 fw-bold text mb-3">Why It Matters to Your Business ?</h2>
<div class="space16"></div>
<p data-aos="fade-right" data-aos-duration="800" > We’ve helped 400+ companies harness blockchain to transform operations, secure data, and unlock new revenue
and we’re just getting started.</p>
</div>
</div>
<div class="col">
<div class="row row-cols-1 row-cols-sm-2 g-4">
<div class="col d-flex flex-column gap-2">
<a href="" class="btn btn-primary btn-lg fw-bold" data-aos="zoom-out" data-aos-duration="700">Smart Contracts</a>
</div>
<div class="col d-flex flex-column gap-2">
<a href="" class="btn btn-primary btn-lg fw-bold" data-aos="zoom-out" data-aos-duration="900" >Instant Pay</a>
</div>
<div class="col d-flex flex-column gap-2">
<a href="" class="btn btn-primary btn-lg fw-bold" data-aos="zoom-out" data-aos-duration="1100">Secure Storage</a>
</div>
<div class="col d-flex flex-column gap-2">
<a href="" class="btn btn-primary btn-lg fw-bold" data-aos="zoom-out" data-aos-duration="800">Verified Voting</a>
</div>
</div>
</div>
</div>
<div class="container ms-0 ps-0 mb-5 px-5" data-aos="fade-left" data-aos-duration="1300">
<div class="features-bg ">
<div class="row align-items-center ">
<div class="col-lg-6">
<div class="main-image py-5" >
<img src="./assets/icon4.png" class="d-block mx-lg-auto img-fluid" width="300" height="300" loading="lazy" style="border-radius: 50%;" >
</div>
</div>
<div class="col-lg-6 px-4" >
<div class="heading3-w">
<h2 class=" display-5 fw-bold text ">Blockchain: Transforming Trust in Business</h2>
<p >Our team has developed blockchain solutions for over 400 PayCoin companies—and we're still growing. By reducing paperwork and minimizing disputes, we enhance customer satisfaction and introduce groundbreaking business innovations. The shared record of truth offered by blockchain is invaluable.</p>
<div class="" >
<a href="market.html" class="btn_theme3 mt_40 wow fadeInDown" data-wow-duration="0.8s">Join The Revolution <i class="fa-solid fa-arrow-right"></i><span></span></a>
</div>
</div>
</div>
</div>
</div>
</div>
<section class ="py-5 text-white blackcrest-bg">
<div class="container">
<div class="row text-center mb-5">
<div class="col">
<h2 class="display-5 fw-bold">What We Deliver</h2>
<p class="lead">Empowering businesses with futuristic financial solutions through blockchain and AI.</p>
</div>
</div>
<div class="row text-center" data-aos="fade-up" data-aos-duration="1000">
<!-- Card 1 -->
<div class="col-md-4 mb-4" data-aos="fade-up" data-aos-duration="1000">
<div class="mb-3">
<div class="mx-auto mb-3" data-aos="fade-up" data-aos-duration="1000" style="width:100px; height:100px; border-radius:50%; overflow:hidden; background:#1c1c1c; display:flex; align-items:center; justify-content:center;">
<img src="./assets/icon12.png" alt="Blockchain Integration" style="width:100%; height:100%; object-fit:cover;">
</div>
</div>
<h4 class="fw-semibold">Blockchain Integration</h4>
<p>Seamless and secure blockchain solutions tailored to modern enterprise needs.</p>
<a href="#" class="btn btn-outline-light btn-sm">Learn More »</a>
</div>
<!-- Card 2 -->
<div class="col-md-4 mb-4" data-aos="fade-up" data-aos-duration="1000">
<div class="mb-3">
<div class="mx-auto mb-3" data-aos="fade-up" data-aos-duration="1000" style="width:100px; height:100px; border-radius:50%; overflow:hidden; background:#1c1c1c; display:flex; align-items:center; justify-content:center;">
<img src="./assets/icon13.png" alt="Blockchain Integration" style="width:100%; height:100%; object-fit:cover;">
</div>
</div>
<h4 class="fw-semibold">AI-Driven Insights</h4>
<p>Intelligent data analytics to enhance financial decision-making and automation.</p>
<a href="#" class="btn btn-outline-light btn-sm">Learn More »</a>
</div>
<!-- Card 3 -->
<div class="col-md-4 mb-4" data-aos="fade-up" data-aos-duration="1000">
<div class="mb-3">
<div class="mx-auto mb-3" data-aos="fade-up" data-aos-duration="1000" style="width:100px; height:100px; border-radius:50%; overflow:hidden; background:#1c1c1c; display:flex; align-items:center; justify-content:center;">
<img src="./assets/icon14.png" alt="Blockchain Integration" style="width:100%; height:100%; object-fit:cover;">
</div>
</div>
<h4 class="fw-semibold">Secure Digital Wallets</h4>
<p>Multi-layered security and UX-friendly wallets for global digital asset management.</p>
<a href="#" class="btn btn-outline-light btn-sm">Learn More »</a>
</div>
</div>
</div>
</section>
<div class= "container ms-0 ps-0 mb-5 " data-aos="fade-left" data-aos-duration="1300" >
<div class="features-bg ">
<div class="row align-items-center ">
<div class="col-lg-6">
<div class="heading3-w px-3 text-center">
<h2 class=" display-5 fw-bold text mb-3 mt-4">Blockchain: Empowering Growth and Transparency</h2>
<p>Blockchain isn’t just about efficiency—it’s about redefining trust in business. With over 400 PayCoin companies integrating our solutions, we’re paving the way for seamless operations and secure transactions. By ensuring a shared, verifiable record, we minimize conflicts, streamline processes, and unlock new opportunities for innovation.</p>
<div class="" >
<a href="market.html" class="btn_theme3 mt_40 wow fadeInDown" data-wow-duration="0.8s">Join The Revolution <i class="fa-solid fa-arrow-right"></i><span></span></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="main-image">
<img src="./assets/icon2.png" class="d-block mx-lg-auto img-fluid" width="500" height="500" loading="lazy" style="border-radius: 50%;" >
</div>
</div>
</div>
<div id="faq" class="pb-5"></div>
</div>
</div>
<!--accordion goes here-->
<div class="container">
<div class="row">
<div class="col-lg-6 m-auto text-center">
<div class="heading3">
<span class="span" data-aos="zoom-in-left" data-aos-duration="700" ><span>FREQUENTLY ASKED QUESTIONS</span></span>
<h2 class="display-5 fw-bold text mb-5">Popular Questions </h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-10 m-auto">
<div class="accordion accordion1" id="accordionExample">
<div class="accordion-item active" data-aos="fade-up" data-aos-duration="700" >
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
What is BlackCrest?
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
<div class="accordion-body">
BlackCrest is a next-generation fintech platform integrating AI, blockchain, and decentralized technologies to deliver intelligent financial services for modern investors and enterprises.
</div>
</div>
</div>
<div class="accordion-item" data-aos="fade-up" data-aos-duration="900" >
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
How does BlackCrest use blockchain technology?
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionExample">
<div class="accordion-body">
BlackCrest leverages blockchain for enhanced security, transparency, and smart contract automation—making financial transactions more efficient and trustless.
</div>
</div>
</div>
<div class="accordion-item" data-aos="fade-up" data-aos-duration="1100" >
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Who can use BlackCrest's platform?
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionExample">
<div class="accordion-body">
BlackCrest is built for both individual investors and institutional clients who are looking to explore smart financial systems, automated investing, and decentralized asset management.
</div>
</div>
</div>
<div class="accordion-item" data-aos="fade-up" data-aos-duration="1300" >
<h2 class="accordion-header" id="headingFour">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
Is BlackCrest secure for handling digital assets?
</button>
</h2>
<div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour" data-bs-parent="#accordionExample">
<div class="accordion-body">
Yes. Security is at the core of BlackCrest. We use advanced encryption, decentralized protocols, and rigorous compliance standards to safeguard all user data and digital transactions.
</div>
</div>
</div>
<div class="accordion-item" data-aos="fade-up" data-aos-duration="1000" >
<h2 class="accordion-header" id="headingFive">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFive" aria-expanded="false" aria-controls="collapseFive">
What makes BlackCrest different from other financial platforms?
</button>
</h2>
<div id="collapseFive" class="accordion-collapse collapse" aria-labelledby="headingFive" data-bs-parent="#accordionExample">
<div class="accordion-body">
BlackCrest combines AI-driven analytics, decentralized finance (DeFi), and blockchain-backed infrastructure to offer faster, smarter, and more transparent financial solutions—beyond what traditional banks can deliver.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="newsletter-section text-white py-5 mt-lg-5" data-aos="fade-right" data-aos-duration="1300">
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-md-7">
<h2 class="fw-bold px-3 display-5">Join the Future of Finance. </h2>
</div>
<div class="col-md-5">
<form class="d-flex">
<input type="email" class="form-control form-control-lg me-2" placeholder="Email Address" required>
<button class="btn btn-light btn-md fw-bold" type="submit">
Subscribe <i class="bi bi-box-arrow-up-right"></i>
</button>
</form>
</div>
</div>
</div>
</div>
<footer class="row row-cols-1 row-cols-sm-2 row-cols-md-5 py-5 my-5 ">
<div class="col mb-3">
<a href="/" class="d-flex align-items-center mb-3 link text-decoration-none" aria-label="Bootstrap">
<svg class="bi me-2" width="40" height="32" aria-hidden="true"><use xlink:href="#bootstrap"></use>
</svg>
</a>
<p class="text secondary display-5 fw-bold text mb-3">BlackCrest.</p>
</div>
<div class="col mb-3">
</div>
<div class="col mb-3">
<h5>Explore</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">Intelligent Vault</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">AI Wallet </a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">DeFi Integration</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">Smart Contracts</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">API Suite</a></li>
</ul>
</div>
<div class="col mb-3">
<h5>Solutions</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">Blockchain Infrastructure</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">AI-powered Tools</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">Finance-as-a-Service</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">Secure Transactions</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">Token Analytics</a></li>
</ul>
</div>
<div class="col mb-3">
<h5>Quick Links</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">About BlackCrest</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">Technology Stack</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">Media & Blog</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">Careers</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-secondary">Support</a></li>
</ul>
</div>
</footer>
</div>
<hr />
<p style="text-align: center; margin: auto;"> © 2025 BlackCrest Inc</p>
<script src="./js/home.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/js/bootstrap.bundle.min.js" integrity="sha384-j1CDi7MgGQ12Z7Qab0qlWQ/Qqz24Gc6BM0thvEMVjHnfYGF0rmFCozFSxQBxwHKO" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>