.operation-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
 margin-bottom: 3rem;
}

.operation-service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.operation-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.operation-service-card:hover::before {
  transform: scaleX(1);
}

.operation-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.operation-service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-secondary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.operation-service-icon i {
  color: white;
  font-size: 2rem;
}

.operation-service-title {
  font-family: var(--font-family-base);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.operation-service-description {
  color: rgba(0, 0, 0, 0.76);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.operation-service-link {
  color: var(--secondary-blue);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.operation-service-link:hover {
  gap: 1rem;
}

/* Operations Service Card Background Images */
.operation-service-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.operation-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.623);
  z-index: 0;
  transition: background 0.3s ease;
}

.operation-service-card:hover::after {
  background: rgba(255, 255, 255, 0.88);
}

.operation-service-card > * {
  position: relative;
  z-index: 1;
}

/* Process Optimization */
.operation-service-card:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=800&q=80');
}

/* Quality Assurance */
.operation-service-card:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=800&q=80');
}

/* Supply Chain Management */
.operation-service-card:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=800&q=80');
}

/* Operational Analytics */
.operation-service-card:nth-child(4) {
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&q=80');
}

/* Inventory Management */
.operation-service-card:nth-child(5) {
  background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=800&q=80');
}

/* Vendor Management */
.operation-service-card:nth-child(6) {
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=800&q=80');
}
