html, body {
      height: 0%;
      margin: 0;
      padding: 0;
    }
    
.btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.wrapper {
      height: calc(0vh - 0px);
      margin-top: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

.three-box-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
}

.box {
  flex: 1;
  min-width: 300px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.box h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

 .elfsight-app-4ee11c8f-040a-4251-bd56-8d6f544210ec [class*="eapps-widget-toolbar"],
  .elfsight-app-4ee11c8f-040a-4251-bd56-8d6f544210ec [class*="eapps-widget-footer"] {
      display: none !important;  
}


.my-logo-slider-box {
  overflow: hidden;
  background: #F5F5F5;  
  border: 2px solid #ddd;
  border-radius: 20px;
  box-shadow: white;
  padding: 30px 0;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.my-slider-track {
  display: flex;
  width: max-content;
  animation: myScroll 25s linear infinite;
}

.my-slider-logo {
  width: 190px;
  height: 160px;
  margin: 0 20px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 16px;
  background-size: 160px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.custom-btn {
  width: 220px;
}

@keyframes myScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive square size */
@media (max-width: 768px) {
  .my-slider-logo {
    width: 120px;
    height: 120px;
    margin: 0 12px;
  }
}
/* whatsapp button*/
.whatsapp-float {
      position: fixed;
      bottom: 50px;
      right: 50px;
      z-index: 1000;
      cursor: pointer;
    }

    .whatsapp-float img {
      height: 70px;
      width: 70px;
      transition: transform 0.3s;
    }

    .whatsapp-float img:hover {
      transform: scale(1.1);
    }
    
    
    /**/
     .my-form-wrapper {
    max-width: 800px;
    margin: auto;
    padding: 15px;
  }

  .my-form-wrapper form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .my-form-wrapper form input {
    flex: 1 1 100%;
    box-sizing: border-box;
  }

  /* reCAPTCHA container center */
  .recaptcha-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  /* Button styled to match reCAPTCHA width */
  .submit-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .submit-container button {
    width: 304px; /* reCAPTCHA default width */
    max-width: 100%;
    cursor: pointer;
  }

  /* Two-column inputs on medium+ screens */
  @media (min-width: 576px) {
    .my-form-wrapper form input {
      flex: 1 1 calc(50% - 10px);
    }
  }
  
   /*footer logo css*/
   .custom-boxes-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* Gap between boxes */
  padding: 20px;
  max-width: 90%;
  margin-left:60px;
  box-sizing: border-box;
}

.custom-box {
  flex: 0 0 calc(19% - 12px); /* ~5 boxes per row with gap */
  max-width: calc(19% - 12px);
  aspect-ratio: 1 / 1;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.custom-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.custom-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.custom-box:hover img {
  transform: scale(1.1);
}
  
  
body{
    background-color:white;
}
