/* Industries Section Styles */
.ud-industries {
  padding: 80px 0;
  background-color: #eefaf6;
}

.ud-single-industry {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  text-align: center;
}

.ud-single-industry:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ud-industry-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0a8f7b, #0a5c54);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.ud-industry-icon i {
  font-size: 32px;
  color: #fff;
}

.ud-single-industry:hover .ud-industry-icon {
  transform: scale(1.1);
}

.ud-industry-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 15px;
}

.ud-industry-desc {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Case Studies Section Styles */
.ud-case-studies {
  padding: 80px 0;
  background-color: #fff;
}

.ud-single-case-study {
  background: #f8f9fa;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 4px solid #0a8f7b;
  transition: all 0.3s ease;
  overflow: hidden;
}

.ud-single-case-study:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ud-case-study-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.ud-case-study-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.8), rgba(10, 132, 255, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.ud-single-case-study:hover .ud-case-study-image::before {
  opacity: 1;
}

.ud-case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ud-single-case-study:hover .ud-case-study-image img {
  transform: scale(1.05);
}

.ud-case-study-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(48, 86, 211, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.ud-case-study-content {
  padding: 30px;
}

.ud-case-study-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 25px;
  line-height: 1.3;
}

.ud-case-study-section {
  margin-bottom: 20px;
}

.ud-case-study-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0a8f7b;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ud-case-study-section p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ud-case-study-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ud-case-study-section ul li {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.ud-case-study-section ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0a8f7b;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ud-industries,
  .ud-case-studies {
    padding: 60px 0;
  }
  
  .ud-single-industry {
    padding: 25px;
  }
  
  .ud-single-case-study {
    margin-bottom: 20px;
  }
  
  .ud-case-study-image {
    height: 150px;
  }
  
  .ud-case-study-content {
    padding: 20px;
  }
  
  .ud-case-study-title {
    font-size: 20px;
  }
  
  .ud-industry-icon {
    width: 60px;
    height: 60px;
  }
  
  .ud-industry-icon i {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .ud-case-study-image {
    height: 120px;
  }
  
  .ud-case-study-content {
    padding: 15px;
  }
  
  .ud-case-study-title {
    font-size: 18px;
  }
}

/* Contact Info Styles */
.ud-widget-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ud-widget-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #64748b;
  font-size: 14px;
}

.ud-widget-contact li i {
  color: #0a8f7b;
  margin-right: 10px;
  font-size: 16px;
  width: 20px;
}

.ud-widget-contact li span {
  line-height: 1.5;
}
