.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.1rem;
}
.gallery-img {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-img:hover {
  transform: scale(1.05);
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  font-size: 2rem;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  color: white;
}
