/* Brand Cards Styling */
  .brand-card-col {
    padding: 15px;
  }
  
  .brand-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 33, 71, 0.1);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 33, 71, 0.15);
  }
  
  .brand-card-link {
    display: block;
    text-decoration: none;
    color: #333;
  }
  
  .brand-image-container {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to bottom, #f9f9f9, #fff);
    border-bottom: 1px solid #f0f0f0;
  }
  
  .brand-logo {
    max-width: 160px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
  }
  
  .brand-card:hover .brand-logo {
    filter: grayscale(0%) brightness(1.05);
  }
  
  .brand-info {
    padding: 20px 15px;
    text-align: center;
  }
  
  .brand-name {
    font-size: 18px;
    font-weight: 600;
    color: #002147;
    margin: 0 0 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .product-count {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
  }
  
  .count-number {
    font-weight: 700;
    color: #002147;
    margin-right: 5px;
  }
  
  .count-label {
    color: #666;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 767px) {
    .brand-image-container {
      height: 150px;
      padding: 15px;
    }
    
    .brand-logo {
      max-width: 120px;
      max-height: 100px;
    }
    
    .brand-name {
      font-size: 16px;
    }
    
    .product-count {
      font-size: 13px;
      padding: 4px 12px;
    }
  }

/* ------------------------------------------------------------------------------ */
    /* Model Cards Styling */
    .model-card-col {
      padding: 15px;
    }
    
    .model-card {
      background: #ffffff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 33, 71, 0.1);
      transition: all 0.3s ease;
      height: 100%;
      border-top: 3px solid #4a90e2; /* Blue accent border */
    }
    
    .model-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 33, 71, 0.15);
    }
    
    .model-card-link {
      display: block;
      text-decoration: none;
      color: #333;
    }
    
    .model-image-container {
      height: 180px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      background: linear-gradient(to bottom, #e6f0ff, #fff); /* Light blue gradient */
    }
    
    .model-image {
      max-width: 180px;
      max-height: 140px;
      width: auto;
      height: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
    
    .model-card:hover .model-image {
      transform: scale(1.05);
    }
    
    .model-info {
      padding: 20px 15px;
      text-align: center;
    }
    
    .model-name {
      font-size: 18px;
      font-weight: 600;
      color: #002147;
      margin: 0 0 10px 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .product-count {
      display: inline-flex;
      align-items: center;
      background: #f0f5ff; /* Light blue background */
      border-radius: 20px;
      padding: 5px 15px;
      font-size: 14px;
      color: #002147;
    }
    
    .count-number {
      font-weight: 700;
      margin-right: 5px;
    }
    
    .count-label {
      color: #666;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 767px) {
      .model-image-container {
        height: 150px;
        padding: 15px;
      }
      
      .model-image {
        max-width: 140px;
        max-height: 110px;
      }
      
      .model-name {
        font-size: 16px;
      }
      
      .product-count {
        font-size: 13px;
        padding: 4px 12px;
      }
    }


/* --------------------------------------------------------------------------------------------- */
    /* Product Card Styling */
  .product-card {
    display: block;
    text-decoration: none;
    color: #333;
    height: 100%;
  }
  
  .product-card-inner {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 33, 71, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .product-card:hover .product-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 33, 71, 0.15);
  }
  
  /* Image Container */
  .product-image-container {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 15px;
    background: linear-gradient(to bottom, #f9f9f9, #fff);
    border-radius: 8px;
  }
  
  .product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .product-card:hover .product-image {
    transform: scale(1.05);
  }
  
  /* Product Info */
  .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: #002147;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
  }
  
  /* Rating */
  .product-rating {
    margin: 5px 0;
    font-size: 13px;
    color: #FFA500;
  }
  
  .rating-count {
    color: #666;
    margin-left: 5px;
    font-size: 12px;
  }
  
  /* Price */
  .product-price {
    font-size: 18px;
    font-weight: 700;
    color: #FF5722;
    margin: 5px 0 10px;
  }
  
  /* Stock Status */
  .product-status {
    font-weight: 600;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-block;
    width: fit-content;
  }
  
  .in-stock {
    color: #4CAF50;
    background-color: #e8f5e9;
  }
  
  /* Responsive Design */
  @media (max-width: 767px) {
    .product-image-container {
      height: 150px;
    }
    
    .product-title {
      font-size: 15px;
      min-height: 36px;
    }
    
    .product-price {
      font-size: 16px;
    }
    
    .product-rating {
      font-size: 12px;
    }
  }

/* ------------------------------------------------------------------------- */


  /* Category Cards Styling - Similar but distinct from brands */
  .category-card-col {
    padding: 15px;
  }
  
  .category-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 33, 71, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 3px solid #002147; /* Differentiator 1: Top border */
  }
  
  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 33, 71, 0.15);
  }
  
  .category-card-link {
    display: block;
    text-decoration: none;
    color: #333;
  }
  
  .category-image-container {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to bottom, #f5f9ff, #fff); /* Differentiator 2: Lighter blue gradient */
  }
  
  .category-icon {
    max-width: 140px; /* Slightly smaller than brand logos */
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .category-card:hover .category-icon {
    transform: scale(1.05); /* Differentiator 3: Scale effect instead of grayscale */
  }
  
  .category-info {
    padding: 20px 15px;
    text-align: center;
  }
  
  .category-name {
    font-size: 18px;
    font-weight: 600;
    color: #002147;
    margin: 0 0 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .product-count {
    display: inline-flex;
    align-items: center;
    background: #f0f5ff; /* Differentiator 4: Light blue background */
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    color: #002147;
  }
  
  .count-number {
    font-weight: 700;
    margin-right: 5px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 767px) {
    .category-image-container {
      height: 150px;
      padding: 15px;
    }
    
    .category-icon {
      max-width: 120px;
      max-height: 120px;
    }
    
    .category-name {
      font-size: 16px;
    }
    
    .product-count {
      font-size: 13px;
      padding: 4px 12px;
    }
  }

  /* --------------------------------------------------------------------- */

  /* Blog Section Styling */
  .blog-listing {
    padding: 10px 0;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .section-header h3 {
    font-size: 20px;
    color: #002147;
    margin: 0;
  }

  .section-header h1 {
    font-size: 28px;
    color: #002147;
    margin: 0;
  }

  .view-all {
    color: #002147;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #002147;
    padding-bottom: 3px;
    transition: all 0.3s ease;
  }

  .view-all:hover {
    color: #FF5722;
    border-color: #FF5722;
  }

  /* Blog Card Styling */
  .blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 33, 71, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
  }

  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 33, 71, 0.15);
  }

  .blog-link {
    text-decoration: none;
    color: #333;
    display: block;
    height: 100%;
  }

  /* Blog Image */
  .blog-image {
    position: relative;
    height: 180px;
    overflow: hidden;
  }

  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .blog-card:hover .blog-image img {
    transform: scale(1.05);
  }

  .blog-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 33, 71, 0.8);
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
  }

  /* Blog Content */
  .blog-content {
    padding: 20px;
  }

  .blog-title {
    font-size: 18px;
    font-weight: 600;
    color: #002147;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
  }

  .blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 63px;
  }

  .blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
  }

  .read-time {
    color: #666;
  }

  .blog-category {
    color: #FF5722;
    font-weight: 600;
    text-transform: uppercase;
  }

  /* Responsive Design */
  @media (max-width: 991px) {
    .blog-image {
      height: 150px;
    }

    .blog-title {
      font-size: 16px;
      min-height: 44px;
    }
  }

  @media (max-width: 767px) {
    .section-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .view-all {
      margin-top: 10px;
    }

    .blog-col {
      margin-bottom: 20px;
    }
  }




  /* -------------------------------------------------------------- */

            /* Testimonials Section Styling */
            .testimonial-section {
              padding: 60px 0;
              background-color: #f9f9f9;
            }
  
            .section-header {
              text-align: center;
              margin-bottom: 40px;
            }
  
            .section-header h3 {
              font-size: 32px;
              color: #002147;
              margin-bottom: 10px;
            }
  
            .section-header .subtitle {
              color: #666;
              font-size: 16px;
            }
  
            .testimonial-card {
              background: white;
              border-radius: 8px;
              padding: 25px;
              margin-bottom: 30px;
              box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
              height: 100%;
              transition: transform 0.3s ease;
            }
  
            .testimonial-card:hover {
              transform: translateY(-5px);
            }
  
            .testimonial-header {
              display: flex;
              align-items: center;
              margin-bottom: 15px;
            }
  
            .user-image {
              width: 60px;
              height: 60px;
              border-radius: 50%;
              overflow: hidden;
              margin-right: 15px;
            }
  
            .user-image img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }
  
            .user-info {
              flex: 1;
            }
  
            .author {
              font-weight: 600;
              color: #002147;
              margin-bottom: 2px;
            }
  
            .position {
              font-size: 12px;
              color: #666;
              margin-bottom: 5px;
            }
  
            .star-rating {
              color: #FFA500;
              font-size: 14px;
            }
  
            .testimonial-content {
              color: #555;
              font-style: italic;
              line-height: 1.6;
              margin-bottom: 15px;
            }
  
            .testimonial-date {
              font-size: 12px;
              color: #999;
              text-align: right;
            }
  
            /* Responsive Styles */
            @media (max-width: 991px) {
              .testimonial-card {
                padding: 20px;
              }
            }
  
            @media (max-width: 767px) {
              .testimonial-section {
                padding: 40px 0;
              }
  
              .section-header h3 {
                font-size: 26px;
              }
  
              .testimonial-header {
                flex-direction: column;
                text-align: center;
              }
  
              .user-image {
                margin-right: 0;
                margin-bottom: 10px;
              }
            }