/* Image Fixes - Remove Green Tint */

/* Fix capability images */
.capability-image {
  filter: brightness(1.1) contrast(1.05) saturate(0.9);
  transition: filter 0.3s ease;
}

.capability-item:hover .capability-image {
  filter: brightness(1.2) contrast(1.1) saturate(1);
}

/* Remove any green overlay from images */
.capability-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: none; /* Reset any inherited filters */
}

/* Style the capability icons if they're using images */
.capability-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(122, 162, 247, 0.1);
  border: 2px solid rgba(122, 162, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.capability-item:hover .capability-icon {
  transform: scale(1.1);
  background: rgba(122, 162, 247, 0.2);
  border-color: var(--tn-cyan);
  box-shadow: 0 8px 24px rgba(122, 162, 247, 0.3);
}

/* Icon wrapper styling */
.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.icon-glow {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px currentColor);
  transition: all 0.3s ease;
}

.capability-item:hover .icon-glow {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px currentColor);
}

/* Fix any project images */
.project-card__image img {
  filter: brightness(1) contrast(1.05) saturate(0.95);
}

.project-card:hover .project-card__image img {
  filter: brightness(1.05) contrast(1.1) saturate(1);
}

/* Fix testimonial images */
.testimonial-card__image img {
  filter: brightness(1.05) contrast(1.1);
  border-radius: 50%;
}

/* General image enhancement */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}