@import url("font.css");
@import url("header.css");
@import url("footer.css");
@import url("section.css");
@import url("product.css");
@import url("banner.css");
@import url("accordion.css");
body {
	width: auto;
	margin: auto;
	line-height: 20px;
	background-image: url(bg.jpg);
	background-size:cover;
	background-attachment: fixed;
	background-position: top;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #009933;
	overflow-x:hidden;
	-webkit-text-size-adjust: none;
}




.filter-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    left: 0;
    top: 0;
    z-index: 999;
}

.filter-overlay {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s;
}

.port-item:hover .filter-overlay {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
}

.filter-overlay a i {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 3px;
    width: 75px;
    height: 75px;
    line-height: 75px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    font-size: 32px;
    background: #fea800;
    text-align: center;

}

.gallery-container {
  max-width: 600px;
  width: 100%;
}

.main-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.nav.prev {
  left: 10px;
}

.nav.next {
  right: 10px;
}

.thumbnails {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 5px;
}

.thumbnails img {
  width: 80px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border 0.3s;
}

.thumbnails img.active {
  border: 2px solid #00aaff;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox .close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  z-index: 1000;
}

#mainImage {
    cursor: pointer;
    max-height: 300px;
    width: 100%;
    object-fit: cover;
}

.text-white {
    color: white;
}

.title-section {
    font-size: 30px;
    text-align: center;
    padding-top: 20px;
    color: white;
}