/*-----gallery------*/

.gallery-title {
  text-align: center;
  padding: 25px;
  font-size: 28px;
  color: #1b5e20;
  font-weight: bold;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.caption {
  padding: 10px;
  text-align: center;
  background: #e8f5e9;
  color: #2e7d32;
  font-weight: 600;
}

/* Popup */

.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.popup img {
  margin-top: 60px;
  max-width: 80%;
  max-height: 70%;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}

.nav10 {
  position: absolute;
  top: 50%;
  color: white;
  font-size: 40px;
  cursor: pointer;
  padding: 10px;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

/*---end--*/
