/* Hero Section with Gradient Animation */
.brand-hero {
    background: linear-gradient(270deg, #7f42a7, #5300a0);
    background-size: 400% 400%;
    animation: backgroundLoop 6s ease infinite;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .brand-hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .brand-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .underline {
    width: 60px;
    height: 4px;
    background-color: white;
    margin: 1rem auto 1.5rem auto;
    border-radius: 2px;
  }
  
  .brand-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
  }
  
  /* Gradient Animation */
  @keyframes backgroundLoop {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  
  /* Brand Grid */
  .brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .brand-card {
    border: 2px solid #e0d5f5;
    border-radius: 10px;
    background-color: #faf9ff;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  }
  
  
  .brand-card h2 {
    font-size: 1.3rem;
    margin: 0;
    color: #5300a0;
    font-weight: 600;
  }
  
  .brand-card p {
    font-size: 0.95rem;
    margin-top: 0.75rem;
    color: #555;
    line-height: 1.4;
  }
  
  .brand-card:hover {
    border-color: #5300a0;
    background-color: #fff;
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }
  