    .landing-page-brands{
    margin-top: 120px;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
   }

   .card-heading{
    margin-bottom: 24px;
   }

    .card-heading p{
      font-size: 24px;
      text-align: center;
      font-weight: 600;
    }

    #signaturetext{
      font-size: 60px !important;
      color: transparent !important;
      -webkit-text-stroke: 1px white;
      margin-bottom: 60px;
    }

    .card-grid
     {
      display: flex;
      flex-direction: row;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 24px;
      justify-content: center;
      align-items: center;
      margin-bottom: 24px;
    }

    .brand-card {
      width: 350px;
      height: 514px;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      transition: background-color 0.3s ease;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .brand-card:hover {
      background-color: rgba(206, 32, 47, 0.1);
    }

    .image-container {
      position: relative;
      width: 100%;
      height: 250px;
    }

    .brand-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .brand-logo {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 180px;
      height: auto;
      object-fit: contain;
      background: #fff;
      padding: 16px;
      border-radius: 8px 0px;
    }

    .brand-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid #ce202f;
      background: #fff;
      position: absolute;
      bottom: -24px;
      right: 16px;
      padding: 6px;
    }

    .brand-icon:hover{
      scale: 1.5;
      border:2px solid #ce202f;
    }

    .card-content {
      padding: 32px 16px 16px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .brand-name {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 8px;
      color: #111;
    }

    .brand-description {
      font-size: 14px;
      color: #444;
      flex-grow: 1;
      font-weight: 400;
      text-align: left;
    }

    .visit-btn {
      background-color: #ce202f;
      color: #fff;
      padding: 16px;
      border-radius: 8px;
      border: none;
      width: 300px;
      font-weight: 600;
      margin-top: 15px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .read-more {
      color: #ce202f;
      font-size: 14px;
      margin-top: 12px;
      text-decoration: underline;
      cursor: pointer;
    }

    .card-buttons{
       display: flex;
       flex-direction: column;
       align-items: center;
    }

    @media (max-width: 767px) {
      .visit-btn{
        font-size: 18px;
        font-weight: 500;
      }
    }