    .ex-des:hover {
      transform: scale(1.03);
    }

    .thq-img-ratio-16-9:hover {
      transform: scale(1.03);
    }

    /* Modal styles */
    .modal {
      display: flex;
      justify-content: center;
      align-items: center;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .modal.show {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-content {
      max-width: 90%;
      max-height: 80vh;
      border-radius: 10px;
      transform: scale(0.8);
      opacity: 0;
      transition: all 0.4s ease;
    }

    .modal.show .modal-content {
      transform: scale(1);
      opacity: 1;
    }

    .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 32px;
      color: white;
      font-weight: bold;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .close:hover {
      transform: scale(1.2);
    }

    @media (max-width: 768px) {
      .modal-content {
        max-width: 95%;
        max-height: 70vh;
      }
    }