
: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: var(--primary);
    padding: 10px 33px;
    border-radius: 80px;
    color: var(--white);
    margin-left: 10px;
    text-transform: uppercase;
    border: 3px solid var(--primary);
    &:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
    }
  }
  .btn-secondary {
    background: transparent;
    border: 3px solid var(--primary);
    color: var(--primary);
    &:hover {
        color: var(--white);
        border-color: var(--primary-dark);
    }
  }
  
  .logo {
    margin-right: 1.5rem;
    img {
        width: 120px;
        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: auto;
      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: var(--brand-color);
  border: 10px solid var(--brand-color);
}
.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: #d28b22;
    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: #070035;
  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: 50px;
  }
}

.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 */