/* Simple Before & After */
#transformation .container {
  max-width: 1000px;
  margin: 0 auto;
}

.center-text {
  text-align: center;
  margin-bottom: 50px;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.ba-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px; /* Fixed height for consistency */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ba-item:hover img {
  transform: scale(1.05); /* Subtle zoom on hover */
}

.ba-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-sec);
}

.highlight-label {
  background: var(--neon-pink);
  color: white;
}

/* Mobile Responsiveness for BA Grid */
@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ba-item {
    height: 350px; /* Smaller height on mobile */
  }
}
