.icon-box {
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 50%;
    transition: transform .5s;
  }
  
  .icon-box .icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: #262626;
    z-index: 3;
    transition: color .5s, transform .5s;
  }
  
  .icon-box:hover .icon {
    color: #fff;
    transform: rotateY(360deg);
  }
  
  .icon-box:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: top .5s;
    z-index: 2;
  }
  
  .icon-box:hover:before {
    top: 0;
  }
  
  .col-md-6:nth-child(1) .icon-box:before {
    background: #5cb8ff4c;
  }
  
  .col-md-6:nth-child(2) .icon-box:before {
    background: #5cb8ff4c;
  }
  
  .col-md-6:nth-child(3) .icon-box:before {
    background: #5cb8ff4c;
  }
  
  .col-md-6:nth-child(4) .icon-box:before {
    background: #5cb8ff4c;
  }
  
  .title a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    z-index: 4; /* Ensure the title text stays above the hover effect */
  }
  
  .description {
    color: #ccc;
    font-size: 14px;
  }
  .icon-box {
    position: fixed;
    width: 100%; /* Menyesuaikan lebar sesuai kebutuhan */
    padding-bottom: 100%; /* Mengatur tinggi sesuai lebar untuk mempertahankan rasio 1:1 */
    background-size: cover;
    background-position: center;
    text-align: center;
  }

  .icon-box .icon {
    font-size: 48px; /* Contoh ukuran ikon */
  }

  .icon-box .title {
    margin-top: 20px; /* Contoh jarak antara judul dan ikon */
  }