.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-overlay {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5); /* darkens the video for readability */
}
.features-section {
  background-color: #111; /* dark background */
  color: white;
}
.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #111 !important; /* darker tone */
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.navbar-brand {
  font-size: 2rem;
  font-weight: bold;
  color: #fff !important;
}

.navbar-nav .nav-link {
  font-size: 1.1rem;
  margin-left: 1rem;
  color: #ddd !important;
}
.gallery-item img {
  height: 250px; /* consistent height */
  width: 100%;
  object-fit: cover; /* crop images evenly */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
/* Force gallery layout into clean rows */
.row.g-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Prevent images from shifting or shrinking weirdly */
.gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}


.caption {
  font-size: 1.15rem;
  font-weight: bold;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0.75rem;
  width: 100%;
}
form label {
  font-weight: 600;
}

form .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}



