.Custome_service_card {
    position: relative;
    background-color: #F8F9FB;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    height: 100%;
  }
  
  .Custome_service_card::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    height: 100px;
    width: 100px;
    border-radius: 50% 0% 50% 50%;
    background-color: #E77025;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
  }
  
  .Custome_service_card:hover::after {
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border-radius: 0%;
    background-color: #E77025;
  }
  
  .Custome_service_card .svgBg {
    position: relative;
    z-index: 1;
  }
  
  .Custome_service_card svg {
    transform: rotate(45deg);
    fill: #E77025;
    transition: fill 0.4s ease-in-out;
  }
  
  .Custome_service_card h3,
  .Custome_service_card h4,
  .Custome_service_card p,
  .Custome_service_card ul li {
    color: #3A3A3A;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease-in-out;
  }
  
  .Custome_service_card h3 {
    font-size: 30px;
    font-weight: bold;
  }
  
  .Custome_service_card h4 {
    font-size: 20px;
  }
  
  .Custome_service_card p,
  .Custome_service_card ul li {
    font-size: 14px;
  }
  
  .Custome_service_card h3 span {
    color: #E77025;
    transition: color 0.4s ease-in-out;
  }
  
  .Custome_service_card:hover h3 span {
    color: #000;
  }
  
  .Custome_service_card:hover ul li,
  .Custome_service_card:hover p,
  .Custome_service_card:hover h4,
  .Custome_service_card:hover h3 {
    color: #FFF;
  }
  
  .Custome_service_card:hover svg {
    fill: #000;
  }