body {
    padding: 0;
    margin: 0;
  }
  
  .heading h2 {
    text-align: center;
    font-size: 34px;
    margin: 60px 0px;
  }
  
  .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .card {
    width: 300px;
  }
  
  .card .card-inner {
    position: relative;
    height: 300px;
    border-radius: 25px;
    overflow: hidden;
  }
  
  .card .card-inner .box .img-box {
    position: absolute;
    inset: 0;
    transition: 0.3s all linear;
  }
  
  .card .card-inner .box .img-box:hover {
    transform: scale(1.1);
  }
  
  .card .card-inner .box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-top-left-radius: 50px;
    padding: 12px;
    background-color: white;
  }
  
  .icon::after {
    position: absolute;
    content: "";
    top: -18px;
    right: 0;
    background: transparent;
    width: 18px;
    height: 18px;
    border-bottom-right-radius: 30px;
    box-shadow: 10px 10px 0 10px #fff;
  }
  
  .icon::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: -18px;
    background: transparent;
    width: 18px;
    height: 18px;
    border-bottom-right-radius: 30px;
    box-shadow: 10px 10px 0 10px #fff;
  }
  
  .icon span {
    transform: rotate(-40deg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    background-color: white;
    transition: 0.3s all linear;
  }
  
  .card:nth-child(1) .icon span {
    background-color: #d3b19a;
  }
  
  .card:nth-child(2) .icon span {
    background-color: #70b3b1;
  }
  
  .card:nth-child(3) .icon span {
    background-color: #d05fa2;
  }
  
  .icon i {
    color: white;
    font-size: 24px;
  }
  .icon:hover span {
    cursor: pointer;
    transform: scale(1.1);
  }
  
  .content h3 {
    font-size: 24px;
    margin-bottom: 0px;
  }
  

  .our-goal {
    padding: 15px
  }