:root {
  --primary: #0A1F44;
  --secondary: #D4AF37;
  --light-blue: #1A336B;
}

/* Quotes Section */
.quotes-container {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #152A4E 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  text-align: center;
  overflow: hidden;
}

.quote-box {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 250px;
  background: #000;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.quote-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 2rem;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.quote-content.active {
  opacity: 1;
  animation: zoomIn 1s ease forwards;
}

.quote-text {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: gray;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
}

/* Zoom animation */
@keyframes zoomIn {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
