
/* GRID */
.custom-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* CARD – NO BORDER */
.custom-image-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE STYLE */
.custom-image-card img {
  width: 100%;
  height: 420px;                 /* same size */
  object-fit: contain;           /* image cut nahi hogi */
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;   /* 🔥 ONLY IMAGE ROUNDED */
  padding: 14px;
  background: rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}


/* HOVER */
.custom-image-card img:hover {
  transform: scale(1.04);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .custom-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .custom-image-grid {
    grid-template-columns: 1fr;
  }
}

