/* =========== ABOUT-SECTION GALLERY =========== */
.about-gallery {
    text-align: center;
  }
  
  .gallery-wrapper {
    display: inline-block;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
  }
  
  .gallery-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 1;
    transition: opacity 1s ease-in-out; /* 1s fade */
  }
  
  