    body {
        font-family: "Roboto", sans-serif;
      }

      /* Hero */
      .hero-img {
        max-height: 420px;
      }

      /* Product Cards */
      .product-card {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
        height: 100%;
      }

      .product-card:hover {
        transform: translateY(-6px);
      }

      .product-card img {
        max-height: 180px;
        object-fit: contain;
        margin-bottom: 15px;
      }

      /* Feature Cards */
      .feature-box {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      }

      /* Contact */
      .contact-box {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      }

      /* Footer */
      footer {
        background: #1f1f1f;
        color: #ccc;
        padding: 50px 0 20px;
      }

      footer a {
        color: #ccc;
        text-decoration: none;
      }

      footer a:hover {
        color: #f0ad4e;
      }
      

     /* Carousel height */
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: 520px;
  overflow: hidden;
}

/* Center rows */
#heroCarousel .row {
  height: 100%;
}

/* Images */
.hero-img {
  height: 380px;
  width: auto;
  object-fit: contain;
}


.hero-text {
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translateY(20px);
}




/* slider */
/* Fixed height to prevent jump */
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: 520px;
  overflow: hidden;
}

/* Center rows */
#heroCarousel .row {
  height: 100%;
}

/* Images */
.hero-img {
  height: 380px;
  width: auto;
  object-fit: contain;
}

/* Smooth text fade animation */
.hero-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* Activate animation on current slide */
.carousel-item.active .hero-text {
  opacity: 1;
  transform: translateY(0);
}

/* Controls always visible */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  z-index: 10;
  width: 5%;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  background-color: rgba(0,0,0,0.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #heroCarousel,
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: auto;
    padding: 40px 0;
  }
  .hero-img {
    max-height: 260px;
    margin-top: 20px;
  }
}
      @media (min-width: 768px) {
        .min-vh-md-75 {
          min-height: 75vh;
        }
      }