	.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 10px;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

	.gallery {
  flex-wrap: wrap;
  justify-content: center;
		margin-bottom: 30px;
}

.gallery img {
  width: 275px;          /* Adjust width as needed */
  object-fit: cover;     /* Crop and fit without distortion */
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Popup Styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
}
	


.popup img {
  max-width: 90%;
  max-height: 80%;
}

.popup .close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

.popup-prev,
.popup-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: white;
  background: rgba(0,0,0,0.6);
  border: none;
  padding: 10px;
  cursor: pointer;
}

.popup-prev { left: 20px; }
.popup-next { right: 20px; }

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

