.img-fluids {
    width: 30%;
    height: auto;
}




/* Laptop (1024px – 1366px) */
@media (max-width: 1366px) {
    .img-fluids {
        width: 80px;
        height: auto;
    }

}

/* Tablet (768px – 1023px) */
@media (max-width: 1023px) {
    .img-fluids {
       
        height: auto;
    }

}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .img-fluids {
      
        height: auto;
    }

}

.se-pre-con {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 1em;
    box-sizing: border-box;
    background: #000000;

    color: #BEB441;
}

.loader svg {
    opacity: 0.5;
}

svg polygon {
    stroke-dasharray: 50;
    animation: dashoffset 2.5s linear infinite;
}

@keyframes dashoffset {
    to {
        stroke-dashoffset: 100;
    }
}


/* gallery Start */

 .gallery {
    column-count: 4;
    column-gap: 1rem;
    width: 95%;
    max-width: 1200px;
    margin: 3rem auto;
    background-color: #000000;
    padding: auto 100px;
  }
  .bg-d {
        background-color: #000000;
        padding: 30px 0;
}

  /* For smaller screens reduce columns */
  @media (max-width: 900px) {
    .gallery {
      column-count: 3;
    }
  }
  @media (max-width: 600px) {
    .gallery {
      column-count: 2;
      column-gap: 0.75rem;
    }
    h1 {
      font-size: 1.8rem;
    }
  }
  @media (max-width: 400px) {
    .gallery {
      column-count: 1;
      column-gap: 0;
    }
  }

  /* Gallery item styling */
  .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
      0 0 8px #968d2c,
      0 0 18px #968d2c;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000000;
  }

  .gallery-item img {
    width: 100%; 
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 16px;
  }

  .gallery-item:hover {
    transform: scale(1.03);
    box-shadow:
      0 0 20px #968d2c,
      0 0 40px #968d2c;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  .he1 {
    text-align: center;
    margin: 1rem;
  }

  .read-more {
        background-color: #3A2A96;
        color: #fff;
        border-radius: 5px;
        border: none;
        padding: 8px 13px;
  }
/* gallery end */