
:root {
    --primary: #0051FF;
    --primary-dark: #0044CA;
    --secondary: #070035;
    --secondary-dark: #000000;
    --brand-color: #F41211;
    --black: #000000;
    --gray-light: #818181;
    --gray-dark: #1A1A1A;
    --light-grey: #eeeeee;
    --aqua-gray: #F8F8F9;
    --white: #ffffff;
    --ash: #f4f4f4;
    --border: 1px solid var(--light-grey);
    --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}


* {
    box-sizing: border-box;
    scrollbar-color: rgba(144, 147, 153, 0.3) rgba(255, 255, 255, 0);
    scrollbar-width: thin;
    font-family: "Outfit", serif;
}

/* Body  */
body {
    padding: 0;
    margin: 0;
}

/* Constants  */
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hide-in-windows {
    display: none !important;
}

.title-g {
    text-align: center;
    h1 {
        color: var(--gray-dark);
        padding: 0 5%;
    }
    p {
        margin-bottom: 50px;
        color: var(--gray-light);
        padding: 0 3%;
    }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: var(--ash);
  z-index: 455555;
  img {
    width: 40%;
    height: auto;
  }
  
  .spinner {
    margin-top: 30px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: 4.78px solid var(--primary-dark);
    border-right-color: #ccc;
    animation: spin 1.5s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg); /* Start at 0 degrees */
    }
    100% {
      transform: rotate(360deg); /* Rotate 360 degrees */
    }
  }
}

.bodyWrapper {
    padding-top: 90px;
}

ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: inherit;
  }

  #nav-menu {
    background: var(--white);
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 444;
  }
  
  .btn {
    display: block;
    font-weight: 700;
    background-color: #00ffb3;
    padding: 10px 33px;
    border-radius: 80px;
    color: #000000;
    margin-left: 10px;
    text-transform: uppercase;
    border: 3px solid #000000;
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    &:hover {
        background-color: #00ffb3;
        border-color: #00ffb3;
    }
  }
  .btn-secondary {
    background: transparent;
    border: 3px solid #000000;
    color: #000000;
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    &:hover {
        color: var(--white);
        border-color: #000000;
    }
  }
  
  .logo {
    margin-right: 1.5rem;
    img {
        width: 72px;
        height: auto;
    }
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    column-gap: 2rem;
    height: 90px;
    padding: 1.2rem 3rem;
  }
  
  .menu {
    position: relative;
    background: var(--white);
  }

  .menu-bar {
    border-bottom: 5px solid transparent;
  }
  
  .menu-bar > li {
    &:hover {
        border-bottom: 5px solid var(--primary-dark);
    }
  }

  .menu-bar li:first-child .dropdown {
    flex-direction: initial;
    min-width: 480px;
  }
  
  .menu-bar li:first-child ul:nth-child(1) {
    border-right: var(--border);
  }
  
  .menu-bar li:nth-child(n + 2) ul:nth-child(1) {
    border-bottom: var(--border);
  }
  
  .menu-bar .dropdown-link-title {
    font-weight: 600;
  }
  
  .menu-bar .nav-link {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.6px;
    padding: 0.3rem;
    min-width: 60px;
    margin: 0 0.6rem;
  }
  
  .menu-bar .nav-link:hover,
  .dropdown-link:hover {
    color: var(--primary-color);
  }
  
  .nav-start,
  .nav-end,
  .menu-bar,
  .right-container,
  .right-container .search {
    display: flex;
    align-items: center;
  }
  
  .dropdown {
    display: flex;
    flex-direction: initial;
    min-width: 480px;
    background-color: var(--white);
    border-radius: 10px;
    position: absolute;
    top: 55px;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.97) translateX(-5px);
    transition: 0.1s ease-in-out;
    box-shadow: var(--shadow);
  }
  .nav-subItems {
    a {
        margin: 10px 0 0 0;
    }
    &:hover {
        background: var(--aqua-gray);
        a {
            color: var(--primary-dark) !important;
        }
    }
}
  
  .dropdown.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1) translateX(5px);
  }
  
  .dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.2rem;
    font-size: 0.95rem;
    border-right: var(--border);
  }
  
  .dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.15rem;
  }
  
  .dropdown-link {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-radius: 7px;
    transition: 0.1s ease-in-out;
  }
  
  .dropdown-link p {
    font-size: 0.8rem;
    color: var(--medium-grey);
  }
  
  .right-container {
    display: flex;
    align-items: center;
    column-gap: 1rem;
  }
  
  .right-container .search {
    position: relative;
  }
  
  .right-container img {
    border-radius: 50%;
  }
  
  
  #hamburger {
    display: none;
    padding: 0.1rem;
    margin-left: 1rem;
    font-size: 1.9rem;
  }
  #m-register-btn {
    display: none;
  }
  
/* Nav Menu End  */

/* Hero Section Start */
.herosection-wrap {
   background: var(--secondary-dark);
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 0 10%;
    height: calc(90vh - 90px);
    position: relative;
    .bgVideo {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      /* border-bottom-right-radius: 150px;
      border-bottom-left-radius: 150px; */
      filter: brightness(0.89);
    }
}

.herosection-wrap .sec1 {
    width: 50%;
    position: relative;
    h1 {
        font-size: 3rem;
    }
    p {
        color: var(--ash);
    }
}
.herosection-wrap .sec2 {
    width: 50%;
    position: relative;
    
    /* img, video {
        display: none;
        scale: 1.3;
        width: 100%;
        transform-origin: top left;
        height: auto;
        position: relative;
        top: 100px;
        animation: moveDevice 10s ease-in-out infinite;
        background: transparent;
    } */
}

.mobile-show-hero {
  display: none;
  filter: brightness(0.89);

}

@keyframes moveDevice {
    0% {
        transform: translate(0px, 5px); /* Starts slightly off the left */
    }
    50% {
        transform: translate(0px, -5px); /* Moves to the right */
    }
    100% {
        transform: translate(0px, 5px); /* Returns to the left */
    }
}


/* Hero Section End */


/* Assets Section Start  */

.assetssection {
    margin-top: 100px;
    .sec {
        padding: 0 5%;
    }
}

.controls {
    margin: 10px auto;
    display: flex;
    overflow-x: scroll;
    gap: 10px;
    width: 100%;
    justify-content: center;
    button {
        background: #b0c6f6;
        border-color: #b0c6f6;
        color: var(--black);
        
        &:hover {
            border-color: var(--primary-dark);
            background: var(--primary-dark);
            color: var(--white);

        }

    }
    .active {
        color: var(--white);
        background: var(--primary);
        border-color: var(--primary);
    }
}

.controls::-webkit-scrollbar {
    display: none;
}

#mix-container {
    .main-cards {
        display: grid;
        justify-content: center;
        align-items: center;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    
    
}

.card {
    background: var(--black);
    border-radius: 22px;
    overflow: hidden;
}

.card-inner-wrap {
    background: linear-gradient(310deg, rgba(200, 16, 46, 0) 0%, var(--brand-color) 100%);
    padding: 10px;
    color: var(--white);

    .card-sec-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        h3 {
            margin: 0;
        }
        p {
            margin: 0;
            font-size: 0.6rem;
        }
        img {
            width: 100px;
        }
    }

    .card-sec-2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        border-top: 0.5px solid var(--ash);
        gap: 20px;
        p, h1 {
            margin: 0;
        }
        p {
            font-size: 0.7rem;
        }
    }

}


.movers-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    box-shadow:  rgba(0, 0, 0, 0.05) 0px 14px 45px 22px,
    rgba(0, 0, 0, 0.08) 0px 5px 10px 5px;
    button {
        height: 50px;
    }
    h4, p, h3 {
        margin: 0;
        line-height: 1.1;
    }
    h3, h4 {
        max-width: 90%;
        font-weight: 500;
    }
    p {
        color: var(--gray-dark);
    }
}
/* Assets Section End */


/* About section start  */
.aboutussection {
  background: var(--secondary-dark);
}


.container-abs {
  max-width: 1300px;
  margin: 0px auto 0px auto;
  padding: 0px 40px;
  img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}


.about-me {
  padding-top: 50px;
  padding-bottom: 50px;
}
.about-me .about-me-container {
  position: relative;
}

.about-me .about-me-container .about-me-title {
  font-size: 55px;
  color: var(--aqua-gray);
  font-weight: 700;
}


.about-me-flex-container {
  margin-top: -25px;
  margin-left: 150px;
  left: 100px;
  display: flex;
  justify-content: space-between;
}

.about-me-flex-container .about-me-image {
  position: relative;
  width: 400px;
  height: 400px;
}

.about-me-flex-container .about-me-image .back-div {
  position: absolute;
  bottom: 0;
  z-index: -3;
  background-color: #013747;
  width: 80%;
  height: 80%;
}
.about-me-flex-container .about-me-image .black-image {
  z-index: -2;
  position: absolute;
  left: 10px;
  bottom: 10px;
  height: 100%;
}
.about-me-flex-container .about-me-image .black-image img {
  height: 100%;
}
.about-me-flex-container .about-me-image .main-image {
  width: 70%;
  height: 70%;
  overflow: hidden;
  position: absolute;
  left: 25%;
  top: 5%;
  box-shadow: rgb(0, 0, 0) 0px 7px 50px 0px;
  transition: all 0.2s ease-out;
}
.about-me-flex-container .about-me-image .main-image:hover {
  transform-origin: top center;
  transform: scale(1.5);
  border-radius: 25px;
}
.about-me-flex-container .about-me-image .main-image img {
  transform-origin: center center;
  transform: scale(2);
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-out;
}
.about-me-flex-container .about-me-image .main-image img:hover {
  transform: scale(1);
}
.about-me-flex-container .about-me-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  flex: 0 0 40%;
}

.about-me-flex-container .about-me-content .logo {
  max-width: 200px;
}
.about-me-flex-container .about-me-content .logo img {
  filter: drop-shadow(0 0 25px rgb(0, 0, 0));
}

.about-me-flex-container .about-me-content .text {
  color: #87A4B6;
  font-weight: 600;
  font-size: 18px;
}




.mail-button {
  display: flex;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  padding: 15px;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
}
.mail-button a {
  display: flex;
}
.mail-button img {
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.2s ease-out;
}


.mail-button2 {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #b58f35;
  border: 10px solid #ab8439;
}
.mail-button2 img {
  filter: unset;
  transform: scale(1.5);
}
.mail-button2:hover {
  background-color: #001925;
  border: 10px solid #001925;
}
.mail-button2:hover img {
  filter: invert(56%) sepia(42%) saturate(4795%) hue-rotate(360deg) brightness(103%) contrast(105%);
  transform: scale(1);
}
/* About section end */

/* Why Choose Us Start  */
.wcu-wrapper {
  background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.container-wcu {
  position: relative;
  width: 80%;
  max-width: 1200px;
  height: 80%;
}

.laptop-wcu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.laptop-wcu img {
  max-width: 100%;
  height: auto;
  scale: 1.5;
}

.card-wcu {
  position: absolute;
  width: 200px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  z-index: 2;
}

.card-wcu h3 {
  font-size: 1.1em;
  margin: 10px 0;
}

.card-wcu p {
  font-size: 0.9em;
  color: #555;
}

.top-left-wcu {
  top: 10%;
  left: 5%;
}

.top-right-wcu {
  top: 10%;
  right: 5%;
}

.bottom-center-wcu {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}


/* Why Choose Us End */



/* How it works start */
.howitworks {
  padding: 50px 20px;
}

.how-it-works-cards {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  position: relative;
  margin: 50px auto;
}

.card-htw {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100%;
  padding: 20px 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  flex-direction: column;
  box-shadow:  rgba(0, 0, 0, 0.05) 0px 14px 45px 22px,
    rgba(0, 0, 0, 0.08) 0px 5px 10px 5px;
  i {
    color: #a47a2b;
    font-size: 2.6rem;
    margin: 0;
  }
  h1 {
    margin: 0;
    text-align: center;
    font-size: 1.3rem;
  }
  p {
    text-align: center;
    margin-top: 0;
    font-size: 0.8rem;
  }
}
/* How it works end */




/* Get Started Section Start  */
.getstartedsection {
  background: var(--secondary-dark);
  padding: 50px 20px;
}
.timeline {
  position: relative;
  max-width: 100%;
  margin: 100px auto;
}
.containr {
  padding: 10px 50px;
  position: relative;
  width: 50%;
  animation: movedown 1s linear forwards;
  opacity: 0;
}
@keyframes movedown {
  0% {
    opacity: 1;
    transform: translate(-30px);
  }
  100% {
    opacity: 1;
    transform: translate(0px);
  }
}
.text-box {
  padding: 20px 30px;
  background: var(--light-grey);
  position: relative;
  border-radius: 5px;
  font-size: 15px;
}
.left-container-gs {
  left: 0;
}
.right-container-gs {
  left: 50%;
}
.containr img {
  position: absolute;
  width: 40px;
  border-radius: 50%;
  right: -20px;
  top: 35px;
  z-index: 10;
}
.right-container-gs img {
  left: -20px;
}
.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background: var(--light-grey);
  top: 0px;
  left: 50%;
  margin-left: -3px;
  z-index: -1;
  animation: moveline 6s linear forwards;
}
@keyframes moveline {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.text-box h2 {
  font-weight: 600;
}
.text-box small {
  display: inline-block;
  margin-bottom: 5px;
}
.left-container-arrow {
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid var(--light-grey);
  right: -15px;
}
.right-container-arrow {
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid var(--light-grey);
  left: -15px;
}
.containr:nth-child(1) {
  animation-delay: 0s;
}
.containr:nth-child(2) {
  animation-delay: 1s;
}
.containr:nth-child(3) {
  animation-delay: 2s;
}
.containr:nth-child(4) {
  animation-delay: 2s;
}
.containr:nth-child(4) {
  animation-delay: 3s;
}
.containr:nth-child(5) {
  animation-delay: 4s;
}
.containr:nth-child(6) {
  animation-delay: 5s;
}
.containr:nth-child(7) {
  animation-delay: 6s;
}
.containr:nth-child(8) {
  animation-delay: 7s;
}

/* Get Started Section End */


/* funding options start */

.fundingsoptions {
  padding: 50px 0 50px 0;
}


@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 5));
  }
}
.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  img {
    object-fit: contain !important;
    width: 100px;
  }
}
.slider::before, .slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  height: 100px;
  width: 150px;
}

/* funding options stop  */


/* Footer Sectin Start  */
.footer {
  background-color: #0f3933;
  padding: 40px 20px;
  font-size: 14px;
  color: var(--aqua-gray) !important;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-disclaimer {
  margin-bottom: 40px;
}

.footer-disclaimer h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  img {
    /* width: 50px; */
    height: 105px;
  }
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 5px;
}

.footer-social-icons a {
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.footer-social-icons a:hover {
  color: #aaa;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
/* Footer Sectin End */
.aboutussection {
  position: relative;
  width: 100%;
  min-height: 100vh; /* full height */
  padding: 120px 0;
 background: url("../assets/about-bg.png") center center no-repeat;
background-size: cover;
  background-color: #001320; /* fills extra space */

  overflow: hidden;
}

/* overlay for readability */
.aboutussection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 10, 25, 0.75),
    rgba(0, 120, 150, 0.55),
    rgba(0, 10, 25, 0.75)
  );
  z-index: 1;
}

/* glow highlight */
.aboutussection::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, rgba(0, 255, 190, 0.25), transparent 65%);
  z-index: 1;
}

/* Main Section */
.aboutWhiteSection {
  width: 100%;
  position: relative;
  z-index: 2;
  clear: both;
}

/* Container */
.aboutWhiteContainer {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}

/* ===========================
   HEADING
=========================== */
.aboutWhiteHeading {
  text-align: center;
  margin-bottom: 70px;
}

.aboutWhiteHeading h2 {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.aboutWhiteHeading h1 {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  margin: 12px 0;
  text-transform: uppercase;
}

.aboutWhiteHeading h1 span {
  color: #00ffb3;
}

.aboutWhiteHeading p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

/* ===========================
   GRID
=========================== */
.aboutWhiteGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===========================
   CONTENT CARD (Glass Premium)
=========================== */
.aboutWhiteContent {
  padding: 55px 45px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

/* top glow line */
.aboutWhiteContent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #00ffb3, #00c3ff);
}

/* Heading inside card */
.aboutWhiteContent h3 {
  font-size: 28px;
  font-weight: 900;
  color: #00c98b;
  margin-bottom: 18px;
}

/* Paragraph */
.aboutWhiteContent p {
  font-size: 15px;
  color: #222;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* ===========================
   BUTTON
=========================== */
.aboutWhiteBtn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 38px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00ffb3, #00c98b);
  color: #000;
  font-weight: 800;
  text-decoration: none;
  transition: 0.35s ease;
  box-shadow: 0px 15px 35px rgba(0, 255, 180, 0.45);
}

.aboutWhiteBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0px 18px 50px rgba(0, 255, 180, 0.65);
}

/* ===========================
   VIDEO CIRCLE (Right Side)
=========================== */
.aboutWhiteImage {
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutVideoCircleBox {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(0, 255, 190, 0.55);
  box-shadow: 0px 0px 50px rgba(0, 255, 190, 0.55);
  position: relative;
  animation: pulseGlow 3s infinite alternate;
}

/* Video Fit */
.aboutCircleVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* glow animation */
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0px 0px 30px rgba(0, 255, 190, 0.45);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0px 0px 70px rgba(0, 255, 190, 0.75);
  }
}

/* ===========================
   RESPONSIVE
=========================== */
@media(max-width: 991px) {
  .aboutussection {
    padding: 90px 0;
    min-height: auto;
    background-size: cover; /* on mobile cover looks better */
  }

  .aboutWhiteGrid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .aboutWhiteHeading h1 {
    font-size: 32px;
  }

  .aboutWhiteContent {
    padding: 40px 25px;
  }

  .aboutVideoCircleBox {
    width: 260px;
    height: 260px;
    margin-top: 30px;
  }
}

.whyNewSection {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Background glow animation */
.whyNewSection::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 450px;
  height: 450px;
  background: rgba(0, 255, 179, 0.18);
  border-radius: 50%;
  filter: blur(130px);
  animation: glowMove 6s infinite alternate ease-in-out;
}

.whyNewSection::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 450px;
  height: 450px;
  background: rgba(0, 200, 150, 0.18);
  border-radius: 50%;
  filter: blur(130px);
  animation: glowMove2 6s infinite alternate ease-in-out;
}

@keyframes glowMove {
  0% { transform: translate(0px, 0px); }
  100% { transform: translate(60px, 80px); }
}

@keyframes glowMove2 {
  0% { transform: translate(0px, 0px); }
  100% { transform: translate(-60px, -80px); }
}

.whyNewContainer {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

/* Title */
.whyNewTitle {
  text-align: center;
  margin-bottom: 70px;
}

.whyNewTitle h2 {
  font-size: 18px;
  font-weight: 700;
  color: #666;
  margin-bottom: 10px;
}

.whyNewTitle h1 {
  font-size: 45px;
  font-weight: 900;
  color: #111;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.whyNewTitle h1 span {
  color: #00c98b;
  text-shadow: 0px 0px 18px rgba(0, 201, 139, 0.25);
}

.whyNewTitle p {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Grid */
.whyNewGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: center;
}

/* Cards */
.whyNewCard {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 201, 139, 0.25);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0px 0px 25px rgba(0, 201, 139, 0.12);
  transition: 0.3s;
  text-align: center;
}

.whyNewCard:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 35px rgba(0, 201, 139, 0.25);
}

.whyNewCard h3 {
  font-size: 18px;
  font-weight: 900;
  color: #00c98b;
  margin-bottom: 10px;
}

.whyNewCard p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* Icon */
.whyIcon {
  width: 65px;
  height: 65px;
  margin: auto;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(0, 201, 139, 0.12);
  border: 1px solid rgba(0, 201, 139, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: #00c98b;
  box-shadow: 0px 0px 18px rgba(0, 201, 139, 0.18);
}

/* Center Coin */
.whyNewCenter {
  text-align: center;
  padding: 20px;
}

.whyNewCenter h4 {
  font-size: 14px;
  font-weight: 800;
  color: #00c98b;
  margin-top: 18px;
  letter-spacing: 2px;
}

/* Circle Coin Container */
.whyCircle {
  width: 180px;
  height: 180px;
  margin: auto;
  border-radius: 50%;
  background: rgba(0, 201, 139, 0.10);
  border: 2px solid rgba(0, 201, 139, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0px 0px 35px rgba(0, 201, 139, 0.18);
}

.whyCircle::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 3px dashed rgba(0, 201, 139, 0.5);
  animation: ringRotate 10s linear infinite;
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Coin Rotating */
.whyCoin {
  width: 90px;
  height: 90px;
  object-fit: contain;
  animation: coinRotate 6s linear infinite;
}

@keyframes coinRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media(max-width: 991px) {
  .whyNewGrid {
    grid-template-columns: 1fr;
  }

  .whyCircle {
    width: 160px;
    height: 160px;
  }

  .whyCoin {
    width: 80px;
    height: 80px;
  }

  .whyNewTitle h1 {
    font-size: 32px;
  }
}
.whyNewGridCenter {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

/* Position Cards */
.pos1 { grid-column: 1; grid-row: 1; }
.pos2 { grid-column: 3; grid-row: 1; }
.pos3 { grid-column: 1; grid-row: 2; }
.pos4 { grid-column: 3; grid-row: 2; }

/* Center Circle */
.whyNewCenterCircle {
  grid-column: 2;
  grid-row: 1 / span 2;
  text-align: center;
}

/* Circle Video Container */
.videoCircleBox {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: auto;
  border: 4px solid rgba(0, 201, 139, 0.35);
  box-shadow: 0px 0px 35px rgba(0, 201, 139, 0.22);
}

/* Animated Ring Around */
.videoCircleBox::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 4px dashed rgba(0, 201, 139, 0.55);
  animation: ringRotate 10s linear infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Video */
.circleVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

/* Text Under Circle */
.whyNewCenterCircle h4 {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 900;
  color: #00c98b;
  letter-spacing: 3px;
}

/* Responsive */
@media(max-width: 1100px) {
  .whyNewGridCenter {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .whyNewCenterCircle {
    grid-column: 1;
    grid-row: auto;
    margin: 30px 0;
  }

  .pos1, .pos2, .pos3, .pos4 {
    grid-column: 1;
    grid-row: auto;
  }

  .videoCircleBox {
    width: 280px;
    height: 280px;
  }
}
.aboutVideoCircleBox {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: auto;
  border: 4px solid rgba(0, 201, 139, 0.35);
  box-shadow: 0px 0px 35px rgba(0, 201, 139, 0.22);
  background: rgba(0, 201, 139, 0.08);
}

/* Rotating ring */
.aboutVideoCircleBox::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 4px dashed rgba(0, 201, 139, 0.55);
  animation: aboutRingRotate 10s linear infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes aboutRingRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Video */
.aboutCircleVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

/* Responsive */
@media(max-width: 991px) {
  .aboutVideoCircleBox {
    width: 260px;
    height: 260px;
    margin-top: 30px;
  }
}
.aboutVideoCircleBox {
  animation: aboutGlowPulse 4s ease-in-out infinite;
}

@keyframes aboutGlowPulse {
  0% { box-shadow: 0px 0px 20px rgba(0, 201, 139, 0.18); }
  50% { box-shadow: 0px 0px 45px rgba(0, 201, 139, 0.35); }
  100% { box-shadow: 0px 0px 20px rgba(0, 201, 139, 0.18); }
}
/* ===========================
   HOW IT WORKS SECTION (WITH ABOUT BG STYLE)
=========================== */

.howWorksCandle {
  position: relative;
  padding: 110px 0;
  width: 100%;
  overflow: hidden;
  z-index: 10;

  /* SAME BG IMAGE LIKE ABOUT US */
background: url("../assets/about-bg1.png") center center no-repeat;
  background-size: cover; /* full image visible */
  background-color: #001320;
}

/* overlay for readability */
.howWorksCandle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 10, 25, 0.80),
    rgba(0, 120, 150, 0.55),
    rgba(0, 10, 25, 0.80)
  );
  z-index: 1;
}

/* glow highlight */
.howWorksCandle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, rgba(0, 255, 190, 0.22), transparent 65%);
  z-index: 1;
}

/* Candlestick Background Layer */
.candleBg {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.20;
  pointer-events: none;
}

/* Content wrapper */
.howWorksWrap {
  position: relative;
  z-index: 5;
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}

/* Title */
.howWorksTitle {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 5;
}

.howWorksTitle h2 {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.howWorksTitle h1 {
  font-size: 44px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.howWorksTitle h1 span {
  color: #00ffb3;
  text-shadow: 0px 0px 15px rgba(0, 255, 180, 0.35);
}

.howWorksTitle p {
  max-width: 760px;
  margin: auto;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.7;
}

/* Cards Grid */
.howWorksCards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 5;
}

/* Card Design */
.howWorksCard {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 35px 25px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
  transition: 0.35s;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.howWorksCard:hover {
  transform: translateY(-12px);
  box-shadow: 0px 0px 55px rgba(0, 255, 180, 0.35);
}

/* Icon */
.howIcon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 255, 180, 0.12);
  border: 1px solid rgba(0, 255, 180, 0.35);
  color: #00ffb3;
  font-size: 28px;
  animation: iconPulse 3s infinite ease-in-out;
}

@keyframes iconPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.howWorksCard h3 {
  font-size: 18px;
  font-weight: 900;
  color: #111;
  margin-bottom: 12px;
}

.howWorksCard p {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

/* ===========================
   RESPONSIVE
=========================== */
@media(max-width: 1200px) {
  .howWorksCards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 991px) {
  .howWorksCandle {
    background-size: cover; /* mobile better look */
  }

  .howWorksTitle h1 {
    font-size: 30px;
  }
}

@media(max-width: 600px) {
  .howWorksCards {
    grid-template-columns: 1fr;
  }

  .howWorksTitle h1 {
    font-size: 28px;
  }

  .candle {
    width: 10px;
  }
}

.getStartedFix {
  padding: 100px 0;
  background: #fff;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 10;
  clear: both;
}

/* Background glow */
.getStartedFix::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(0, 255, 179, 0.18);
  filter: blur(140px);
}

.getStartedFix::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(0, 201, 139, 0.18);
  filter: blur(140px);
}

.getStartedFixContainer {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

/* Title */
.getStartedFixTitle {
  text-align: center;
  margin-bottom: 60px;
}

.getStartedFixTitle h2 {
  font-size: 18px;
  font-weight: 700;
  color: #666;
}

.getStartedFixTitle h1 {
  font-size: 42px;
  font-weight: 900;
  color: #111;
  margin: 12px 0;
}

.getStartedFixTitle h1 span {
  color: #00c98b;
}

.getStartedFixTitle p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

/* Grid Layout */
.getStartedFixGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Cards */
.gsCard {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 201, 139, 0.25);
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0px 0px 25px rgba(0, 201, 139, 0.12);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.gsCard:hover {
  transform: translateY(-12px);
  box-shadow: 0px 0px 45px rgba(0, 201, 139, 0.22);
}

/* Step Circle */
.gsStep {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00ffb3, #00c98b);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  color: #000;
  font-size: 16px;
  margin-bottom: 18px;
  box-shadow: 0px 0px 20px rgba(0, 201, 139, 0.3);
}

/* Card Heading */
.gsCard h3 {
  font-size: 18px;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}

/* Card Text */
.gsCard p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media(max-width: 1200px) {
  .getStartedFixGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .getStartedFixGrid {
    grid-template-columns: 1fr;
  }

  .getStartedFixTitle h1 {
    font-size: 30px;
  }
}
.whyStyleAlt {
  padding: 110px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Background Gradient Glow */
.whyStyleAlt::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0, 255, 179, 0.18);
  filter: blur(140px);
}

.whyStyleAlt::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0, 201, 139, 0.18);
  filter: blur(140px);
}

.whyAltContainer {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* Left side */
.whyAltLeft h2 {
  font-size: 16px;
  font-weight: 800;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.whyAltLeft h1 {
  font-size: 44px;
  font-weight: 900;
  color: #111;
  margin: 12px 0;
  line-height: 1.2;
}

.whyAltLeft h1 span {
  color: #00c98b;
  text-shadow: 0px 0px 15px rgba(0, 201, 139, 0.25);
}

.whyAltLeft p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  max-width: 520px;
}

.whyAltLine {
  width: 140px;
  height: 5px;
  border-radius: 20px;
  background: linear-gradient(90deg, #00ffb3, #00c98b);
  margin: 25px 0;
}

.whyAltBtn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(90deg, #00ffb3, #00c98b);
  color: #000;
  transition: 0.3s;
}

.whyAltBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0px 0px 25px rgba(0, 201, 139, 0.35);
}

/* Right Cards */
.whyAltRight {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.whyAltCard {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 22px;
  border-radius: 18px;
  border: 1px solid rgba(0, 201, 139, 0.25);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0px 0px 22px rgba(0, 201, 139, 0.12);
  transition: 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Hover Slide Glow */
.whyAltCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 179, 0.18), transparent);
  transition: 0.5s;
}

.whyAltCard:hover::before {
  left: 100%;
}

.whyAltCard:hover {
  transform: translateX(10px);
  box-shadow: 0px 0px 40px rgba(0, 201, 139, 0.25);
}

/* Number badge */
.whyAltNumber {
  min-width: 55px;
  height: 55px;
  border-radius: 14px;
  background: rgba(0, 201, 139, 0.12);
  border: 1px solid rgba(0, 201, 139, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 16px;
  color: #00c98b;
  box-shadow: 0px 0px 20px rgba(0, 201, 139, 0.12);
}

.whyAltText h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #111;
}

.whyAltText p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Responsive */
@media(max-width: 991px) {
  .whyAltContainer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .whyAltLeft p {
    margin: auto;
  }

  .whyAltLine {
    margin: 20px auto;
  }

  .whyAltCard {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .whyAltCard:hover {
    transform: translateY(-10px);
  }
}
.preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at top, #0c141c, #000);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  overflow: hidden;
}

/* Background Candle Chart Animation */
.trading-bg {
  position: absolute;
  inset: 0;
  background: url("../../www.transparenttextures.com/patterns/graphy.png");
  opacity: 0.08;
  animation: moveBg 8s linear infinite;
}

@keyframes moveBg {
  0% { transform: translateX(0); }
  100% { transform: translateX(-200px); }
}

/* Main Loader Wrap */
.loaderWrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

/* Center Logo Box */
.logoBox {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0, 255, 179, 0.07);
  border: 2px solid rgba(0, 255, 179, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 60px rgba(0, 255, 179, 0.3);
  animation: pulseGlow 2s infinite ease-in-out;
  z-index: 10;
}

.logoBox img {
  width: 90px;
  height: auto;
  filter: drop-shadow(0px 0px 18px rgba(0, 255, 179, 0.55));
}

/* Pulse Glow */
@keyframes pulseGlow {
  0% { transform: scale(1); box-shadow: 0px 0px 35px rgba(0, 255, 179, 0.25); }
  50% { transform: scale(1.1); box-shadow: 0px 0px 70px rgba(0, 255, 179, 0.55); }
  100% { transform: scale(1); box-shadow: 0px 0px 35px rgba(0, 255, 179, 0.25); }
}

/* Orbit Ring */
.orbitRing {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 3px dashed rgba(0, 255, 179, 0.45);
  animation: spinRing 4s linear infinite;
  box-shadow: 0px 0px 30px rgba(0, 255, 179, 0.25);
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Orbit Dot */
.orbitDot {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #00ffb3;
  box-shadow: 0px 0px 25px rgba(0, 255, 179, 0.8);
  animation: orbitMove 2.5s linear infinite;
}

@keyframes orbitMove {
  0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

/* Text */
.loaderText {
  margin-top: 25px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.loaderText span {
  color: #00ffb3;
  text-shadow: 0px 0px 12px rgba(0, 255, 179, 0.6);
}

/* Progress Bar */
.progressBar {
  width: 220px;
  height: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  margin-top: 15px;
}

.progressBar span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #00ffb3, #00c2ff);
  border-radius: 10px;
  animation: loadingBar 1.6s infinite ease-in-out;
}

@keyframes loadingBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}
