@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: rgba(29,146,190,255) !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(135deg,
    rgba(29,146,190,255),
    rgba(29,146,190,255)) !important;
    border: 3px solid #fff; /* Lighter shade of the gradient color */
    border-radius: 5px; /* Optional for rounded edges */
    color: #fff; /* Text color for contrast */
    cursor: pointer;
    transition: 0.3s ease;
}

.btn.btn-primary:hover {
    border-color: rgba(29,146,190,255) !important; /* Slightly brighter on hover */
    box-shadow: 0 4px 8px rgba(29,146,190,255) !important; /* Add a soft shadow effect */
    color: #000000 !important;
}

.bg-primary{
    background: linear-gradient(135deg,
    rgba(29,146,190,255),
    rgba(29,146,190,255)) !important;
        
}
.text-primary{
  color: rgba(29,146,190,255) !important;
}
.text-muted{
    color: #c5c7cc !important;
}
.bg-dark{
    background:
    url('../images/invest-bg.png') center center / cover no-repeat, linear-gradient(359.96deg,
    #2596be -107.04%,
    #28667d 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; 
}

/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/

/*** Navbar ***/
.sticky-top,
.sticky-top .container {
    transition: 0.5s !important;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark) !important;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px !important;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 0px solid var(--primary);
    transition: 0.5s;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
}
.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 100%;
    border-width: 1px;
}

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 20px !important;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 15px !important;
        transition: 0.5s;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item.nav-link {
        margin: 15px 0 !important;
    }

}



.navbar .navbar-toggler {
    padding: 8px 15px;
}

/*** Header ***/
.hero-header {
    background: linear-gradient(180deg, #020919, rgba(0, 0, 0, 0.3)), 
    url('../images/bg-carousel2.jpg') no-repeat right center/cover;
    min-height: 100vh !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.hero-header{
    position: relative;
    overflow: hidden;
}

.hero-header .header-carousel-item::before{
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    border-radius: 300px;
    border: 100px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}


@keyframes RotateMoveCircle {
    0% {
        top: -400px;
    }

    50% {
        right: -200px;
    }

    75% {
        top: -200px;
    }

    100% {
        top: -400px;
    }
}

.hero-header::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 70px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}

@keyframes RotateMoveRight {
    0% {
        left: 0px;
    }

    50% {
        left: 70px;
    }

    100% {
        left: 0px;
    }
}

.hero-header::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 1200px;
    top: -150px;
    left: -265px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}

@keyframes RotateMoveLeft {
    0% {
        left: -240px;
    }

    50% {
        left: -300px;
    }

    100% {
        left: -240px;
    }
}

.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: 57% 16% 20% 64% / 51% 13% 15% 49% ;
}


.bg-gradient {
    background: #C9D6FF;
    background: -webkit-linear-gradient(to right, #E2E2E2, #C9D6FF); 
    background: linear-gradient(to right, #E2E2E2, #C9D6FF);
    } 
    ul li {
      margin-bottom:1.4rem;
    }
    .pricing-divider {
    border-radius: 20px;
    background: #C64545;
    padding: 1em 0 4em;
    position: relative;
    }
    .blue .pricing-divider{
    background: #2D5772; 
    }
    .green .pricing-divider {
    background: #1AA85C; 
    }
    .red b {
      color:#C64545
    }
    .blue b {
      color:#2D5772
    }
    .green b {
      color:#1AA85C
    }
    .pricing-divider-img {
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 80px;
    }
    .deco-layer {
        -webkit-transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
    }
    .btn-custom  {
      background:#C64545; color:#fff; border-radius:20px
    }
    
    .img-float {
      width:50px; position:absolute;top:-3.5rem;right:1rem
    }
    
    .princing-item {
      transition: all 150ms ease-out;
    }
    .princing-item:hover {
      transform: scale(1.05);
    }
    .princing-item:hover .deco-layer--1 {
      -webkit-transform: translate3d(15px, 0, 0);
      transform: translate3d(15px, 0, 0);
    }
    .princing-item:hover .deco-layer--2 {
      -webkit-transform: translate3d(-15px, 0, 0);
      transform: translate3d(-15px, 0, 0);
    }
    

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

.service-item .icon {
    padding: 20px;
    background: linear-gradient(135deg,
    rgba(29,146,190,255),
    rgba(29,146,190,255)) !important;
    border-radius: 50% 20% 40% 50% / 50% 20% 40% 30%;
}


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

.accordion .accordion-button {
    background: linear-gradient(135deg,
    rgba(29,146,190,255),
    rgba(29,146,190,255)) !important;
    color: #d2d5db;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: linear-gradient(135deg,
    rgba(29,146,190,255),
    rgba(29,146,190,255)) !important;
    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:
    url('../images/wave.png') center center / cover no-repeat, linear-gradient(359.96deg,
    #2596be -107.04%,
    #2596be 103.76%) !important;
    color: #c5c7cc;
    border-left: 3px solid rgba(29,146,190,255); /* Lighter shade of the gradient color */;
    border-right: 3px solid rgba(29,146,190,255); /* Lighter shade of the gradient color */;
    border-bottom: 3px solid rgba(29,146,190,255); /* Lighter shade of the gradient color */;
    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-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 {
    border-color: rgba(29,146,190,255) !important;
    color: rgba(29,146,190,255) !important;
    background-color: #fff !important;
}

.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, linear-gradient(359.96deg,
    #2596be -107.04%,
    #2596be 103.76%) !important;
    position: relative;
    overflow: hidden;
}

/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: url('../images/bg-3.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: linear-gradient(135deg,
    rgba(29,146,190,255),
    rgba(29,146,190,255)) !important;
    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,
    #2596be -107.04%,
    #2596be 103.76%);
    position: relative;
    overflow: hidden;
}
.bg-offer {
    background-color: rgb(228, 225, 225);
}

.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);
    }
}



/* Pricing Card */
.pricing-content {
    position: relative;
}

.pricing_design {
    position: relative;
    margin: 0px 15px;
}

.pricing_design .single-pricing {
    background: linear-gradient(135deg,
    rgba(29,146,190,255),
    rgba(29,146,190,255)) !important;
        border-radius: 50%;
    border-radius: 50%;;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px -10px rgba(0, 64, 128, .2);
    position: relative;
    z-index: 1;
}

.pricing_design .single-pricing:before {
    content: "";
    background-image: url(../images/wave.png) !important;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border-radius: 18px 18px 190px 18px;
    border: 1px solid #eee;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}



.price-head h2 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 600;
}

.price-head h1 {
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 5px;
}

.single-pricing ul {
    list-style: none;
    margin-top: 30px;
}

.single-pricing ul li {
    line-height: 36px;
}

.single-pricing ul li i {
    background: #554c86;
    color: #fff !important;
    width: 20px;
    height: 20px;
    border-radius: 30px;
    font-size: 11px;
    text-align: center;
    line-height: 20px;
    margin-right: 6px;
}


.price_btn {
    background: #554c86;
    padding: 10px 30px;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    border-radius: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.price_btn:hover {
    background: rgba(29,146,190,255);
}

.section-title {
    margin-bottom: 60px;
}

.text-center {
    text-align: center !important;
}

.section-title h2 {
    font-size: 45px;
    font-weight: 600;
    margin-top: 0;
    position: relative;
    text-transform: capitalize;
}

.step1{
    padding: 30px 0 30px 0;
    background: linear-gradient(359.96deg,
    #2596be -107.04%,
    #2596be 103.76%) !important;
    border-radius: 100% 10% 7% 10% / 11% 10% 10% 10%;
}
.step2 {
    padding: 30px 0 30px 0;
    background: linear-gradient(359.96deg,
    #2596be -107.04%,
    #2596be 103.76%) !important;
    border-radius: 10% 10% 10% 10% / 10% 10% 10% 10%;
}

.affiliate {
    background: linear-gradient(359.96deg,
    #2596be -107.04%,
    #2596be 103.76%) !important;
    padding: 20px;
    border-radius: 15px;
}
.affiliate span {
    padding: 18px;
    background: rgba(29,146,190,255) !important;
    border-radius: 1% 42% 44% 54% / 62% 18% 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;
}

