
    /* Modal overlay */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    /* Blurred background */
    .blur-background {
      position: absolute;
      top:0; left: 0;
      width: 100%; height: 100%;
      backdrop-filter: blur(6px);
      background: rgba(0, 0, 0, 0.4);
      z-index: 998;
    }

    /* Modal box */
   .modal-box {
      position: relative;
      z-index: 1000;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      display: inline-block;
      max-width: 60vw;
      max-height: 70vh;
      top: 25px;
    }

    .modal-box img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 10px;
     
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #fff;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      font-size: 18px;
      cursor: pointer;
      box-shadow: 0 0 5px rgba(0,0,0,0.3);
      z-index: 1001;
    }

    /* Disable scroll when modal is active */
    body.modal-active {
      overflow: hidden;
    }

@media (max-width: 992px){
  .modal-box {
      position: relative;
      z-index: 1000;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      display: inline-block;
      max-width: 90vw;
      max-height: 70vh;
      top: 25px;
    }
   
}
  