/* 📁 assets/style.css */
.imggal {
  width:100%;
  height:auto;
  display:flex;
  justify-content:center;
     background: linear-gradient(135deg, #cae2e8, #cbced0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom:150px;
  position: relative;
}
.outprntbx {
  width: 100%;
  position:relative;
  overflow-x:hidden;
  height:350px;
 
  display:flex;
  align-items:center;
}
#parentBox {
  position: relative; 
  display: flex;
  transition: transform 900ms ease-in-out; 
  will-change: transform;
}

.childBox {
  padding: 12px;
  font-weight: bold;
  border-radius: 5px;
  width:250px;
  box-sizing: border-box;
}
.innerBox {
  margin-top: 8px;
  padding: 5px;
  background: #f6f6f6;
  border: 2px solid #63a0ae;
  box-shadow:1px 2px 10px 1px grey;
  border-radius: 4px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px; /* container height fix */
  overflow: hidden;
}

.innerBox img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 5px;
}
.prevbtn, .nextbtn {
  position: absolute;
  background: black;
  color: #f8f9fa;
  padding: 4px;
  top: 40%;
  box-shadow:1px 1px 5px 1px #417582;
  border-radius:5px;
  cursor:pointer;
}.prevbtn:hover, .nextbtn:hover{
  background:grey;
}
.prevbtn {
  left: 15px;
}
.nextbtn {
  right: 15px;
}
