/* AI Agents & Automation Page Custom Styles */

/* Solution Cards */
.solution-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 196, 81, 0.3);
}

.solution-card h4 {
  color: #ffc451;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.solution-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.solution-card ul {
  list-style: none;
  padding: 0;
}

.solution-card ul li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
}

.solution-card ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ffc451;
  font-weight: bold;
  font-size: 16px;
}

.solution-icon {
  font-size: 40px;
  color: #ffc451;
  margin-bottom: 15px;
}

/* Overview Section */
.overview-section {
  background: linear-gradient(135deg, rgba(255, 196, 81, 0.1), rgba(255, 176, 32, 0.05));
  padding: 50px 0;
  margin: 40px 0;
}

.overview-title {
  color: #ffc451;
  font-weight: 700;
}

.overview-text {
  font-size: 20px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 20px;
}

.overview-benefits-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefits-title {
  color: #ffc451;
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  line-height: 1.6;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list i {
  color: #ffc451;
  margin-right: 10px;
}

/* Solutions Section */
.solutions-section {
  padding: 80px 0;
}

.solutions-main-title {
  color: #ffc451;
}

.solutions-subtitle {
  font-size: 20px;
  color: #444444;
}

/* Why It Matters Section */
.why-matters-section {
  padding: 60px 0;
}

.why-matters-title {
  color: #ffffff;
}

.why-matters-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  height: 100%;
}

.impact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.impact-icon {
  font-size: 50px;
  color: #ffc451;
  margin-bottom: 20px;
}

.impact-card h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 22px;
}

.impact-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
}

/* Industries Section */
.industries-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.industries-title {
  color: #ffc451;
}

.industries-subtitle {
  font-size: 20px;
  color: #444444;
}

.industry-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 196, 81, 0.2);
}

.industry-icon {
  font-size: 50px;
  color: #ffc451;
  margin-bottom: 20px;
}

.industry-card h5 {
  color: #151515;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.industry-card p {
  color: #444444;
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .solution-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .overview-text {
    font-size: 16px;
  }

  .impact-card {
    padding: 25px;
    margin-bottom: 20px;
  }

  .industry-card {
    padding: 25px;
    margin-bottom: 20px;
  }

  .industry-icon,
  .impact-icon {
    font-size: 40px;
  }
}