.banner-section {
  height: 350px;
  background: url(../assets/banner.svg) no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-container .title1 {
  color: white;
  -webkit-text-stroke: 1px #eaffee;
  font-weight: 600;
}
/* /details */
.detail-section{
    padding: 50px 0;
    background-color: #fdfff6;
}
.cart {
  padding: 15px 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.384);
  margin-bottom: 20px;
  border-bottom: 5px solid seagreen;
    border-left: 5px solid seagreen;
}
.cart h4{
  color: #058905;
  font-weight: 600;
  margin-bottom: 12px;
}
.img-cart{
  margin-top: 20px;
}
.img-cart>.row{
  row-gap: 15px;
}
.img-box{
  width: 100%;
  height: 300px;
  padding: 12px;
  border: 2px solid #058905;
}

.img-cart>.row>div{
  position: relative;
}
.p-content {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding:  10px;
  color: white;
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 15px;
  font-size: 14px;
  text-align: center;
  display: none;
}

/* update */
.galleryItem img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin-bottom: 15px;
  height: 350px;
  position: relative;
}
.galleryItem{
  position: relative;
}
.galleryItem::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(78, 78, 78, 0.1);
  backdrop-filter: blur(1px);
  border: 1px solid black;
  display: none;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 8px;
}
.galleryItem img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
  /*border: 2px solid #058905;*/
}
.galleryItem:hover img {
  transform: scale(0.9);
  cursor: zoom-in;
  transition: all 0.5s ease-in-out;
}
.galleryItem:hover::after {
  display: block !important;
}
#lightBox {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: hsla(0, 0%, 0%, 0.902);
  /* backdrop-filter: blur(40px); */
  width: 100%;
  flex-direction: column;
  z-index: 1;
}
#lightBox img {
  width: 90%;
  max-width: 760px;
  height: 85%;
  height: 400px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: contain;
}
#lightBox #close {
  position: absolute;
  top: 20px;
  right: 20%;
  color: #ffffff;
  mix-blend-mode: difference;
  cursor: pointer;
  font-size: 50px;
}
#lightBox #caption {
  color: #fff;
  margin-top: 20px;
  font-size: 1.1em;
  text-align: center;
}
.img-title {
  margin-block: 10px;
  font-size: 14px;
  padding-inline: 6px;
}
.gallery {
  justify-content: center;
}
.galleryItem a {
  padding-left: 6px;
  font-size: 14px;
  color: #3ab052;
}
@media screen and (max-width: 576px) {
  .gallery {
    gap: 20px;
  }
  #lightBox #close {
    right: 0;
  }
  .galleryItem img ,.galleryItem {
    height: auto;
  }
}

.videoItem {
    position: relative;
    cursor: pointer;
    height: 300px;
    width: 100%;
}

.videoItem img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: #fff;
    background: rgba(0,0,0,0.6);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
}

/* Video Lightbox */
#videoLightBox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#videoClose {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.videoWrapper {
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
}

.videoWrapper iframe {
    width: 100%;
    height: 100%;
}


/* pdf */
.toolbar{
  display: none !important;
}
.pdf-section{
  padding: 30px 0;
}
.location-map iframe{
    width:100%;
    height:300px;
}
.plan{
  padding: 40px 0 ;
  background-color: #fdfff6;
}