.img-modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
    }

    .img-modal-content {
   
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.video-content {
  width: 80%;
  max-width: 900px;
}

#modalVideo {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.video-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}


.video-close:hover {
  color: #648DDB;
}

.video-item {
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  border-radius: 10px;
  position: relative;
}

.play-btn i {
  font-size: 50px;
  color: white;
  transition: transform 0.3s ease;
}

.play-btn:hover i {
  transform: scale(1.2);
  color: #648DDB;
}

    .img-close {
      position: absolute;
      top: 20px;
      right: 35px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .img-close:hover {
      color: #aaa;
    }

    .fade-in {
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }