.other-services-card {
  background: 
    linear-gradient(to bottom, rgba(9, 15, 32, 0) 0%, rgba(9, 15, 32, 0) 100%),
    url('/assets/img/images/service/implementation/other-services-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ffffff;
  padding: 100px !important;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: background-color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.other-services-card:hover {
  background: 
    linear-gradient(to bottom, rgba(9, 15, 32, 0.8) 0%, rgba(9, 15, 32, 0.8) 100%),
    url('/assets/img/images/service/implementation/other-services-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #090F20;
}


.other-services-card h5 {
  position: relative;
  z-index: 2;
  color: #000;
  transition: opacity 0.3s ease-in-out;
}

/* Change background and hide text on hover */
/* .other-services-card:hover {
  background-color: #090F20;
  background-image: none; 
} */

.other-services-card:hover h5 {
  opacity: 0;
}

.other-services-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  opacity: 0;
  font-family: "DM Sans";
  font-size: 19.24px;
  font-weight: 600;
  line-height: 26.45px;
  text-align: center;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.other-services-card:hover::after {
  content: 'View More';
  opacity: 1;
  transform: translate(-50%, -45%);
}

.service-banner{
  background: url(/assets/img/images/service/implementation/implementation-banner-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.blue-banner-card{
  background: url(/assets/img/images/blue-banner-card.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
}

@media (max-width: 378px){
  .other-services-card{
    padding: 75px !important;
  }
}