.top-bar {
  width: 100%;
  background-color: #2E2E3A !important;
  color: #EAEAEB !important;
  padding: 3rem 0;
}

.services-hero-image {
  width: 100%;
  height: auto;
  /* border-radius: 50%; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

#services .photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

#services .photo-grid div {
  width: 100%;
}

#services .photo-grid img {
  width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Default: all images 4:3 */
#services .photo-grid img {
  aspect-ratio: 1 / 1;
}

/* Center image keeps natural height or gentler aspect ratio */
#services .photo-grid .center-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

/* Hover effect */
#services .photo-grid img:hover {
  transform: scale(1.03);
}

/* Small: 1 column */
@media (max-width: 991.98px) {
  #services .photo-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #services .photo-grid img {
    aspect-ratio: auto;
    height: auto;
  }
}
