/* Glass Transparent Navbar */
.navbar-custom {
  background: rgba(214, 237, 199, 0.352); /* light transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 0;
  transition: all 0.3s ease;
  /* border-bottom: 2px solid #1e40ff; */
}

.navbar-logo {
  height: 30px;        /* adjust if needed */
  width: auto;
}

.navbar-custom::after {
  content: "";
  position: absolute;
  bottom: 12px; /* creates space below line */
  left: 0;
  width: 100%;
  height: 2px;
 background: linear-gradient(
    90deg,
    rgba(30, 64, 255, 0) 0%,
    rgba(10, 173, 94, 0.4) 30%,
    rgba(27, 28, 27, 0.67) 50%,
    rgba(30, 64, 255, 0) 100%
  );

  box-shadow: 0 0 8px rgba(27, 175, 104, 0.4);
}


/* Brand */
.navbar-custom .navbar-brand {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
}

/* Links */
.navbar-custom .nav-link {
  color: #100f0f;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 18px;
}

/* Hover */
.navbar-custom .nav-link:hover {
  color: #108618; 
  /* transform: translateY(-8px);
  border-color: var(--primary);EV green */
}

/* Mobile toggle */
.navbar-toggler {
  border: none;
}

/* ================= FOOTER ================= */

.bo-footer {
  position: relative;
  overflow: hidden;
  padding: 100px 0 40px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #cbd5e1;
}
/* Top subtle line */
.bo-footer::before {
  content: "";
  position: absolute;
  top: 12px;              /* same spacing feel as navbar */
  left: 0;
  width: 100%;
  height: 2px;            /* same thickness */

  background: linear-gradient(
    90deg,
    rgba(30, 64, 255, 0) 0%,
    rgba(10, 173, 94, 0.4) 30%,
    rgba(27, 28, 27, 0.67) 50%,
    rgba(30, 64, 255, 0) 100%
  );

  box-shadow: 0 0 8px rgba(27, 175, 104, 0.4); /* glow */
  z-index: 1;
}

/* Background grid */
.bo-footer .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image:
    linear-gradient(
      to right,
      rgba(10, 173, 94, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(10, 173, 94, 0.08) 1px,
      transparent 1px
    );

  background-size: 68px 68px;
  background-color: rgba(236, 249, 228, 0.585); 
}

/* Content above background */
.footer-content {
  position: relative;
  z-index: 2;
}




/* ===== TEXT ===== */

.bo-footer-brand {
  color: #080707;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.bo-footer-title {
  color: #0f0f0f;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.bo-footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* Links */
.bo-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bo-footer-links li {
  margin-bottom: 5px;
}

.bo-footer-links a {
  color: #475569;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.bo-footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* ===== BOTTOM ===== */
/* .bo-footer-help {
  display: flex;
  justify-content: right;
  gap: 20px;
  margin-bottom: 15px;
} */
.bo-footer-bottom {
  margin-top: 20px;
  padding-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
 
}
.bo-footer-bottom::after {
  border-top: 3px solid rgba(0, 0, 0, 0.1);
}

/* ===== BIG BACKGROUND TEXT ===== */

.bo-footer-bg-wrapper {
  position: relative;
  height: 140px;
  margin-top: 80px;
}

.bo-footer-bg-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  font-size: 18rem;
  font-weight: 800;
  letter-spacing: 14px;
  white-space: nowrap;

  color: transparent;
  -webkit-text-stroke: 1.5px rgba(10, 173, 94, 0.25); /* thin border */

  opacity: 0.9;
  pointer-events: auto;
  transition: 
    -webkit-text-stroke 0.35s ease,
    text-shadow 0.35s ease,
    opacity 0.35s ease;
}
.bo-footer-bg-text:hover {
  -webkit-text-stroke: 3px rgba(10, 173, 94, 0.9);

  filter: drop-shadow(0 0 6px rgba(10, 173, 94, 0.45))
          drop-shadow(0 0 12px rgba(10, 173, 94, 0.25));
}


/* ===== RESPONSIVE ===== */

/* ===== HIDE BIG SHUFFL-EV TEXT ON MOBILE ===== */
@media (max-width: 768px) {
  .bo-footer-bg-wrapper {
    display: none;
  }
}


/* @media (max-width: 768px) {
  .bo-footer-bottom {
    text-align: center;
  }

  .bo-footer-bg-text {
    font-size: 8rem;
    letter-spacing: 6px;
  }
} */
