@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');



.slide {
  position: relative;
  /* width: 150%; */
  height: 550px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 60px 40px;
  box-sizing: border-box;
  color: var(--white);
  justify-content: center;
  background-image: linear-gradient(to right, #060606b4, rgba(42, 39, 39, 0.915));
}

.ul-banner-2-slide-bg-img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    width: -webkit-fill-available;
}

.ul-banner-title {
    font-size: 80px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.breadcrumb-box {
    display: inline-block;
    padding: 0px 25px;
    background-color: rgba(123, 120, 120, 0.292);
/*     border-radius: 150px; */
    color: white;
    margin-left: 105px;
}

.breadcrumb{
   margin-top: 1rem;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  margin-right: 8px;
}

.breadcrumb a:hover {
  color: #a42b13;
}

/*------------------- Responsive -------------------*/

/* Tablet view (≤ 991px) */
@media (max-width: 991px) {
  .slide {
    height: 450px;
    padding: 50px 20px;
  }

  .ul-banner-title {
    font-size: 50px;
  }

  .breadcrumb-box {
    padding: 0px 20px;
  }
}

/* Mobile view (≤ 576px) */
@media (max-width: 576px) {
  .slide {
    height: 350px;
    padding: 30px 15px;
  }

  .ul-banner-title {
    font-size: 32px;
	text-align: center;
  }

  .breadcrumb-box {
    padding: 0px 15px;
	  margin-right: 109px;
  }

  .breadcrumb a {
    font-size: 0.85rem;
    margin-right: 5px;
  }
}
/*-----------------------Image Gellary styling--------------------*/
.photo-gallery {
	background-color: #fff;
}

.gallery-container {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
/*   border-radius: 20px; */
  transition: transform 0.4s ease;
	height: -webkit-fill-available;
}

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

/* Overlay Caption */
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #a42b13;
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .caption {
  transform: translateY(0);
}

.caption h3 {
  font-size: 1.1rem;
  margin: 0;
}

.caption p {
  font-size: 0.875rem;
  margin: 0.2rem 0 0;
}

.caption a {
  background: #fff;
  color: #a42b13;
  font-size: 1.2rem;
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;

}


.caption a:hover {
  background: #f3f3f3;
  transform: scale(1.1);
}

/*------------------- Responsive -------------------*/

/* Tablet view (≤ 991px) */
@media (max-width: 991px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 30px;
  }

  .caption h3 {
    font-size: 1rem;
  }

  .caption p {
    font-size: 0.8rem;
  }
}

/* Mobile view (≤ 576px) */
@media (max-width: 576px) {
  .gallery-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 20px;
  }

  .caption h3 {
    font-size: 0.95rem;
  }

  .caption p {
    font-size: 0.75rem;
  }
	
	.caption{
		gap:10px
	}

  .caption a {
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
	border-radius: 0%;
  }
}