#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #46b740;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.spinner {
  border: 5px solid #fff; /* Light gray border */
  border-top: 5px solid #112D58; /* Blue border */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hide the loader when the page is loaded */
body.loaded #loader {
  display: none;
}


  * {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Sour Gummy", sans-serif;
  }

  nav {
    background: #fff;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    animation: slideTop 1.5s ease-in;
    animation-fill-mode: forwards;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0 30px; 
  }

  html {
    scroll-behavior: smooth;
  }
  

  label.logo {
    color: #46b740;
    font-size: 50px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
  }

  nav ul {
    float: right;
    margin-right: 30px;
  }

  nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
  }

  nav ul li a {
    color: #46b740;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
  }

  a.active,
  a:hover {
    background: #46b740;
    color: #fff;
    transition: 0.5s;
  }

  .checkbtn {
    font-size: 22px;
    color: #46b740;
    float: right;
    line-height: 80px;
    margin-right: 30px;
    cursor: pointer;
    display: none;
  }

  #check {
    display: none;
  }

  .content-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    height: calc(100vh - 80px);
    margin-top: 80px;
    background: rgba(0, 0, 0, 0.2);
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Make sure the video stays behind the content */
}

.content {
    color: white;
    width: 60%;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    animation: slideRight 1.5s ease-in;
    animation-fill-mode: forwards;
}

  
  .content h2 {
    font-weight: 600;
    font-size: 6vmin;
    margin-bottom: 20px;
  }
  
  .content p {
    font-size: 3vmin;
    margin-bottom: 20px;
  }
  
  .button {
    height: 60px;
    width: 250px;
    border: none;
    border-radius: 30px;
    background-color: #46b740;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
  }
  
  .button:hover {
    background-color: #fff;
    color: #46b740;
  }
  


  .section-2 {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 110px;
  }

  .title {
    text-align: center;
    margin-bottom: 40px;
  }

  .title h2 {
    font-size: 4.5vmin;
    color: #112D58;
    font-weight: 600;
  }

  .div-dec {
    width: 50px;
    height: 4px;
    background: #46b740;
    margin: 20px auto;
  }

  .box-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    color: gray;
    width: 90%;
    margin: 0 auto;
  }

  .client img {
    border-radius: 25% 10%;
    width: 180px;
    margin: auto;
  }

  .client p {
    line-height: 25px;
  }

  .client {
    width: 30%;
    height: 400px;
    padding: 70px 30px 30px 30px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.51s;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .client h3 {
    font-size: 3vmin;
  }

  .client:hover {
    background-color: #46b740;
    color: #fff;
    cursor: pointer;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: 1s;
  }


  .invest-content{
    padding-bottom: 50px;
    padding-top: 50px;
    width: 90%;
    margin: auto;
  }

  .deals-group{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 99%;
    margin: auto;
    gap: 90px;
    margin: 50px 0px;
  }

  .deal{
    background-image: url(zou-images/investphoto1.jpg); background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply; 
    height: 400px;
    width: 46%;
    align-content: center;
    padding-left: 50px;
    border-radius: 1% 1%;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
  }

  .deal:nth-child(2){
    background-image: url(zou-images/investphoto2.jpg); background-size: cover;
  }
  
  .deal:hover {
    transform: scale(1.05); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  

  .invest-content h3{
    font-size: 6vmin;
    color: #112D58;
  }

  .invest-content p{
    color: #7d7987;
  }

  .deal h5{
    font-size: 5vmin;
    color: #46b740;
  }

  .deal h2{
    margin-top: 15px;
    font-size: 4vmin;
    width: 50%;
    color: #fff;
  }
  .deal p{
    margin-top: 5px;
    width: 90%;
    font-size: 20px;
    color: #fff;
  }

  .btn {
    margin-top: 30px;
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-size: 16px;
    font-weight: 700;
    color: white;
    border: 1px solid white;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
   }
   
   .btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #46b740;
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
   }
   
   .btn:hover::before {
    transform: translateX(0);
   }

   .how-it-works{
    width: 90%;
    border-radius: 10px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: #46b740;
    padding: 5%;
    padding-top: 15%;
    gap: 20px;
   }

   .how-it-works-content{
    width: 60%;
   }

   .how-it-works-content h2{
    color: #112D58;
    font-size: 7vmin;
   }
   .how-it-works-content h3{
    color: #fff;
    font-size: 5vmin;
    margin-top: 10px;
   }

   .how-it-works-content p{
    font-size: 2.5vmin;
    color: #fff;
   }

   .video iframe{
    width: 480px;
    border-radius: 10px;
   }

   .stats-section {
    margin-top: 10%;
    padding: 50px 5%;
    text-align: center;
  }
  
  .stats-section .stats-title h2 {
    font-size: 7vmin;
    color: #112D58;
  }
  
  .stats-section .div-dec {
    width: 50px;
    height: 4px;
    background: #46b740;
    margin: 20px auto;
  }
  
  .stats-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .stat-box {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
  }
  
  .stat-box:hover {
    transform: scale(1.05);
    cursor: pointer;
  }
  
  .stat-box h3 {
    font-size: 6vmin;
    color: #46b740;
  }
  
  .stat-box p {
    font-size: 3.5vmin;
    color: gray;
  }

  .stats-title p{
    width: 50%;
    margin: auto;
  }

  .last-secton{
    margin-bottom: 30px;
    margin-top: 8%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px;
  }

  .last-content{
    width: 35%;
  }

  .last-content h2{
    font-size: 8vmin;
    color: #46b740;
  }

  .colorblue{
    color: #112D58;
  }

  .last-content p{
    color: #7d7987;
    font-size: 2.5vmin;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .last-image img{
    width: 420px;
  }
  
  footer{
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: #46b740;
    padding: 60px 8%;
}

ul{
    list-style: none;
}

.footer-col{
    width: 15%;
    margin: 0px 30px
}


.footer-col h4{
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
}



ul li:not(:last-child){
    margin-bottom: 8px;
}

footer ul li a{
    font-size: 15px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-weight: 200;
    transition: 0.4s;
    padding: 5px;
}

footer ul li{
    display: block;
    margin: 10px 0px;
}

footer ul li a:hover{
  border-radius: 5px;
    padding-left: 2px;
}


.input {
    width: 100%;
    margin-top: 20px;
    max-width: 150px;
    height: 15px;
    padding: 12px;
    border-radius: 12px;
    border: 1.5px solid lightgrey;
    outline: none;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0px 0px 20px -18px;
  }
  
  



  .firstfooter-p{
    color: #fff;
  }

  .secondfooter-p{
    color: #fff;
    margin-top: 15px;
  }

@media (max-width: 920px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
        margin: auto;
    }

    footer ul li a{
        margin: 20px 0px;
    }

    .footer-col h4::before{
        all: unset;
    }
}

@media(max-width: 576px){
    .footer-col{
        width: 100%;
        margin: 20px 0px;
    }
}

.copyright{
    display: flex;
    justify-content: center;
    justify-content: space-between;
    border-top: 1px solid lightgray;
    background-color: #46b740;
    padding: 35px;
    text-align: center;
    color: lightgray;
    font-weight: 300;
}



  @keyframes slideTop {
    0% {
      transform: translateY(-100px);
      opacity: 0;
    }

    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }

  @keyframes slideRight {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }

    100% {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  @keyframes slideLeft {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }

    100% {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  /* Media Queries */

  @media (max-width: 1300px){
    .deal{
      width: 100%;
      margin: auto;
    }

    .how-it-works-content{
      text-align: center;
      width: 100%;
      margin-bottom: 10px;
    }

    .video iframe{
      width: 300px;
    }
  }
  @media (max-width: 1200px) {
    .content-box {
      padding: 0 5%;
      text-align: center;
    }

    .content h2 {
      font-size: 7vmin;
      text-align: center;
    }

    .content p {
      font-size: 4vmin;
      text-align: center;
    }

    .box-group {
      width: 90%;
    }

    .client {
      width: 45%;
      padding: 40px;
    }

    .invest-tittle{
      text-align: left;
    }

    .invest-tittle h2{
      margin-bottom: 15px;
    }

    .deal{
      width: 100%;
      margin: auto;
    }


    
  }

  @media (max-width: 890px) {
    nav ul {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background: #46b740;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: all 0.5s ease-in-out;
    }

    nav ul li {
      margin: 20px 0;
    }

    nav ul li a {
      color: #fff;
      font-size: 20px;
    }

    #check:checked ~ ul {
      left: 0;
    }

    .checkbtn {
      display: block;
    }

    .content-box {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .content {
      width: 90%;
      margin-bottom: 20px;
    }

    .content h2 {
      font-size: 6vmin;
    }

    .content p {
      font-size: 3.5vmin;
    }

    .image img {
      width: 90%;
      max-width: 480px;
    }

    .box-group {
      flex-direction: column;
      width: 100%;
    }

    .client {
      width: 80%;
      margin-bottom: 20px;
    }

    .stats-title p{
      width: 100%;
    }

    .last-content{
      width: 90%;
      text-align: center;
    }

    .last-content p{
      line-height: 25px;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .last-image img{
      width: 350px;
    }
    label.logo {
      font-size: 45px; 
      padding: 0; 
      text-align: center; 
  }

  nav ul {
      padding: 0; 
  }
}
    
    @media (max-width: 768px) {
      .stats-container {
        flex-direction: column;
        align-items: center;
      }

      .stats-title h2{
        font-size: 35px;
      }
    }
    
    .stat-box h3{ 
      font-size: 40px;
      }
  
      .stat-box p{ 
        font-size: 20px;
        }

        .stats-title p{
          width: 100%;
        }

  



  @media (max-width: 600px) {
    .content-box {
      flex-direction: column;
      text-align: center;
    }


    .content h2 {
      font-size: 7vmin;
    }

    .content p {
      font-size: 5vmin;
      margin-bottom: 15px;
    }

    .image img {
      width: 100%;
      max-width: 700px;
      margin: 0px auto 0px auto;
    }

    .button {
      width: 180px;
      font-size: 16px;
    }

    .box-group {
      flex-direction: column;
      align-items: center;
    }

    .client {
      width: 80%;
      padding: 25px;
    }

    .title h2 {
      font-size: 35px;
    }

    .client h3{
      font-size: 20px;
    }

    .title p{
      padding: 20px;
    }

    .invest-content h3{
      margin-bottom: 15px;
    }

    .how-it-works-content p{
      font-size: 16px;
    }

    .invest-tittle h3{
      font-size: 35px;
    }

    .stat-box h3{ 
    font-size: 40px;
    }

    .stat-box p{ 
      font-size: 20px;
      }

      .stats-title p{
        width: 100%;
      }

      .deal h2{
        font-size: 25px;
      }
  }
  
  @media (max-width: 600px){
    .last-image img{
      width: 300px;
    }
  }
  