/* ================= SERVICES CLEAN FINAL ================= */

.services-wrap {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

/* CARD */
.service-card {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 22px 26px;
  margin-bottom: 35px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* LEFT / RIGHT */
.service-card.left {
  flex-direction: row;
}

.service-card.right {
  flex-direction: row-reverse;
}

/* IMAGE — CONTROLLED SIZE */
.service-thumb {
  width: 300px;
  height: 300px;
  min-width: 260px;
  object-fit: cover;
  border-radius: 12px;
}

/* TEXT */
.service-text {
  flex: 1;
}

.service-text h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* HOVER */
.service-card:hover .service-thumb {
  transform: scale(1.03);
  transition: 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-thumb {
    width: 100%;
    max-width: 340px;
    height: 190px;
    margin: 0 auto;
  }
}
