/*
 * HMHM HurufProjects Slider - Developed by HUSSEIN MOHAMED
 */
.hmhm-hurufprojects-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hmhm-hurufprojects-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hmhm-hurufproject-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hmhm-hurufproject-content {
  flex: 1;
}

.hmhm-hurufproject-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.hmhm-hurufproject-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.hmhm-hurufproject-image {
  flex: 1;
  text-align: center;
}

.hmhm-hurufproject-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media(max-width: 768px) {
  .hmhm-hurufproject-slide {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hmhm-hurufproject-content {
    margin-top: 15px;
  }
}
