/* New Dew Hair Themes - Main CSS */
.ndht-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.ndht-faq-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.ndht-faq-toggle span:last-child {
  transition: transform 0.2s ease;
}

/* Continuous Marquee Ticker */
@keyframes ndht-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.ndht-marquee-wrapper {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

.ndht-marquee-track,
.animate-marquee {
  display: flex !important;
  flex-direction: row !important;
  width: max-content !important;
  min-width: 200% !important;
  will-change: transform !important;
  animation: ndht-marquee-scroll 25s linear infinite !important;
}

.ndht-marquee-item {
  display: flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.ndht-marquee-wrapper:hover .ndht-marquee-track,
.ndht-marquee-wrapper:hover .animate-marquee {
  animation-play-state: paused;
}

/* Signature Services Grid & Image Box Height */
.service-card-media-wrapper {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 3 / 2 !important;
  height: 130px !important;
  max-height: 130px !important;
  min-height: 130px !important;
  overflow: hidden !important;
  background-color: rgba(230, 225, 245, 0.4);
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}

.service-card-media-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Haute Couture Portfolio Grid & Compact Image Box Height */
.portfolio-card-media-wrapper {
  position: relative !important;
  width: 100% !important;
  height: 150px !important;
  max-height: 150px !important;
  overflow: hidden !important;
  background-color: rgba(230, 225, 245, 0.4);
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}

.portfolio-card-media-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
