/* Quote Component Styles */

.quote-component {
  padding: 2rem 0;
}

.quote-component .row {
  margin: 0 auto;
}

.quote-component .quote-mark.text-dark {
    color: #000 !important;
}
/* Large quotation marks */
.quote-component .mse-new-display-1 {
  font-size: 6rem;
  line-height: 1;
  font-weight: 300;
  opacity: 0.5;
}

/* Quote text */
.quote-component .mse-new-display-4 {
  font-weight: 400;
  
  line-height: 1.3;
}

/* Author text */
.quote-component .mse-new-heading-5 {
  font-weight: 300;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .quote-component .mse-new-display-4 {
    font-size: 1.5rem;
  }
  
  .quote-component .mse-new-heading-5 {
    font-size: 1rem;
  }
}

/* Animation classes */
.quote-component .fadeInUp {
  animation-name: fadeInUp;
}

.quote-component .fadeInDown {
  animation-name: fadeInDown;
}

.quote-component .fadeIn {
  animation-name: fadeIn;
}

.quote-component .animated {
  animation-fill-mode: both;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

