@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background: linear-gradient(359.96deg, #020333 -107.04%, #131342 103.76%);
    color: #212529;
    text-align: left;
  }


:root {
    --primary: #f1f1f1 !important;
    --secondary: #999 !important;
    --light: #F2F8FE !important;
    --dark: #111111 !important;
}
.bg-light{
  background-color: #F2F8FE !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}




/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    background: linear-gradient(185.41deg, #8852E4 29.7%, #3305a5 65%);
    border: none;
}
.bg-primary{
    background: linear-gradient(185.41deg, #8852E4 29.7%, #5712CB 65%);
}
.text-primary{
  color: #8852E4 !important;
}
.text-muted{
    color: #c5c7cc !important;
}
.bg-dark{
    background: linear-gradient(359.96deg, #020333 -107.04%, #0c0c31 103.76%);
}

a{
  color: #ffffff !important;
  text-decoration: none;
}
.display-4{
  font-weight: 700;
}
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal; 
}


/*** Navbar ***/
.navbar{
    background: linear-gradient(180deg, #08023f, #000);
}
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.hero-header {
    background: linear-gradient(180deg, #020919, rgba(0, 0, 0, 0.3)), 
                url('../images/Crypto2.gif') no-repeat right center/cover;
    min-height: 950px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}
.col-image {
    backdrop-filter: blur(4px) saturate(200%);
    -webkit-backdrop-filter: blur(4px) saturate(200%);
    background-color: rgba(17, 25, 40, 0.63);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 30% 70% 61% 39% / 30% 51% 49% 70%;
}



/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item .icon {
    padding: 20px;
    background: linear-gradient(185.41deg, #8852E4 29.7%, #3305a5 65%);
    border-radius: 100% 42% 44% 54% / 62% 18% 55% 35% ;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
}

.accordion .accordion-button {
    background: linear-gradient(185.41deg, #8852E4 29.7%, #3305a5 65%);
    color: #d2d5db;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: linear-gradient(185.41deg, #8852E4 29.7%, #3305a5 65%);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
    background: #0c0c31;
    color: #c5c7cc;
    border-left: 1px solid #3305a5;
    border-right: 1px solid #3305a5;
    border-bottom: 1px solid #3305a5;
    border-top: none;
    padding: 20px;

}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;

}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--dark);
}

.about-section {
    background: 
        url('../images/wave.png') center center / cover no-repeat,  #131342;
    position: relative;
    overflow: hidden;
}

/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url('../images/im4.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 200px;
    height: 200px;
    background: #8852E4;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}



.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #f1f1f1;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}
.card-header{
    min-height: 180px;
    background: url('../images/bg2.png');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.plan-section {
    background: 
        url('../images/invest-bg.png') center center / cover no-repeat,  linear-gradient(359.96deg, #020333 -107.04%, #131342 103.76%);
    position: relative;
    overflow: hidden;
}

.plan-section::before,
.plan-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-repeat: repeat;
    background-size: 200px 200px; /* Adjust for density of dots */
    opacity: 0.6;
    animation: moveDots 10s linear infinite;
}

.plan-section::before {
    background-image: radial-gradient(circle, white 2px, transparent 2px);
    animation-direction: alternate;
}

.plan-section::after {
    background-image: radial-gradient(circle, white 2px, transparent 2px);
    animation-direction: alternate-reverse;
    opacity: 0.3;
}

@keyframes moveDots {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px); /* Adjust for desired movement */
    }
    100% {
        transform: translate(-30px, -30px);
    }
}

.plan-card {
    background: #120f4a;
    border: 2px solid #3305a5; 
    border-radius: 7% 6% 94% 0% / 6% 7% 12% 10% ;
}

.plan-card .duration{
    border-bottom: 4px solid #3305a5;
}
.plan-card .card-text{
    font-size: 19px;
}

.step1{
    padding: 30px 0 30px 0;
    background: #120f4a;
    border-radius: 100% 10% 7% 10% / 11% 10% 10% 10%;
}
.step2 {
    padding: 30px 0 30px 0;
    background: #120f4a;
    border-radius:9% 10% 7% 84% / 9% 10% 10% 12%;
}
.affiliate {
    background: #120f4a;
    padding: 20px;
    border-radius: 15px;
}
.affiliate span {
    padding: 18px;
    background: linear-gradient(185.41deg, #8852E4 29.7%, #3305a5 65%);
    border-radius: 100% 10% 44% 54% / 62% 10% 55% 35% ;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 5px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

