.workplace-section{
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f7f3ff);
}

.workplace-section .heading{
  color: #1b1b2f;
  font-size: 28px;
  margin-bottom: 10px;
}

.workplace-section .description{
  color: #555;
  margin-bottom: 30px;
}

/* GRID */
.workplace-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: auto;
}

/* IMAGE CARD */
.work-image{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.work-image:hover{
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .workplace-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .workplace-grid{
    grid-template-columns: 1fr;
  }
}

/* MODAL */
.image-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.image-modal.active{
  display: flex;
}

.modal-image{
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}