.gallery-img-container {
        position: relative;
        width: 100%;
        height: 250px;
        overflow: hidden;
        border-radius: 8px;
      }
      .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
      }
      .gallery-img-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding: 15px;
        text-align: center;
      }
      .gallery-img-container:hover .gallery-img-overlay {
        opacity: 1;
      }
      .gallery-img-container:hover .gallery-img {
        transform: scale(1.1);
      }
      .gallery-img-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
      }
      .gallery-img-desc {
        font-size: 0.9rem;
        font-weight: 300;
      }
      .gallery-item {
        margin-bottom: 30px;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      }
      .gallery-section {
        padding: 7em 0;
      }
      .gallery-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
        text-align: center;
        color: #2c3e50;
      }
      .modal-img {
        width: 100%;
        max-height: 80vh;
        object-fit: contain;
      }