.card {
    margin-left: 50px;
    width: 360px;
    height: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    margin: 30px;
    background-color: #fffffe;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(92, 202, 207, 0.188) 0px 3px 3px 5px inset;
    transition: all 0.5s ease;
  }
  
  .card::before {
    content: "";
    width: 400px;
    height: 120px;
    position: absolute;
    top: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    
    background-color: #48dae7;
    box-shadow: rgba(96, 75, 74, 0.1882352941) 0px 5px 5px 0px inset;
    transition: all 0.3s ease;
  }
  
  .card * {
    z-index: 1;
  }
  
  .image .img {
    width: 200px;
    height: auto;
    background-color: #1468BF;
    border-radius: 100%;
    border: 4px solid #fefefe;
    margin-top: 20px;
    transition: all 0.5s ease;
  }

  
  .card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #06BBCC;
    transition: all 0.5s ease;
  }
  
  .card-info span {
    font-weight: 600;
    font-size: 24px;
    color: #161A42;
    margin-top: 15px;
    line-height: 5px;
  }
  
  .card-info p {
    color: rgba(0, 0, 0, 0.5);
  }
  
  .button {
    text-decoration: none;
    background-color: #1468BF;
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
    border: 1px solid white;
    transition: all 0.5s ease;
  }
  
  .card:hover {
    width: 360px;
    border-radius: 100%;

    height: 370px;
    box-shadow: none;
    border: none
  }
  
  .card:hover::before {
    width: 360px;
    height: 370px;
    border-radius: 50%;
    border-bottom: none;
    transform: scale(0.95);
  }
  
  .card:hover .card-info{
    transform: translate(0%,-15%);
   
    
  }
  .card-info:hover{
    color: aliceblue;
  }
  
  .button:hover {
    background-color: #FF6844;
    transform: scale(1.1);
  }