/* === TESTIMONIAL SECTION === */
.testimonial-section {
    margin-top: 50px; 
    margin-bottom: 60px; 
    text-align: center;
    max-width: 1000px; /* Sizing Kept */
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .testimonial-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .testimonial-heading {
    font-family: 'Inter', serif; /* Matching About Section */
    font-size: 24px; /* Sizing Kept */
    font-weight: 700;
    color: #192231;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  /* --- TESTIMONIAL ICON (Raised Style) --- */
.testimonial-icon {
  background: #ffffff;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  /* Raised border system */
  border: 1.5px solid rgba(207,170,110,0.35);
  border-bottom: 4px solid #5fa8ff !important;

  margin-bottom: 8px;

  box-shadow: none;

  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.1s ease;

  -webkit-tap-highlight-color: transparent;
}

/* Icon itself */
.testimonial-icon i {
  color: #5fa8ff !important; 
  font-size: 20px;
}

  /* === REFINED ICE-GLASS QUOTE BOX === */
  .testimonial-box {
    /* Cleaner Glass Look */
    background: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    /* Swapped heavy left border for sleek gold top border */
    border: 1px solid #ffffff;
    border-top: 3.5px solid #cfaa6e; 
    
    padding: 20px 32px;
    margin: 0 auto;
    width: 100%;
    max-width: 720px; /* Sizing Kept */
    border-radius: 16px; /* Updated to match About radius */
    
    /* Sleeker, lighter shadow */
    box-shadow: 0 10px 30px rgba(25, 34, 49, 0.05); 
    
    position: relative; /* Positioning Kept */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px; /* Slightly increased for better breathing room */
  }
  
  /* === QUOTE TEXT (Positioning Kept) === */
  .testimonial-text {
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #192231;
    text-align: center;
    opacity: 1;
    position: absolute; /* Kept Absolute for your JS transition */
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    transition: opacity 0.8s ease, transform 0.8s ease; /* Smoothed transition time */
    line-height: 1.6;
  }
  
  /* === TEXT ANIMATION STATES === */
  .testimonial-text.fade-out-left {
    opacity: 0;
    transform: translateX(-30px);
  }
  
  .testimonial-text.fade-in-right {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* === RESPONSIVE (Kept Logic) === */
  @media (max-width: 768px) {
    .testimonial-box {
      padding: 18px 16px;
      max-width: 92%;
      min-height: 120px; /* Kept Logic */
    }
  
    .testimonial-heading {
      font-size: 20px;
    }
    
    .testimonial-text {
      font-size: 16px;
    }
  }