 /* Custom styling */
 .image-card {
    position: relative;
    color: white;
    overflow: hidden;
  }

  .image-card:hover img{
    transform: scale(1.1);
  }

  .image-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .category {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
  }
  .title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 5px;
  }
  .slide-container {
    transition: transform 0.5s ease;
  }
  
  .gallery-page-items .page-link{
    /* border:2px solid var(--primary-color); */
    background-color: var( --secondary-color);
    color: white;
    border-radius: 50%;
    margin: 5px;
    display: flex;
    justify-items: center;
    align-items: center;

  }
  .page-link.active {
    color: white;
    background-color: green;
    border-color: green;
}