/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/styles/client.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
/* Clients Page Enhanced Styles - Keep Tailwind classes, enhance with animations */

/* Fade in animation for cards */
.clients-list > div {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.clients-list > div:nth-child(1) { animation-delay: 0.1s; }
.clients-list > div:nth-child(2) { animation-delay: 0.2s; }
.clients-list > div:nth-child(3) { animation-delay: 0.3s; }
.clients-list > div:nth-child(4) { animation-delay: 0.4s; }
.clients-list > div:nth-child(5) { animation-delay: 0.5s; }
.clients-list > div:nth-child(6) { animation-delay: 0.6s; }
.clients-list > div:nth-child(n+7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced card hover effects */
.client-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(14, 165, 233, 0.1), 0 10px 10px -5px rgba(14, 165, 233, 0.04);
  border-color: rgb(125, 211, 252);
}

/* Enhanced image zoom effect */
.client-card:hover .client-card-image img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

/* Add gradient overlay on hover */
.client-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 165, 233, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.client-card:hover .client-card-image::after {
  opacity: 1;
}

/* Enhanced logo border glow */
.client-card:hover .client-logo {
  border-color: rgb(14, 165, 233);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Smooth button animation */
.client-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

/* Add subtle border animation */
.client-card {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgb(14, 165, 233), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.client-card:hover::before {
  left: 100%;
}

/* Improve text with gradient effect */
.client-card:hover .client-name {
  background: linear-gradient(135deg, rgb(14, 165, 233) 0%, rgb(56, 189, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced image container transition */
.client-card-image {
  position: relative;
  overflow: hidden;
}

.client-card-image img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

/* Subtle background gradient */
.client-card-body {
  background: linear-gradient(to bottom, white 0%, rgb(248, 250, 252) 100%);
}

