    :root {
      --bbs-bg: #050914;
      --bbs-bg-soft: #0d1726;
      --bbs-primary: #1f6feb;
      --bbs-gold: #d9b88f;
      --bbs-text-main: #f5f7fb;
      --bbs-text-muted: #adb9cc;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
      background-color: var(--bbs-bg);
      color: var(--bbs-text-main);
    }

    /* Hero background (you can change the image path) */
    .hero-wrapper {
      position: relative;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(5, 9, 20, 0.9), rgba(8, 20, 40, 0.95)),
        url("images/bbs-it-background.jpg") center/cover no-repeat;
    }

    /* Soft overlay shapes */
    .hero-overlay-shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.16;
      filter: blur(2px);
      pointer-events: none;
      animation: floatShape 16s ease-in-out infinite alternate;
    }

    .hero-overlay-shape.shape-1 {
      width: 420px;
      height: 420px;
      background: radial-gradient(circle at 30% 20%, var(--bbs-gold), transparent 60%);
      top: -120px;
      right: -80px;
    }

    .hero-overlay-shape.shape-2 {
      width: 360px;
      height: 360px;
      background: radial-gradient(circle at 10% 80%, var(--bbs-primary), transparent 60%);
      bottom: -140px;
      left: -60px;
      animation-delay: 4s;
    }

    @keyframes floatShape {
      0% {
        transform: translate3d(0, 0, 0) scale(1);
      }
      100% {
        transform: translate3d(20px, -30px, 0) scale(1.08);
      }
    }

    /* Navbar */
    .bbs-navbar {
      padding-top: 18px;
      padding-bottom: 8px;
      background: transparent;
      z-index: 10;
    }

    .bbs-navbar .navbar-brand {
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 16px;
      color: var(--bbs-text-main);
    }

    .bbs-navbar .navbar-brand span {
      color: var(--bbs-gold);
    }

    .bbs-navbar .nav-link {
      color: var(--bbs-text-muted);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding-right: 12px;
      padding-left: 12px;
      position: relative;
      transition: color 0.25s ease;
    }

    .bbs-navbar .nav-link::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 4px;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--bbs-gold), var(--bbs-primary));
      transition: width 0.3s ease, left 0.3s ease;
    }

    .bbs-navbar .nav-link:hover {
      color: var(--bbs-text-main);
    }

    .bbs-navbar .nav-link:hover::after {
      width: 70%;
      left: 15%;
    }

    /* Hero content */
    .hero-content {
      position: relative;
      z-index: 2;
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .hero-grid {
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(7, 15, 30, 0.7);
      border: 1px solid rgba(217, 184, 143, 0.4);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--bbs-gold);
      margin-bottom: 14px;
      animation: fadeInUp 0.9s ease forwards;
      opacity: 0;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--bbs-gold);
      box-shadow: 0 0 12px rgba(217, 184, 143, 0.9);
    }

    .hero-title {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 14px;
      animation: fadeInUp 0.9s ease 0.1s forwards;
      opacity: 0;
    }

    .hero-title span {
      background: linear-gradient(120deg, var(--bbs-gold), var(--bbs-primary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 18px;
      color: var(--bbs-text-muted);
      max-width: 540px;
      margin-bottom: 26px;
      animation: fadeInUp 0.9s ease 0.18s forwards;
      opacity: 0;
    }

    .hero-list {
      list-style: none;
      padding: 0;
      margin: 0 0 26px 0;
      display: grid;
      gap: 6px;
      font-size: 14px;
      animation: fadeInUp 0.9s ease 0.26s forwards;
      opacity: 0;
    }

    .hero-list li::before {
      content: "•";
      margin-right: 8px;
      color: var(--bbs-gold);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      animation: fadeInUp 0.9s ease 0.34s forwards;
      opacity: 0;
    }

    .btn-bbs-primary {
      border-radius: 999px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      background: linear-gradient(120deg, var(--bbs-gold), var(--bbs-primary));
      color: #050910;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .btn-bbs-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(0, 0, 0, 0.5);
      color: #050910;
    }

    .btn-bbs-ghost {
      border-radius: 999px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1px solid rgba(173, 185, 204, 0.65);
      background: rgba(5, 9, 20, 0.5);
      color: var(--bbs-text-main);
      transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    }

    .btn-bbs-ghost:hover {
      background: rgba(8, 20, 40, 0.9);
      border-color: var(--bbs-gold);
      transform: translateY(-2px);
      color: var(--bbs-text-main);
    }

    /* Right side: logo + tech card placeholder */
    .hero-right-card {
      background: rgba(13, 23, 38, 0.92);
      border-radius: 18px;
      border: 1px solid rgba(88, 115, 160, 0.6);
      padding: 22px 22px 18px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(14px);
      animation: floatCard 6s ease-in-out infinite alternate;
    }

    @keyframes floatCard {
      0% {
        transform: translateY(0);
      }
      100% {
        transform: translateY(-8px);
      }
    }

    .hero-logo-box {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      border-bottom: 1px solid rgba(88, 115, 160, 0.4);
      padding-bottom: 10px;
    }

    .hero-logo-placeholder {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      border: 1px solid rgba(217, 184, 143, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 22px;
      color: var(--bbs-gold);
      background: radial-gradient(circle at 20% 0%, rgba(217, 184, 143, 0.18), transparent 60%);
    }

    .hero-logo-text h2 {
      font-size: 16px;
      margin: 0;
    }

    .hero-logo-text small {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--bbs-text-muted);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-bottom: 12px;
    }

    .metric-item {
      padding: 10px 10px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(16, 28, 51, 0.9), rgba(11, 19, 34, 0.9));
      border: 1px solid rgba(69, 96, 138, 0.7);
    }

    .metric-label {
      font-size: 11px;
      color: var(--bbs-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 3px;
    }

    .metric-value {
      font-size: 16px;
      font-weight: 600;
      color: var(--bbs-gold);
    }

    .hero-stack-title {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--bbs-text-muted);
      margin-top: 6px;
      margin-bottom: 4px;
    }

    .hero-stack-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .hero-tag {
      font-size: 11px;
      padding: 4px 9px;
      border-radius: 999px;
      background: rgba(8, 16, 30, 0.9);
      border: 1px solid rgba(71, 98, 144, 0.85);
      color: var(--bbs-text-main);
    }

    /* Scroll hint */
    .scroll-hint {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--bbs-text-muted);
      opacity: 0.8;
    }

    .scroll-hint span {
      display: block;
    }

    .scroll-line {
      width: 1px;
      height: 26px;
      margin: 6px auto 0;
      background: linear-gradient(to bottom, transparent, var(--bbs-gold));
      position: relative;
      overflow: hidden;
    }

    .scroll-line::after {
      content: "";
      position: absolute;
      top: -12px;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 1px;
      height: 10px;
      background: var(--bbs-gold);
      animation: scrollDown 1.3s linear infinite;
    }

    @keyframes scrollDown {
      0% {
        transform: translateY(0);
        opacity: 0;
      }
      20% {
        opacity: 1;
      }
      100% {
        transform: translateY(26px);
        opacity: 0;
      }
    }

    /* Simple fade-up animation */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
      }
      100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

    /* Placeholder section for your future content */
    .next-section-placeholder {
      background: var(--bbs-bg-soft);
      padding: 60px 0;
    }

    .next-section-placeholder h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .next-section-placeholder p {
      color: var(--bbs-text-muted);
      max-width: 620px;
    }

    /* Responsive tweaks */
    @media (max-width: 991.98px) {
      .hero-right-card {
        margin-top: 32px;
      }
    }

    .card-content{
      text-align: -webkit-center;
      position: relative;
      z-index: 2;
      padding-top: 80px;
      padding-bottom: 80px;
    }

 /* blob image */
    .blob {
  --size: 550px;
  position: relative;
  filter: blur(calc(var(--size) / 25));
  transition: 3s all;

}

.blob > span {
  height: var(--size);
  width: var(--size);
  position: absolute;
  display: block;
  top: calc(50% - var(--size) / 2);
  transition: 2s all 0.25s ease-in-out;
}

.blob.fast > span {
  animation: rotate 15s infinite linear both;
}

.blob.fast > span:last-child {
  animation-direction: reverse;
}

.blob > span:first-child {
  left: calc(50% - var(--size) / 2);
}

.blob > span:last-child {
  right: calc(50% - var(--size) / 2);
}

.blob > span::before {
  content: "";
  display: block;
  opacity: 0.6;
  height: 100%;
  width: 100%;
  background-blend-mode: color;
  transition: 2s all 0.25s ease-in-out, 1.5s opacity, background-size 1.5s;
  animation: rotate 16s infinite linear both;

  mask: radial-gradient(circle, #000 50%, transparent 50%) 50% 50% / var(--size)
      var(--size),
    radial-gradient(circle, #000 50%, transparent 50%) 110% 10% /
      calc(var(--size) / 1.3) calc(var(--size) / 1.3),
    radial-gradient(circle, #000 50%, transparent 50%) -20% 20% / calc(
        var(--size) / 1.2
      ) calc(var(--size) / 1.2),
    radial-gradient(circle, #000 50%, transparent 50%) 10% 110% /
      calc(var(--size) / 1.3) calc(var(--size) / 1.3);

  mask-repeat: no-repeat;
}

.blob > span:last-child::before {
  animation-direction: reverse;
}

.blob > span:first-child::before {
  background: radial-gradient(circle, #a0f7fc 50%, transparent 50%) 50% 50% / 0
      0,
    linear-gradient(#ea58f8, #b28df2, #a0f7fc 40%) 50% 50% / 100% 100%;
  background-repeat: no-repeat;
}

.blob > span:last-child::before {
  background: radial-gradient(circle, #f8a0f7 50%, transparent 50%) 50% 50% / 0
      0,
    linear-gradient(#ea58f8, #a0f7fc) 50% 50% / 100% 100%;
  background-repeat: no-repeat;
}

.blob.active {
  filter: blur(calc(var(--size) / 10));
}

.blob.active > span:first-child::before,
.blob.active > span:last-child::before {
  scale: 3;
  opacity: 0.2;
  background-size: 200% 200%;
}

.blob.active > span:first-child {
  top: 80%;
  left: 5%;
}

.blob.active > span:last-child {
  top: 90%;
  right: 5%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(365deg);
  }
}
.bbs-services {
  background: var(--bbs-bg-soft);
  padding: 70px 0;
}

.bbs-section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bbs-section-subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: var(--bbs-text-muted);
  font-size: 15px;
}

.bbs-service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--bbs-text-main);
}

.bbs-service-text {
  color: var(--bbs-text-muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.bbs-service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: var(--bbs-text-main);
  font-size: 14px;
}

.bbs-service-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.bbs-service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bbs-gold);
}

.bbs-service-image {
  border-radius: 16px;
  border: 1px solid rgba(217, 184, 143, 0.4);
  background: radial-gradient(circle at 10% 0%, rgba(217,184,143,0.16), transparent 60%),
              radial-gradient(circle at 90% 100%, rgba(31,111,235,0.18), transparent 60%),
              #050914;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bbs-text-muted);
  font-size: 13px;
  text-align: center;
}

/* Slightly tighter spacing on smaller screens */
@media (max-width: 767.98px) {
  .bbs-services {
    padding: 50px 0;
  }
}

.bbs-footer {
  color: var(--bbs-text-main);    /* Main text tone */
  padding: 28px 0;
  font-size: 14px;
  margin-top: 60px;
}

.bbs-footer-link {
  color: var(--bbs-gold); /* accent gold for link */
  text-decoration: none;
  font-weight: 600;
}

.bbs-footer-link:hover {
  text-decoration: underline;
  color: var(--bbs-text-main); /* hover to main text color */
}

@media (max-width: 575px) {
  .bbs-footer {
    padding: 20px 0;
    font-size: 13px;
  }
}
