/*
========================
GLOBAL CSS START HERE 
========================
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {	 
    font-family: "Roboto", sans-serif;
    font-family: "Inter", sans-serif;  
    font-size: 16px;
    font-weight: 400;    
	background: #11111B;
	color: #fff;	
}
section {
    overflow: hidden;
}
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: white;
    background: #26D2DD;
}

::-webkit-selection {
    color: white;
    background: #26D2DD;
}

::-moz-selection {
    color: white;
    background: #26D2DD;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: linear-gradient(90deg, #26D2DD 0%, #2C10EB 100%);
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}
.scrolltotop:hover {
    color: #fff;
}
.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: linear-gradient(90deg, #26D2DD 0%, #2C10EB 100%);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}



/*
========================
HEADER CSS START HERE 
========================
*/
.dots1_wrapper {
    padding-top: 45px;
    overflow: hidden;
}
.headerLogo a.logo img {
    width: 100%;
    max-width: 130px;
}
.header_menuLink {
    width: 100%;
    max-width: 490px;
    background-color: #000000;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    border-radius: 10px;
    position: relative;
}
.header_menuLink::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 10px;
    background: linear-gradient(to right, rgba(44, 16, 235, 1), rgba(38, 210, 221, 1));
    z-index: -1;
}

.header_menuLink:hover {
    box-shadow: 0 0 10px rgba(44, 16, 235, 1), 0 0 10px rgba(38, 210, 221, 1); /* Glowing effect */
}

.header_menuLink::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.4s;
}
.header_menuLink:hover:before {
    background: linear-gradient(to right, rgba(44, 16, 235, 1), rgba(38, 210, 221, 1));

}
.offcanvas {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}



.header_menuLink li a {
    color: #FFF;
    font-size: 12px;
    font-weight: 300;
    display: block;
    padding: 12px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.header_menuLink li a:hover {
    color: #1ff0ff;
}

.header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header_right > a.login_btn {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 48px;
    color: #FFF;
    font-size: 12px;
    font-weight: 300;
    border-radius: 10px;
}
.header_right > a.login_btn:hover {
    background: #000;
    box-shadow: 0 0 30px rgba(44, 16, 235, 0.5), 0 0 30px rgba(38, 210, 221, 0.5); /* Glowing effect */
}
.header_right > a.signup_btn {
    width: 120px;
    height: 48px;
    border-radius: 10px;
    background: #0A0A14;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    position: relative;
    
}
.header_right > a.signup_btn::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: red;
    background: conic-gradient(from 270deg at 50% 50%, #2C10EB 0deg, #26D2DD 360deg);
    filter: blur(10px);
    z-index: -1;
    transition: 0.5s;
}
.header_right > a.signup_btn:hover:before {
    filter: blur(20px);
}


/*
========================
HERO CSS START HERE 
========================
*/
.heroColbg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.hero_content {
    width: 100%;
    max-width: 1065px;
    margin: 0 auto;
    padding-top: 330px;
    padding-bottom: 50px;
}
.hero_content > h1 {
    color: #FFF;
    font-size: 90px;
    font-weight: 300;
    text-align: center;
}
.hero_content > h1 .textIcon img {
    width: 150px;
}
.hero_content > h1 .textIcon {
    display: inline-block;
    animation: textIcon 8s linear infinite;
}

@keyframes textIcon {
    0% {
      margin-right: -180px;
      opacity: 0;
    }
  
    10% {
      margin-right: -180px;
      opacity: 0;
    }
  
    40% {
      margin-right: 0;
      opacity: 1;
    }
  
    60% {
      margin-right: 0;
      opacity: 1;
    }
  
    90% {
      margin-right: -180px;
      opacity: 0;
    }
  
    100% {
      margin-right: -180px;
      opacity: 0;
    }
  }
  

  

  

.hero_content > p {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 180%;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 40px;
}
.hero_content > a.scroll_btn {
    width: 100%;
    max-width: 185px;
    min-height: 48px;
    border-radius: 10px;
    background: #0A0A14;
    margin: 0 auto;
    color: #FFF;
    font-size: 12px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 10px rgba(44, 16, 235, 1), 0 0 10px rgba(38, 210, 221, 1);
    margin-top: 70px;
    transition: 0.3s;
}
.hero_content > a.scroll_btn img {
    animation: iconrotate 3s linear infinite;

}
@keyframes iconrotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.hero_content > a.scroll_btn:hover {
    background: linear-gradient(90deg, #26D2DD 0%, #2C10EB 100%);
    box-shadow: 0 0 30px rgba(44, 16, 235, 0.5), 0 0 30px rgba(38, 210, 221, 0.5);
}
.hero_content > a.viewSubs_btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
}
.hero_content > a.viewSubs_btn:hover {
    color: #26D2DD;
}
.hero_content > img.overlay1 {
    width: 100%;
    max-width: 650px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: img_updown 7s linear infinite;
}
 @keyframes img_updown {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
    }
 }
 


/*
========================
BRAND CSS START HERE 
========================
*/
.dotsmainBg {
    background-image: url(images/dotsMainbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.brand_area {
    padding-top: 250px;
}
.brand_content {
    width: 100%;
    max-width: 1310px;
    margin: 0 auto;
}
.brand_content > h2 {
    color: #FFF;
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
}
.brand_content > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand_content > ul li a {
    display: block;
}



/*
========================
AI-DRIVEN CSS START HERE 
========================
*/
.aiDriven_area {
    padding-top: 200px;
    padding-bottom: 100px;
}
.aiDriven_header > h2 {
    color: #809fb8;
    font-size: 96px;
    font-weight: 400;
    margin-bottom: 40px;
}
.aiDriven_slider .slick-list {
    padding-top: 20px;
    padding-bottom: 20px;
}
.aiDriven_header > h2 small {
    font-size: 32px;
    font-weight: 300;
}
.aiDriven_card {
    padding: 12px;
    border-radius: 20px;
    border: 1px solid #999;
    background: #F9F5FE;
    transition: 0.3s;
}
.aiDriven_card:hover {
    transform: rotate(5deg);
    
    box-shadow: 0 0 10px rgba(44, 16, 235, 1), 0 0 10px rgba(38, 210, 221, 1); 
}
.aiDriven_card > img {
    width: 100%;
}
.aiDriven_card > h3 {
    color: #272727;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    text-align: center;
    margin-top: 20px;
}
.aiDriven_card > p {
    color: #809FB8;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 10px;
}
.aiDriven_card > button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #D9D9D9;
    font-size: 30px;
    line-height: 100%;
    margin-left: auto;
    margin-top: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #589CFF;
}
.aiDriven_slider .slick-slide {
    margin: 0 5px; /* Adjust spacing as needed */
}
.aiDrivenSlide_btn > ul {
    width: 235px;
    margin: 0 auto;
    border-radius: 10px;
    background: #0A0A14;
    padding: 4px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 30px rgba(44, 16, 235, 0.5), 0 0 30px rgba(38, 210, 221, 0.5);
}
.aiDrivenSlide_btn ul li a.active {
    width: 100%;
    min-height: 40px;
    border-radius: 7px;
    background: linear-gradient(90deg, #26D2DD 0%, #2C10EB 100%);
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aiDrivenSlide_btn ul li a:hover {
    background: linear-gradient(90deg, #26D2DD 0%, #2C10EB 100%);
}
.aiDrivenSlide_btn ul li a {
    width: 100%;
    min-height: 40px;
    border-radius: 7px;
    background: transparent;
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.aiDrivenSlide_btn ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    margin-top: 20px;
}
.aiDrivenSlide_btn ul li:first-child {
    width: 45%;
}
.aiDrivenSlide_btn ul li:last-child {
    width: 55%;
}


.aiPowered_area {
    padding-top: 150px;
    padding-bottom: 150px;
}
.aiPowered_area .aiDriven_header h2 {
    color: #809fb8;
    margin-bottom: 90px;
    position: relative;
    z-index: 5;
}
.priceCard_content > div h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}
.priceCard_content > div p {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 18px;
}
.priceCard_content > div hr {
    border: 1px solid #fff;
    opacity: 1;
}
.priceCard_content > div h4 {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
}
.priceCard_content > div h4 span {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    margin-left: 15px;
}
.priceCard_content > div h6 {
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    line-height: 120%;
    margin-top: 70px;

    margin-bottom: 20px;
}
.priceCard_content > div ul li {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
    overflow: hidden;
}
.priceCard_content > div ul li::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(images/icon/icon2.svg);
    background-repeat: no-repeat;
    background-size: 15px;
}
.priceCard_content {
    height: 100%;
    border-radius: 20px;
    border: 2px solid #FFF;
    background: #11111B;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    z-index: 5;
}
.priceCard_content::before {
    content: "";
    display: block;
    width: 100px;
    height: 6px;
    border-radius: 25px;background: #FFF;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}
.priceCard_content.active::before {
    background: linear-gradient(90deg, #2C10EB 0%, #26D2DD 100%);
}
.priceCard_content:hover:before {
    background: linear-gradient(90deg, #2C10EB 0%, #26D2DD 100%);
    width: 100%;
}
.priceCard_content:hover,
.priceCard_content.active {
    background: linear-gradient(156deg, #2C10EB 0%, #26D2DD 100%);
}
.priceCard_content > a {
    width: 100%;
    height: 40px;
    color: #272727;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    border-radius: 5px;
    border: 0.5px solid #C4C4C4;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.priceCard_content > a:hover {
    background-color: #11111B;
    color: #fff;
}
.aiPowered_area .overlay1 {
    position: absolute;
    top: -50px;
    left: -80px;
    width: 500px;
    z-index: 1;
    transform: scale(1.4);
    animation: img_pulse 2s linear infinite;
}
.aiPowered_area .overlay2 {
    position: absolute;
    top: 0;
    left: -20px;
    width: 410px;
    z-index: 1;
   transform: translate(-50% -50%); 
   transform: scale(1.8);
   animation: img_pulse 2s linear infinite;
}
.vipPassCard_wrapper {
    width: 100%;
    max-width: 970px;
    margin-top: 60px;
    padding: 28px;
    border-radius: 20px;
    border: 2px solid #FFF;
    background: linear-gradient(156deg, #D3FFCA 0%, #26D2DD 100%);
    margin-left: auto;
    margin-right: 145px;
    position: relative;
    /* overflow: hidden; */
    z-index: 1;
}
.vipPassCard_wrapper::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(images/dots3.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.vipPassCard_wrapper::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: calc(100% + 8px);
    transform: translateY(-50%);
    width: 6px;
    height: 80px;
    border-radius: 25px;
    background: linear-gradient(90deg, #D3FFCA 0%, #26D2DD 100%);
    transition: 0.3s;
}
.vipPassCard_wrapper:hover:after {
    height: 100%;
}
.vipPassCard_wrapper::before {
    content: "";
    display: block;
    position: absolute;
    top: inherit;
    bottom: calc(100% + 8px);
    right: 110px;
    left: inherit;
    transform: translateY(-50%);
    width: 80px;
    height: 6px;
    border-radius: 25px;
    background: linear-gradient(90deg, #D3FFCA 0%, #26D2DD 100%);
    transition: 0.3s;
}
.vipPassCard_wrapper:hover:before {
    width: 100%;
    right: 0;
}
.vipPassCard_heading_left > h2 {
    color: #272727;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}
.vipPassCard_heading_left > span {
    color: #272727;
    font-size: 12px;
    font-weight: 400;
    display: block;
}
.vipPassCard_heading_right > h2 {
    color: #272727;
    font-size: 24px;
    font-weight: 700;
    text-align: right;
} 
.vipPassCard_heading_right > h2 span {
    color: #272727;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    padding-left: 16px;
}
.vipPassCard_wrapper .vpc_row {
    padding-bottom: 25px;
    border-bottom: 1px solid #FFF;
    margin-bottom: 20px;
}

.vipPassCard_body_list > h4 {
    color: #272727;
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 30px;
}

.vipPassCard_body_list > ul li {
    color: #272727;
    font-size: 12px;
    font-weight: 400;
    padding-left: 24px;
    position: relative;
    overflow: hidden;
}

.vipPassCard_body_list > ul li::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(images/icon/icon3.svg);
    background-repeat: no-repeat;
    background-size: 15px;
}
.vipPassCard_body_list > ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.vipPassCard_body_right > a {
    color: #272727;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 250px;
    min-height: 40px;
    margin-left: auto;
    border-radius: 5px;
    border: 0.5px solid #C4C4C4;
    background: #FFF;
}
.vipPassCard_body_right > a:hover {
    color: #Fff;
    background-color: #11111B;
}
.vipPassCard_wrapper > img.overlay1 {
    width: 400px;
    position: absolute;
    top: -50px;
    right: -45px;
    left: inherit;
    z-index: -1;
    transform: scale(1.5);
    animation: img_pulse 2s linear infinite;
}
.vipPassCard_wrapper > img.overlay2 {
    width: 400px;
    position: absolute;
    top: 0;
    left: -45px;
    z-index: -1;
    transform: scale(1.4);
    animation: img_pulse 2s linear infinite;

}

@keyframes img_pulse {
    0% {
        transform: scale(1.4);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1.4);
    }
 }
 


.aheadMarket_area {
    /* margin-top: 115px; */
}

.aheadMarket_thumbCard {
    border-radius: 12px;
    border: 1px solid #245792;
    background: linear-gradient(106deg, rgba(44, 16, 235, 0.20) 0%, rgba(211, 255, 202, 0.20) 100%);
    padding: 16px;
    border-radius: 19px;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.aheadMarket_thumbCard:hover {
    background: linear-gradient(225deg, #2C10EB 13.77%, #26D2DD 86.23%);
}
.aheadMarket_thumbCard.text-end:hover {
    background: linear-gradient(106deg, rgba(44, 16, 235, 0.20) 0%, rgba(211, 255, 202, 0.20) 100%);
}
.aheadMarket_thumbCard > a.readMore_btn {
    width: 100%;
    min-height: 40px;
    color: #fff;
    background-color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    width: 92%;
    margin: 0 auto;
    margin-bottom: 10px;
    transform: translateX(-50%);
    opacity: 1;
    transition: 0.8s;
    position: absolute;
    left: 50%;
    bottom: -50px;
}
.aheadMarket_thumbCard:hover > a.readMore_btn {
    position: static;
   transform: translateX(0);

}
.aheadMarket_thumbCard.extra:hover > img {
	height: 150px;
}
.aheadMarket_thumbCard.extra.one:hover > img {
	height: 200px;
}
.aheadMarket_thumbCard > a.readMore_btn i {
    margin: 0;
}
.aheadMarket_thumbCard:hover > p {
    color: #Fff;
}
.aheadMarket_thumbCard > img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}
.aheadMarket_thumbCard > h2 {
    color: #FFF;
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    margin-top: 20px;
    text-align: left;
}
.aheadMarket_thumbCard > button {
    background: black;
    color: transparent;
    font-size: 15px;
    font-weight: 300;
    width: 140px;
    height: 55px;
    border-radius: 50px;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.aheadMarket_thumbCard > button::before {
    content: "Ethereum";
    background: linear-gradient(90deg, #3a6eff, #49e7d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: absolute;
    font-size: 15px;
    font-weight: 300;
}

.aheadMarket_thumbCard > button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(90deg, #3a6eff, #49e7d3);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.3s ease-in-out;
}

.aheadMarket_thumbCard > button:hover::after {
    background: linear-gradient(90deg, #49e7d3, #3a6eff);
}

.aheadMarket_thumbCard > button:hover {
    transform: scale(1.05);
}
.aheadMarket_thumbCard.extra > button.deFiCrypto::before {
    content: "DeFi Crypto";
}
.aheadMarket_thumbCard.extra > button::before {
    font-size: 10px;
    color: #fff;
    font-size: 8px;
    background-color: none;
}
.aheadMarket_thumbCard.extra > button {
    width: 110px;
    height: 33px;
    margin-top: 10px;
}
.aheadMarket_area .row.two {
    height: 100%;
}
.aheadMarket_thumbCard > h4 {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 15px;
    margin-bottom: 24px;
}
.aheadMarket_thumbCard > p {
    color: #B6B6B6;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
}
.aheadMarket_thumbCard.extra * {
    margin: 0 10px;
    margin-bottom: 10px;
}
.aheadMarket_thumbCard.extra > img {
    margin: 0;
    height: 200px;
    border-radius: 20px 20px 0 0;
}
.aheadMarket_thumbCard.extra {
    padding: 0;
}
.aheadMarket_thumbCard.extra > button.cryptoBanking::before {
    content: "Crypto Banking";
}


.tradeSmarter_area {
    margin-top: 220px;
}
.tradeSmarter_area .aiDriven_header > h2 {
    color: #809fb8;
}
.tradeSmarter_card {
    min-height: 270px !important;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #26D2DD;
    background: linear-gradient(106deg, rgba(44, 16, 235, 0.20) 0%, rgba(211, 255, 202, 0.20) 100%);
}
.tradeSmarter_card > h3 {
    color: #26D2DD;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 30px;
}
.tradeSmarter_card > p {
    color: #BEF0F4;
    font-size: 12px;
    font-weight: 300;
    line-height: 140%;
    margin-bottom: 20px;
}
.tradeSmarter_card ul li:first-child {
    width: 45px;
}
.tradeSmarter_card ul li:first-child img {
    width: 100%;
    border-radius: 50%;
    border: 1px solid #285AD8;
    box-shadow: 0 0 10px rgba(44, 16, 235, 1), 0 0 10px rgba(38, 210, 221, 1);
}
.tradeSmarter_card ul li:last-child h4 {
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    line-height: 140%;
    margin-bottom: 5px;
}
.tradeSmarter_card ul li:last-child span {
    display: block;
    color: #26D2DD;
    font-size: 12px;
    font-weight: 300;
    line-height: 140%;
}
.tradeSmarter_card ul {
    display: flex;
    align-items: center;
    gap: 15px;
}
.tradeSmarter_area .aiDriven_slider {
    position: relative;
}
.tradeSmarter_area .aiDriven_slider::before {
    content: "";
    display: block;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -20px;
    background: #11111B;
    filter: blur(10px);
    z-index: 6;
}
.tradeSmarter_area .aiDriven_slider::after {
    content: "";
    display: block;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -20px;
    background: #11111B;
    filter: blur(10px);
    z-index: 6;
}


.footer_area {
    margin-top: 190px;
}
.footer_thumb img {
    width: 100%;
    max-width: 600px;
    border-radius: 5px;
    opacity: 0.7;
}
.global_headquarters > h6 {
    color: #8E8E8E;
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 16px;
}
.global_headquarters > p {
    color: #B6B6B6;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}
.footer_left .getTouch {
    width: 100%;
    max-width: 485px;
}
.footer_left .getTouch > h6 {
    color: #8E8E8E;
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 20px;
}
.footer_left .getTouch > a {
    width: 100%;
    min-height: 48px;
    border-radius: 10px;
    border: 0.5px solid #2967E4;
    background: #11111B;
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_left .getTouch > a:hover {
    background: linear-gradient(90deg, #26D2DD 0%, #2C10EB 100%);
    color: #fff;
}
.footer_left .getTouch {
    padding-top: 20px;
    margin-top: 14px;
    border-top: 1px solid #5B5B5B;
}
.footer_area .aiDriven_header h2 {
    color: #fff;
    font-size: 80px;
}
.footer_left .getTouch_tel > ul li h6 {
    color: #8E8E8E;
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
}
.footer_left .getTouch_tel > ul li span {
    color: #B6B6B6;
    font-size: 32px;
    font-weight: 300;
    display: block;
}
.footer_left .getTouch_tel > ul {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 50px;
    margin-top: 50px;
}
.footer_bottom > ul.footer_link li a {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    text-decoration-line: underline;
}
.footer_bottom > ul.footer_link li p {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}
.footer_bottom > ul.footer_link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.footer_bottom {
    padding-top: 30px;
    border-top: 1px solid #fff;
}
.footer_bottom ul.social_link li a {
    font-size: 30px;
    color: #fff;
}
.footer_bottom ul.social_link li a i {
    transition: 0.3s;
}
.footer_bottom ul.social_link li a:hover i {
    box-shadow: 0 0 10px rgba(44, 16, 235, 1), 0 0 10px rgba(38, 210, 221, 1); 

}
.footer_bottom ul.social_link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 50px 0;
}
.footer_bottom {
    margin-top: 20px;
}


/*
========================
signup Page START HERE 
========================
*/
.signup_area {
    padding-top: 100px;
}
.signup_logo > img.round_vector {
    width: 100%;
}
.signup_logo > img.logo {
    width: 140px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.signup_form .aiDrivenSlide_btn ul {
    margin-left: 0;
    box-shadow: 0 0 5px rgba(44, 16, 235, 0.5), 0 0 5px rgba(38, 210, 221, 0.5);
}
.signup_form > h2 {
    color: #FFF;
    font-size: 30px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 50px;
}
.signup_form > h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}
.signup_form > p {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 15px;
}
.signup_form > p span.dots {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #1565D8;
    border-radius: 50%;
    margin: 0 12px;
}
.signup_form .form_input span {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
    line-height: 100%;
    text-align: right;
    margin-bottom: 8px;
}
.signup_form .form_input input {
    width: 100%;
    min-height: 60px;
    border-radius: 10px;
    border: 0.5px solid #26d2dd;
    background: #292932;
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 0 24px;
    transition: 0.3s;
}
.signup_form .form_input input:focus {
    box-shadow: 0 0 15px rgba(38, 210, 221, 0.5), 0 0 15px rgba(38, 210, 221, 0.5);
    border-color: transparent;
}
.signup_form .form_input {
    margin-bottom: 32px;
}
.signup_form .form_btn > button {
    width: 100%;
    min-height: 60px;
    border-radius: 10px;
    border-radius: 10px;
    border-top: 1px solid #2C10EB;
    border-bottom: 1px solid #26D2DD;
    border-right: 1px solid #26D2DD;
    border-left: 1px solid #2C10EB;
    background: #0A0A14;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.signup_form .form_btn > button:hover {
    background: linear-gradient(90deg, #26D2DD 0%, #2C10EB 100%);
    border: 0;
}
.signup_form .form_btn > button span {
    color: #FFF;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}
.signup_form .form_btn > button img {
    display: inline-block;
    margin: 0 24px;
    width: 35px;
}
.signup_form .form_btn > h6 {
    color: #3FA54C;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
}
.formRegiBtn_left.step2 a {
    color: #8692A6;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 10px;
    margin-top: -20px;
}
.formRegiBtn_left.step2 a:hover {
    color: #fff;
}
.formRegiBtn_right.step2 button img {
    width: 60px;
}
.formRegiBtn_right.step2 button {
    border-radius: 6px;
    background: #8692A6;
    border-color: #8692A6;
}
.confirmDetails label {
    cursor: pointer;
    color: #8692A6;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    gap: 15px;
}
.confirmDetails label a {
    color: #26D2DD;
}
.validation_alert {
    color: #FF2D55 !important;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
}
.form_btn > h5.forgotPass_text {
    color: #8692A6;
    font-size: 16px;
    font-weight: 400;
}
.form_btn > h5.forgotPass_text a {
    color: #2C10EB;
    font-size: 16px;
    font-weight: 700;
}
.form_btn > h5.forgotPass_text {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: end;
}
.dots1_wrapper.formpage {
    background: url(images/dots1.png);
}
.aiDrivenSlide_btn.regLog a.active.two {
    border-radius: 7px;
    background: #26D2DD;
}
.aiDrivenSlide_btn.regLog a.two:hover {
    background: #26D2DD;
}
.aiDrivenSlide_btn.regLog a.active.one {
    background: #2C10EB;
}
.aiDrivenSlide_btn.regLog a.one:hover {
    background: #2C10EB !important;
}

.signin_title > h2 {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 25px;
}
.signin_title > span {
    color: #8692A6;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.signin_title {
    border-bottom: 1px solid #1565D8;
    padding-bottom: 20px;
    margin-bottom: 20px;
}



/* star animation here */

.star {
    position: absolute;
    background: linear-gradient(180deg, #2F90FF 0%, #184076 100%);
    border-radius: 50%;
    box-shadow: 0 0 5px 1px rgba(0, 102, 255, 1);
    animation: shimmerMove linear infinite alternate;
  }

  @keyframes shimmerMove {
    0% {
      transform: translate(0px, 0px) scale(1);
      opacity: 1;
      box-shadow: 0 0 1px 1px rgba(0, 102, 255, 0.8);
    }
    100% {
      transform: translate(10px, -10px) scale(1.3);
      opacity: 1;
      box-shadow: 0 0 5px 3px rgba(0, 102, 255, 0.5);
    }
  }



  .aiDriven_header h2 {
    display: inline-block;
    background: linear-gradient(to right, white 50%, #90a8c3 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 2s ease;
  }

  .aiDriven_header h2:hover {
    background-position: left bottom;
  }

  .aiDriven_header h2 small {
    font-size: 18px;
  }

  .blinkRoatate {
    animation: blinkRoatate 4s linear infinite;
  }
  
 @keyframes blinkRoatate {
    0% {
        transform: scale(1) rotate(0);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
 }