#description p {
    margin-bottom: 5px;
}

/* Optional: thumbnail hover */
.thumb-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thumb-hover:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hero Section */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* adjust opacity as you like */
  z-index: 2;
}

/* Keep all content above the video */
.hero-box .container {
  position: relative;
  z-index: 3;
}

.search-fields-container {
  /* For light background */
  background: rgba(255, 255, 255, 0.35);
  padding: 30px;
  border-radius: 15px;
  z-index: 3;
  position: relative;
}