/* ========================================= */
/* TESTIMONY - UNIQUE SPOTLIGHT UI           */
/* ========================================= */

.testimony-unique-section {
  min-height: 100vh;
  /* ADD this */
  display: flex;
  /* ADD this */
  align-items: center;
  /* ADD this */
  padding: 40px 0;
  /* CHANGE from 80px to 40px */
  background: #e7e8e8;
  position: relative;
  overflow: hidden;
  clear: both;
}

/* Add a subtle decorative background element to differentiate from Services */
.testimony-unique-section::before {
  content: "Dr. Bafna";
  position: absolute;
  top: 10%;
  right: -5%;
  font-family: "Lato", sans-serif;
  font-size: 20vw;
  color: #f4f7fa;
  font-weight: 700;
  z-index: 0;
  pointer-events: none;
}

.testimony-unique-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  /* ADD this */
}

/* Typography Branding */
.testimony-tag-gold {
  font-family: "Lato", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #d4af37;
  font-weight: 700;
}

.testimony-dot-gold {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
  margin-right: 10px;
}

.testimony-main-title {
  font-family: "Lato", sans-serif;
  font-size: 38px;
  /* CHANGE from 45px to 38px */
  color: #0c1c35;
  line-height: 1.2;
}

.testimony-blue-accent {
  color: #0056b3;
}

.testimony-sub-text {
  font-family: "Lato", sans-serif;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* --- THE SPOTLIGHT BOX (The Main Difference) --- */
.testimony-spotlight-box {
  background: #0c1c35;
  padding: 40px;
  /* CHANGE from 60px to 40px */
  border-radius: 40px 40px 40px 0px;
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(12, 28, 53, 0.2);
  position: relative;
}

.testimony-quote-mark {
  display: none;
  position: absolute;
  top: 20px;
  left: 40px;
  font-family: "Lato", sans-serif;
  font-size: 120px;
  color: rgba(212, 175, 55, 0.2);
  line-height: 1;
}

.testimony-main-quote {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  /* CHANGE from 24px to 20px */
  line-height: 1.6;
  font-style: normal;
  position: relative;
  z-index: 2;
}

/* Profile Footer */
.testimony-profile-img {
  width: 60px;
  height: 60px;
  background: #d4af37;
  color: #0c1c35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.testimony-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #d4af37;
  background: transparent;
  color: #0c1c35;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimony-btn:hover {
  background: #0c1c35;
  color: #ffffff;
  border-color: #0c1c35;
}

/* Add a fade effect class for the JS swap */
.testimony-fade {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.testimony-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.testimony-designation {
  font-size: 13px;
  color: #d4af37;
  opacity: 0.9;
}

/* Read More Feature */
.testimony-read-more-btn {
  display: block;
  margin-top: 14px;
  background: transparent;
  border: none;
  color: #d4af37;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.testimony-read-more-btn:hover {
  color: #ffffff;
}

.testimony-scrollable {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 10px;
  scroll-behavior: smooth;
}

.testimony-scrollable::-webkit-scrollbar {
  width: 4px;
}

.testimony-scrollable::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}

/* Tablet */
@media (max-width: 991px) {
  .testimony-unique-section {
    height: 850vh;
    min-height: 850vh;
    padding: 20px 0;
    overflow: hidden;
  }

  .testimony-branding-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .testimony-main-title {
    font-size: 24px;
  }

  .testimony-sub-text {
    font-size: 13px;
    margin-top: 8px !important;
  }

  .testimony-controls {
    margin-top: 15px !important;
  }

  .testimony-spotlight-box {
    padding: 25px 30px;
    border-radius: 20px;
    margin-top: 20px;
  }

  .testimony-quote-mark {
    font-size: 70px;
  }

  .testimony-main-quote {
    font-size: 15px;
    line-height: 1.5;
  }

  .testimony-profile-img {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .testimony-name {
    font-size: 14px;
  }

  .testimony-designation {
    font-size: 11px;
  }

  .testimony-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .testimony-footer {
    margin-top: 15px !important;
  }

  .testimony-unique-section.testimony-expanded {
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
    align-items: flex-start !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .testimony-unique-section {
    height: 85vh;
    min-height: 85vh;
    padding: 15px 0;
    overflow: hidden;
  }

  .testimony-branding-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* ADD align-items & text-align */
  .testimony-unique-section::before {
    display: none;
  }

  /* ✅ removes Dr. Bafna background text */
  .testimony-main-title {
    font-size: 20px;
  }

  .testimony-sub-text {
    display: none;
  }

  .testimony-controls {
    margin-top: 10px !important;
    justify-content: center;
  }

  /* ADD justify-content:center for arrows */
  .testimony-spotlight-box {
    padding: 20px;
    border-radius: 16px;
    margin-top: 15px;
  }

  .testimony-quote-mark {
    font-size: 50px;
  }

  .testimony-main-quote {
    font-family:
      "Lato", sans-serif; /* ❌ was Playfair Display italic → easier to read */
    font-size: 14px; /* slight bump from 13px */
    font-style: normal; /* remove italic */
    line-height: 1.6;
  }

  .testimony-profile-img {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .testimony-name {
    font-size: 13px;
  }

  .testimony-designation {
    font-size: 10px;
  }

  .testimony-btn {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .testimony-footer {
    margin-top: 10px !important;
  }

  .testimony-scrollable {
    max-height: 45vh;
  }
}