/**
 * Service Challenges Widget Styles
 *
 * @package Hello_Elementor_Child
 * @since 1.0.0
 */

.service-challenges-section {
  background-color: #ffffff;
  padding: 96px 16px;
}

.service-challenges-container {
  max-width: 896px;
  margin: 0 auto;
}

/* Header Styles */
.service-challenges-header {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.service-challenges-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  color: #14167e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-challenges-icon i,
.service-challenges-icon svg {
  width: 100%;
  height: 100%;
}

.service-challenges-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #040533;
  margin: 0;
  line-height: 1.2;
}

/* Description Styles */
.service-challenges-description {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Grid Styles */
.service-challenges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .service-challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Challenge Item Styles */
.challenge-item {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  background-color: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.challenge-item:nth-child(1) {
  animation-delay: 0.1s;
}

.challenge-item:nth-child(2) {
  animation-delay: 0.2s;
}

.challenge-item:nth-child(3) {
  animation-delay: 0.3s;
}

.challenge-item:nth-child(4) {
  animation-delay: 0.4s;
}

.challenge-item:nth-child(5) {
  animation-delay: 0.5s;
}

.challenge-item:nth-child(6) {
  animation-delay: 0.6s;
}

.challenge-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f9c603;
  margin-top: 8px;
  margin-right: 12px;
  flex-shrink: 0;
}

.challenge-item-text {
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 767px) {
  .service-challenges-section {
    padding: 64px 16px;
  }

  .service-challenges-title {
    font-size: 1.875rem;
  }

  .service-challenges-description {
    font-size: 1rem;
  }
}
