/* Clients Section - Simple & Professional */
.clients-section {
  padding: 80px 0;
  background: #090b16;
  position: relative;
}

.clients-section .container {
  max-width: 1200px;
}

/* Section Header */
.section-badge {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.clients-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
}

.clients-section .subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Client Filter */
.client-filter {
  margin-bottom: 40px;
}

.client-filter .nav-link {
  background: rgb(255, 255, 255);
  border: 2px solid #e9ecef;
  color: #495057;
  padding: 12px 24px;
  margin: 0 8px 8px 0;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.client-filter .nav-link:hover,
.client-filter .nav-link.active {
  background: #007bff;
  border-color: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Client Cards */
.client-card {
  background: rgba(215, 209, 237, 0.772);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #007bff;
}

.client-logo-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  padding: 15px;
}

.client-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-card:hover .client-logo {
  filter: grayscale(0%);
}

.client-info {
  margin-top: auto;
}

.client-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.3;
}

.client-industry {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

/* Tab Content */
.tab-content {
  margin-top: 40px;
}

.tab-pane {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-pane.active {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .clients-section {
    padding: 60px 0;
  }
  
  .clients-section h2 {
    font-size: 2rem;
  }
  
  .client-filter .nav-link {
    padding: 10px 16px;
    font-size: 14px;
    margin: 0 4px 8px 0;
  }
  
  .client-card {
    padding: 25px 15px;
  }
  
  .client-logo-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .clients-section h2 {
    font-size: 1.75rem;
  }
  
  .client-card {
    padding: 20px 15px;
  }
  
  .client-logo-wrapper {
    width: 60px;
    height: 60px;
  }
}