/* === LAYOUT === */
.service-slider {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: #fff;
  border: 1px solid #ddd;
  max-width: 350px;
  transition: all 0.3s ease;
  overflow: hidden;
}


/* === IMAGE === */
.service-card__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

/* === MIDDLE SECTION === */
.service-card__middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.service-card__icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card__icon__inner {
  background: #FED100;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon__inner img {
  width: 30px;
  height: auto;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin: 0;
}

/* === ARROW DECOR === */
.service-card__middle__element img {
  width: 20px;
  height: auto;
  opacity: 0.7;
}

/* === BUTTON AREA === */
.service-card__btn {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
}

.service-card__btn:hover {
  background: #FED100;
  color: #000;
}

.service-card__link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}


.service-card__num {
  opacity: 0.3;
  font-size: 18px;
  font-weight: 600;
}
