/* Solutions page styling to match technology page */
.solutions-page .solution-section {
  padding: 4rem 0;
  margin-bottom: 2rem;
}

.solutions-page .solution-header {
  margin-bottom: 3rem;
  text-align: center;
}

.solutions-page .solution-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Core technology section styling similar to technology page */
.core-technology {
  margin: 4rem 0;
}

.core-technology .tech-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.core-technology .tech-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333;
}

.core-technology .tech-description {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.core-technology .tech-features {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.core-technology .tech-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eaeaea;
}

.core-technology .tech-features li:last-child {
  border-bottom: none;
}

/* Card styling similar to technology page */
.solutions-page .solution-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solutions-page .solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.solutions-page .solution-image {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.solutions-page .solution-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

/* Feature section styling similar to technology page */
.solutions-page .key-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.solutions-page .feature-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solutions-page .feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.solutions-page .feature-item h3 {
  color: #0047AB;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.solutions-page .feature-item p {
  color: #4A4A4A;
  font-size: 1rem;
  line-height: 1.6;
}

/* Benefits list styling similar to technology page */
.solutions-page .benefits-list {
  margin: 2rem 0;
  padding-left: 1.5rem;
  list-style-type: none;
}

.solutions-page .benefits-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 0.5rem;
  line-height: 1.6;
}

.solutions-page .benefits-list li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #0066cc;
}

/* Fix for stats display */
.solutions-page .stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1rem 0;
  text-align: center;
}

.solutions-page .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solutions-page .stat-number {
  font-size: 5rem;
  font-weight: 900;
  color: #555555;
  margin-bottom: 0.5rem;
  background-color: rgba(200, 200, 200, 0.7);
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 5px;
}

.solutions-page .stat-label {
  color: #fff;
  font-size: 1rem;
}

/* Remove broken image placeholders */
.solutions-page .empty-image-placeholder {
  display: none;
}

/* Digital Twin Viewer section fix */
.digital-twin-section .digital-twin-visualization {
  display: none;
}

@media (max-width: 992px) {
  .solutions-page .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solutions-page .key-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions-page .key-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .solutions-page .stats-container {
    grid-template-columns: 1fr;
  }
}
