
    .service-box {
      height: 350px;
      width: 250px;
      background-image: var(--bg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 5px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .service-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .service-box .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.4s ease;
      padding: 1.5rem;
      text-align: center;
    }

    .video-container {
      position: relative;
      width: 200%;
      padding-bottom: 150.25%;
      height: 0;
      overflow: hidden;
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 50%;
      height: 100%;
    }


    .service-box:hover .overlay {
      opacity: 1;
    }

    .service-box h3 {
      color: #fff;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .service-box p {
      color: #ddd;
      font-size: 1rem;
      margin: 0;
    }

    @media (max-width: 768px) {
      .columns.is-multiline {
        justify-content: center;
      }

      .column.is-one-quarter {
        flex: 0 0 45%;
        max-width: 45%;
        margin-bottom: 1rem;
      }

      .service-box {
        width: 100%;
        height: 180px;
      }

      .service-box h3 {
        font-size: 1.2rem;
      }

      iframe {
        width: 100%;
        height: 180px;
      }
    }

    @media (max-width: 480px) {
      .column.is-one-quarter {
        flex: 0 0 100%;
        max-width: 1000%;
      }

      .service-box {
        height: 160px;
      }

    }