/* Font Face Declarations */
@font-face {
  font-family: 'Nebula Hollow';
  src: url('../fonts/Nebula-Hollow.otf') format('opentype');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nebula Regular';
  src: url('../fonts/Nebula-Regular.otf') format('opentype');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Display Black';
  src: url('../fonts/NeueHaasDisplayBlack.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Display Bold';
  src: url('../fonts/NeueHaasDisplayBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Display Medium';
  src: url('../fonts/NeueHaasDisplayMediu.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Display Roman';
  src: url('../fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Display Light';
  src: url('../fonts/NeueHaasDisplayLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zero Twos';
  src: url('../fonts/zerotwos.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*{
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6, p{
  margin: 0;
}
a{
  text-decoration: none;
}
/* CSS Custom Properties for easy font usage */
:root {
  --font-neue-haas-black: 'Neue Haas Display Black', sans-serif;
  --font-neue-haas-bold: 'Neue Haas Display Bold', sans-serif;
  --font-neue-haas-medium: 'Neue Haas Display Medium', sans-serif;
  --font-neue-haas-light: 'Neue Haas Display Light', sans-serif;
  --font-neue-haas-roman: 'Neue Haas Display Roman', sans-serif;
  --font-zero-twos: 'Zero Twos', sans-serif;
  --font-nebula-regular: 'Nebula Regular', sans-serif;
  --font-nebula-hollow: 'Nebula Hollow', sans-serif;
  --Nav-stroke: #2378E8;
  --Brand-Deep-blue-blue-200: #9595A2;
  --Brand-Blue-blue-300: #6EADFF;
  --Brand-Deep-blue-blue-900: #0A0A16;
  --Brand-Grey-blue-50: #FEFEFF;
  --Brand-Grey-blue-100: #FCFDFD;
  --Brand-Blue-blue-200: #9BC6FF;
  --Brand-Blue-blue-50: #E9F3FF;
  --Brand-Green-green-100: #B6EEEC;
  --Brand-Deep-blue-blue-300: #646477;
  --Brand-Green-green-500: #14C8C2;
  --Brand-Deep-blue-blue-400: #46465D;
  --Brand-Blue-blue-800: #15498C;
  --Brand-Violet-violet-900: #12122B;
  --Brand-Grey-blue-900: #676869;
  --Brand-Blue-blue-100: #BCD9FF;
}
body{
  background-color: var(--Brand-Deep-blue-blue-900);
}
/* Font utility classes for easy application */
.font-neue-haas-black {
  font-family: var(--font-neue-haas-black);
}

.font-neue-haas-bold {
  font-family: var(--font-neue-haas-bold);
}

.font-neue-haas-medium {
  font-family: var(--font-neue-haas-medium);
}

.font-neue-haas-light {
  font-family: var(--font-neue-haas-light);
}

.font-zero-twos {
  font-family: var(--font-zero-twos);
}

/* Add your custom CSS here */
.navbar{
  padding: 24px 0;
}
header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--Brand-Deep-blue-blue-900, #0A0A16);
}
.navbar-wrapper{
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--Nav-stroke, #2378E8);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(12.449999809265137px);
  margin: 0 auto;
}
.navbar-nav{
  padding: 12px;
  border-radius: 6px;
  background: rgba(233, 243, 255, 0.08);
  backdrop-filter: blur(12px);
  gap: 56px;
}
.navbar-nav .nav-item .nav-link{
  color: var(--Brand-Deep-blue-blue-200, #9595A2);
  font-family: var(--font-zero-twos);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: normal;
  padding: 0;
  position: relative;
  transform: translateX(0);
  transition: 0.5s all;
}
.navbar-nav .nav-item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.navbar-nav .nav-item span{
  content: '';
  width: 5px;
  height: 5px;
  background: linear-gradient(to right, #14C8C2 0%, #2684FF 100%);
  opacity: 0;
  transition: 0.5s all;
}
.navbar-nav .nav-item:hover span{
  opacity: 1;
}
.navbar-nav .nav-item:hover .nav-link{
  transform: translateX(-3px);
}
.navbar-nav .nav-item:nth-child(1):hover .nav-link{
  transform: none;
}
.navbar-contact-btn{
  position: relative;
  height: 53px;
  width: 142px;
}
.navbar-contact-btn a{
  color: var(--Brand-Blue-blue-300, #6EADFF);
  font-family: var(--font-zero-twos);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 18px 26px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s all;
}
.navbar-contact-btn svg{
  position: absolute;
  inset: 0;
  width: 100%;
  transition: 0.5s all;
}
.navbar-contact-btn:hover a{
  color: #fff;
}
.navbar-contact-btn:hover svg rect{
  stroke: #fff;
  transition: 0.5s all;
}

/* Custom Navbar Toggler */
.navbar-toggler.custom-toggler {
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}

.navbar-toggler.custom-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler.custom-toggler img {
  width: 71px;
  height: auto;
}

@media (max-width: 991px) {
  .navbar-wrapper {
    width: 100%;
    margin-top: 20px;
  }
}

/* Banner Video Section */
.banner-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 114px;
}

.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: white;
  width: 80%;
  max-width: 800px;
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.banner-overlay h1 {
  color: var(--Brand-Grey-blue-50, #FEFEFF);
  text-align: center;
  font-family: Aldrich;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 12.8px;
}

.banner-overlay p {
  color: var(--Brand-Grey-blue-100, #FCFDFD);
  text-align: center;
  font-family: var(--font-neue-haas-medium);
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.32px;
}
/*Who we are css*/
.who-we-are{
  padding: 129px 0;
  background: var(--Brand-Deep-blue-blue-900, #0A0A16);
  position: relative;
  border-bottom: 0.5px solid var(--Brand-Deep-blue-blue-300, #646477);
}
.what-we-do, .liquidity-future{
  padding: 129px 0;
  position: relative;
}
.who-we-are:after, .liquidity-future:after, .build-future:before{
  content: '';
  background-color: #646477;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  left: 80px;
  width: 0.5px;
}
.what-we-do:after{
  content: '';
  background-color: #646477;
  position: absolute;
  top: 0;
  right: 80px;
  height: 100%;
  width: 0.5px;
}
.who-we-are:before, .what-we-do:before, .liquidity-future:before{
  content: '';
  background-color: #646477;
  position: absolute;
  left: 0;
  top: 85px;
  bottom: 0;
  height: 0.5px;
  width: 100%;
}
.common-heading{
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-direction: column;
  padding-bottom: 16px;
  border-bottom: 1px solid #14C8C2;
}
.common-heading p{
  color: var(--Brand-Blue-blue-200, #9BC6FF);
  font-family: var(--font-zero-twos);
  font-size: 20px;
  display: block;
}
.common-heading h2{
  color: #FFF;
  font-family: var(--font-neue-haas-medium);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.96px;
}
.common-heading h5{
  color: var(--Brand-Deep-blue-blue-400, #46465D);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.4px;
  font-family: var(--font-neue-haas-roman);
}
.core-values-heading{
  width: 100%;
  height: 318px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 344px;
}
.core-values-heading h3{
  color: var(--Brand-Blue-blue-50, #E9F3FF);
  font-family: var(--font-neue-haas-medium);
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.64px;
}
.core-values{
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.single-value{
  height: 318px;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 344px;
  max-width: 344px;
  position: relative;
}
.svg-background{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s all;
}
.single-value-content{
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.single-value h4{
  color: var(--Brand-Green-green-100, #B6EEEC);
  font-family: var(--font-zero-twos);
  font-size: 20px;
}
.single-value img{
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.single-value img{
  width: 120px;
}
.single-value p{
  color: #FFF;
  font-family: var(--font-neue-haas-medium);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
}
.single-value-right-bg .single-value-content{
  text-align: right;
}
.svg-background svg path{
  transition: 0.5s all;
}
.single-value:hover .svg-background svg path{
  fill: #181839;
}
.single-what-we-do{
  padding: 102px 43px 94px 35px;
  position: relative;
  max-height: 420px;
  box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
}
.what-we-do-content{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 26px;
}
.what-we-do-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-what-we-do h3{
  color: var(--Brand-Green-green-500, #14C8C2);
  font-family: var(--font-zero-twos);
  font-size: 17.778px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.333px */
  letter-spacing: 0.089px;
}
.single-what-we-do p{
  color: var(--Brand-Blue-blue-50, #E9F3FF);
  font-family: var(--font-neue-haas-light);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.32px;
}
.what-we-do-img{
  width: 90px;
  height: 90px;
}
.what-we-do-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.liquidity-future{
  background: var(--Brand-Blue-blue-100, #BCD9FF);
  position: relative;
}
.liquidity-future .common-heading{
  gap: 20px;
}
.liquidity-future .common-heading p{
  color: var(--Brand-Blue-blue-800, #15498C);
}
.liquidity-future .common-heading h2{
  font-family: var(--font-zero-twos);
  color: var(--Brand-Deep-blue-blue-900, #0A0A16) !important;
  font-weight: 400;
}
.coming-soon-block{
  background: url("../images/coming-soon-bgb.png") no-repeat center center;
  background-size: contain;
  padding: 60px 60px 118px 60px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: start;
  max-width: 850px;
  margin: 0 auto;
  margin-top: 60px;
  position: relative;
  transition: 0.5s all;
}
.coming-soon-block:hover {
  background: url("../images/coming-soon-bg-v2.png") no-repeat center center;
  background-size: contain;
  transition: 0.5s all;
}
.coming-soon-block h3{
  color: var(--Brand-Green-green-500, #14C8C2);
  font-family: var(--font-zero-twos);
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.12px;
}
.coming-soon-block p{
  color:#fff;
  font-family: var(--font-neue-haas-roman);
  font-size: 20px;
  line-height: 24px; /* 120% */
  letter-spacing: 0.4px;
  max-width: 462px;
  width: 100%;
}
.coming-soon-block .navbar-contact-btn{
  position: absolute;
  top: 24px;
  right: 24px;
  width: 160px;
}
.why-choose-us{
  position: relative;
  padding: 100px 0;
}
.pattern-top{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}
.pattern-bottom{
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}
.pattern-top img, .pattern-bottom img{
  width: 100%;
}
.choose-steps{
  margin-top: 70px;
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.single-choose-step{
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  min-height: auto;
  transition: 0.5s ease all;
  border: 24px solid transparent;
  height: 110px; /* Set initial height */
}
.single-choose-step:hover{
  min-height: 253px;
  transition: 0.5s ease all;
  border-color: #272732;
}
.single-choose-step::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #333;
   opacity: 0;
   z-index: 10;
   pointer-events: none;
   display: none;
   transition: 0.5s ease all;
 }

.step-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
  pointer-events: none;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.single-choose-step-inner{
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 100;
  padding: 0 43px;
  transition: padding 0.5s ease;
}
.single-choose-step:hover .single-choose-step-inner{
  padding: 20px 43px;
}
.single-choose-step:hover .single-choose-step-inner .step-details p,
.single-choose-step:hover .single-choose-step-inner .step-number:after{
  visibility: visible;
  transition: 0.5s ease all;
}
.single-choose-step:hover .step-background-video,
.single-choose-step:hover .single-choose-step::before{
  display: block;
  transition: 0.5s ease all;
}
.step-background-video {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.single-choose-step-inner .step-number{
  width: 110px;
  position: relative;
  margin-top: -20px;
}
.single-choose-step-inner .step-number h3{
  color: #fff; /* Changed to white by default */
  font-family: var(--font-nebula-hollow);
  font-size: 64px;
  transition: color 0.5s ease; /* Added transition for smooth color change */
}
.single-choose-step-inner .step-number:after{
  content: '';
  position: absolute;
  top: 100%;
  width: 110px;
  left: 0;
  height: 2px;
  background: var(--Brand-Green-green-500, #14C8C2);
  opacity: 0; /* Hide by default */
  visibility: hidden; /* Hide by default */
  transition: opacity 0.5s ease, visibility 0.5s ease; /* Add transition for smooth appearance */
}
.single-choose-step-inner .step-details{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.single-choose-step-inner .step-details h4{
  color: #fff; /* Changed to white by default */
  font-family: var(--font-zero-twos);
  font-size: 24px;
  transition: color 0.5s ease; /* Added transition for smooth color change */
}
.single-choose-step-inner .step-details p{
  color: #FFF;
  font-family: var(--font-neue-haas-roman);
  font-size: 16px;
  letter-spacing: 0.32px;
  transition: opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
  display: block;
}
.build-future{
  padding: 136px 0;
  background: var(--Brand-Blue-blue-100, #BCD9FF);
  position: relative;
}
.build-future h2{
  color: var(--Brand-Deep-blue-blue-400, #46465D);
  font-family: var(--font-neue-haas-medium);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.build-future p{
  font-family: var(--font-neue-haas-roman);
  color: var(--Brand-Deep-blue-blue-300, #646477);
  font-size: 16px;
  font-weight: 500;
}
.build-future form{
  margin-top: 36px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
}
.build-future form .form-control{
  height: 53px;
  border-radius: 0 4px 0 8px;
  border: none;
  border-bottom: 1px solid var(--Brand-Violet-violet-900, #12122B);
  color: var(--Brand-Grey-blue-900, #676869);
  font-family: var(--font-neue-haas-roman);
  font-size: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  background-color: transparent;
}
.build-future form .form-control:focus{
  box-shadow: none;
}
.build-future form textarea{
  padding-top: 112px !important;
  height: 146px !important;
  resize: none;
}
.build-future:before{
  background: var(--Brand-Blue-blue-50, #E9F3FF);
}
.build-future:after{
  content: '';
  background: var(--Brand-Blue-blue-50, #E9F3FF);
  position: absolute;
  left: 0;
  bottom: 85px;
  right: 0;
  height: 0.5px;
  width: 100%;
}
.form-submit-btn{
  margin-top: 12px;
  position: relative;
}
.form-submit-btn input[type="submit"]{
  width: 142px;
  height: 53px;
  position: relative;
  z-index: 1;
  background-color: transparent;
  color: var(--Brand-Blue-blue-300, #6EADFF);
  text-align: center;
  transition: 0.5s all;
  border: none;
  font-family: var(--font-zero-twos);
}
.form-submit-btn:hover input[type="submit"]{
  color: #fff;
}
.form-submit-btn svg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all ease;
}
.input-field-wrapper{
  position: relative;
  width: 100%;
}
.input-field-wrapper label{
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-neue-haas-roman);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}
.input-field-wrapper {
  position: relative;
}

.input-field-wrapper label {
  color: var(--Brand-Deep-blue-blue-400, #46465D);
  font-family: var(--font-neue-haas-roman);
  font-size: 14px;
  letter-spacing: 0.28px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  transition: 0.3s all ease;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}

.input-field-wrapper label b {
  color: var(--Nav-stroke, #2378E8);
}

.input-field-wrapper .form-control:focus {
  border-color: var(--Brand-Blue-blue-300, #6EADFF);
  caret-color: var(--Nav-stroke, #2378E8); /* Blue cursor color */
}

.input-field-wrapper .form-control:focus + label,
.input-field-wrapper .form-control:not(:placeholder-shown) + label,
.input-field-wrapper .form-control:focus ~ label,
.input-field-wrapper .form-control:not(:placeholder-shown) ~ label {
  opacity: 0;
  visibility: hidden;
}

/* Add blue asterisk to required form fields */
.form-control::placeholder {
  position: relative;
}
.input-field-textarea label {
  bottom: 17px;
  left: 12px;
  top: auto;
}
footer{
  height: 612px;
  position: relative;
  overflow: hidden;
}

.footer-video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 612px;
  object-fit: cover;
  z-index: 1;
}

footer:after{
  content: '';
  background: var(--Brand-Deep-blue-blue-300, #646477);
  position: absolute;
  top: 0;
  left: 219px;
  height: 65%;
  width: 0.5px;
  z-index: 100;
}
footer:before{
  content: '';
  background: var(--Brand-Deep-blue-blue-300, #646477);
  position: absolute;
  top: 35%;
  left: 219px;
  width: 83%;
  height: 0.5px;
  z-index: 100;
}
.footer-column{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 60px;
}
.footer-column h4{
  color: var(--Brand-Green-green-100, #B6EEEC);
  font-family: var(--font-zero-twos);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer-column .footer-links{
  list-style-type: none;
  padding: 0;
}
.footer-column .footer-links li a{
  color: var(--Brand-Grey-blue-50, #FEFEFF);
  font-family: var(--font-neue-haas-roman);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
}
.footer-content{
  position: absolute;
  z-index: 100;
  top: 33%;
  left: 50px;
  right: 100px;
  width: 100%;
}
.social-icons{
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  list-style-type: none;
}
.social-icons li a{
  width: 72px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.5s all;
}
.social-icons li a img{
  position: relative;
  z-index: 10;
}
.footer-social-btn svg{
  position: absolute;
  inset: 0;
  transition: 0.5s all;
}
.footer-social-btn:hover a{
  color: #fff;
}
.footer-social-btn:hover svg rect{
  stroke: #fff;
  transition: 0.5s all;
}
.small-banner{
  background: url("../images/small-banner.png") no-repeat center center;
  background-size: cover;
  padding: 150px 0;
  margin-top: 114px;
}
.small-banner h1{
  font-size: 60px;
  color: #fff;
  font-family: var(--font-zero-twos);
  letter-spacing: 2px;
}
.content-wrapper{
  padding: 70px 0;
}
.content-wrapper p, .content-wrapper p a{
  font-size: 16px;
  font-family: var(--font-neue-haas-roman);
  color: #fff;
  line-height: 28px;
  margin-bottom: 50px;
}
.content-wrapper p a{
  text-decoration: underline;
}