/* 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;
}

/* lets connect */

.connect-section {
  background: radial-gradient(circle at center, #1b1b2a, #0b0b0f);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.connect-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
}

.connect-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 20px;
  color: #b5b5b5;
  line-height: 1.6;
}
/* about team */
body {
    background: radial-gradient(circle at top, #0d0d16, #000);
    color: #ffffff;
    font-family: "Segoe UI", sans-serif;
}

/* Card */
.team-card {
    background: linear-gradient(180deg, #111, #0a0a0a);
    border-radius: 26px;
    padding: 45px 30px;
    height: 100%;
    box-shadow: 0 0 40px rgba(0,0,0,0.85);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 70px rgba(120,120,255,0.2);
}

/* Profile Image */
.profile-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #6666ff, #00c6ff);
}

.profile-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Text */
.team-card h3 {
    font-weight: 700;
    margin-bottom: 6px;
}

.role {
    color: #a0a0a0;
    margin-bottom: 28px;
}

/* Contact Rows */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    color: #cccccc;
    text-decoration: none;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

.contact-item i {
    font-size: 18px;
    color: #b0b0ff;
}

/* Button */
.contact-btn {
    width: 100%;
    padding: 13px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.contact-btn:hover {
    background: rgba(255,255,255,0.12);
}
/* join group */
/* ================= THEME VARIABLES ================= */
:root {
    --bg-primary: #06060f;
    --card-surface: rgba(20, 20, 35, 0.85);
    --text-primary: #ffffff;
    --text-secondary: #bdbdbd;
    --button-bg: #ffffff;
    --button-text: #000000;
}

.jsf-light-theme {
    --bg-primary: #f3f5fb;
    --card-surface: rgba(255, 255, 255, 0.9);
    --text-primary: #000000;
    --text-secondary: #555;
    --button-bg: #000000;
    --button-text: #ffffff;
}

/* ================= BASE ================= */
body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(270deg, #0b0b30, #000000, #22003d);
    background-size: 400% 400%;
    animation: jsfGradientMove 12s ease infinite;
    font-family: "Segoe UI", sans-serif;
    color: var(--text-primary);
}

/* ================= BACKGROUND ANIMATION ================= */
@keyframes jsfGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ================= LAYOUT ================= */
.jsf-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* ================= CARD ================= */
.jsf-glass-card {
    background: var(--card-surface);
    backdrop-filter: blur(14px);
    padding: 45px 40px;
    border-radius: 28px;
    max-width: 720px;
    width: 90%;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
}

/* ================= TEXT ================= */
.jsf-title {
    margin-bottom: 12px;
    font-size: 30px;
    font-weight: 700;
}

.jsf-description {
    margin-bottom: 32px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ================= BUTTON ================= */
.jsf-cta-btn {
    background: var(--button-bg);
    color: var(--button-text);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.jsf-cta-btn i {
    font-size: 18px;
}

/* Glow Effect */
.jsf-cta-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 40px;
    background: linear-gradient(90deg, #25D366, #00ffcc, #25D366);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.jsf-cta-btn:hover::before {
    opacity: 1;
}

/* ================= TOGGLE ================= */
.jsf-theme-toggle {
    margin-top: 25px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.jsf-theme-toggle i {
    margin-right: 6px;
}

/* ================= FOOTER ================= */
.jsf-footer-text {
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* 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;
    }
}
/* =========================
   CONNECT SECTION RESPONSIVE
========================= */

@media (max-width: 992px) {
    .connect-title {
        font-size: 42px;
    }

    .connect-text {
        font-size: 17px;
        padding: 0 15px;
    }

    .connect-section {
        min-height: auto;
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .connect-title {
        font-size: 32px;
    }

    .connect-text {
        font-size: 15px;
    }
}
/* =========================
   TEAM CARDS RESPONSIVE
========================= */

@media (max-width: 768px) {
    .team-card {
        padding: 30px 22px;
    }

    .profile-wrapper {
        width: 110px;
        height: 110px;
    }

    .team-card h3 {
        font-size: 20px;
    }

    .contact-item {
        font-size: 14px;
        padding: 10px 14px;
    }
}
/* =========================
   JSF COMMUNITY RESPONSIVE
========================= */

@media (max-width: 576px) {
    .jsf-glass-card {
        padding: 30px 22px;
        border-radius: 22px;
    }

    .jsf-title {
        font-size: 24px;
    }

    .jsf-description {
        font-size: 14px;
    }

    .jsf-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

