
/* =========================
   WRAPPER
========================= */
.trust-wrapper {
  position: relative;
  z-index: 2;
}

/* =========================
   TITLE
========================= */
.section-title {
  margin-bottom: 55px;
}

.section-title span {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
}

/* =========================
   BOX
========================= */
.trust-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 30px;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.trust-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* TOP BORDER EFFECT */
.trust-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--accent-red)
  );
}

/* =========================
   ICON
========================= */
.trust-icon {
  width: 90px;
  height: 90px;
  margin: auto auto 25px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--accent-red)
  );

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

  color: #fff;
  font-size: 36px;

  box-shadow: 0 10px 25px rgba(38,52,137,0.25);
}

/* =========================
   CONTENT
========================= */
.trust-content h3 {
  font-size: 22px;
  color: var(--text-black);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* =========================
   BUTTON
========================= */
.trust-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: var(--primary-blue);
  color: #fff;

  padding: 14px 24px;
  border-radius: 50px;

  text-decoration: none;
  font-size: 15px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.trust-content a:hover {
  background: var(--accent-red);
  color: #fff;
  transform: scale(1.05);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

  .trust-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 36px;
  }

}

@media (max-width: 768px) {

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .trust-box {
    padding: 30px 22px;
  }

  .trust-content h3 {
    font-size: 20px;
  }

}