/* 
 * Empowered By Section Styles - Bixing Technology
 * Showcases AI models that power our solutions
 */

/* Empowered By Section Container */
.empowered-by-section {
  background-color: transparent;
  padding: 0;
  position: absolute;
  bottom: 10px; 
  left: 0;
  right: 0;
  z-index: 3;
}

/* Content container */
.empowered-by-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* "Empowered by" text */
.empowered-by-text {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-right: 20px;
}

/* AI models container */
.ai-models {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Common AI model styling */
.ai-model {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin: 5px 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* Hover effect for AI models */
.ai-model:hover {
  transform: translateY(-2px) scale(1.05);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Individual AI model colors and effects */
.ai-model.deepseek {
  color: #3498db;
  text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.ai-model.qwen {
  color: #f1c40f;
  text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
}

.ai-model.llama {
  color: #2ecc71;
  text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.ai-model.chatgpt {
  color: #9b59b6;
  text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

.ai-model.claude {
  color: #1abc9c;
  text-shadow: 0 0 10px rgba(26, 188, 156, 0.5);
}

.ai-model.gemini {
  color: #16a085;
  text-shadow: 0 0 10px rgba(22, 160, 133, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .empowered-by-text {
    font-size: 18px;
    margin-right: 10px;
  }
  
  .ai-model {
    font-size: 18px;
    margin: 5px 10px;
  }
}

@media (max-width: 576px) {
  .empowered-by-text {
    font-size: 16px;
    margin-right: 8px;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .ai-model {
    font-size: 16px;
    margin: 3px 8px;
  }
}
