

 




.page-video-gallery{
	padding: 80px 0 130px;
}

.page-video-gallery{
		padding: 40px 0 50px;
	}

  .video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	/* cursor: none; */
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: linear-gradient(136.83deg, var(--accent-color) 2.01%, var(--accent-secondary-color) 97.82%);
	color: var(--primary-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}





.page-gallery{
	padding: 80px 0 130px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	/* cursor: none; */
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}



.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.1);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}



   .gallery-img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      cursor: pointer;
      border-radius: 10px;
    }

    .modal-img {
      width: 100%;
      z-index: 1050; /* Increase visibility above other modal elements */
    }

    @keyframes glow {
    0%, 100% {
        font-size: 6px;
    }
    50% {
        font-size: 18px;
        color: #ff0000;
    }
    }

.glow {
  border-radius: 50%;
  animation: glow 1.5s infinite ease-in-out;
}


.floating-btn {
  position: fixed;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366; /* Default: WhatsApp green */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.whatsapp-btn {
  right: 20px;
}

.call-btn {
  left: 20px;
  background-color: #683BF2; /* You can customize this color */
}

.floating-btn img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1); /* Makes icon white on dark background */
}


.item-imgs  img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.item-imgs {
  width: 100%;
  height: 120px; /* Adjust as needed */
  overflow: hidden;
}

#imageModal .modal-dialog {
    max-width: 60vw;
    max-height: 60vh;
    margin: auto;
}

#imageModal .modal-content {
    background-color: transparent;
    border: none;
    padding: 0;
    text-align: center;
}

#imageModal .modal-body {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 95vh;
    overflow: auto;
}

#imageModal img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
}

