/* start Our Industry Expertise section */

.industry-section {
    position: relative;
    padding: 60px 0;
  }


  .industry-item {
    position: relative;
    z-index: 2;
  }

  .industry-item img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .industry-item img:hover {
    transform: scale(1.05);
  }

  .dot {
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    margin: 10px auto;
  }

  .industry-title {
    font-weight: 500;
    margin-top: 10px;
    color: #000;
  }

  @media (max-width: 767px) {
    .industry-line {
      display: none;
    }

    .industry-item {
      margin-bottom: 30px;
    }
  }

/* end Our Industry Expertise section */