/* 
      Trusted Section 
      - Full-bleed dark background 
      - Centered heading & logos
    */
    .trusted-section {
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        width: 100vw;
        background: #050038; /* Dark navy */
        padding: 2rem 0; /* vertical space */
        text-align: center;
      }
  
      /* Inner container for heading + logos, max 1200px wide */
      .trusted-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem; /* side padding */
        color: #F1F3FD;  /* Light text color */
      }
  
      /* Heading text with slight glow or highlight */
      .trusted-heading {
        font-family: 'Inter', sans-serif;
        font-weight: 650;
        font-size: 1.3rem;
        margin-bottom: 4rem;
        text-shadow: 0 0 10px rgba(213,138,255, 0.5);
       
      }
  
      /* Logo row in a flex container */
      .logo-row {
        display: flex;
        flex-wrap: wrap; /* allow wrapping on smaller screens */
        justify-content: center;
        gap: 72px;       /* space between logos */
        align-items: center;
        color: #696688;
      }
  
      /* Each logo styling */
      .logo-row img {
        max-height: 44px; /* or whatever size you prefer */
        filter: brightness(0.8); /* dims the logos slightly */
        opacity: 60%;
        transition: filter 0.2s ease;
      }
      /* On hover, optionally brighten them up */
      .logo-row img:hover {
        filter: brightness(1);
      }
  
      /* Example small-screen adjustment */
      @media (max-width: 600px) {
        .logo-row img {
          max-height: 30px;
        }
      }

/* 📱📲 Mobile Horizontal & iPad-Friendly Layout */
@media (max-width: 1024px) {
  .trusted-container {
      max-width: 95%;
      padding: 0 1.5rem;
  }

  .trusted-heading {
      font-size: 1.5rem;
      margin-bottom: 3rem;
  }

  .logo-row {
      gap: 50px;
  }

  .logo-row img {
      max-height: 38px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .trusted-container {
      max-width: 90%;
      padding: 0 1rem;
  }

  .trusted-heading {
      font-size: 1.4rem;
      margin-bottom: 2.5rem;
  }

  .logo-row {
      gap: 40px;
  }

  .logo-row img {
      max-height: 34px;
  }
}
