.banner-section {
  height: 350px;
  background: url(../assets/banner.jpg) no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-container .title1 {
  color: white;
  -webkit-text-stroke: 1px #fbfffc;
}

/* Project Section */
/* Project Section */
.project-section {
  padding: 40px 15px;
  background-color: #ffffff;
}
.project-section .title2 {
  text-align: center;
  margin-bottom: 20px;
}
.project-section .title2 span {
  color: #3ab052;
  font-weight: 700;
}

.galleryItem {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin-bottom: 15px;
  height: 350px;
  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: 85%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
}

.galleryItem:hover img {
  transform: scale(0.9);
  cursor: zoom-in;
  transition: all 0.5s ease-in-out;
}

.galleryItem:hover::after {
  display: block !important;
  opacity: 10;
}
#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-top: 10px;
  font-size: 14px;
  padding-inline: 6px;
}
.gallery {
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .banner-section {
    height: 120px;
  }
  .banner-container .title1{
    -webkit-text-stroke: 0;
  }
}
