/* === Quote Section Container === */
.quote-section {
    padding: 6rem 2rem 4rem;
    background-color: #f5f5f5;
    text-align: center;
  }
  
  .quote-box {
    background-color: rgba(31, 31, 31, 1);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 4rem 2rem;
    max-width: 720px; /* ⬅️ was 1100px, now ~35% smaller */
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  
  
  
  
  
  .quote-wrapper {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .quote-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #fff;
  }
  
  /* === Quote Grid Layout === */
  .quote-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  /* === Blockquote Style === */
  .blockquote {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 280px;
    box-sizing: border-box;
  
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    position: relative;
    overflow: hidden;
    text-align: left;
    color: #eee;
    background-color: #2b2b2b;
    border-left: 4px solid #666;
    border-radius: 8px;
  }
  
  
  .blockquote p {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
  }
  
  /* === Classic Quote Decorations === */
  .blockquote--classic::before {
    content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23777777'><path d='M9.983 3v7.391C9.983 16.095 6.252 19.961 1 21l-.995-2.151C2.437 17.932 4 15.211 4 13H0V3h9.983zM24 3v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151C16.437 17.932 18 15.211 18 13h-3.983V3H24z'/></svg>");
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
  
  .blockquote--classic::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 2.5rem;
    width: 1px;
    height: calc(100% - 2.5rem);
    background-color: #666;
  }
  
  /* === Fade-in Animation === */
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
 
  .video-section {
    background-color: rgba(31, 31, 31, 1);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
  }
  
  .video-and-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1100px;
    width: 100%;
  }
  
  /* Text styling */
  .video-quote {
    color: #fff;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: center;
    max-width: 400px;
  }
  
  /* Video wrapper: mobile style */
  .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Mobile: keep 16:9 aspect ratio */
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
  }
  
  /* Desktop fixes */
  @media (min-width: 768px) {
    .video-and-quote {
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 4rem;
    }
  
    .video-quote {
      text-align: center;
    }
  
    .video-wrapper {
      position: static; /* Cancel the padding trick */
      width: 560px;      /* Set normal width */
      padding-top: 0;    /* Remove fake height */
    }
  
    .video-wrapper iframe {
      position: static; /* Make iframe normal */
      width: 560px;
      height: 315px;
    }
  }
  
  