@charset "utf-8";
/* CSS Document */

  <style>
    .service-box {
      padding: 20px;
      border-radius: 20px;
      color: #fff;
      text-align: left;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .service-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .service-box i {
      font-size: 40px;
      margin-bottom: 15px;
      display: block;
    }
  /* Custom extra rounded corners */
  .rounded-extra {
    border-radius: 20px;  /* change value (20px, 40px, 50px) as you like */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .rounded-extra:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  </style>