/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 50px 20px;
}


.trust-box::after {
  content: "";
  position: absolute;
  inset: 0;

  background: url('/icons/privacy.png') no-repeat center;
  background-size: 150px;

  opacity: 0.035;

  /* ✨ subtle glow blend */
  mix-blend-mode: lighten;

  pointer-events: none;
}

/* Box */
.trust-box {
  position: relative;
  overflow: hidden;

  text-align: center;
  padding: 24px 22px;
  border-radius: 16px;

  /* 🔥 dark glass look */
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 204, 0.15);

  backdrop-filter: blur(10px);

  /* subtle glow */
  box-shadow: 0 0 25px rgba(0,255,204,0.08);

  transition: all 0.3s ease;
}

/* Glow overlay */
.trust-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,255,204,0.15), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

/* Title */
.trust-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;

  /* 🔥 consistent with hero */
  background: linear-gradient(90deg, #c084fc, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Main line */


.trust-main  {
  margin-top: 8px;
  font-size: 14px;
  color: #cbd5f5; /* 🔥 thoda brighter */

  line-height: 1.6;

  /* ✨ subtle glass highlight */
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,255,204,0.12);

  padding: 8px 12px;
  border-radius: 8px;

  /* 🎯 left accent */
  border-left: 3px solid #00ffcc;

  /* glow */
  text-shadow: 0 0 10px rgba(0,255,204,0.12);

  transition: 0.3s ease;
}

/* Sub text */
.trust-sub {
  margin-top: 8px;
  font-size: 14px;
  color: #cbd5f5; /* 🔥 thoda brighter */

  line-height: 1.6;

  /* ✨ subtle glass highlight */
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,255,204,0.12);

  padding: 8px 12px;
  border-radius: 8px;

  /* 🎯 left accent */
  border-left: 3px solid #00ffcc;

  /* glow */
  text-shadow: 0 0 10px rgba(0,255,204,0.12);

  transition: 0.3s ease;
}

.trust-sub:hover {
  border-color: #00ffcc;
  box-shadow: 0 0 20px rgba(0,255,204,0.15);
  transform: translateY(-1px);
}

.trust-main:hover {
  border-color: #00ffcc;
  box-shadow: 0 0 20px rgba(0,255,204,0.15);
  transform: translateY(-1px);
}



/* Hover effect */
.trust-box:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 0 40px rgba(0,255,204,0.2),
    inset 0 0 20px rgba(0,255,204,0.1);
}

/* Mobile */
@media (max-width: 700px) {
  .trust-box {
    padding: 18px 16px;
  }

  .trust-title {
    font-size: 1.3rem;
  }

  .trust-main {
    font-size: 15px;
  }

  .trust-sub {
    font-size: 13px;
  }
}

