.nc-slider {
  position: relative;
  width: 100%;
  height: 750px;
  max-height: 90vh;
  overflow: hidden;
  background: #111;
}

.nc-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.nc-slide.active {
  opacity: 1;
  z-index: 2;
}

.nc-slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.25);
}

.nc-slide-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.nc-slide-content h2 {
  font-family: Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
  transition-delay: .3s;
}

.nc-slide-content p {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 30px;
  max-width: 650px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
  transition-delay: .5s;
}

.nc-btn {
  display: inline-block;
  padding: 16px 34px;
  background: #00cc00;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .5px;
  border-radius: 2px;
  transition: background .3s ease, opacity .8s ease, transform .8s ease;
  opacity: 0;
  transform: translateY(20px);
  transition-delay: .7s;
}

.nc-btn:hover {
  background: #009688;
  color: #fff;
}

.nc-slide.active .nc-slide-content h2,
.nc-slide.active .nc-slide-content p,
.nc-slide.active .nc-slide-content .nc-btn {
  opacity: 1;
  transform: translateY(0);
}

.nc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
}

.nc-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.nc-prev { left: 20px; }
.nc-next { right: 20px; }

.nc-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s ease;
}

.nc-dot.active {
  background: #fff;
}

@media (max-width: 768px) {
  .nc-slider { height: 500px; }
  .nc-slide-content h2 { font-size: 30px; }
  .nc-slide-content p { font-size: 16px; }
  .nc-arrow { width: 36px; height: 36px; font-size: 14px; }
}

@media (max-width: 480px) {
  .nc-slider { height: 420px; }
  .nc-slide-content h2 { font-size: 24px; }
  .nc-slide-content p { font-size: 14px; }
}
