/* =========================
   FOOTER TECH QUOTE WIDGET
========================= */

.footer-quote-box {
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.footer-quote-box:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

/* BLUE GLOW CIRCLE */
.footer-quote-box::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  top: -35px;
  right: -35px;
}

/* SMALL LABEL */
.quote-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #60a5fa;
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

/* MAIN QUOTE TEXT */
.footer-quote-box p {
  color: #ffffff;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 12px;
  font-style: italic;
  transition: opacity 0.4s ease;
  position: relative;
  z-index: 2;
}

/* AUTHOR NAME */
.quote-author {
  color: #60a5fa;
  font-size: 0.78rem;
  font-weight: 600;
  display: block;

  /* THIS IS THE UPDATE */
  text-transform: capitalize;

  letter-spacing: 0.3px;
  position: relative;
  z-index: 2;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

  .footer-quote-box {
    margin-top: 18px;
    padding: 14px;
    border-radius: 16px;
  }

  .footer-quote-box p {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .quote-author {
    font-size: 0.75rem;
  }

}