/* Navbar background */
.navbar-custom {
    background: linear-gradient(90deg, #0b0b0f, #12121a);
    padding: 8px 30px;
}

/* Logo */
.navbar-brand {
    font-size: 32px;
    font-weight: 800;
    color: white;
}
.navbar-brand span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
}

/* Center menu */
.nav-link {
    color: #b5b5b5 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

/* Active underline */
.nav-link.active {
    color: white !important;
}
/* NAV LINK BASE */
.nav-link {
    color: #b5b5b5 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

/* HOVER COLOR */
.nav-link:hover {
    color: #ffffff !important;
}

/* UNDERLINE (HOVER + ACTIVE) */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

/* SHOW LINE ON HOVER */
.nav-link:hover::after {
    width: 100%;
}

/* ACTIVE PAGE */
.nav-link.active {
    color: #ffffff !important;
}

/* KEEP LINE ON ACTIVE PAGE */
.nav-link.active::after {
    width: 100%;
}


/* Sign In button */
.btn-signin {
    border-radius: 25px;
    padding: 6px 18px;
    border: 1px solid #666;
    color: white;
    background: transparent;
}
.btn-signin:hover {
    background: white;
    color: black;
}
/* about */
.about-hero {
  background: #0b0b0f;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
}

.about-title {
  font-size: 64px;
  font-weight: 800;
}

.about-title span {
  color: #9b9b9b;
}

.about-subtitle {
  font-size: 18px;
  color: #b5b5b5;
  margin-top: 15px;
}

.about-tagline {
  font-size: 12px;
  letter-spacing: 2px;
  color: #7a7a7a;
  margin-top: 10px;
}

.stat-box {
  background: #111118;
  border-radius: 20px;
  padding: 35px 20px;
  height: 100%;
}

.stat-box h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 13px;
  color: #9b9b9b;
  margin: 0;
}
/* Footer Section */

/* ===== FOOTER BASE ===== */
.footer-section {
  background: radial-gradient(120% 120% at 50% 0%, #161620 0%, #050508 55%);
  color: #a6a6b3;
  padding-top: 96px;
  padding-bottom: 32px;
}

/* ===== BRAND ===== */
.footer-logo {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 380px;
  color: #9b9bac;
}

/* ===== COLUMN HEADERS ===== */
.footer-title {
  font-size: 13px;
  letter-spacing: 2.4px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
}

/* ===== LINKS ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 15px;
  font-weight: 400;
  color: #9b9bac;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-2px);
}

/* ===== DIVIDER ===== */
.footer-divider {
  margin-top: 72px;
  margin-bottom: 28px;
  border-color: rgba(255,255,255,0.08);
}

/* ===== BOTTOM BAR ===== */
.footer-copy,
.footer-built {
  font-size: 14px;
  color: #8b8b99;
}

.footer-built strong {
  color: #ffffff;
  font-weight: 600;
}

/* ===== RESPONSIVE TUNING ===== */
@media (max-width: 768px) {
  .footer-section {
    padding-top: 72px;
  }

  .footer-logo {
    font-size: 30px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-divider {
    margin-top: 56px;
  }
}
/* =========================
   NAVBAR RESPONSIVE FIX
========================= */

@media (max-width: 991px) {
    .navbar-collapse {
        background: #0b0b0f;
        padding: 20px;
        border-radius: 14px;
        margin-top: 12px;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        margin: 12px 0;
        font-size: 16px;
    }

    .signin-wrapper {
        width: 100%;
        margin-top: 16px;
        text-align: center;
    }

    .btn-signin {
        width: 100%;
        padding: 10px;
    }
}
/* =========================
   ABOUT PAGE RESPONSIVE
========================= */

@media (max-width: 992px) {
    .about-title {
        font-size: 44px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .about-hero {
        padding: 60px 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 34px;
    }

    .about-tagline {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}
@media (max-width: 768px) {
    .stat-box {
        padding: 25px 15px;
    }

    .stat-box h2 {
        font-size: 36px;
    }

    .stat-box p {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}
