/* Oracle Cloud Fusion — hero must stay dark-blue so white text is readable */
.fusion-hero {
  background: linear-gradient(135deg, #052c65 0%, #0d6efd 50%, #6ea8fe 100%);
  padding: 140px 0 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.fusion-hero .fusion-hero-visual {
  height: 400px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 40px rgba(3, 24, 51, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.fusion-hero .fusion-hero-visual img,
.fusion-hero .fusion-hero-visual svg {
  width: 100%;
  height: 100%;
  max-width: 340px;
  max-height: 340px;
  display: block;
}

@media (max-width: 991px) {
  .fusion-hero .fusion-hero-visual {
    height: 280px;
    margin-top: 2rem;
  }
}

.theme-dark .fusion-hero {
  background: #111111 !important;
}
.theme-dark .fusion-hero .fusion-hero-visual {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-stats .stat-item {
  transition: transform 0.3s ease;
}
.hero-stats .stat-item:hover {
  transform: translateY(-5px);
}

.fusion-icon i {
  color: #ffffff !important;
  font-size: 1.8rem;
  line-height: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
