/* Conveyor Belt Gallery - Auto-Scrolling */

.nc-gallery-section,
.renovation-gallery-section {
  background-color: #ffffff !important;
  padding: 40px 0 60px 0;
  overflow: hidden;
}

.nc-section-header {
  text-align: center;
  padding: 40px 20px 30px 20px;
  background-color: #ffffff !important;
}

.nc-section-eyebrow {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FF7900;
  margin: 0 0 10px 0;
}

.nc-section-title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #333;
  margin: 0 0 40px 0;
}

/* Conveyor Belt Container */
.conveyor-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  background-color: #ffffff;
}

.conveyor-track {
  display: flex;
  gap: 20px;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

.conveyor-track:hover {
  animation-play-state: paused;
}

/* Keyframe Animation - Scroll Right to Left */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Gallery Items */
.gallery-item {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Overlay on Hover */
.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px 20px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.overlay-text {
  color: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* CTA Button */
.nc-gallery-cta,
.renovation-gallery-cta {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff !important;
}

.nc-see-work-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: #FF7900;
  background-color: white !important;
  border: 2px solid #FF7900;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nc-see-work-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: #FF7900;
}

.nc-see-work-btn:hover {
  background-color: #FF7900 !important;
  color: white;
  border-color: #FF7900;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 121, 0, 0.3);
}

.nc-see-work-btn:hover i {
  transform: translateX(4px);
  color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nc-section-title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .nc-section-eyebrow {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .gallery-item {
    width: 300px;
    height: 300px;
  }

  .overlay-text {
    font-size: 1rem;
  }

  .conveyor-track {
    animation: scroll 30s linear infinite;
  }

  .nc-see-work-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    width: 250px;
    height: 250px;
  }

  .nc-section-title {
    font-size: 24px;
  }

  .conveyor-track {
    gap: 15px;
    animation: scroll 25s linear infinite;
  }
}

