:root {
    --purple-main: #a020f0;
    --purple-dark: #9333ea;
    --light-bg: #f8f9fa;
  }

  body {
    background-color: var(--light-bg);
  }

  /* Brand Card */
  .brand-card1 {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgb(160 32 240 / 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    padding: 1.75rem 1.25rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .brand-card1:hover {
    box-shadow: 0 12px 35px rgb(160 32 240 / 0.4);
    transform: translateY(-8px);
    text-decoration: none;
  }

  /* Brand Logo Wrapper */
  .brand-logo-wrapper1 {
    width: 140px;
    height: 140px;
    padding: 10px;
    background: var(--light-bg);
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgb(160 32 240 / 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Brand Logo Image */
  .brand-logo1 {
    width:200px;
    height: 120px;
    object-fit: contain;
  }

  /* No Image Placeholder */
  .no-image1 {
    width: 140px;
    height: 140px;
    background: var(--purple-main);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgb(160 32 240 / 0.3);
    user-select: none;
  }

  /* Brand Name */
  .brand-name1 {
    letter-spacing: 0.12em;
    font-size: 1.25rem;
    color: var(--purple-dark);
    transition: color 0.3s ease;
  }
  .brand-card1:hover .brand-name1 {
    color: var(--purple-main);
  }

  /* Underline */
  .brand-underline1 {
    width: 50px;
    height: 3px;
    background: var(--purple-main);
    border-radius: 2px;
    margin-top: 0.4rem;
    transition: width 0.3s ease;
  }
  .brand-card1:hover .brand-underline1 {
    width: 90px;
  }

  /* Responsive tweaks */
  @media (max-width: 575.98px) {
    .brand-logo-wrapper1,
    .no-image1 {
      width: 110px;
      height: 110px;
    }

    .brand-logo1 {
      max-height: 95px;
    }

    .brand-name1 {
      font-size: 1.1rem;
    }
  }