.client-showcase-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(45deg, 
    rgba(255, 255, 255, 0.08) 0%, 
    rgba(255, 255, 255, 0.03) 100%),
  url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23093d6e" opacity="0.03"/></svg>');
  backdrop-filter: blur(20px);
  margin: 6rem 0;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(45deg, #0A81AB, #06A4FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.section-title {
  font-size: 2.8rem;
  background: linear-gradient(45deg, #fff 30%, #68d5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Logo Grid Styling */
.logo-matrix {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-card {
  perspective: 1000px;
  position: relative;
}

.logo-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-card:hover .logo-inner {
  transform: translateY(-5px) rotateX(5deg) rotateY(5deg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(6, 164, 255, 0.15);
}

.client-logo {
  width: 100%;
  height: 80px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
  transition: all 0.4s ease;
}

.logo-card:hover .client-logo {
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
}

/* Hover Effects */
.hover-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, 
    rgba(6, 164, 255, 0.15) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.logo-card:hover .hover-glow {
  opacity: 1;
}

/* Statistics Card */
.client-stats {
  margin-top: 4rem;
  text-align: center;
}

.stats-card {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 1.5rem 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-content {
  position: relative;
  z-index: 2;
}

.stats-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #fff, #68d5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
}

.stats-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.stats-ornament {
  position: absolute;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    rgba(6, 164, 255, 0.1),
    rgba(6, 164, 255, 0.1) 10px,
    rgba(13, 110, 253, 0.05) 10px,
    rgba(13, 110, 253, 0.05) 20px
  );
  left: -50%;
  top: -50%;
  animation: slide 30s linear infinite;
  z-index: 1;
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 768px) {
  .client-showcase-section {
    padding: 4rem 0;
    margin: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .logo-inner {
    padding: 1.5rem;
  }

  .client-logo {
    height: 60px;
  }

  .stats-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-card {
    padding: 1rem 2rem;
  }
}