/* Styles extracted from services.html */

/* Border and hover styles */
.border-primary {
  border-color: #0052cc;
}

.hover\:text-primary:hover {
  color: #0052cc;
}

.active\:scale-98:active {
  transform: scale(.98);
}

/* Body and text styles */
body {
  background: #f8fafc;
  color: #1e293b;
}

.text-primary {
  color: #0052cc;
}

.bg-primary {
  background-color: #0052cc;
}

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(135deg, #003d99 0%, #0052cc 100%);
}

/* Section card styles */
.section-card {
  background: white;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.section-card:hover {
  box-shadow: 0 8px 16px rgba(0, 52, 204, 0.15);
  transform: translateY(-2px);
}

/* Process step styles */
.process-step {
  position: relative;
  padding-left: 3rem;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: #0052cc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

/* Solutions grid styles */
.solutions-grid {
  display: grid;
  gap: 1.5rem;
}

.solutions-grid > div {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #0052cc;
}

/* Spare parts list styles */
.spare-parts-list {
  background: #fef3c7;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

/* Google Translate element positioning */
.google-translate-element {
  position: fixed;
  top: -100px;
  left: -100px;
  opacity: 0.01;
  pointer-events: none;
}