.cards-module {
  position: relative;
  padding: 30px 0;
}

.cards-module .bg-gradient img {
  position: absolute;
  width: 500px;
  height: 511px;
  top: 50%;             
  right: 0;              
  transform: translateY(-50%);
  z-index: -1;
}
.cards-module .row-fluid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cards-module .row-fluid .span4 {
  padding: 50px 30px 50px 30px;
  width: 31%;
  background-color: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cards-module .row-fluid .span4:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cards-module .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
  min-height:55px;
}
.cards-module .card-icon {
  position: relative;
  z-index: 1;
  width: 28.57px
}
.cards-module .icon-background {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  z-index: -1;
}

.cards-module h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  color: var(--color-blue);
  margin-bottom: 5px;
}

.cards-module p {
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.14;
  color: var(--color-blue);
}



/* Responsive */
@media (max-width: 950px) {
  .cards-module .row-fluid .span4 {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .cards-module .row-fluid .span4 {
    width: 90%;
  }
  .cards-module h3 {
    font-size: 16px;
  }
  .cards-module .bg-gradient img {
    display: none;
}
