
.client-showcase {
      padding: 4rem 1rem;
      background: linear-gradient(to bottom, #ffffff, #f9fafb);
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .section-title {
      font-size: 3rem;
      font-weight: bold;
      color: #1f2937;
      margin-bottom: 0.75rem;
    }
    
    .section-divider {
      width: 6rem;
      height: 0.25rem;
      background-color: #eb2525;
      margin: 0 auto 1.5rem;
    }
    
    .section-description {
      color: #6b7280;
      max-width: 36rem;
      margin: 0 auto;
      line-height: 1.5;
    }
    
    /* Desktop Grid */
    .desktop-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    
    .client-card {
      background-color: white;
      border-radius: 0.5rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .client-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .logo-container {
      height: 8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      background-color: #f9fafb;
      overflow: hidden;
    }
    
    .logo-container img {
      max-height: 7rem;
      max-width: 100%;
      transition: transform 0.5s;
    }
    
    .client-card:hover .logo-container img {
      transform: scale(1.1);
    }
    
    .client-info {
      padding: 1.5rem;
    }
    
    .client-name {
      font-size: 16px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 0.25rem;
    }
    
    .client-industry {
      font-size: 14px;
      color: #6b7280;
    }
    
    /* Mobile Carousel */
    .mobile-carousel {
      display: none;
    }
    
    .carousel-container {
      overflow: hidden;
      position: relative;
    }
    
    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    
    .carousel-item {
      min-width: 100%;
      padding: 0 0.5rem;
    }
    
    .carousel-nav {
      display: flex;
      justify-content: center;
      margin-top: 1.5rem;
      gap: 0.5rem;
      align-items: center;
    }
    
    .carousel-btn {
      width: 4rem;
      height: 4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #d1d5db;
      border-radius: 50%;
      background-color: white;
      cursor: pointer;
      font-size: 0.875rem;
      color: #4b5563;
      transition: all 0.2s;
    }
    
    .carousel-btn:hover {
      background-color: #f3f4f6;
    }
    
    .carousel-dots {
      display: flex;
      gap: 0.25rem;
    }
    
    .dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 50%;
      background-color: #d1d5db;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    .dot.active {
      background-color: #2563eb;
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
      .desktop-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.5rem;
      }
      
      .desktop-grid {
        display: none;
      }
      
      .mobile-carousel {
        display: block;
      }
    }