/* CSS Reset */
*{
    padding: 0;
    margin: 0;
    font-family: "Anek Devanagari", sans-serif;
}
body,html{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}
.box::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.box::after{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0,0.9) 0%,
      rgba(0, 0, 0, 0.17) 100%
    );
    z-index: 2;
}
#box1::before {
   
    background: url("/static/images/image3.png") no-repeat center center/cover; 
  }
#box2::before {
   
    background: url("/static/images/image2.png") no-repeat center center/cover; 
  }
#box3::before {
   
    background: url("/static/images/image1.png") no-repeat center center/cover; 
  }
#box4::before {
   
    background: url("/static/images/image1.png") no-repeat center center/cover; 
  }

.poppins{
    font-family: "Poppins", serif;
}


/* ---- Whatsapp Icon ---- */
.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}


.gallery-container {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.gallery-row {
    display: flex;
    gap: 10px;
    overflow-x: hidden;
}