.service-card2 {
  transition: transform .35s ease, box-shadow .35s ease;
  transform-style: preserve-3d;
}

.service-card2:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.service-card2 {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transform-style: preserve-3d;
  transition: all .45s cubic-bezier(.22,1,.36,1);
}

/* Hover lift + glow */
.service-card2:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow:
    0 30px 80px rgba(0,0,0,.25),
    0 0 30px rgba(0,255,200,.15);
}
.service-card2 img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card2:hover img {
  transform: scale(1.12);
}
.service-card2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
}

.service-card2:hover::before {
  opacity: 1;
}
.mech-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 60px 8%;
}
.service-card2 {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s;
  display: flex;
  flex-direction: column;
  height: 420px; 
}
.service-card2 img {
  width: 100%;
  height: 65%; 
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card2 .card-text {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color:rgb(150,150,150)
}
.service-card2:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 30px 80px rgba(0,0,0,.25),
    0 0 30px rgba(0,255,200,.15);
}

.service-card2:hover img {
  transform: scale(1.08);
}
/* SECTION WRAPPER */
.body-types {
  padding: 80px 8%;
  background: #f8fafc;
  text-align: center;
}

.body-types h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 800;
  color: #0f172a;
}

/* GRID */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

/* CARD */
.type-card {
  background: #ffffff;
  padding: 28px 22px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  transition: all .35s ease;
}

/* HOVER */
.type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

/* EMOJI */
.type-card .emoji {
  font-size: 34px;
  margin-bottom: 10px;
}

/* TEXT */
.type-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #020617;
}

.type-card p {
  font-size: .95rem;
  color: #475569;
  line-height: 1.5;
}
/* ================= BODY SHOP FLOATING LABELS ================= */

.body-labeled-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.body-labeled-gallery img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}

/* Subtle zoom */
.body-labeled-gallery .gallery-item:hover img {
  transform: scale(1.08);
}

/* Floating label */
.body-labeled-gallery .label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,.75);
  color: #00ffd0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  transition: all .35s ease;
}

/* Glow effect */
.body-labeled-gallery .gallery-item:hover .label {
  background: #00ffd0;
  color: #020617;
  box-shadow: 0 0 15px rgba(0,255,208,.5);
}
/* ================= BEFORE / AFTER ================= */

.before-after {
  padding: 80px 8%;
  background: #020617;
  text-align: center;
  color: white;
}

.before-after h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 800;
}

/* Wrapper */
.ba-wrapper {
  display: flex;
  justify-content: center;
}

/* Container */
.ba-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  overflow: hidden;
  cursor: ew-resize;
}

/* Images */
.ba-img {
  width: 100%;
  display: block;
}

/* Overlay (before image) */
.ba-overlay {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

/* Slider handle */
.ba-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #00ffd0;
  transform: translateX(-50%);
}

.ba-slider::after {
  content: "⇆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00ffd0;
  color: #020617;
  font-weight: bold;
  padding: 6px 8px;
  border-radius: 50%;
  font-size: 12px;
}

/* Labels */
.ba-label {
  position: absolute;
  top: 14px;
  background: rgba(0,0,0,.7);
  padding: 6px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 6px;
}

.ba-label.before {
  left: 14px;
}

.ba-label.after {
  right: 14px;
}

.ba-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Disable image selection + drag highlight */
.ba-container,
.ba-container * {
  user-select: none;
  -webkit-user-drag: none;
}
.mech-gallery {
  user-select: none;
}
.mech-slider {
  overflow-x: auto;
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  /* iPhone smooth momentum */
  -webkit-overflow-scrolling: touch;
}

.mech-slider img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;

  scroll-snap-align: center;
}

.mech-slider img {
  user-select: none;
  -webkit-user-drag: none;

}


.mech-slider {
  overflow-x: auto;
  display: flex;
  gap: 20px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
}

.ba-container {
  user-select: none;
  -webkit-user-select: none;
  touch-action: none; 
}

.ba-container img {
  -webkit-user-drag: none;
  pointer-events: none;
}
