

.evidence-image {
    cursor: zoom-in;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  
  .evidence-image:hover {
    opacity: 0.9;
    transform: scale(1.01);
  }
  
  .image-preview-modal .modal-content {
    background-color: #111;
    border: 0;
  }
  
  .image-preview-modal .modal-header {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }
  
  .image-preview-modal .btn-close {
    filter: invert(1);
  }
  
  .image-preview-modal .modal-body {
    display: flex;
    justify-content: center;
    padding: 1rem;
    overflow: auto;
  }
  
  .image-preview-modal .modal-body img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
  }


.project-evidence-carousel {
    max-width: 950px;
    margin-inline: auto;
  }
  
  .project-evidence-carousel .gallery-card {
    overflow: hidden;
    border-radius: 1rem;
  }
  
  .project-evidence-carousel .gallery-card img {
    width: 100%;
    height: clamp(350px, 60vw, 650px);
    object-fit: contain;
    background-color: #f5f5f5;
  }
  
  .project-evidence-carousel .gallery-caption {
    padding: 1.5rem;
  }
  
  .project-evidence-carousel .gallery-caption h3 {
    margin-bottom: 0.5rem;
  }
  
  .project-evidence-carousel .carousel-control-prev,
  .project-evidence-carousel .carousel-control-next {
    width: 8%;
  }
  
  .project-evidence-carousel .carousel-control-prev-icon,
  .project-evidence-carousel .carousel-control-next-icon {
    padding: 1.25rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    background-size: 55%;
  }
  
  .project-evidence-carousel .carousel-indicators {
    bottom: 120px;
  }
  
  .project-evidence-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #222;
  }
  
  @media (max-width: 576px) {
    .project-evidence-carousel .gallery-card img {
      height: 400px;
    }
  
    .project-evidence-carousel .gallery-caption {
      padding: 1rem;
    }
  
    .project-evidence-carousel .carousel-indicators {
      bottom: 155px;
    }
  }