.aboutus {
    margin-bottom: 0;
    margin-top: 0;
}
/* ── Project Modal ── */
.project-modal {
  width: 70vw;
  max-width: 900px;
}
.project-modal .modal-body {
  max-height: 70vh;
  overflow-y: auto;
  text-align: center;
}
.project-modal .modal-body p {
  text-align: left;
  margin-bottom: 12px;
}
.project-modal .modal-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.project-modal .modal-images img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .project-modal {
    width: 95vw;
    max-width: 95vw;
    margin: 10px auto;
  }
  .project-modal .modal-body {
    max-height: 80vh;
  }
  .project-modal .modal-images img {
    max-width: 100%;
  }
}
