/* Clients & Partners Section */
.clients-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--font-family-1);
}

.clients-section h2 {
  font-family: var(--font-family-1);
  font-size: 34px;
  color: #00f7ff;
  margin-bottom: 3.5rem;
  text-align: center;
}

.marquee-wrapper {
  display: flex;
  overflow-x: auto;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  padding-bottom: 20px;
  scroll-behavior: smooth;
  cursor: grab;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.marquee-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.marquee-content {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 0 10vw;
}

.client-card {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  min-width: 300px;
  max-width: 300px;
  text-align: left;
  backdrop-filter: blur(2px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* .client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
} */

.client-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  width: 100%;
}

.client-card img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 50%;
  background: #3498db;
  border: 1px solid rgba(0, 255, 255, 0.2);
  padding: 8px;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.3));
}

.client-card h4 {
  color: #00e0ff;
  font-size: 1.3rem;
  margin-bottom: 0;
}

.client-card p {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 7.5em;
}

@media (max-width: 768px) {
  .client-card {
    min-width: 250px;
    max-width: 250px;
  }
}