/* Data Science & AI 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;
}

/* Industry Badges */
.industry-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffc451, #ffb020);
  color: #151515;
  padding: 8px 20px;
  border-radius: 25px;
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.industry-badge:hover {
  transform: scale(1.05);
}

/* Case Study Cards */
.case-study-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-left: 4px solid #ffc451;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.case-study-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.case-icon {
  color: #ffc451;
  margin-right: 8px;
}

/* 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;
}

/* Industries Section */
.industries-section {
  padding: 60px 0;
}

.industries-title {
  color: #ffffff;
}

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

/* Case Studies Section */
.case-studies-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.case-studies-title {
  color: #ffc451;
}

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

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

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

  .industry-badge {
    font-size: 12px;
    padding: 6px 15px;
  }

  .case-study-card {
    padding: 20px;
  }
}