/* Wrapper Section */
  .trusted-wrapper {
    padding: 3rem 2rem;
    border-radius: 1rem;
  }

  /* Card styling */
  .custom-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
  }

  /* Hover effect */
  .custom-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  }

  .custom-card img {
    height: 4.5rem;
    object-fit: contain;
  }

  /* Card text styling */
  .custom-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #003b64;
    margin-top: 0.8rem;
  }

  .custom-card-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.3rem;
  }

  /* Section title */
  .underline-animation-section-title h3 {
    line-height: 1.4;
    font-size: clamp(1.3rem, 2vw, 2rem);
  }

  .underline-animation-section-title h5 {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
  }

  /* Responsive paddings */
  @media (max-width: 991px) {
    .trusted-wrapper {
      padding: 2rem 1rem;
    }

    .custom-card {
      padding: 1rem;
    }

    .custom-card img {
      height: 4rem;
    }
  }

  @media (max-width: 575px) {
    .custom-card-title {
      font-size: 0.95rem;
    }

    .custom-card-text {
      font-size: 0.8rem;
    }
  }