/* Unique design */
.hair-issues-section {
  background: rgb(240, 236, 236);
  font-family: 'Poppins', sans-serif;
}

.hair-issues-heading {
  color: #3b0000;
  font-size: 30px;
  font-weight: 700;
}

.issue-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.issue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.issue-img-wrapper {
  background: #c99f52;
  border-radius: 50%;
  padding: 10px;
  overflow: hidden;
  margin: 0 auto 20px auto;
  width: 220px;   /* 🔹 Increased from 190px */
  height: 220px;  /* 🔹 Increased from 190px */
  display: flex;
  justify-content: center;
  align-items: center;
}

.issue-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.issue-card:hover img {
  transform: scale(1.08);
}

.issue-card h5 {
  color: #2b0000;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 30px;
  height: 30px;
}

/* Responsive */
@media (max-width: 991px) {
  .d-none.d-lg-block {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hair-issues-heading {
    font-size: 24px;
  }

  .issue-img-wrapper {
    width: 180px;   /* 🔹 Increased from 160px */
    height: 180px;  /* 🔹 Increased from 160px */
  }

  .issue-card h5 {
    font-size: 15px;
  }
}
