  /* Hover effect */
  .gallery-main img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

/* Full-screen overlay */
.fullscreen-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent background */
    z-index: 9999; /* High z-index to cover everything */
    justify-content: center;
    align-items: center;
}

.fullscreen-overlay img {
    max-width: 90%;
    max-height: 90%;
}

.fullscreen-overlay .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.Text-gallery h1{
  font-size: x-large;
}

.Text-gallery p{
  margin-top: 10px;
  font-size: 12px;
  
}
.gallery-main {
 padding: 20px;
 
}
.gallery-main img{
  width: 100%;
  height: auto;
  box-shadow: 10px 10px 5px rgb(180, 182, 183);
}
@media (max-width: 700px) {
  .gallery-main img {
      margin-bottom: 15px;
  }
}