.gallery {
}

.gallery-cell {
  width: 66%;
  height: 600px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  border-radius: 8px; /* Optional: adds rounded corners */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 20px;
}

/* Center image inside gallery cell */
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px; /* Optional: adds rounded corners */
}

/* Add text below the image */
.gallery-cell p {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #fff; /* Change color as needed */
  text-align: center;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  background-color: #25d366; /* WhatsApp green */
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  cursor: pointer;
  width: 80%;
}

.whatsapp-btn:hover {
  background-color: #128c7e; /* Darker WhatsApp green for hover */
}

.whatsapp-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .gallery-cell {
    height: auto; /* or auto, or use aspect-ratio */
    width: 100%;
  }
}
