
.GalleryBg {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #eaefec4d;
  padding: 80px 0px;
  /* margin-bottom: 50px; */
}
.GalleryTitle {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
.GallerySubTitle {
  color: #737373;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 35px;
}
.GalleryBtnContainer {
font-family: "Outfit", sans-serif;
  text-align: center;
  margin-top: 20px;
}

.buttons {
  margin-bottom: 20px;
}

.buttons button {
  background-color: #f0f0f0;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

.buttons button.active {
  background-color: #D4AF37;
  color: white;
}

.content {
  display: none;
}

.content.active {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}


.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  padding: 10px;
}

.photo-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.photo-item:hover {
  transform: translateY(-5px);
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-title {
  font-size: 16px;
  font-weight: bold;
  margin: 8px 0 4px;
  color: #333;
}

.photo-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}


.video-slider{
    max-width:900px;
    margin:70px auto;
    position:relative;
    overflow:hidden;
}

.video-track{
    display:flex;
    transition:0.6s ease;
}

.video-slide{
    min-width:100%;
    position:relative;
}

.video-slide video{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:16px;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:rgba(255,255,255,0.8);
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    cursor:pointer;
}

.video-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#fff;
    border:none;
    width:40px;
    height:40px;
    border-radius:50%;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    cursor:pointer;
}

.video-prev{ left:20px; }
.video-next{ right:20px; }
