/* ================================
   DTF TRUST FOCUS SECTION
================================ */

.dtf-trust-focus {
  background: #ffffff;
  position: relative;
}

/* QUOTE CARD */
.dtf-trust-quote {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 45px;
  background: linear-gradient(135deg, #f5f8ff, #ffffff);
  border-radius: 22px;
  box-shadow: 0 15px 45px rgba(13,110,253,0.12);
  animation: fadeUp 0.8s ease;
}

.dtf-trust-quote .trust-label {
  display: inline-block;
  background: rgba(13,110,253,0.1);
  color: #0d6efd;
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 20px;
}

.dtf-trust-quote h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0b1c39;
}

.dtf-trust-quote p {
  font-size: 16px;
  color: #000219;
  line-height: 1.8;
}

.dtf-trust-quote .highlight-line {
  margin-top: 18px;
  font-weight: 600;
  color: #0b1c39;
}

/* TRUST CARDS */
.dtf-trust-card {
  height: 100%;
  padding: 35px 28px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: center;
}

.dtf-trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(13,110,253,0.18);
}

.dtf-trust-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 12px;
}

.dtf-trust-card p {
  font-size: 15px;
  color: #000219;
  line-height: 1.7;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .dtf-trust-quote {
    padding: 35px 25px;
  }

  .dtf-trust-quote h2 {
    font-size: 24px;
  }
}

