  @import url(variables.css);

  body {
      background: #fff;
      font-family: Arial, sans-serif;
  }

  .services-section {
      padding: 40px 20px;
  }

  .services-title {
      text-align: center;
      font-weight: 600;
      color: #009fe3;
      margin-bottom: 30px;
      text-transform: uppercase;
  }

  .service-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      height: 280px;
      text-align: center;
      transition: all 0.2s ease-in-out;
      position: relative;
      width: 210px;
  }


  .service-img-wrapper {
      position: relative;
      width: 100%;
      height: 280px;
      filter: brightness(95%);
      transition: all 0.2s ease-in-out;
      z-index: 2;
      overflow: hidden;
  }

  .service-img-wrapper:hover {
      filter: brightness(100%);

  }

  .service-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .service-overlay {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      padding: 10px;
      background: linear-gradient(to top,
              rgba(0, 159, 227, 0.1) 0%,
              rgba(0, 159, 227, 0.7) 60%,
              rgba(0, 159, 227, 0.95) 100%);
      color: #fff;
      text-align: center;
      height: 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      z-index: 2;
  }

  .service-overlay h5 {
      font-size: 10px;
      font-weight: 600;
      margin: 0 0 5px;
      border-bottom: 1px dotted #fff;
      width: 100%;
      text-align: center;
      min-height: 30px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 0px 5px;
  }

  .service-overlay p {
      font-size: 9px;
      line-height: 9px;
      margin: 0;
  }

  b {
      font-size: 9px;
      color: #000;
  }

  .service-footer {
      position: relative;
      padding: 10px;
      font-size: 13px;
      font-weight: 600;
      color: #000;
      display: flex;
      background: #fff;
      justify-content: center;
      flex-direction: column;
      align-items: center;
  }

  @media (max-width: 575.98px) {
      .service-card {
          border: none;
          border-radius: 15px;
          overflow: hidden;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          height: 280px;
          text-align: center;
          transition: all 0.2s ease-in-out;
          position: relative;
          width: 180px;
      }
  }