.card-service .service-icon {
    height: 240px;
    width: 340px;
    border-radius: 10px;
}

.photo-section {
  display: flex;
  flex-direction: row; /* default: horizontal */
  justify-content: center;
  overflow-x: auto;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
}

/* Images: default for desktop - 3 side by side */
.photo-section img {
  width: 33.33%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

/* Hide scrollbars */
.photo-section::-webkit-scrollbar {
  display: none;
}
.photo-section {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* === Responsive (Mobile First) === */
@media (max-width: 768px) {
  .photo-section {
    flex-direction: column;   /* stack images vertically */
    overflow-x: hidden;       /* no horizontal scroll needed */
    overflow-y: auto;
    align-items: center;
  }

  .photo-section img {
    width: 100%; /* full width in column layout */
  }
}


.media-section {
      display: flex;
      flex-direction: row;
      justify-content: center;
      overflow-x: auto;
      gap: 10px;
      padding: 20px;
    }

    .media-section img,
    .media-section video {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 12px;
    }

    .media-item {
      width: 33.33%;
      aspect-ratio: 3 / 2; /* Ensures same shape for all (landscape) */
      flex-shrink: 0;
    }

    /* Optional: Hide scrollbars */
    .media-section::-webkit-scrollbar {
      display: none;
    }
    .media-section {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }