.quote-section {
  min-height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 10px;
  /* background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); */
}

.quote-container {
  /* max-width: 900px; */
  text-align: center;
  /* background: rgba(255, 255, 255, 0.08); */
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quote-text {
  /* font-size: 1.4rem; */
  font-size: 1.8rem;
  line-height: 1.8;
  color: #ffffff;
  font-weight: 300;
}

.quote-text em {
  font-style: italic;
  color: #ffd369;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-text {
    font-size: 1.1rem;
  }
  .quote-container {
    padding: 25px;
  }
}


/* ///////////// */

  .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* bottom: 0; */
    content: '';
    opacity: .5;
    background: #000; }
