body {
  background: #0b0b0b;
  color: #e5e5e5;
  font-family: system-ui, sans-serif;
  scroll-behavior: smooth;
}

.navbar {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 140, 0, 0.25);
}

.accent { color: #ff7a00; }

.btn-orange {
  background-color: #ff7a00;
  color: white;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.1rem;
}
.btn-orange:hover {
  background-color: #ff8c1a;
}

/* Full-Screen Hero */
#about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at top, rgba(255, 140, 0, 0.15), transparent 70%);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.3rem;
  color: #b5b5b5;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Product Bubbles */
.bubble {
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: 0.25s ease;
  box-shadow: 0 0 0 rgba(255, 140, 0, 0);
}
.bubble:hover {
  transform: translateY(-6px);
  background: rgba(255, 140, 0, 0.15);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.25);
}

/* Section Spacing */
section {
  padding: 120px 0;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  color: #ff7a00;
}

/* FAQ */
.accordion-item {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 10px;
  margin-bottom: 12px;
}
.accordion-button {
  background-color: #111;
  color: #fff;
  border-radius: 10px;
}
.accordion-button:not(.collapsed) {
  background-color: #1a1a1a;
  color: #ff7a00;
}

/* Contact Form */
.form-control {
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  border-radius: 10px;
  padding: 14px;
}

footer {
  padding: 40px 0;
  text-align: center;
  color: #777;
  border-top: 1px solid rgba(255, 140, 0, 0.25);
  margin-top: 80px;
}

/* Glowing Orb Background */

.orb-bg {
  position: fixed;
  top: -200px;
  left: 50%;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 120, 0, 0.35) 0%,
    rgba(255, 120, 0, 0.15) 35%,
    rgba(255, 120, 0, 0.05) 60%,
    transparent 80%
  );
  transform: translateX(-50%);
  filter: blur(80px);
  z-index: -1;
  animation: orbFloat 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes orbFloat {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.8;
  }
  100% {
    transform: translateX(-50%) translateY(60px);
    opacity: 1;
  }
}

/* FAQ Readability */
.accordion-item {
  background-color: #141414 !important;
  border: 1px solid rgba(255, 140, 0, 0.25) !important;
  border-radius: 12px !important;
}

.accordion-button {
  background-color: #141414 !important;
  color: #eaeaea !important;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background-color: #1c1c1c !important;
  color: #ff7a00 !important;
  box-shadow: inset 0 0 12px rgba(255, 140, 0, 0.25);
}

.accordion-body {
  background-color: #1a1a1a !important;
  color: #dcdcdc !important;
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 20px 24px;
}

/* Links */
.link-orange {
  color: #ff7a00 !important;
  text-decoration: none;
}

.link-orange:hover {
  color: #ff8c1a !important;
  text-decoration: underline;
}