/* ── RESET & BASE ─────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #00000f;
  --deep: #04040f;
  --cyan: #00e5ff;
  --gold: #ffc84a;
  --pink: #ff3fa4;
  --white: #e8f0ff;
  --dim: rgba(232, 240, 255, .60);
  --panel: rgba(8, 14, 30, 0.82);
  --panel2: rgba(255, 201, 74, 0.1);
  --border: rgba(80, 160, 255, 0.12);
  --border-hot: rgba(80, 200, 255, 0.45);
  --accent: #4db8ff;
  --accent2: #ff6b35;
  --accent3: #a855f7;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0)
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4db8ff 0%, #a855f7 100%);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #7dd3ff 0%, #c084fc 100%);
  cursor: pointer;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  overflow-x: hidden;
  cursor: crosshair;
  user-select: none;
}

/* ── STARFIELD CANVAS ─────────────────────────────────── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── ROCKET ───────────────────────────────────────────── */
#rocket-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

#rocket {
  position: absolute;
  font-size: clamp(58px, 4vw, 78px);
  line-height: 1;
  filter: drop-shadow(0 0 8px var(--cyan)) drop-shadow(0 0 18px rgba(0, 229, 255, .5));
  transition: transform .08s linear;
  will-change: transform, left, top;
}

#rocket.flipped::after {
  right: auto;
  left: 100%;
  border-right: none;
  border-left: 28px solid var(--gold);
}

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: linear-gradient(to bottom, rgba(0, 100, 105, .6) 0%, rgba(0, 0, 15, 0.2) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* Safari support */
  /* border-bottom: 1px solid rgba(0, 229, 255, 0.08); */
  width: 100%;
  /* outline: 1px solid red; */
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: var(--cyan);
  text-shadow: 0 0 14px var(--cyan);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none
}

.nav-links a {
  font-family: 'Orbitron', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s, text-shadow .25s;
}

.nav-links a:hover {
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan)
}

@media (max-width: 768px) {
  nav {
    padding: 16px 20px !important;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  nav .btn-primary {
    padding: 8px 16px !important;
    font-size: 0.55rem !important;
  }

  .contact-box {
    padding: 28px 20px;
  }
}

/* ── PROGRESS BAR ─────────────────────────────────────── */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 8px var(--cyan);
  z-index: 200;
  transition: width .05s linear;
}

/* ── SECTIONS ─────────────────────────────────────────── */
section {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 32px 60px;
  overflow: hidden;
}

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  text-align: center
}

.hero-eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: .65rem;
  letter-spacing: 6px;
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
  animation: fadeUp .8s .2s both;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: 2px;
  margin: 24px 0 16px;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 40%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp .8s .4s both;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--dim);
  font-weight: 300;
  letter-spacing: 2px;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeUp .8s .6s both;
}

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .8s both
}

.btn {
  font-family: 'Orbitron', sans-serif;
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: 3px;
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-primary {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 229, 255, .5);
}

.btn-primary:hover {
  box-shadow: 0 0 34px rgba(0, 229, 255, .8)
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}

.btn-outline:hover {
  box-shadow: 0 0 16px rgba(0, 229, 255, .25)
}

/* ── DIVIDER ─────────────────────────────────────────── */
.orbit-divider {
  width: 100%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, .4), transparent);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.orbit-divider::before {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--cyan);
  font-size: 12px;
  background: var(--black);
  padding: 0 12px;
  text-shadow: 0 0 10px var(--cyan);
}

/* ── SECTION HEADINGS ─────────────────────────────────── */
.section-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: .7rem;
  letter-spacing: 5px;
  color: var(--pink);
  font-weight: 700;
  text-shadow: 0 0 8px var(--pink);
  margin-bottom: 12px;
  text-decoration: underline;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--dim);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  text-align: center;
  margin-bottom: 56px;
}

/* ── CARDS ─────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1100px;
}

.card {
  background: var(--panel2);
  border: 1px solid rgba(255, 201, 74, 0.4);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(0, 229, 255, .06) 0%, transparent 60%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0, 229, 255, .12);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px
}

.card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: .85rem;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 10px;
}

.card-text {
  color: var(--dim);
  font-size: .95rem;
  line-height: 1.65
}

/* ── ABOUT ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  grid-template-areas:
    "one two"
    "three four";
}

.item1 {
  grid-area: one;
}

.item2 {
  grid-area: two;
}

.item3 {
  grid-area: three;
}

.item4 {
  grid-area: four;
}

@media(max-width:680px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    grid-template-areas:
      "two"
      "one"
      "four"
      "three";

  }
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.planet-sphere {
  width: clamp(180px, 25vw, 280px);
  height: clamp(180px, 25vw, 280px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(0, 229, 255, .8) 0%, rgba(0, 60, 130, .9) 40%, rgba(0, 0, 40, 1) 100%);
  box-shadow: 0 0 40px rgba(0, 229, 255, .4), 0 0 80px rgba(0, 229, 255, .15), inset -20px -20px 40px rgba(0, 0, 0, .5);
  animation: float 5s ease-in-out infinite;
}

.planet-ring {
  position: absolute;
  width: 120%;
  height: 35%;
  border-radius: 50%;
  border: none;
  pointer-events: none;
  transform: rotateX(75deg) rotateZ(15deg);
  background: transparent;
  box-shadow:
    0 0 0 20px rgba(200, 150, 60, 0.20),
    0 0 0 20px rgba(255, 210, 120, 0.55),
    0 0 0 15px rgba(0, 0, 0, 0.5),
    0 0 0 25px rgba(220, 170, 80, 0.40),
    0 0 0 35px rgba(200, 150, 60, 0.20),
    0 0 0 40px rgba(180, 130, 50, 0.08),
    0 0 20px 50px rgba(255, 200, 74, 0.06);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

.moon {
  position: relative;
  width: clamp(180px, 25vw, 280px);
  height: clamp(180px, 25vw, 280px);
  border-radius: 50%;
  box-shadow: 0 0 50px #c8bea8, inset -20px -20px 40px rgba(0, 0, 0, .5);
}

.moon::before {
  content: '';
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 218, 185, 0.10) 35%, rgba(200, 185, 148, 0.04) 56%, transparent 70%);
  animation: halo 9s ease-in-out infinite;
}

@keyframes halo {

  0%,
  100% {
    opacity: .7;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.02)
  }
}

.moon canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block
}

.about-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--dim);
  line-height: 1.75;
  margin-bottom: 16px
}

.stat-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap
}

.stat {
  text-align: center
}

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold);
}

.stat-lbl {
  font-size: .75rem;
  letter-spacing: 2px;
  color: var(--dim);
  margin-top: 2px
}

/* ── TEAM ─────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 900px;
}

.team-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 63, 164, .2);
  border-radius: 4px;
  transition: transform .3s, border-color .3s;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 63, 164, .7)
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  box-shadow: 0 0 20px rgba(0, 229, 255, .3);
  transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.15) rotate(-5deg);
}

.team-name {
  font-family: 'Orbitron', sans-serif;
  font-size: .8rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.team-role {
  font-size: .85rem;
  color: var(--pink)
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact-box {
  width: 100%;
  max-width: 580px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(0, 229, 255, .2);
  border-radius: 4px;
  padding: 48px;
  box-shadow: 0 0 60px rgba(0, 229, 255, .06);
}

.contact-box:hover {
  border: 1px solid rgba(0, 229, 255, .5);
  background: rgba(255, 255, 255, .05);
}

.field {
  margin-bottom: 20px
}

.field label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: .6rem;
  letter-spacing: 3px;
  color: var(--cyan);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: rgba(0, 229, 255, .05);
  border: 1px solid rgba(0, 229, 255, .2);
  border-radius: 2px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, .2);
}

.field textarea {
  min-height: 120px;
  resize: vertical
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 40px 32px;
  border-top: 1px solid rgba(0, 229, 255, .08);
}

footer p {
  color: var(--dim);
  font-size: .8rem;
  letter-spacing: 2px
}

.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  letter-spacing: 5px;
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
  margin-bottom: 12px;
}

.social-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 20px 0
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 229, 255, .08);
  border: 1px solid rgba(0, 229, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
  color: var(--white);
}

.social-btn:hover {
  background: rgba(0, 229, 255, .18);
  box-shadow: 0 0 14px rgba(0, 229, 255, .4);
  transform: scale(1.12);
}

/* ── NEBULA GLOWS ─────────────────────────────────────── */
.glow-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  max-width: 100vw;
}

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}


/* Experience */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.tech-stack span {
  padding: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: var(--cyan);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: default;
}

.tech-stack span:hover {
  background: rgba(0, 255, 255, 0.15);
  border: 1px solid var(--cyan);
  box-shadow:
    0 0 10px var(--cyan),
    0 0 20px rgba(0, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Projects */
.section-header {
  margin-bottom: 80px;
  position: relative;
}

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.project-text p {
  color: var(--dim);
  line-height: 1.75;
  margin-bottom: 16px
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color .3s, transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .3s;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.project-card:hover {
  border-color: var(--border-hot);
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(80, 200, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      rgba(77, 184, 255, 0.025) 0px,
      rgba(77, 184, 255, 0.025) 1px,
      transparent 1px, transparent 3px);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 2;
}

.project-card:hover::before {
  opacity: 1
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background:
    linear-gradient(var(--accent), var(--accent)) top left/20px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) top left/1px 20px no-repeat,
    linear-gradient(var(--accent), var(--accent)) bottom right/20px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) bottom right/1px 20px no-repeat;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 3;
}

.project-card:hover::after {
  opacity: 1
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.card-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.card-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--panel) 100%);
  z-index: 1;
}

.proj-card-body {
  position: relative;
  z-index: 2;
  padding: 24px 28px 28px;
}

.proj-card-index {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 10px;
  opacity: 0.7;
}

.proj-card-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #fff;
}

.proj-card-desc {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
}

.proj-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.proj-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(77, 184, 255, 0.2);
  color: rgba(77, 184, 255, 0.7);
  border-radius: 1px;
  transition: border-color .2s, color .2s;
}

.project-card:hover .proj-tag {
  border-color: rgba(77, 184, 255, 0.4);
  color: rgba(120, 210, 255, 0.9)
}

.proj-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proj-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
  text-decoration: none;
  transition: gap .2s, color .2s;
}

.proj-card-link:hover {
  gap: 14px;
  color: #fff
}

.proj-card-link svg {
  transition: transform .2s
}

.proj-card-link:hover svg {
  transform: translateX(4px)
}


/* POPUP */
.linkedin-popup {
  position: fixed;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.88) translateY(8px);
  transition: opacity 0.3s cubic-bezier(.22, .68, 0, 1.2),
    transform 0.3s cubic-bezier(.22, .68, 0, 1.2);
  z-index: 9999;
}

.linkedin-popup.visible-pop {
  opacity: 1;
  pointer-events: all;
  transform: scale(1) translateY(0);
}

/* Popup arrow */

#team {
  overflow: visible !important;
}

.popup-arrow {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  bottom: -6px;
  left: 50%;
  margin-left: -6px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.08);
}

.popup-arrow.arrow-top {
  bottom: auto;
  top: -6px;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
}

.li-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f3ff;
  color: #0a66c2;
  border-radius: 30px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.li-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.li-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.li-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a66c2, #0d8ce0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.li-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111;
}

.li-title {
  font-size: 0.7rem;
  color: #666;
  margin-top: 2px;
  line-height: 1.4;
}

.li-stats {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 14px;
}

.li-stat {
  flex: 1;
  text-align: center;
}

.li-stat-num {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0a66c2;
}

.li-stat-label {
  font-size: 0.6rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.li-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.li-skill {
  background: #f0f0f0;
  color: #333;
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 0.63rem;
  font-weight: 500;
}

.li-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #0a66c2;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.li-btn:hover {
  background: #0958a8;
  transform: scale(1.02);
}

.li-btn svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

/* Certification */

/* ── CERTIFICATIONS ───────────────────────────────────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1100px;
}

.cert-card {
  position: relative;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 8px;
  padding: 28px 24px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.22, .68, 0, 1.2),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cert-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.12),
    0 0 0 1px rgba(0, 229, 255, 0.1);
}

/* Animated corner glow on hover */
.cert-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cert-card:hover .cert-glow {
  opacity: 1;
}

.cert-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cert-icon {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.cert-card:hover .cert-icon {
  transform: scale(1.2) rotate(-8deg);
}

.cert-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: #000;
  background: var(--cyan);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
}

.cert-body {
  flex: 1;
}

.cert-issuer {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--cyan);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cert-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 12px;
}

.cert-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-date,
.cert-id {
  font-size: 0.72rem;
  color: var(--dim);
  letter-spacing: 1px;
}

.cert-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 2px;
  color: var(--cyan);
  text-decoration: none;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 2px;
  padding: 10px 16px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: block;
}

.cert-btn:hover {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
}