<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* AI Models Section Styles */
.ai-models {
  padding: 60px 0;
  background: linear-gradient(to right, var(--background-color), var(--surface-color), var(--background-color));
}

.ai-models .section-title {
  margin-bottom: 40px;
}

.ai-models-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.ai-model-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ai-model-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.ai-model-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--accent-color), #31249a);
}

.ai-model-logo, .ai-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 10px;
}

/* Fix for SVG display in different browsers */
.ai-model-item img, .service-icon img {
  max-width: 100%;
  display: block;
}

.ai-model-card:hover .ai-model-logo,
.ai-model-item:hover img.ai-logo,
.ai-model-item:hover .ai-logo {
  transform: scale(1.1);
}

.ai-model-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.ai-model-company {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
}

.ai-model-description {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 15px;
}

.ai-model-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: var(--accent-color);
}

.ai-model-tag.open-source {
  background-color: #28a745;
}

.ai-model-tag.proprietary {
  background-color: #dc3545;
}

.ai-model-tag.hybrid {
  background-color: #fd7e14;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .ai-model-card {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .ai-models-container {
    gap: 20px;
  }

  .ai-model-card {
    width: 180px;
    padding: 20px;
  }

  .ai-model-logo {
    width: 60px;
    height: 60px;
  }

  .ai-model-name {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .ai-models-container {
    gap: 15px;
  }

  .ai-model-card {
    width: 150px;
    padding: 15px;
  }

  .ai-model-description {
    display: none;
  }
}
</pre></body></html>