.gallery-section-251 {
  padding: 20px 10px;
  background: #ffffff;
}

/* Grid layout */
.gallery-125 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  max-width: 1140px;
  margin: auto;
}

/* Card styling */
.card-125 {
  background: #ffffff;

  

  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 1px;
}

/* Image styling */
.card-125 img {
  width: 545px;

  height: 560px;
  object-fit: contain;

  border-style: solid;
  border-color: #dbdbdb;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
      vertical-align: middle;
    display: inline-block;
    


  
}

/* Responsive: 1 column on small screens */
@media (max-width: 768px) {
  .gallery-125 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-125 {
    width: 100%;
    padding: 15px;
  }
}

.gallery-section-251 {
  padding: 20px 10px;
  background: #ffffff;
  width: 100%;
}

/* Mobile responsive fix */
@media (max-width: 768px) {
  .gallery-section-251 {
    width: 100%;
    padding: 20px 0;   /* side space remove for full width feel */
  }
}

@media (max-width: 768px) {
  .gallery-section-251 {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
}

.card-125 img {
  width: 100%;
  height: auto;   /* important */
  object-fit: contain;
}

/* Mobile ke liye */
@media (max-width: 768px) {
  .gallery-section-251 {
    padding: 20px 0;
  }

  .gallery-125 {
    grid-template-columns: 1fr;
  }

  .card-125 {
    padding: 0;
  }

  .card-125 img {
    width: 100%;
    height: auto;
  }
}