
.category-page-container{
  background-color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
  #projects{
    padding: 30px 10px;
  }
}


/* Card Iframe Styling */
.iframe-container {
  width: 100%;
  height: 200px; /* Set height for preview */
  overflow: hidden;
  margin-bottom: 30px;
  /* border-radius: 5px; */
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Full-Screen Iframe */
.fullscreen-iframe {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#fullscreen-iframe {
  width: 90%;
  height: 90%;
  border: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  background: red;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
}