/* Custom styles to complement Bootstrap */
.carousel-item {
  
  background-size: cover;
  background-position: center;
}

.pdf-viewer {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
}

.modal-dialog {
  --bs-modal-width: 90%;}
.gallery-img {
  
  object-fit: cover; /* تغطية المساحة دون تشويه */
  margin: 0;
  padding: 0;
  border: none;
  display: block;
}

@media (min-width: 768px) {
  .gallery-img {
  }
}

/* إزالة أي فراغات محتملة */
.container-fluid, .row, .col-12 {
  margin: 0;
  padding: 0;
}
/* صفحة 404 */
.error-code {
  font-size: 8rem;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .error-code {
      font-size: 5rem;
  }
  
  .lead {
      font-size: 1rem;
  }
}

.min-vh-100 {
  min-height: 100vh;
}
.error-code {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}