
  .image-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.3s ease;
  }
  .image-grid-item:hover {
    transform: scale(1.02);
  }
  .media.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .image-grid-item:hover .media.image img {
    transform: scale(1.05);
  }
  .flex-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .image-grid-item:hover .flex-banner {
    opacity: 1;
  }
  .content-box {
    transform: translateY(20px);
    transition: transform 0.3s ease;
  }
  .image-grid-item:hover .content-box {
    transform: translateY(0);
  }
  .mb-4 {
    margin-bottom: 1.5rem;
  }
  .mt-4 {
    margin-top: 100px;
  }
  .text-center {
    text-align: center;
  }
  .section-headings {
    margin-bottom: 3rem;
  }
  .heading.text-50 {
    font-size: 2.5rem;
  }
  .text.text-18 {
    font-size: 1.125rem;
    opacity: 0.8;
  }
