html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: #080d2b;
  color: #f8fafc;
}

::selection {
  background: rgba(34, 211, 238, 0.25);
  color: #fff;
}


/* =========================================================
   THEME COLORS
========================================================= */

:root {
  --navy-950: #05081f;
  --navy-900: #080d2b;
  --navy-850: #0b1035;
  --navy-800: #11154a;
  --navy-750: #17164f;
  --purple-900: #24105a;

  --cyan: #22d3ee;
  --cyan-light: #67e8f9;
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --purple: #a855f7;
  --purple-light: #c4b5fd;

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  --border: rgba(96, 165, 250, 0.25);
  --border-strong: rgba(56, 189, 248, 0.55);

  --glass:
    linear-gradient(
      135deg,
      rgba(30, 41, 96, 0.72),
      rgba(37, 26, 90, 0.68)
    );
}


/* =========================================================
   NAVIGATION
========================================================= */

header {
  color: white;
}

#navbar {
  border-color: rgba(96, 165, 250, 0.25) !important;

  background:
    linear-gradient(
      135deg,
      rgba(8, 13, 43, 0.92),
      rgba(17, 21, 74, 0.88)
    ) !important;

  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;

  backdrop-filter: blur(18px);
}

.logo-mark {
  display: grid;
  place-items: center;

  width: 2.35rem;
  height: 2.35rem;

  border-radius: .75rem;

  background:
    linear-gradient(
      135deg,
      #06b6d4,
      #3b82f6,
      #a855f7
    );

  color: white;

  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;

  box-shadow:
    0 8px 25px rgba(59, 130, 246, .3);
}

.dark .logo-mark {
  background:
    linear-gradient(
      135deg,
      #06b6d4,
      #3b82f6,
      #a855f7
    );

  color: white;
}

.nav-link {
  display: block;

  border-radius: .7rem;

  padding: .55rem .8rem;

  color: #cbd5e1;

  font-size: .86rem;

  transition: .25s ease;
}

.nav-link:hover {
  background: rgba(37, 99, 235, .16);
  color: #67e8f9;
}

.dark .nav-link {
  color: #cbd5e1;
}

.dark .nav-link:hover {
  background: rgba(37, 99, 235, .16);
  color: #67e8f9;
}

.icon-btn {
  width: 2.5rem;
  height: 2.5rem;

  border: 1px solid rgba(96, 165, 250, .3);

  border-radius: .75rem;

  background: rgba(15, 23, 42, .4);

  color: #cbd5e1;

  transition: .25s ease;
}

.icon-btn:hover {
  border-color: #38bdf8;

  background: rgba(37, 99, 235, .15);

  color: #67e8f9;

  box-shadow:
    0 0 20px rgba(6, 182, 212, .12);
}

.dark .icon-btn {
  border-color: rgba(96, 165, 250, .3);
  background: rgba(15, 23, 42, .4);
  color: #cbd5e1;
}

.mobile-link {
  border-radius: .75rem;

  padding: .7rem .8rem;

  color: #cbd5e1;

  transition: .2s ease;
}

.mobile-link:hover {
  background: rgba(37, 99, 235, .16);
  color: #67e8f9;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(6, 182, 212, .12),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(59, 130, 246, .16),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 90%,
      rgba(168, 85, 247, .12),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #080d2b 0%,
      #11154a 48%,
      #24105a 100%
    );
}

.dark .hero-section {
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(6, 182, 212, .12),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(59, 130, 246, .16),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 90%,
      rgba(168, 85, 247, .12),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #080d2b 0%,
      #11154a 48%,
      #24105a 100%
    );
}


/* HERO ORBS */

.hero-orb {
  position: absolute;

  border-radius: 999px;

  filter: blur(2px);

  pointer-events: none;
}

.hero-orb-one {
  width: 420px;
  height: 420px;

  right: -180px;
  top: 80px;

  background:
    radial-gradient(
      circle,
      rgba(59, 130, 246, .20),
      rgba(168, 85, 247, .10),
      transparent 70%
    );
}

.hero-orb-two {
  width: 260px;
  height: 260px;

  left: -140px;
  top: 330px;

  background:
    radial-gradient(
      circle,
      rgba(34, 211, 238, .16),
      transparent 70%
    );
}


/* HERO TEXT */

.hero-title {
  margin-top: 1.4rem;

  max-width: 760px;

  color: #f8fafc;

  font-size: clamp(2.8rem, 4vw, 5.3rem);

  font-weight: 800;

  line-height: 1.02;

  letter-spacing: -.055em;
}

.hero-title span {
  background:
    linear-gradient(
      90deg,
      #22d3ee,
      #3b82f6,
      #a855f7
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.dark .hero-title span {
  background:
    linear-gradient(
      90deg,
      #22d3ee,
      #3b82f6,
      #a855f7
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero-description {
  margin-top: 1.5rem;

  max-width: 680px;

  color: #cbd5e1;

  font-size: 1.08rem;

  line-height: 1.85;
}

.dark .hero-description {
  color: #cbd5e1;
}


/* =========================================================
   AVAILABILITY PILL
========================================================= */

.availability-pill {
  display: inline-flex;
  align-items: center;

  gap: .55rem;

  border: 1px solid rgba(56, 189, 248, .45);

  border-radius: 999px;

  background: rgba(14, 165, 233, .08);

  padding: .5rem .85rem;

  color: #67e8f9;

  font-size: 1rem;

  font-weight: 700;

  backdrop-filter: blur(10px);

  box-shadow:
    0 0 25px rgba(6, 182, 212, .08);
}

.availability-pill span {
  width: .45rem;
  height: .45rem;

  border-radius: 999px;

  background: #22c55e;

  box-shadow:
    0 0 0 4px rgba(34, 197, 94, .12),
    0 0 12px rgba(34, 197, 94, .5);
}

.dark .availability-pill {
  border-color: rgba(56, 189, 248, .45);
  background: rgba(14, 165, 233, .08);
  color: #67e8f9;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: .75rem;

  margin-top: 2rem;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;

  gap: .5rem;

  border-radius: .8rem;

  padding: .8rem 1.15rem;

  font-size: .9rem;

  font-weight: 800;

  transition: .25s ease;
}

.primary-btn {
  background:
    linear-gradient(
      90deg,
      #06b6d4,
      #3b82f6,
      #7c3aed
    );

  color: white;

  box-shadow:
    0 10px 30px rgba(37, 99, 235, .25);
}

.primary-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 40px rgba(37, 99, 235, .4);
}

.secondary-btn {
  border: 1px solid rgba(96, 165, 250, .4);

  background: rgba(15, 23, 42, .35);

  color: #e2e8f0;

  backdrop-filter: blur(10px);
}

.secondary-btn:hover {
  transform: translateY(-3px);

  border-color: #38bdf8;

  background: rgba(37, 99, 235, .12);

  color: #67e8f9;
}

.dark .primary-btn {
  background:
    linear-gradient(
      90deg,
      #06b6d4,
      #3b82f6,
      #7c3aed
    );

  color: white;
}

.dark .primary-btn:hover {
  background:
    linear-gradient(
      90deg,
      #22d3ee,
      #3b82f6,
      #a855f7
    );
}

.dark .secondary-btn {
  border-color: rgba(96, 165, 250, .4);

  background: rgba(15, 23, 42, .35);

  color: #e2e8f0;
}


/* =========================================================
   HERO META
========================================================= */

.hero-meta {
  display: flex;
  flex-wrap: wrap;

  gap: 1rem 1.5rem;

  margin-top: 1.8rem;

  color: #94a3b8;

  font-size: .78rem;

  font-weight: 600;
}

.dark .hero-meta {
  color: #94a3b8;
}


/* =========================================================
   PHOTO
========================================================= */

.photo-frame {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(96, 165, 250, .3);

  border-radius: 2rem;

  padding: .65rem;

  background:
    linear-gradient(
      135deg,
      rgba(30, 41, 96, .72),
      rgba(37, 26, 90, .65)
    );

  box-shadow:
    0 25px 70px rgba(0, 0, 0, .25),
    0 0 40px rgba(59, 130, 246, .08);

  backdrop-filter: blur(14px);
}

.dark .photo-frame {
  background:
    linear-gradient(
      135deg,
      rgba(30, 41, 96, .72),
      rgba(37, 26, 90, .65)
    );

  border-color: rgba(96, 165, 250, .3);
}

.profile-photo {
  width: 100%;
  height: 500px;

  object-fit: cover;

  object-position: top center;

  border-radius: 1.45rem;

  background: #11154a;
}

.photo-label {
  position: absolute;

  z-index: 2;

  left: 1.25rem;
  top: 1.25rem;

  border: 1px solid rgba(255, 255, 255, .2);

  border-radius: 999px;

  background: rgba(8, 13, 43, .72);

  color: white;

  padding: .45rem .65rem;

  font-size: .65rem;

  font-weight: 800;

  letter-spacing: .12em;

  backdrop-filter: blur(10px);
}

.photo-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 1rem;

  padding: 1rem .45rem .35rem;
}

.photo-bottom p {
  color: #38bdf8;

  font-size: .62rem;

  font-weight: 800;

  letter-spacing: .18em;
}

.photo-bottom strong {
  display: block;

  margin-top: .25rem;

  color: #f8fafc;

  font-size: .9rem;
}

.check-mark {
  display: grid;

  place-items: center;

  width: 2.65rem;
  height: 2.65rem;

  border-radius: .9rem;

  background:
    linear-gradient(
      135deg,
      #06b6d4,
      #3b82f6,
      #7c3aed
    );

  color: white;

  font-weight: 800;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
  position: absolute;

  display: flex;

  align-items: center;

  gap: .55rem;

  border: 1px solid rgba(96, 165, 250, .3);

  border-radius: 1rem;

  background:
    linear-gradient(
      135deg,
      rgba(15, 23, 42, .88),
      rgba(37, 26, 90, .82)
    );

  padding: .65rem .75rem;

  box-shadow:
    0 15px 35px rgba(0, 0, 0, .25);

  backdrop-filter: blur(14px);

  font-size: .72rem;

  color: #94a3b8;
}

.floating-card span {
  display: grid;

  place-items: center;

  width: 1.65rem;
  height: 1.65rem;

  border-radius: .55rem;

  background: rgba(14, 165, 233, .1);

  color: #67e8f9;

  font-size: .62rem;

  font-weight: 800;
}

.floating-card b {
  color: #f8fafc;
}

.dark .floating-card {
  border-color: rgba(96, 165, 250, .3);

  background:
    linear-gradient(
      135deg,
      rgba(15, 23, 42, .88),
      rgba(37, 26, 90, .82)
    );

  color: #94a3b8;
}

.dark .floating-card b {
  color: white;
}

.floating-card-one {
  left: -2.5rem;
  bottom: 5.8rem;
}

.floating-card-two {
  right: -2rem;
  top: 6.5rem;
}


/* =========================================================
   QA TOOLKIT
========================================================= */

.trust-bar {
  display: flex;

  align-items: center;

  gap: 1.5rem;

  overflow: auto;

  border-top: 1px solid rgba(96, 165, 250, .2);

  border-bottom: 1px solid rgba(96, 165, 250, .2);

  padding: 1rem 0;

  color: #94a3b8;

  white-space: nowrap;
}

.trust-bar span {
  color: #38bdf8;

  font-size: .65rem;

  font-weight: 800;

  letter-spacing: .16em;
}

.trust-bar b {
  font-size: .78rem;

  color: #cbd5e1;

  transition: .2s ease;
}

.trust-bar b:hover {
  color: #67e8f9;
}

.dark .trust-bar {
  border-color: rgba(96, 165, 250, .2);

  color: #94a3b8;
}


/* =========================================================
   COMMON SECTIONS
========================================================= */

.section-light {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(59, 130, 246, .08),
      transparent 25%
    ),
    radial-gradient(
      circle at 5% 90%,
      rgba(168, 85, 247, .07),
      transparent 28%
    ),
    #080d2b;
}

.dark .section-light {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(59, 130, 246, .08),
      transparent 25%
    ),
    radial-gradient(
      circle at 5% 90%,
      rgba(168, 85, 247, .07),
      transparent 28%
    ),
    #080d2b;
}

.section-kicker {
  color: #38bdf8;

  font-size: .72rem;

  font-weight: 800;

  letter-spacing: .18em;

  text-transform: uppercase;
}

.section-title {
  margin-top: .55rem;

  max-width: 760px;

  color: #f8fafc;

  font-size: clamp(2rem, 4vw, 3.5rem);

  font-weight: 800;

  line-height: 1.05;

  letter-spacing: -.045em;
}

.section-side-text {
  max-width: 360px;

  color: #94a3b8;

  line-height: 1.75;

  font-size: .92rem;
}

.dark .section-side-text,
.dark .body-copy {
  color: #94a3b8;
}

.section-heading-row {
  display: flex;

  align-items: end;

  justify-content: space-between;

  gap: 2rem;
}

.big-copy {
  max-width: 850px;

  color: #e2e8f0;

  font-size: clamp(1.35rem, 2.3vw, 1.9rem);

  line-height: 1.55;

  font-weight: 600;

  letter-spacing: -.02em;
}

.body-copy {
  color: #94a3b8;

  line-height: 1.85;
}


/* =========================================================
   MINI STATS
========================================================= */

.mini-stat {
  border: 1px solid rgba(96, 165, 250, .25);

  border-radius: 1rem;

  padding: 1rem;

  background:
    linear-gradient(
      135deg,
      rgba(30, 41, 96, .5),
      rgba(37, 26, 90, .42)
    );

  transition: .25s ease;
}

.mini-stat:hover {
  transform: translateY(-3px);

  border-color: rgba(56, 189, 248, .5);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, .2);
}

.dark .mini-stat {
  border-color: rgba(96, 165, 250, .25);

  background:
    linear-gradient(
      135deg,
      rgba(30, 41, 96, .5),
      rgba(37, 26, 90, .42)
    );
}

.mini-stat strong {
  display: block;

  color: #f8fafc;

  font-size: .9rem;
}

.mini-stat span {
  display: block;

  margin-top: .3rem;

  color: #94a3b8;

  font-size: .72rem;
}

.dark .mini-stat span {
  color: #94a3b8;
}


/* =========================================================
   SKILLS
========================================================= */

.skill-card {
  min-height: 190px;

  border: 1px solid rgba(96, 165, 250, .25);

  border-radius: 1.25rem;

  background:
    linear-gradient(
      135deg,
      rgba(30, 41, 96, .72),
      rgba(37, 26, 90, .65)
    );

  padding: 1.25rem;

  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;

  backdrop-filter: blur(12px);
}

.skill-card:hover {
  transform: translateY(-6px);

  border-color: #38bdf8;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, .25),
    0 0 25px rgba(37, 99, 235, .12);
}

.dark .skill-card {
  border-color: rgba(96, 165, 250, .25);

  background:
    linear-gradient(
      135deg,
      rgba(30, 41, 96, .72),
      rgba(37, 26, 90, .65)
    );
}

.skill-number {
  display: inline-grid;

  place-items: center;

  width: 2rem;
  height: 2rem;

  border-radius: .6rem;

  background: rgba(14, 165, 233, .1);

  color: #67e8f9;

  font-size: .62rem;

  font-weight: 800;

  border: 1px solid rgba(34, 211, 238, .2);
}

.skill-card h3 {
  margin-top: 1rem;

  color: #f8fafc;

  font-size: 1.02rem;

  font-weight: 800;
}

.skill-card p {
  margin-top: .55rem;

  color: #94a3b8;

  font-size: .84rem;

  line-height: 1.7;
}

.dark .skill-card p {
  color: #94a3b8;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(6, 182, 212, .1),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(124, 58, 237, .13),
      transparent 30%
    ),
    #05081f;

  color: white;
}

.process-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1px;

  border: 1px solid rgba(255, 255, 255, .1);

  background: rgba(255, 255, 255, .08);

  border-radius: 1.25rem;

  overflow: hidden;
}

.process-card {
  min-height: 190px;

  padding: 1.5rem;

  background:
    linear-gradient(
      135deg,
      rgba(17, 21, 74, .9),
      rgba(36, 16, 90, .82)
    );

  transition: .25s ease;
}

.process-card:hover {
  background:
    linear-gradient(
      135deg,
      rgba(17, 21, 74, 1),
      rgba(37, 26, 90, .95)
    );

  box-shadow:
    inset 0 0 30px rgba(59, 130, 246, .08);
}

.process-card span {
  color: #67e8f9;

  font-size: .7rem;

  font-weight: 800;

  letter-spacing: .12em;
}

.process-card b {
  display: block;

  margin-top: 2.7rem;

  color: #f8fafc;

  font-size: 1.05rem;
}

.process-card p {
  margin-top: .45rem;

  color: #94a3b8;

  font-size: .78rem;

  line-height: 1.6;
}


/* =========================================================
   PROJECTS / WORK
========================================================= */

.work-card {
  border: 1px solid rgba(96, 165, 250, .25);

  border-radius: 1.35rem;

  background:
    linear-gradient(
      135deg,
      rgba(30, 41, 96, .72),
      rgba(37, 26, 90, .65)
    );

  padding: 1.55rem;

  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;

  backdrop-filter: blur(12px);
}

.work-card:hover {
  transform: translateY(-6px);

  border-color: #38bdf8;

  box-shadow:
    0 20px 55px rgba(0, 0, 0, .25),
    0 0 30px rgba(37, 99, 235, .1);
}

.dark .work-card {
  border-color: rgba(96, 165, 250, .25);

  background:
    linear-gradient(
      135deg,
      rgba(30, 41, 96, .72),
      rgba(37, 26, 90, .65)
    );
}

.work-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 1rem;
}

.work-top span {
  display: grid;

  place-items: center;

  width: 2.5rem;
  height: 2.5rem;

  border-radius: .75rem;

  background:
    linear-gradient(
      135deg,
      #06b6d4,
      #3b82f6,
      #7c3aed
    );

  color: white;

  font-size: .7rem;

  font-weight: 800;

  box-shadow:
    0 8px 20px rgba(59, 130, 246, .2);
}

.dark .work-top span {
  background:
    linear-gradient(
      135deg,
      #06b6d4,
      #3b82f6,
      #7c3aed
    );

  color: white;
}

.work-top em {
  font-style: normal;

  color: #38bdf8;

  font-size: .62rem;

  font-weight: 800;

  letter-spacing: .12em;
}

.work-card h3 {
  margin-top: 1.35rem;

  color: #f8fafc;

  font-size: 1.35rem;

  font-weight: 800;

  letter-spacing: -.02em;
}

.work-card p {
  margin-top: .6rem;

  color: #94a3b8;

  line-height: 1.75;

  font-size: .88rem;
}

.dark .work-card p {
  color: #94a3b8;
}


/* =========================================================
   CHIPS
========================================================= */

.chip-row {
  display: flex;

  flex-wrap: wrap;

  gap: .45rem;

  margin-top: 1.15rem;
}

.chip-row span {
  border: 1px solid rgba(14, 165, 233, .35);

  border-radius: 999px;

  padding: .35rem .55rem;

  color: #67e8f9;

  background: rgba(14, 165, 233, .06);

  font-size: .65rem;

  font-weight: 700;
}

.dark .chip-row span {
  border-color: rgba(14, 165, 233, .35);

  color: #67e8f9;
}


/* =========================================================
   PROFESSIONAL JOURNEY
========================================================= */

.professional-journey-section {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 10% 30%,
      rgba(37, 99, 235, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 70%,
      rgba(124, 58, 237, 0.2),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #080d2b 0%,
      #11154a 45%,
      #24105a 100%
    );
}

.experience-heading {
  text-align: center;

  max-width: 850px;

  margin: 0 auto 70px;
}

.experience-kicker {
  margin-bottom: 12px;

  color: #38bdf8;

  font-size: .85rem;

  font-weight: 800;

  letter-spacing: .18em;

  text-transform: uppercase;
}

.experience-title {
  margin: 0;

  color: white;

  font-size: clamp(2.6rem, 6vw, 4.5rem);

  line-height: 1;

  font-weight: 800;

  letter-spacing: -.04em;
}

.experience-title span {
  background:
    linear-gradient(
      90deg,
      #22d3ee,
      #3b82f6,
      #a855f7
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}

.experience-subtitle {
  max-width: 700px;

  margin: 22px auto 0;

  color: #cbd5e1;

  font-size: 1.05rem;

  line-height: 1.8;
}

.experience-line {
  width: 65px;

  height: 4px;

  margin: 24px auto 0;

  border-radius: 99px;

  background:
    linear-gradient(
      90deg,
      #06b6d4,
      #3b82f6,
      #a855f7
    );
}


/* =========================================================
   TIMELINE
========================================================= */

.experience-timeline {
  position: relative;

  max-width: 1100px;

  margin: 0 auto;

  padding: 10px 0 30px;
}

.experience-timeline::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  left: 50%;

  width: 2px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      to bottom,
      transparent,
      #2563eb 8%,
      #06b6d4 50%,
      #7c3aed 92%,
      transparent
    );

  box-shadow:
    0 0 10px rgba(37, 99, 235, .7),
    0 0 25px rgba(6, 182, 212, .25);
}

.timeline-item {
  position: relative;

  width: 50%;

  margin-bottom: 70px;

  display: flex;
}

.timeline-left {
  padding-right: 55px;

  justify-content: flex-end;
}

.timeline-right {
  margin-left: 50%;

  padding-left: 55px;

  justify-content: flex-start;
}


/* =========================================================
   TIMELINE DOT
========================================================= */

.timeline-dot {
  position: absolute;

  top: 30px;

  width: 17px;
  height: 17px;

  border-radius: 50%;

  background: #172554;

  border: 3px solid #38bdf8;

  box-shadow:
    0 0 0 5px rgba(59, 130, 246, .15),
    0 0 20px rgba(6, 182, 212, .8);
}

.timeline-left .timeline-dot {
  right: -8px;
}

.timeline-right .timeline-dot {
  left: -8px;
}


/* =========================================================
   TIMELINE CARD
========================================================= */

.timeline-card {
  width: 100%;

  max-width: 560px;

  padding: 26px;

  border: 1px solid rgba(96, 165, 250, .45);

  border-radius: 15px;

  background:
    linear-gradient(
      135deg,
      rgba(30, 41, 96, .82),
      rgba(37, 26, 90, .78)
    );

  backdrop-filter: blur(14px);

  box-shadow:
    0 15px 45px rgba(0, 0, 0, .25),
    inset 0 1px 0 rgba(255, 255, 255, .08);

  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.timeline-card:hover {
  transform: translateY(-6px);

  border-color: #38bdf8;

  box-shadow:
    0 20px 55px rgba(0, 0, 0, .35),
    0 0 30px rgba(37, 99, 235, .15);
}


/* =========================================================
   CARD HEADER
========================================================= */

.timeline-card-header {
  position: relative;

  display: flex;

  align-items: center;

  gap: 15px;
}

.company-logo {
  flex: 0 0 auto;

  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 13px;

  color: white;

  font-size: 1.45rem;

  font-weight: 800;

  background:
    linear-gradient(
      135deg,
      #06b6d4,
      #3b82f6,
      #a855f7
    );

  box-shadow:
    0 8px 25px rgba(59, 130, 246, .35);
}

.company-info {
  min-width: 0;
}

.company-info h3 {
  margin: 0;

  color: #f8fafc;

  font-size: 1.15rem;

  line-height: 1.4;

  font-weight: 800;
}

.company-info a {
  display: inline-block;

  margin-top: 3px;

  color: #38bdf8;

  font-size: .9rem;

  font-weight: 700;

  text-decoration: none;
}

.company-info a:hover {
  color: #67e8f9;

  text-decoration: underline;
}


/* =========================================================
   DATE
========================================================= */

.timeline-date {
  margin-left: auto;

  flex-shrink: 0;

  padding: 7px 11px;

  border: 1px solid rgba(168, 85, 247, .6);

  border-radius: 999px;

  color: #c4b5fd;

  background: rgba(124, 58, 237, .15);

  font-size: .75rem;

  font-weight: 700;

  white-space: nowrap;
}


/* =========================================================
   META
========================================================= */

.timeline-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 18px;

  color: #cbd5e1;

  font-size: .78rem;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.timeline-description {
  margin-top: 18px;

  color: #dbeafe;

  font-size: .9rem;

  line-height: 1.75;
}


/* =========================================================
   TIMELINE SKILLS
========================================================= */

.timeline-skills {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 18px;
}

.timeline-skills span {
  padding: 6px 11px;

  border: 1px solid rgba(14, 165, 233, .55);

  border-radius: 999px;

  color: #67e8f9;

  background: rgba(14, 165, 233, .08);

  font-size: .72rem;

  font-weight: 600;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(37, 99, 235, .3),
      transparent 35%
    ),
    radial-gradient(
      circle at 20% 100%,
      rgba(6, 182, 212, .1),
      transparent 30%
    ),
    #05081f;
}

.contact-primary,
.contact-secondary {
  display: inline-flex;

  align-items: center;

  border-radius: .8rem;

  padding: .85rem 1.1rem;

  font-size: .85rem;

  font-weight: 800;

  transition: .25s ease;
}

.contact-primary {
  background:
    linear-gradient(
      90deg,
      #06b6d4,
      #3b82f6,
      #7c3aed
    );

  color: white;

  box-shadow:
    0 10px 30px rgba(37, 99, 235, .25);
}

.contact-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 40px rgba(37, 99, 235, .4);
}

.contact-secondary {
  border: 1px solid rgba(255, 255, 255, .2);

  color: white;

  background: rgba(255, 255, 255, .03);

  backdrop-filter: blur(10px);
}

.contact-secondary:hover {
  transform: translateY(-3px);

  border-color: rgba(56, 189, 248, .6);

  background: rgba(6, 182, 212, .08);

  color: #67e8f9;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  background: #030617 !important;

  border-top: 1px solid rgba(96, 165, 250, .12);

  color: #64748b !important;
}

footer p {
  color: #64748b;
}


/* =========================================================
   ANIMATION
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(18px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .floating-card-one {
    left: -.8rem;
  }

  .floating-card-two {
    right: -.6rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 800px) {

  .experience-heading {
    margin-bottom: 50px;
  }

  .experience-title {
    font-size: 2.8rem;
  }

  .experience-subtitle {
    font-size: .95rem;
  }

  .experience-timeline {
    padding-left: 30px;
  }

  .experience-timeline::before {
    left: 8px;

    transform: none;
  }

  .timeline-item,
  .timeline-left,
  .timeline-right {
    width: 100%;

    margin-left: 0;

    padding-left: 35px;

    padding-right: 0;

    justify-content: flex-start;
  }

  .timeline-left .timeline-dot,
  .timeline-right .timeline-dot {
    left: 0;

    right: auto;
  }

  .timeline-card {
    max-width: none;

    padding: 22px;
  }

  .timeline-card-header {
    align-items: flex-start;
  }

  .timeline-date {
    margin-left: auto;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 640px) {

  .profile-photo {
    height: 430px;
  }

  .floating-card {
    display: none;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-heading-row {
    align-items: flex-start;

    flex-direction: column;

    gap: 1rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 145px;
  }

  .process-card b {
    margin-top: 1.7rem;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

  .experience-title {
    font-size: 2.35rem;
  }

  .timeline-card-header {
    display: grid;

    grid-template-columns: auto 1fr;
  }

  .timeline-date {
    grid-column: 2;

    margin-left: 0;

    justify-self: start;
  }

  .company-logo {
    grid-row: span 2;
  }

  .timeline-meta {
    flex-direction: column;

    gap: 6px;
  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible {
  outline: 2px solid #22d3ee;

  outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

}