.feature-section {
    padding: 50px 20px;
  }
  .metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .metric-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 20px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    /* height: 100px; */
  }
  .metric-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .metric-left h5 {
    margin-bottom: 4px;
    font-size: 30px;
    font-weight: 700;
  }
  .metric-left small {
    font-size: 20px;
    font-weight: 500;
    color: #333;
  }
  .metric-right {
    height: 100%;
  }
  .metric-right img {
    height: 100%;
    border-radius: 0 16px 16px 0;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
  }
  .bg-light-blue { background-color: #e9faef; }
  .bg-light-yellow { background-color: #fff8e4; }
  .bg-light-orange { background-color: #fff3e8; }
  .bg-light-green { background-color: #e9faef; }
  .logos img {
    height: 30px;
    margin: 10px 15px;
    filter: grayscale(100%);
    transition: 0.3s ease;
  }
  .logos img:hover {
    filter: grayscale(0%);
  }
  .center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  @media(max-width: 600px){
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
    }
  }

/* ///////////////////////////////////////////////////////////////////////////////////////  */
.services-section {
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.services-section h2 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 28px;
}
.service-box {
  border-bottom: 1px solid #e0e0e0;
  padding: 30px 20px;
  height: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .service-box {
    border-right: 1px solid #e0e0e0;
  }
  .row .col-md-4:nth-child(3n) .service-box {
    border-right: none;
  }
}
.service-icon img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}
.service-box h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}
.service-box p {
  font-size: 14px;
  color: #555;
}
.btn-custom {
  margin-top: 3px;
  font-size: 14px;
  padding: 5px 30px;
  background: linear-gradient(135deg, #0056b3, #007bff);
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
.btn-custom:hover {
  background: linear-gradient(135deg, #007bff, #0056b3);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
  color: #fff;
}
   /* ////////////////////////////////////////////////////////////////////////////////  */


  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }