/* .ball {
    animation: float 10s ease-in-out infinite;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    position: absolute;
    overflow: hidden;
    right: 7vw;
    top:-15vh;
   
   
  
    background: radial-gradient(circle at 30% 30%, rgb(242, 255, 65) 20%, rgb(238, 255, 0) 40%, rgb(255, 34, 0) 60%,rgba(0,255,255,1) 90%, rgb(8, 0, 255) 100%);
    box-shadow: inset 1px 0 20px #ff3e20, inset 5px 0 10px #1b1b1bd4,
      inset 40px 0px 60px rgb(255, 246, 148),inset 20px 0px 130px rgb(170, 255, 159), inset -10px -60px 100px rgb(245, 12, 140), inset 20px -60px 100px rgb(0, 0, 0), 
      inset 0 0px 60px #1d1d1d5c, 2px 0px 10px #000000;
  }
  
  @keyframes float {
    0% {
      transform: scale(4);
    }
    25% {
      transform: scale(3.9);
    }
    50% {
      transform: scale(3.7);
    }
    100% {
      transform: scale(4);
    }
  }
   */
   .ball {
    animation: float 10s ease-in-out infinite, moveGradient 5s ease-in-out infinite;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    position: absolute;
    overflow: hidden;
    right: 7vw;
    top: -15vh;
    background: radial-gradient(circle at 30% 30%, rgb(99, 186, 0) 20%, rgb(238, 255, 0) 40%, rgb(146, 114, 109) 60%, rgba(0,255,255,1) 90%, rgb(8, 0, 255) 100%);
    box-shadow: inset 1px 0 20px #ff3e20, inset 5px 0 10px #1b1b1bd4,
        inset 40px 0px 60px rgb(255, 246, 150), inset 40px 0px 130px rgb(145, 201, 136), inset -10px -35px 100px rgb(245, 12, 66), inset 20px -60px 100px rgb(233, 233, 233),
        inset 1px 0px 60px #ffffff, 2px 0px 10px #000000;
    background-size: 400% 400%;
}

@keyframes float {
    0% {
        transform: scale(4);
    }
    25% {
        transform: scale(3.9);
    }
    50% {
        transform: scale(3.7);
    }
    100% {
        transform: scale(4);
    }
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 60%;
    }
    100% {
        background-position: 0% 50%;
    }
}
  /* .shadow {
    background: #a5a5a58f;
    width: 150px;
    height: 40px;
    margin: 0% 1.5%;
    animation: expand 4s infinite;
    position: absolute;
    border-radius: 50%;
  }
  @keyframes expand {
    0%,
    100% {
      transform: scale(0.5);
    }
  
    50% {
      transform: scale(1);
    }
  } */
  
  @media only screen and (max-width: 991px) {
    .ball {
        animation: float 10s ease-in-out infinite, moveGradient 10s ease-in-out infinite;
      height: 150px;
      width: 150px;
        top: -10vh;
        background: radial-gradient(circle at 20% 20%, rgb(99, 186, 0) 40%, rgb(238, 255, 0) 50%, rgb(146, 114, 109) 60%, rgba(0,255,255,1) 80%, rgb(8, 0, 255) 100%);
        box-shadow: inset 1px 0 20px #ff3e20, inset 5px 0 10px #1b1b1bd4,
            inset 40px 0px 60px rgb(255, 255, 126), inset 20px 50px 80px rgb(255, 0, 200), inset -30px -35px 100px rgb(103, 93, 128), inset 40px -60px 10px rgb(173, 23, 23),
            inset 1px 0px 60px #ffffff, 2px 0px 10px #000000;
        background-size: 200% 200%;
    }

    
    /* .shadow {
      width: 90px;
      height: 20px;
      top: 78%;
      animation: expand 5s infinite;
    }
  
     */
     @keyframes float {
        0% {
          transform: scale(1.5);
        }
        25% {
          transform: scale(2);
        }
        50% {
          transform: scale(2);
        }
        100% {
          transform: scale(1.5);
        }
      }
      @keyframes moveGradient {
        0% {
            background-position: 0% 100%;
        }
        50% {
            background-position: -400% 600%;
        }
        100% {
            background-position: 0% 100%;
        }
    }
  }

#clients_slider {
  background-color: #000000;
}
  #clients_slider p {
    color: #b3b3b3;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
  }

  #clients_slider .slide img {
    transition: transform 0.3s ease-in-out;
    width: 100px;
    height: 100px;
    opacity: 0.6;   
    animation: scroll 40s linear infinite;
  }
  #clients_slider .slide img:hover {
    opacity: 1;   
    transform: scale(1.5);
  }
  
  
  #clients_slider .slide-track {
    width: 100%;
    display: flex;
    gap: 3em;
    overflow: hidden;
  }
  
  #clients_slider .slider {
    /* display: inline-block; */
    margin-top: 0px;
    background-color: rgb(0, 0, 0);
    padding: 1em 4.5em;
  }

  @media only screen and (max-width: 991px) {
    #clients_slider .slider {
      /* display: inline-block; */
      margin-top: 0px;
      background-color: rgb(0, 0, 0);
      padding: 1em 0em;
    }
  
  }
  
  @keyframes scroll {
    0% {transform: translateX(0);}
    100% {transform: translatex(-1000%)}
  }

  



.video-btn {
  background: linear-gradient( 90deg, #000000, #000000);
  border: aliceblue;
}

.modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}

.modal-body {
position:relative;
padding:0px;
}
.btn-close {
position:absolute;
right:-30px;
color: #c7c7c7;
top:0;
}

/* foootr  style */

footer {
  background-color: black;
  color: white;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  /* border: 2px solid #fff; */
  /* text-align: left; */
}

.footer-image img {
  margin-top: 20px;
  position: relative;
  z-index: 2;
  transform: rotateZ(0deg);
  transition: transform 2s cubic-bezier(0.075, 0.82, 0.165, 1.03); /* Smooth transition */
  transform-origin: center center; /* Ensure rotation around the center */
}

.footer-image {
  position: relative;
  background: url('../img/color_circle.png') no-repeat center center, linear-gradient(25deg, #00000027, #00000000);
  background-size: cover;
  background-position: top center;
  background-clip: border-box;
  max-height: 235px;
  max-width: 300px;

  /* transform: rotate('40deg'); */
  /* background-size: cover; */
  background-repeat: no-repeat;
  z-index: 0;
  /* animation: rotateBg 10s cubic-bezier(0.41, -0.13, 1, 1) infinite; */
  
}
.footer-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(25deg, #000000, #000000);
  background-size: cover; /* Adjust the size of the background image */
  opacity: 0.6; /* Adjust the opacity as needed */
  z-index: 1;
  /* animation: rotateBg 10s cubic-bezier(0.41, -0.13, 1, 1) infinite; */
}
.footer-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 20px;
  /* background: url('../img/mouse-bg1.png'); */
  background-size: cover; /* Adjust the size of the background image */
  opacity: 1; /* Adjust th e opacity as needed */

  z-index: 0;
  
}

@media only screen and (min-width:1400px) {
  .footer-image img {
    margin-top: 0px;
  }

  .footer-image::after {
    
    margin-top: 0px;
    
    
  }
  
}

.footer-image:hover .footer-image img{
  transform: rotate('360deg');
}

footer .fservices {
  display: block;
}

footer h5 {
  color: #c7c7c7;
  font-size: 18px;
  font-weight: 600;
}
.fservices a {
  font-size: 16px;
  color: #a3a3a3;
  font-weight: 500;
  display: block;
}
.fservices a:hover {
  font-size: 16px;
  color: #a8a8a8;
  font-weight: 600;
  display: block;
}
.fquick-links a {
  font-size: 16px;
  color: #a3a3a3;
  font-weight: 500;
  display: block;
}
.fquick-links a:hover {
  font-size: 16px;
  color: #a8a8a8;
  font-weight: 600;
  display: block;
}
.fcontact a {
  font-size: 16px;
  color: #a3a3a3;
  font-weight: 500;
  display: block;
}
.fcontact a:hover {
  font-size: 16px;
  color: #a8a8a8;
  font-weight: 600;
  display: block;
}

@media only screen and (max-width: 768px) {
  .border-large {
    border-bottom: 1px solid #c7c7c7;
  }
  .border-small {
    border-bottom: 2px solid #c7c7c7;
  }
  .footer-image { 
    max-width: 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .border-large {
    border: none;
  }
  .border-small {
    border-bottom: 2px solid #c7c7c7;
  }
  .footer-image { 
    max-width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .border-large {
    border-bottom: 2px solid #c7c7c7;
  }
  .border-small {
    border: none;
  }
}

#services {
  background-color: #000000;
}

.about_section span.percent:after {
  content: "+";
  display: inline-block;
}

