.top-bar {
  width: 100%;
  height: 13rem;
  background-color: #2E2E3A !important;
  color: #EAEAEB !important;
  font-size: 2rem;
  position: relative;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.circle {
  width: 45vw;
  height: auto;
  max-height: 45vh;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .circle {
    width: 90vw;
    margin-top: 1rem;
  }
  .top-bar {
    font-size: 1rem;
  }
}

#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;
  }
}