body {
  font-family: 'Poppins', sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  display: inline-block;
}
.custom-quote {
  font-family: 'Merriweather', serif; /* clean elegant serif font */
  font-size: 1.4rem;
  color: #222;
  border-left: 3px solid #007bff; /* subtle theme accent */
  padding: 8px 18px;
  margin: 30px auto;
  max-width: 700px;
  background: transparent; /* no box, clean look */
}

footer {
  background-color: #111;
  color: white;
  padding: 20px 0;
}

footer a {
  color: #ffc107;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
