/* Enhanced gallery styling */
.gallery-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .card-img-top {
    height: 220px;
    object-fit: cover;
    cursor: pointer;
  }
  
  /* Modal enhancements */
  .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .modal-header {
    border-bottom: none;
    padding: 0.5rem 1rem;
    position: absolute;
    right: 0;
    z-index: 10;
  }
  
  .modal-body {
    padding: 0;
  }
  
  .btn-close {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    margin: 10px;
  }
  
  /* Animation for modal */
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
  }
  
  .modal.show .modal-dialog {
    transform: none;
  }