.feature_sec{
    background-color: #ffffff;
}
.features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  
}

.ai-header {
  text-align: center;
  margin-bottom: 50px;
}

.features-badge {
  font-size: 16px;
  color: #141515;
  margin-bottom: 20px;
  padding: 6px 12px;
  display: inline-block;
  border-radius: 60px;
  /* Gradient border workaround */
  border: 1px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(180deg, rgba(140, 170, 254, 0) 0%, #8caafe 100%) border-box;
}

.features-title {
  font-size: 48px;
  font-weight: 500;
  color: #141515;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.feature-card {
  background: #ffffff;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-heading {
  font-size: 26px;
  font-weight: 600;
  color: #141515;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-description {
  font-size: 18px;
  color: #2D2D30;
  line-height: 1.6;
  text-align: left;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 968px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
  }

  .features-title {
    font-size: 36px;
  }

  .features-container {
    padding: 40px 15px;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 30px;
  }

  .features-title {
    font-size: 28px;
  }

  .features-container {
    padding: 30px 15px;
  }

  .feature-card {
    text-align: left;
  }
}

/* Icon Colors */
.icon-blue {
  color: #4a90e2;
}

.icon-purple {
  color: #8e44ad;
}

.icon-green {
  color: #27ae60;
}

.icon-orange {
  color: #f39c12;
}

.icon-red {
  color: #e74c3c;
}

.icon-teal {
  color: #1abc9c;
}
