* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f7fa;
}

.gallery-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  margin-top: 20px;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 0 auto;
  max-width: 1200px;
  margin-bottom: 20px;
}

.gallery-container img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.gallery-container img:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Video Section Styles */




.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px auto;
  max-width: 1200px;
}

.video {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.video iframe {
  width: 100%;
  height: 200px;
}

.video p {
  padding: 10px;
  font-size: 1rem;
  color: #333;
}

.video p:hover {
  color: #1d72b8;
}

.video-description {
  font-size: 0.95rem;
  color: #666;
  margin-top: 5px;
  line-height: 1.4;
}