.whole-gallery-wrapper {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 970px) {
  .whole-gallery-wrapper {
    padding: 20px 20px;
  }
}

.carousel-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%; /* Adjust based on your needs */
}

.carousel-slides {
  display: flex;
  gap: 80px;
  transition: transform 0.5s ease;
  align-items: center;
}

.custom-gallery-display-img {
  max-width: 65%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: cover; /* Ensures the image covers the area without distorting its aspect ratio */
}

@media (max-width: 970px) {
  .custom-gallery-display-img {
    max-width: 90%;
    max-height: 90%;
  }
}

#fullscreen-gallery-img-background {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background-color: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
/*   filter: blur(0); /* Initial blur value */
/*   animation: blurAnimationFallback 2s forwards; */
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
  z-index: 100;
}

/* @keyframes blurAnimation {
  0% {
    backdrop-filter: blur(0);
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
  }
} */

#fullscreen-gallery-img {
  max-height: calc(100% - 160px); 
  max-width: calc(100% - 160px); 
  height: auto; 
  width: auto; 
  display: block; 
  object-fit: contain;
  pointer-events: none;
}

.close-gallery-button {
  position: absolute;
  right: 50px;
  top: 30px;
}

.gallery-icon {
  height: 42px;
  width: 42px;
  cursor: pointer;
}

.custom-form-wrapper {
  max-width: 800px;
}

.outer-custom-form-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* form {
  max-width: 600px;
}

.outer-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.inner-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

 
.col-12.col-lg-12.justify-content-center.d-flex.flex-column.pcBanner-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
} */

/* form {
  display: flex;
  flex-direction: column;
  align-items: center;
} */