/* ===== Topbar ===== */
.topbar {
  font-size: 16px;
}
.topbar a {
  transition: color 0.3s ease;
}
.topbar a:hover {
  color: #ff6600 !important; /* orange hover */
}

/* ===== Navbar ===== */
.navbar {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 200;
  min-height: auto;
  line-height: 1;
}
.navbar-brand .logo {
  height: 40px;
  width: auto;
  display: block;
}
.company-name {
  font-weight: bold;
  font-size: 18px;
  color: #ff6600;
  margin-left: 6px;
  white-space: nowrap;
  line-height: 1;
}
.navbar-nav .nav-link {
  padding: 6px 12px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #ff6600 !important;
}
.navbar-nav .nav-link.active {
  color: #ff6600 !important;
  font-weight: 600;
}
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  background-color: #fff;
}
.dropdown-item {
  padding: 8px 16px;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  background-color: #ff6600 !important;
  color: #fff !important;
}
.sticky-top {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Section Title */
.section-title {
  font-size: 2rem;
  color: #ff6600;
}
.section-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: auto;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  height: 100%;
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease;
  margin-bottom: 10px;
}
.product-card h5 {
  font-size: 1rem;
  color: #333;
  margin-top: 10px;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.product-card:hover img {
  transform: scale(1.05) rotate(1deg);
}
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
@media (max-width: 576px) {
  .product-card img {
    height: 150px;
  }
}

/* Footer Section */
.footer {
  background: url('../images/about.webp') no-repeat center center/cover;
  position: relative;
  z-index: 1;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: -1;
}
.footer h5 {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}
.footer h5::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff6600; 
  margin-top: 8px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #ff6600; 
}
.btn-orange {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 6px 15px;
  font-weight: 600;
}
.btn-orange:hover {
  background: #e65c00;
  color: #fff;
}
.text-orange {
  color: #ff6600;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer p i {
  color: #ff6600;
  margin-right: 8px;
}
