/* Faiz Solusindo - Custom styles (minimal, fast) */
.gradient-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
}
.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
}
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f97316;
  transition: width 0.2s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.feature-card,
.software-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover,
.software-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  background: linear-gradient(135deg, #1e3a5f 0%, #0a1628 100%);
}
.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.product-badge {
  background: linear-gradient(135deg, #f97316, #ea580c);
}
.floating {
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.category-btn.active {
  background: #0a1628;
  color: white;
  border-color: #0a1628;
}

/* Hero slider (background + right image) */
.hero-slider > div {
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-slider > div.active {
  opacity: 1;
}
.hero-slider-images > img {
  display: none;
}
.hero-slider-images > img.active {
  display: block;
  animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
