/* Hover effect on the image with border */
.img-hover-zoom {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 2px solid transparent; /* Default border (no border initially) */
  }
  
  .img-hover-zoom:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #4af626; /* Green border on hover */
  }
  
  /* Full-screen styling */
  .fullscreen-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .fullscreen-img img {
    max-width: 90%;
    max-height: 90%;
  }
  
  .fullscreen-img .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
  }
  