/* ========== BASE THEME ========== */
:root {
  --bg-main: #020617;
  --bg-card: #050816;
  --neon-blue: #0ff2ff;
  --neon-purple: #b100ff;
  --neon-green: #00ff87;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-soft: #111827;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #000000 100%);
  color: var(--text-main);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}





















/* ========== BIG BOSS LOADER ========== */

.bb-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at top, #020617 0, #020617 35%, #000000 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.bb-loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.bb-loader-inner {
  text-align: center;
  padding: 2rem 2.4rem;
  border-radius: 24px;
  border: 1px solid rgba(31, 41, 55, 0.95);
  background: radial-gradient(circle at top left, #020617 0, #030712 55%, #020617 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 1);
  position: relative;
  overflow: hidden;
}

/* subtle glow / scan line */
.bb-loader-inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(15, 242, 255, 0.18), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.bb-loader-inner::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: bb-loader-scan 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bb-loader-scan {
  0%   { transform: translateX(0); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateX(260%); opacity: 0; }
}

.bb-loader-title {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 0.1rem;
}

.bb-loader-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 1.2rem;
}

.bb-loader-console {
  text-align: left;
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.8rem;
  background: rgba(2, 6, 23, 0.9);
  border-radius: 14px;
  border: 1px solid rgba(31, 41, 55, 0.95);
  padding: 0.8rem 1rem;
  color: rgba(156, 163, 175, 0.95);
  margin-bottom: 1rem;
}

.bb-loader-line {
  margin-bottom: 0.25rem;
  opacity: 0.7;
}

.bb-loader-line-active {
  color: #e5e7eb;
  opacity: 1;
}

.bb-loader-dots {
  display: inline-block;
  color: var(--neon-blue);
  letter-spacing: 0.15em;
  animation: bb-loader-dots 1.3s steps(3, end) infinite;
}

@keyframes bb-loader-dots {
  0%   { opacity: 0.3; }
  50%  { opacity: 1; }
  100% { opacity: 0.3; }
}

/* progress bar */
.bb-loader-progress {
  width: 220px;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
  margin: 0 auto;
}

.bb-loader-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  animation: bb-loader-bar 2.8s ease-in-out infinite;
}

@keyframes bb-loader-bar {
  0%   { width: 0; transform: translateX(-20%); }
  40%  { width: 70%; transform: translateX(0); }
  80%  { width: 100%; transform: translateX(10%); }
  100% { width: 0; transform: translateX(120%); }
}

/* small screen tweaks */
@media (max-width: 575.98px) {
  .bb-loader-inner {
    padding: 1.6rem 1.7rem;
  }
  .bb-loader-title {
    font-size: 1.2rem;
    letter-spacing: 0.22em;
  }
}























/* ========== NAVBAR WRAPPER ========== */
.navbar {
  background: radial-gradient(circle at top, #020617 0, #000000 75%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

/* make everything on navbar sit nicely */
.navbar .container {
  align-items: center;
}

/* ========== FIXED BIG BOSS LOGO (CLEAN 3D CYBER) ========== */
.navbar-brand.brand-logo {
  position: relative;
  font-family: "Orbitron", monospace;
  font-size: 1.45rem;          /* bigger + readable */
  font-weight: 900;            /* bold */
  letter-spacing: 0.12em;      /* reduced spacing = clean */
  text-transform: uppercase;

  /* Solid neon effect WITHOUT blur */
  color: #0ff2ff;
  text-shadow:
    1px 1px 0 #022226,         /* base bevel shadow */
    -1px -1px 0 #0a1620,       /* top bevel */
    0 0 8px rgba(0,255,255,0.25); /* soft neon edge */
    
  transition:
    transform 0.25s ease,
    letter-spacing 0.25s ease,
    text-shadow 0.25s ease;
}

/* Underline bar under logo */
.navbar-brand.brand-logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;                 /* fixed clean underline */
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #0ff2ff, #00ff87);
  opacity: 0.9;
  transition: width 0.25s ease;
}

/* Hover = subtle lift, NOT glow madness */
.navbar-brand.brand-logo:hover {
  transform: translateY(-1px);
  letter-spacing: 0.16em;
  text-shadow:
    1px 1px 0 #022226,
    -1px -1px 0 #0a1620,
    0 0 14px rgba(0,255,255,0.45);
}

/* Underline grows slightly */
.navbar-brand.brand-logo:hover::after {
  width: 75px;
}

/* ========== NAV LINKS – 3D CAPSULES ========== */
.nav-link {
  color: #e5e7eb !important;
  font-size: 0.92rem;
  text-transform: uppercase;
  font-weight: 700;             /* bold */
  letter-spacing: 0.14em;
  position: relative;
  padding: 0.45rem 0.85rem;
  margin: 0 0.1rem;
  text-shadow: 0 1px 0 #020617;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
  border-radius: 999px;
}

/* small neon bar under text */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ff2ff, #b100ff);
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

/* hover/active: capsule effect + 3D */
.nav-link:hover,
.nav-link.active {
  color: #f9fafb !important;
  background-color: rgba(15, 23, 42, 0.9);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(11, 197, 255, 0.25);
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 65%;
}

/* ========== INSTA BUTTON – NEON OUTLINE PILL ========== */
.hero-btn-outline {
  border-radius: 999px;
  padding: 0.45rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-shadow: 0 1px 0 #020617;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.hero-btn-outline:hover {
  border-color: #0ff2ff;
  color: #0ff2ff;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), #020617);
  box-shadow:
    0 0 10px rgba(15, 242, 255, 0.6),
    0 0 18px rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}
















/* ========== HERO SECTION ========== */
/* ========== HERO SECTION (POLISHED) ========== */
.hero-section {
  padding: 90px 0 90px;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000000 90%);
}

.hero-left {
  max-width: 540px;
  animation: heroFadeUp 0.7s ease-out forwards;
  opacity: 0;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  animation: heroFadeUp 0.8s ease-out 0.1s forwards;
  opacity: 0;
}

.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.hero-title {
  font-family: "Orbitron", monospace;
  font-size: clamp(2.6rem, 4.2vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero-typing-line {
  margin: 0 0 0.6rem;
  font-family: "Orbitron", monospace;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-blue);
}

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}


/* PROFILE IMAGE + GLOW */
.hero-image-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.2), transparent 65%);
  filter: blur(6px);
  top: 22px;
}

.hero-image-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(0, 255, 255, 0.35);
  box-shadow:
    0 0 25px rgba(0, 255, 255, 0.35),
    0 0 14px rgba(0, 0, 0, 0.9);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-image:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 36px rgba(0, 255, 255, 0.55),
    0 0 20px rgba(0, 0, 0, 1);
}
.hero-side-card {
  max-width: 540px;
}


@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .hero-left {
    max-width: 100%;
  }
  .hero-side-card {
    max-width: 100%;
  }
  .hero-right {
    margin-top: 1.5rem;
  }
}


/* main CTA */
.hero-btn-primary {
  border-radius: 999px;
  padding: 0.6rem 1.7rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: none;
  background: linear-gradient(120deg, var(--neon-blue), var(--neon-purple));
  color: #020617;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.9);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(15, 242, 255, 0.45);
}

/* secondary CTA */
.hero-btn-secondary {
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid #1f2937;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.hero-btn-secondary:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  background-color: rgba(15, 23, 42, 0.8);
  transform: translateY(-1px);
}

/* ========== HERO RIGHT CARD ========== */
.hero-side-card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.85), #020617);
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.9);
}

.hero-side-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.hero-side-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--neon-green);
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.9);
}

.hero-side-title {
  font-weight: 600;
}

.hero-side-main {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-side-main span {
  color: var(--neon-blue);
  font-weight: 600;
}

.hero-side-stats {
  margin-bottom: 0.9rem;
}

.hero-stat {
  border-radius: 14px;
  border: 1px solid #111827;
  padding: 0.55rem 0.7rem;
  background: rgba(15, 23, 42, 0.9);
}

.hero-stat-number {
  display: block;
  font-family: "Orbitron", monospace;
  font-size: 1.1rem;
  color: var(--neon-blue);
}

.hero-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.hero-side-footer {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid #111827;
  padding-top: 0.7rem;
}

.hero-side-footer span {
  color: var(--neon-green);
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 60px;
  }
  .hero-side-card {
    margin-top: 1.5rem;
  }
}


/* typing line under main title */
.hero-typing-line {
  margin: 0 0 0.6rem;
  font-family: "Orbitron", monospace;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-blue);
}

/* typing text + cursor */
.hero-typing {
  display: inline-block;
  border-right: 2px solid var(--neon-blue);
  padding-right: 4px;
  white-space: nowrap;
  overflow: hidden;
  animation: caretBlink 0.9s steps(1) infinite;
}

@keyframes caretBlink {
  0%, 49%   { border-color: var(--neon-blue); }
  50%, 100% { border-color: transparent; }
}


/* PROFILE IMAGE */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(0, 255, 255, 0.25);
  box-shadow:
    0 0 25px rgba(0, 255, 255, 0.25),
    0 0 12px rgba(0, 255, 135, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* small hover lift */
.hero-image:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 35px rgba(0, 255, 255, 0.45),
    0 0 18px rgba(0, 255, 135, 0.35);
}
























/* ========== ABOUT SECTION – PREMIUM MINIMAL ========== */
.about-section {
  padding: 70px 0 80px;
  background: #020617;
  border-top: 1px solid rgba(15, 23, 42, 0.8);
}

.about-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin-bottom: 0;
}

.about-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.8);
}

/* cards container */
.about-cards {
  margin-top: 0.75rem;
}

/* single card */
.about-card {
  background: #030712;
  border-radius: 18px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.25rem 1.3rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

/* very subtle hover – premium feel */
.about-card:hover {
  transform: translateY(-3px);
  border-color: rgba(148, 163, 184, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.about-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 0.4rem;
}

.about-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.about-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* list inside cards */
.about-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-list li {
  margin-bottom: 0.2rem;
}

/* responsive tweak */
@media (max-width: 575.98px) {
  .about-meta {
    margin-top: 0.6rem;
    text-align: left;
  }
}











/* ========== SKILLS SECTION – PREMIUM ========== */
.skills-section {
  padding: 70px 0 80px;
  background: #020617;
  border-top: 1px solid rgba(15, 23, 42, 0.8);
}

.skills-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
}

/* left column stats */
.skills-stats {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.skills-stat {
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: #030712;
}

.skills-stat-number {
  display: block;
  font-family: "Orbitron", monospace;
  font-size: 1.1rem;
  color: var(--neon-blue);
}

.skills-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* right column groups */
.skills-groups {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skills-group {
  background: #030712;
  border-radius: 18px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.skills-group:hover {
  transform: translateY(-3px);
  border-color: rgba(148, 163, 184, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.skills-group-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.skills-group-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(148, 163, 184, 0.9);
}

.skills-group-title {
  font-size: 1rem;
  font-weight: 600;
}

.skills-group-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.9);
}

/* gradient meters */
.skills-meter {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #020617;
  border: 1px solid rgba(31, 41, 55, 0.9);
  overflow: hidden;
  margin: 0.45rem 0 0.6rem;
}

.skills-meter-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  box-shadow: 0 0 12px rgba(11, 197, 255, 0.45);
}

/* levels (adjust if you want different percentages) */
.skills-meter-fill.level-80 { width: 80%; }
.skills-meter-fill.level-75 { width: 75%; }
.skills-meter-fill.level-60 { width: 60%; }

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.skills-tag {
  font-size: 0.78rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: rgba(209, 213, 219, 0.9);
}

.skills-group-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .skills-groups {
    margin-top: 1rem;
  }
}






/* ========== HOME PROJECTS SHOWCASE (ADVANCED) ========== */
.home-projects-section {
  position: relative;
  padding: 80px 0 90px;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000000 90%);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

/* cyber grid overlay */
.home-projects-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#040815 1px, transparent 1px),
    linear-gradient(90deg, #040815 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.25;
  pointer-events: none;
}

.home-projects-section > .container {
  position: relative;
  z-index: 1;
}

/* header */
.hp-header {
  margin-bottom: 1.5rem;
}

.hp-title {
  font-family: "Orbitron", monospace;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.9rem;
}

.hp-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
}

.hp-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
}

.hp-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--neon-green);
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.9);
}

/* filters + button */
.hp-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.hp-filter-pill {
  font-size: 0.76rem;
  padding: 0.22rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: rgba(209, 213, 219, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hp-filter-pill.active {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}

.hp-view-all {
  border-radius: 999px;
  padding: 0.55rem 1.7rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid #1f2937;
  background: transparent;
  color: var(--text-main);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hp-view-all:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  background-color: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(15, 242, 255, 0.35);
}

/* layout */
.hp-grid {
  margin-top: 0.5rem;
}

.hp-right-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* link wrapper */
.hp-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* base card */
.hp-card {
  position: relative;
  background: rgba(3, 7, 18, 0.98);
  border-radius: 20px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

/* gradient border + shine on hover */
.hp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(15, 242, 255, 0), rgba(177, 0, 255, 0.5));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.hp-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.hp-card:hover::before {
  opacity: 1;
}

.hp-card:hover::after {
  opacity: 1;
  transform: translateX(120%);
  transition: transform 0.55s ease, opacity 0.25s ease;
}

.hp-card:hover {
  transform: translateY(-4px) rotate3d(0, 1, 0, 4deg);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 1);
  border-color: rgba(148, 163, 184, 0.95);
}

/* featured card */
.hp-card-featured {
  min-height: 260px;
}

.hp-card-gradient {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top left, rgba(15, 242, 255, 0.15), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

/* compact cards */
.hp-card-compact {
  padding: 1.1rem 1.2rem;
}

/* roadmap strip */
.hp-card-roadmap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.4rem;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), #020617);
}

.hp-roadmap-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.95);
}

.hp-roadmap-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.hp-roadmap-cta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--neon-blue);
}

/* card content */
.hp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.3rem;
}

.hp-pill {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.95);
}

.hp-pill-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--neon-blue);
}

.hp-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.hp-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.hp-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.35rem;
}

.hp-tag {
  font-size: 0.78rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: rgba(209, 213, 219, 0.9);
}

.hp-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hp-card-cta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--neon-blue);
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .hp-view-all {
    margin-top: 0.6rem;
  }
  .hp-card-featured {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .home-projects-section {
    padding-top: 65px;
    padding-bottom: 70px;
  }
  .hp-title {
    font-size: 1.5rem;
    letter-spacing: 0.16em;
  }
}














/* ========== CTA SECTION UPGRADED ========== */

.cta-section {
  position: relative;
  padding: 120px 0;
  background: #000000;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

/* Floating glow background */
.cta-glow-bg {
  position: absolute;
  width: 480px;
  height: 480px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 255, 255, 0.25), transparent 70%);
  filter: blur(40px);
  animation: pulseGlow 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0% { opacity: 0.55; }
  50% { opacity: 1; }
  100% { opacity: 0.55; }
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
  animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.cta-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cta-title {
  font-family: "Orbitron", monospace;
  font-size: 2.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.8rem;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

/* Buttons */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.cta-btn-primary,
.cta-btn-secondary,
.cta-btn-ghost {
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  transition: 0.28s ease;
}

/* Primary Button */
.cta-btn-primary {
  background: var(--neon-blue);
  color: #000;
}
.cta-btn-primary:hover {
  background: var(--neon-green);
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(0, 255, 135, 0.65);
}

/* Secondary */
.cta-btn-secondary {
  background: transparent;
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
}
.cta-btn-secondary:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: translateY(-3px);
}

/* Ghost */
.cta-btn-ghost {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: var(--text-muted);
}
.cta-btn-ghost:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  transform: translateY(-3px);
}

/* Social icons */
.cta-socials {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.cta-social-icon {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: 0.25s ease;
  padding: 0.55rem;
  border-radius: 50%;
  border: 1px solid rgba(55, 65, 81, 0.8);
}
.cta-social-icon:hover {
  color: var(--neon-blue);
  border-color: var(--neon-blue);
  transform: translateY(-3px) scale(1.1);
}

/* Scroll reveal animations */
.reveal-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.8s ease;
}

.reveal-fade.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.45s; }























/* ========== PROJECTS PAGE – ADVANCED (BIG BOSS) ========== */

.projects-page {
  background: #020617;
}

/* HERO */
.projects-hero {
  position: relative;
  padding: 90px 0 60px;
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #000000 95%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

/* subtle background glow */
.projects-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -160px;
  left: 45%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(15, 242, 255, 0.18), transparent 70%);
  filter: blur(18px);
  opacity: 0.8;
  pointer-events: none;
}

.projects-title {
  font-family: "Orbitron", monospace;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.projects-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
}

.projects-stats {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.projects-stat {
  border-radius: 14px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 0.6rem 0.8rem;
  background: rgba(3, 7, 18, 0.98);
}

.projects-stat-number {
  display: block;
  font-family: "Orbitron", monospace;
  font-size: 1.1rem;
  color: var(--neon-blue);
}

.projects-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FEATURED PROJECT */
.projects-featured {
  padding: 32px 0 44px;
}

.pf-card {
  position: relative;
  background: radial-gradient(circle at top left, #020617 0, #030712 55%, #020617 100%);
  border-radius: 24px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.7rem 1.8rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.95);
  overflow: hidden;
}

/* glow + shining line */
.pf-gradient {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(15, 242, 255, 0.22), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.pf-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.pf-card:hover::after {
  opacity: 1;
  transform: translateX(120%);
  transition: transform 0.65s ease, opacity 0.25s ease;
}

.pf-pill {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.4rem;
}

.pf-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.pf-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.pf-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 0.7rem;
}

.pf-meta-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
}

.pf-meta-value {
  font-size: 0.9rem;
  color: var(--text-main);
}

.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}

.pf-tag {
  font-size: 0.78rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: rgba(209, 213, 219, 0.9);
}

.pf-link-row {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pf-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--neon-blue);
  text-decoration: none;
  position: relative;
}

.pf-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--neon-blue);
  transition: width 0.2s ease;
}

.pf-card:hover .pf-link::after {
  width: 100%;
}

/* SIDE CARD */
.pf-side-card {
  position: relative;
  background: rgba(3, 7, 18, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1rem 1.1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.95);
}

.pf-side-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.4rem;
}

.pf-side-list {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  margin-bottom: 0.7rem;
}

.pf-side-list li {
  margin-bottom: 0.25rem;
}

.pf-side-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pf-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--neon-green);
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.9);
}

/* GRID SECTION */
.projects-section {
  padding: 16px 0 80px;
}

.projects-grid-header {
  margin-bottom: 1.6rem;
}

.projects-subtitle {
  font-family: "Orbitron", monospace;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}

.projects-grid-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 640px;
}

/* grouped sections */
.projects-groups {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.projects-group {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
}

.projects-group-label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
  position: relative;
}

.projects-group-label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 242, 255, 0.5), transparent);
  opacity: 0.25;
}

.projects-group-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.95);
}

.projects-group-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* extended cards */
.project-card-extended {
  position: relative;
  background: radial-gradient(circle at top left, #020617 0, #030712 55%, #020617 100%);
  border-radius: 22px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.35rem 1.45rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

/* neon edge & shine on card */
.project-card-extended::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(15, 242, 255, 0), rgba(177, 0, 255, 0.45));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.project-card-extended::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.project-card-extended:hover {
  transform: translateY(-4px);
  border-color: rgba(148, 163, 184, 0.95);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 1);
}

.project-card-extended:hover::before {
  opacity: 1;
}

.project-card-extended:hover::after {
  opacity: 1;
  transform: translateX(120%);
  transition: transform 0.55s ease, opacity 0.25s ease;
}

/* header row + index */
.project-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.25rem;
}

.project-index {
  font-family: "Orbitron", monospace;
  font-size: 0.85rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: var(--neon-blue);
  background: rgba(15, 23, 42, 0.9);
  line-height: 1;
}

.project-pill {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.95);
}

.project-name {
  font-size: 1.03rem;
  font-weight: 600;
  margin-top: 0.1rem;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* meta + tags */
.project-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 0.35rem;
}

.project-meta-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(148, 163, 184, 0.95);
}

.project-meta-value {
  font-size: 0.88rem;
  color: var(--text-main);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: auto;
  margin-bottom: 0.45rem;
}

.project-tag {
  font-size: 0.78rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: rgba(209, 213, 219, 0.9);
}

/* links row */
.project-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
}

.project-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--neon-blue);
  position: relative;
}

.project-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--neon-blue);
  transition: width 0.22s ease;
}

.project-card-extended:hover .project-link::after {
  width: 100%;
}

.project-link-live {
  font-size: 0.78rem;
}

.project-link-live::before {
  content: "● ";
  color: var(--neon-green);
}

.project-link-status {
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: default;
}

/* bottom CTA */
.projects-bottom-cta {
  padding: 50px 0 80px;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000000 90%);
  text-align: center;
}

.projects-bottom-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.projects-bottom-title {
  margin-top: 0.5rem;
  font-family: "Orbitron", monospace;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
}

.projects-bottom-text {
  margin: 0.7rem auto 1.6rem;
  max-width: 560px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.projects-bottom-btn {
  border-radius: 999px;
  padding: 0.65rem 1.8rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  background: transparent;
  transition: 0.2s ease;
}

.projects-bottom-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: translateY(-2px);
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .projects-hero {
    padding-top: 80px;
  }
  .projects-featured {
    padding-top: 24px;
  }
}

@media (max-width: 575.98px) {
  .project-card-extended {
    padding: 1.15rem 1.2rem;
  }
  .project-meta-row {
    flex-direction: column;
  }
}











/* ========== CASE STUDY GLOBAL ========== */
.cs-section {
  padding: 70px 0;
  position: relative;
}

.cs-heading {
  font-family: "Orbitron", monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.cs-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.cs-list {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.cs-list li {
  margin-bottom: 0.4rem;
}

/* Tools */
.cs-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cs-tools span {
  padding: 0.4rem 1rem;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(55,65,81,0.8);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--neon-blue);
}

/* Gallery */
.cs-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1rem;
}

.cs-gallery img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,0.8);
  box-shadow: 0 0 22px rgba(0,0,0,0.6);
}

/* Hero */
.cs-hero {
  padding: 90px 0 70px;
  background: linear-gradient(180deg,#020617,#000);
  text-align: center;
}

.cs-title {
  font-size: 2.4rem;
  font-family: Orbitron, monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.cs-tagline {
  color: var(--text-muted);
  margin-top: 0.6rem;
  font-size: 1rem;
  letter-spacing: 0.14em;
}

/* Next project */
.cs-next {
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid rgba(55,65,81,0.4);
}

.cs-next-label {
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  font-size: 0.9rem;
}

.cs-next-title {
  margin-top: 0.3rem;
  font-family: Orbitron, monospace;
  font-size: 1.6rem;
  letter-spacing: 0.16em;
}

.cs-next-btn {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: var(--neon-blue);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
































































/* ========== BIG BOSS FOOTER ========== */
.bb-footer {
  position: relative;
  padding: 75px 0 40px;
  background: #000000;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

/* glowing aura behind footer */
.bb-footer-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,255,255,0.15), transparent 70%);
  filter: blur(40px);
  animation: footerGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes footerGlow {
  0% { opacity: 0.35; }
  50% { opacity: 1; }
  100% { opacity: 0.35; }
}

.bb-footer-top {
  margin-bottom: 30px;
}

/* Column 1 */
.bb-footer-logo {
  font-family: "Orbitron", monospace;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--neon-blue);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.bb-footer-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Column headings */
.bb-footer-heading {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* Links */
.bb-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bb-footer-links li {
  margin-bottom: 0.4rem;
}

.bb-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: 0.25s ease;
}

.bb-footer-links a:hover {
  color: var(--neon-blue);
  margin-left: 4px;
}

/* Social icons */
.bb-footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.bb-footer-socials a {
  font-size: 1.3rem;
  color: var(--text-muted);
  padding: 0.55rem;
  border-radius: 50%;
  border: 1px solid rgba(55,65,81,0.8);
  transition: 0.28s ease;
}

.bb-footer-socials a:hover {
  color: var(--neon-blue);
  border-color: var(--neon-blue);
  transform: translateY(-4px) scale(1.1);
}

/* Powered by tag */
.bb-footer-tag {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bb-footer-tag span {
  color: var(--neon-blue);
  font-weight: 600;
}

/* bottom copyright */
.bb-footer-bottom {
  border-top: 1px solid rgba(55,65,81,0.4);
  padding-top: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* responsiveness */
@media (max-width: 575.98px) {
  .bb-footer-logo {
    font-size: 1.4rem;
  }
}








/* ========== ABOUT PAGE (BIG BOSS) ========== */

.bb-about-page {
  background: #020617;
}

/* HERO */
.bb-about-hero {
  position: relative;
  padding: 90px 0 70px;
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #000000 95%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

/* glowing orbs in hero */
.bb-about-hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -120px;
  left: 55%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(15, 242, 255, 0.22), transparent 70%);
  filter: blur(18px);
  opacity: 0.7;
  animation: bb-about-glow-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

.bb-about-hero-orbit {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.9);
  top: -260px;
  right: -260px;
  box-shadow: 0 0 30px rgba(15, 23, 42, 0.9);
  animation: bb-about-orbit-spin 26s linear infinite;
  opacity: 0.45;
  pointer-events: none;
}

@keyframes bb-about-glow-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.95; }
}

@keyframes bb-about-orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.bb-about-title {
  font-family: "Orbitron", monospace;
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.bb-about-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin-bottom: 1rem;
}

/* identity strip */
.bb-about-identity-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.bb-about-identity-strip span {
  font-size: 0.8rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* highlight card */
.bb-about-highlight-card {
  position: relative;
  background: #030712;
  border-radius: 20px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.3rem 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.95);
  overflow: hidden;
  animation: bb-about-float 7s ease-in-out infinite;
}

.bb-about-highlight-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top left, rgba(15, 242, 255, 0.16), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.bb-about-highlight-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.5rem;
}

.bb-about-highlight-main {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.bb-about-highlight-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.4rem 1rem;
}

.bb-about-meta-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
}

.bb-about-meta-value {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* generic section */
.bb-about-section {
  padding: 60px 0;
}

.bb-about-subtitle {
  font-family: "Orbitron", monospace;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
}

.bb-about-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* cards */
.bb-about-card {
  background: #030712;
  border-radius: 20px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.3rem 1.4rem;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.bb-about-card:hover {
  transform: translateY(-3px);
  border-color: rgba(148, 163, 184, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 1);
}

.bb-about-card-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.7rem;
}

.bb-about-card-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.bb-about-card-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.bb-about-card-list li {
  margin-bottom: 0.35rem;
}

/* timeline */
.bb-about-timeline-section {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.bb-about-timeline {
  position: relative;
  padding-left: 1.4rem;
}

.bb-about-timeline::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(15, 242, 255, 0.6), transparent);
}

.bb-about-timeline-item {
  position: relative;
  margin-bottom: 1.3rem;
}

.bb-about-timeline-dot {
  position: absolute;
  left: -0.05rem;
  top: 0.25rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--neon-blue);
  box-shadow: 0 0 12px rgba(15, 242, 255, 0.9);
}

.bb-about-timeline-content {
  padding-left: 1.2rem;
}

.bb-about-timeline-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
}

.bb-about-timeline-title {
  font-size: 1rem;
  margin: 0.2rem 0 0.3rem;
}

.bb-about-timeline-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* stats */
.bb-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.bb-about-stat-card {
  background: #030712;
  border-radius: 18px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
}

.bb-about-stat-number {
  font-family: "Orbitron", monospace;
  font-size: 1.2rem;
  color: var(--neon-blue);
}

.bb-about-stat-label {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.35rem;
}

.bb-about-stat-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA */
.bb-about-cta-section {
  padding: 70px 0 90px;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000000 90%);
  text-align: center;
}

.bb-about-cta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.bb-about-cta-title {
  margin-top: 0.4rem;
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
}

.bb-about-cta-text {
  margin: 0.7rem auto 1.6rem;
  max-width: 520px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.bb-about-cta-btn {
  border-radius: 999px;
  padding: 0.65rem 1.8rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  background: transparent;
  transition: 0.2s ease;
}

.bb-about-cta-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: translateY(-2px);
}

/* float animation */
@keyframes bb-about-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* responsive */
@media (max-width: 575.98px) {
  .bb-about-hero {
    padding-top: 80px;
  }
  .bb-about-title {
    font-size: 1.6rem;
    letter-spacing: 0.18em;
  }
}

























/* ========== CONTACT PAGE (BIG BOSS) ========== */

.bb-contact-page {
  background: #020617;
}

/* hero */
.bb-contact-hero {
  position: relative;
  padding: 90px 0 60px;
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #000000 95%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.bb-contact-hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(15, 242, 255, 0.2), transparent 70%);
  filter: blur(20px);
  opacity: 0.7;
  pointer-events: none;
  animation: bb-contact-glow-pulse 6s ease-in-out infinite;
}

@keyframes bb-contact-glow-pulse {
  0%,100% { opacity: 0.55; }
  50% { opacity: 0.95; }
}

.bb-contact-title {
  font-family: "Orbitron", monospace;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.bb-contact-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 620px;
  margin-bottom: 1rem;
}

/* status strip */
.bb-contact-status-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.95);
  font-size: 0.82rem;
}

.bb-contact-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--neon-green);
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.8);
}

.bb-contact-status-text {
  color: var(--text-muted);
}

/* highlight card */
.bb-contact-highlight-card {
  position: relative;
  background: #030712;
  border-radius: 20px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.3rem 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.95);
  overflow: hidden;
}

.bb-contact-highlight-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top left, rgba(15, 242, 255, 0.16), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.bb-contact-highlight-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.5rem;
}

.bb-contact-highlight-main {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.bb-contact-highlight-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.4rem 1rem;
}

.bb-contact-meta-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
}

.bb-contact-meta-value {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* alerts */
.bb-contact-alert-wrapper {
  margin-top: 1.3rem;
}

.bb-contact-alert {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.bb-contact-alert-success {
  border: 1px solid rgba(34, 197, 94, 0.9);
  background: rgba(22, 163, 74, 0.1);
  color: #bbf7d0;
}

.bb-contact-alert-error {
  border: 1px solid rgba(248, 113, 113, 0.9);
  background: rgba(127, 29, 29, 0.25);
  color: #fecaca;
}

/* body section */
.bb-contact-section {
  padding: 60px 0 80px;
}

/* group label */
.bb-contact-group-label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.bb-contact-group-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.95);
}

.bb-contact-group-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* contact cards */
.bb-contact-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.bb-contact-card {
  display: flex;
  gap: 0.75rem;
  background: #030712;
  border-radius: 16px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 0.85rem 1rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.85);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.bb-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(148, 163, 184, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 1);
}

.bb-contact-card-icon {
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
  padding-top: 0.1rem;
}

.bb-contact-card-icon i {
  color: var(--neon-blue);
}

.bb-contact-card-body {
  flex: 1;
}

.bb-contact-card-title {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.bb-contact-card-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.bb-contact-card-link {
  font-size: 0.84rem;
  color: var(--neon-blue);
  text-decoration: none;
}

.bb-contact-card-link-static {
  display: inline-block;
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* form card */
.bb-contact-form-card {
  background: #030712;
  border-radius: 20px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.5rem 1.7rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
}

.bb-contact-form-header {
  margin-bottom: 1rem;
}

.bb-contact-form-title {
  font-family: "Orbitron", monospace;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.4rem;
}

.bb-contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* form inputs */
.bb-contact-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.25rem;
}

.bb-contact-input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.bb-contact-input:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 1px rgba(15, 242, 255, 0.35);
  background: rgba(15, 23, 42, 1);
}

.bb-contact-select {
  padding-right: 2rem;
}

.bb-contact-input::placeholder {
  color: #6b7280;
}

.bb-contact-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px #020617 inset;
  -webkit-text-fill-color: #e5e7eb;
}

/* submit */
.bb-contact-submit-btn {
  border-radius: 999px;
  padding: 0.65rem 1.8rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  background: transparent;
  transition: 0.2s ease;
}

.bb-contact-submit-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: translateY(-2px);
}

.bb-contact-note {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* responsive */
@media (max-width: 575.98px) {
  .bb-contact-hero {
    padding-top: 80px;
  }
  .bb-contact-title {
    font-size: 1.6rem;
    letter-spacing: 0.18em;
  }
  .bb-contact-form-card {
    padding: 1.3rem 1.25rem;
  }
}








/* send via toggle */
.bb-contact-sendvia-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(3, 7, 18, 0.95);
  margin-bottom: 0.5rem;
}

.bb-contact-sendvia-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
}

.bb-contact-sendvia-option {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #e5e7eb;
  cursor: pointer;
}

.bb-contact-sendvia-option input {
  width: 12px;
  height: 12px;
  accent-color: var(--neon-blue);
}
