img {
	max-width: 100%;
	height: auto; /* Ensure the aspect ratio is preserved */
  }
  
  .gallery {
	background-color: #dbddf1;
	padding: 80px 0;
  }
  
  .gallery img {
	background-color: #ffffff;
	padding: 15px;
	width: 100%;
	height: 300px; /* Set a fixed height for uniformity */
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	object-fit: cover; /* Maintain aspect ratio by cropping if necessary */
  }
  
  #gallery-modal .modal-img {
	width: 100%;
  }

  
  