/* ===================== */
/* SERVICE SECTION STYLE */
/* ===================== */
.service-section {
  padding: 80px 20px 100px;
  text-align: center;
  background-color: #fff;
}

.service-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #1d56a7;
  font-weight: 700;
}

.service-section .desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}

.service {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 40px;
}

.service-box-link {
  text-decoration: none;
  color: inherit;
}

.service-box {
  width: 280px;
  background-color: #1d56a7;
  border-radius: 14px;
  padding: 20px;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ========================= */
/* IMAGE WRAPPER + OVERLAY  */
/* ========================= */
.service-img-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  overflow: hidden;
  border-radius: 4px;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.service-img-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-img-wrapper:hover .overlay {
  opacity: 1;
}

/* Zoom Icon */
.zoom-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 50%;
  padding: 12px;
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.zoom-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  pointer-events: none;
}

.service-img-wrapper:hover .zoom-icon {
  transform: scale(1.2);
}

/* ====================== */
/* TEXT BELOW IMAGE       */
/* ====================== */
.title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 12px;
  text-transform: uppercase;
}

.detail {
  font-size: 14px;
  margin-top: 6px;
  color: #ccc;
}
