:root {
  --dark: #121212;
  --accent: #F4A000;
  --light: #f2f2f2;
}

body {
  font-family: Arial, sans-serif;
}

.industrial-nav-white {
  background: white;
  border-bottom: 3px solid var(--accent);
}

.navbar-light .navbar-nav .nav-link {
  color: #111;
  font-weight: 600;
  margin-left: 18px;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--accent);
}

.hero {
  height: 100vh;
  background: url("../images/hero-cnc.jpg") center/cover no-repeat;
  position: relative;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}

.hero h1 span {
  color: var(--accent);
}

.badges span {
  border: 1px solid var(--accent);
  padding: 6px 12px;
  margin: 5px;
  display: inline-block;
}

.section-dark {
  background: var(--dark);
  color: white;
  padding: 80px 0;
}

.section-light {
  background: var(--light);
  padding: 80px 0;
}

.section-title {
  border-left: 6px solid var(--accent);
  padding-left: 15px;
  margin-bottom: 40px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}

.product-card {
  background: #1c1c1c;
  padding-bottom: 15px;
}

.product-card h5 {
  margin-top: 15px;
  color: var(--accent);
}

/* ===== Carousel Controls (Side + White) ===== */
/* ===== FIXED CAROUSEL CONTROLS ===== */

#productCarousel {
  position: relative;
}

.custom-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  border: 1px solid var(--accent);
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.carousel-control-prev.custom-carousel-control {
  left: -70px;
}

.carousel-control-next.custom-carousel-control {
  right: -70px;
}

/* ARROW */
.custom-arrow {
  color: white;
  font-size: 30px;
  line-height: 46px;
  display: block;
  text-align: center;
}

/* HOVER EFFECT */
.custom-carousel-control:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

/* MOBILE SAFETY */
@media (max-width: 768px) {
  .carousel-control-prev.custom-carousel-control {
    left: 10px;
  }

  .carousel-control-next.custom-carousel-control {
    right: 10px;
  }
}

/* ===== Carousel Controls End ===== */


.stats div {
  background: #1e1e1e;
  padding: 20px;
  margin-bottom: 15px;
}

.capability {
  background: white;
  padding: 20px;
  border-left: 4px solid var(--accent);
}

.product-card img {
  width: 100%;
  border-bottom: 3px solid var(--accent);
}

.quality-list li {
  margin-bottom: 10px;
}

.footer {
  background: black;
  color: white;
  text-align: center;
  padding: 20px;
}

