 .imagegallerybody {
    
      margin: 0;
      padding: 20px;
      display: flex;
      justify-content: center;
    }
    .gallery-container {
      max-width: 1000px;
      width: 100%;
    }
    .gallery {
      display: grid;
      gap: 10px;
    }
    /* Row 1: 2 big images */
    .row-1 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .row-2, .row-3, .row-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
    .gallery-item {
      position: relative;
      cursor: pointer;
      overflow: hidden;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }
    .gallery-item:hover img {
      transform: scale(1.08);
    }
    .gallery-item span {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(246, 147, 9,0.8);
      color: #fff;
      padding: 5px;
      text-align: center;
      font-size: 16px;
      font-weight: bold;
      border-radius: 0 0 8px 8px;
    }
    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
    }
    .modal-content {
      position: relative;
      background: #fff;
      padding: 10px;
      border-radius: 10px;
      max-width: 90%;
      max-height: 90%;
      text-align: center;
    }
    .modal-content img {
      max-width: 100%;
      max-height: 70vh;
      border-radius: 8px;
    }
    .modal-content h3 {
      margin: 10px 0 0;
    }
    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 30px;
      font-weight: bold;
      color: #333;
      cursor: pointer;
    }
