section {
  scroll-margin-top: 80px;
}

@font-face {
  font-family: 'name';
  src: url('/static/fonts/ClashDisplay-Variable.ttf') format('opentype');
}

@font-face {
  font-family: 'heading';
  src: url('/static/fonts/marschel-pro.otf') format('opentype');
}

@font-face {
  font-family: 'content';
  src: url('/static/fonts/Zodiak-Black.otf') format('opentype');
}

@font-face {
  font-family: 'extra';
  src: url('/static/fonts/ClashDisplay-Variable.ttf') format('opentype');
}

@font-face {
  font-family: 'links';
  src: url('/static/fonts/ClashDisplay-Variable.ttf') format('opentype');
}

@font-face {
  font-family: 'greeting';
  src: url('/static/fonts/ClashDisplay-Variable.ttf') format('opentype');
}

@font-face {
  font-family: 'contact';
  src: url('/static/fonts/ClashDisplay-Variable.ttf') format('opentype');
}



:root {
  --gold: #ffd700;
  --gold-dark: #b8860b;
  --background-gradient: linear-gradient(135deg, #1c1c20 0%, #202523 100%);
}

.intro,
.intro-box,
.about-section,
.work-cards,
.content-section,
footer {
  animation: fadeInUp 1.2s cubic-bezier(.39, .575, .565, 1) both;
}

html {
  scroll-behavior: smooth;
}

.mobile-nav-dropdown {
  display: none !important;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Open Sans', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #161618 0%, #171a18 100%);
  color: #e2c5c5;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}


h3 {
  font-weight: bold;
  font-size: 5rem;
  color: #b6884c;
  font-family: 'Bevellier', sans-serif;
  letter-spacing: 0.1rem;
  margin: 10px 0 10px 0;
}



.nav-links-header li.active a {
  border-bottom: 2.5px solid var(--gold);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.logo {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-right: 28px;
  margin-left: 34px;
  padding: 0;
}

.navbar {
  background: rgba(28, 33, 36, 0.85);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 90px;
  min-height: 90px;
  margin-top: 50px;
}

.nav-links-header li a {
  color: white;
  font-weight: 600;
  background: none;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  font-family: 'Bevellier', sans-serif;
  word-spacing: normal;
  letter-spacing: 0.12em;
}

.nav-links-header li a:hover {
  color: #d9c5a0;
  text-decoration: none;
}

.nav-links-header {
  margin: 40px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  list-style: none;
}

.nav-links-header a {
  display: block;
  margin: 10px auto;
  width: fit-content;
  padding: 10px 20px;
  background-color: #061f0c;
  text-decoration: none;
  border-radius: 5px;
}


@media (max-width: 768px) {
  .nav-links-header {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .nav-links-header {
    display: flex !important;
  }
}

@media (min-width: 769px) {

  .mobile-nav-toggle,
  .mobile-nav-dropdown {
    display: none !important;
  }
}



.intro {
  margin-left: 100px;
  line-height: 70px;
}

.greeting {
  font-size: 3rem;
  font-weight: bold;
  color: #e2c5c5;
  font-style: italic;
  margin: 300px;
  text-align: left;
  font-family: 'Bevellier', sans-serif;
}


.fullname {
  display: inline-block;
  position: relative;
  color: #b6884c;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  font-size: 6rem;
  letter-spacing: 0.05em;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
  font-weight: bolder;
}

.fullname>span {
  display: block;
  animation: animateWords 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.2em;
}

@keyframes animateWords {

  0%,
  10% {
    transform: translateY(0%);
  }

  20%,
  30% {
    transform: translateY(-100%);
  }

  40%,
  50% {
    transform: translateY(-200%);
  }

  60%,
  70% {
    transform: translateY(-300%);
  }

  80%,
  100% {
    transform: translateY(-400%);
  }
}

.fullname>span>span {
  display: block;
  height: 1.2em;
}

.intro-box {
  width: 100%;
  max-width: none;
  padding: 40px 5%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.name-role {
  width: 60%;
  max-width: none;
  height: auto;

}

.name-role::after {
  content: "";
  display: block;
  margin: 0.5rem auto;
  width: 50%;
  border-bottom: 2px solid #888;
}

#tagline {
  display: inline-block;
  white-space: normal;
  overflow-wrap: break-word;
  height: 3.6rem;
}

.name-role .tagline {
  font-size: 2.85rem;
  line-height: 1.2;
  color: #e2c5c5;
  text-align: left;
  letter-spacing: 0.02em;

}

.blink-caret {
  display: inline-block;
  animation: blink 1s steps(2, start) infinite;
  color: #e2c5c5;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


.tagline {
  font-family: 'Tanker', serif;
  font-weight: bold;

}

@font-face {
  font-family: 'Marschel';
  src: url('/static/fonts/marschel-stencil.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.name-role .quote-text {
  font-size: 1.25rem;
  line-height: 1.6;
}

.quote-text .italic {
  font-style: italic;
  font-family: 'Hind', sans-serif;
}

.quote-text {
  margin-bottom: 40px;
  font-family: 'Hind', sans-serif;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-left: 0;
  max-width: none;
  line-height: 1.4;
  color: #d9c5a0;
}

.intro-photo img {
  max-width: 400px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.08), 0 2px 12px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s, box-shadow 0.2s;
}

.intro-photo img:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 48px rgba(255, 215, 0, 0.18), 0 4px 24px rgba(0, 0, 0, 0.28);
}

.vertical-text-wrapper {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  height: 430px;
  overflow: hidden;
  margin-right: 10px;
}

.vertical-text {
  display: inline-block;
  white-space: nowrap;
  animation: scrollUp 16s linear infinite;
  color: #e2c5c5;
  font-weight: 500;
  font-size: 1.5rem;
  font-family: 'extra', sans-serif;

}

@keyframes scrollUp {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}




.about-container {
  padding-top: 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.about-section {
  padding-bottom: 60px;
  margin: 48px auto;
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: border-box;
  color: #e2c5c5;
}

.lux-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  font-family: 'Switzer', sans-serif;

}

.lux-list li {
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.lux-list li:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.15);
}

.about-marker {
  width: 42px;
  min-width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(145deg, #ffd15a, #bd8736);
  border: 1px solid rgba(255, 218, 112, 0.85);
  border-radius: 7px;
  box-shadow: 0 8px 0 #6f4b1d, 0 16px 24px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px) perspective(120px) rotateX(8deg);
}

.about-marker::after {
  content: "";
  position: absolute;
  right: -9px;
  width: 18px;
  height: 18px;
  background: linear-gradient(145deg, #ffd15a, #bd8736);
  border-right: 1px solid rgba(255, 218, 112, 0.85);
  border-top: 1px solid rgba(255, 218, 112, 0.85);
  transform: rotate(45deg);
}

.lux-list li:hover .about-marker {
  transform: translateY(-5px) translateX(2px) perspective(120px) rotateX(8deg);
}



.expand-btn {
  margin-top: 25px;
  padding: 10px 18px;
  font-size: 16px;
  color: black;
  background-color: #ffbf29;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expand-btn:hover {
  background-color: #ffcc00;
  transform: scale(1.05);
}

.about-full {
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.hidden {
  display: none;
}

.blinking-cursor,
#type-cursor-inner {
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.skills-box {
  min-width: 220px;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 18px 18px 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.skills-head {
  font-size: 1.1rem;
  font-family: 'heading', sans-serif;
  color: #b6884c;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: left;
  letter-spacing: 1px;
}

.skills-window {
  max-height: 193px;
  overflow: hidden;
  position: relative;
}

#skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#skills-list li {
  font-size: 1rem;
  color: #e0e0e0;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: none;
  text-align: left;
  transition: background 0.2s;
  font-family: 'Hind', sans-serif;
}

.download-resume-btn {
  display: inline-block;
  background: linear-gradient(90deg, #232a26 0%, #181c1f 100%);
  color: #ffd700;
  border: 1.5px solid #b6884c;
  border-radius: 12px;
  padding: 10px 22px;
  font-size: 1.04rem;
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0;
  margin-top: 0;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.08);
  vertical-align: middle;
  align-self: flex-end;
  margin-top: 12px;
}

.download-resume-btn:hover {
  background: linear-gradient(90deg, #b6884c 0%, #ffd700 100%);
  color: #232a26;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.18);
  text-decoration: none;
  transform: scale(1.07) translateY(-2px);
}

.skill-photo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  vertical-align: middle;
}


#work {
  padding-left: 5vw;
  padding-right: 5vw;
}

.projects-heading-note {
  color: #e2c5c5;
  font-size: 1.05rem;
  text-align: left;
  font-family: 'Amulya', serif;
  font-style: italic;
  margin: -4px 0 18px 0;
}

#projectsLiveDemoNote {
  display: none;
}

.work-cards {
  display: flex;
  flex-direction: row;
  gap: 32px;
  min-width: 0;
  max-width: 100%;
  flex: 2 1 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.work-flex-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.work-description-glass.expanded {
  background: rgba(30, 34, 38, 0.55);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 32px;
  border: 1.5px solid rgba(255, 215, 0, 0.12);
  padding: 0 40px 24px 40px;
  color: #e2c5c5;
  box-sizing: border-box;
  height: auto;
  font-size: 1.15rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Amulya', sans-serif;
}

.work-description-glass h4 {
  color: #b6884c;
  font-size: 2rem;
  margin-bottom: 4px;
  font-family: 'extra', sans-serif;
  letter-spacing: 1px;
  padding-top: 0;
  margin-top: 15px;
}

.work-cards .card {
  display: block;
  margin: 10px auto;
  min-width: 240px;
  max-width: 380px;
  width: 100%;
  flex-direction: row;
  gap: 28px;
  min-height: 500px;
  max-height: 700px;
  height: fit-content;
  padding: 10px 20px;
  background-color: #141a16;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  align-items: center;
  word-wrap: break-word;
  text-align: center;
  transition: transform 0.3s ease;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 8px rgba(40, 47, 53, 0.18) inset,
    0 8px 32px 0 rgba(31, 38, 135, 0.18),
    0 2px 12px rgba(0, 0, 0, 0.22);
  transition: box-shadow 0.7s cubic-bezier(0.4, 0, 0.2, 1), background 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}


.card p {
  margin: 0;
  color: #e2c5c5;
  font-size: 1.08rem;
  padding: auto;
  line-height: 1.7;
}

.card-content {
  font-size: 2.18rem;
  line-height: 1.7;
  color: #e2c5c5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.card-content h4 {
  font-size: 1.3rem;
  margin: 10px 0 5px;
  color: #b6884c;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: 1px;
}

.project-status-label {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.card .project-impact {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0 0 5px;
  padding: 7px 10px;
  border-left: 3px solid rgba(255, 215, 0, 0.54);
  border-radius: 8px;
  background: rgba(255, 215, 0, 0.07);
  color: #f0d9a9;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.card .project-impact span {
  color: #ffd166;
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-corner-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 132px);
  padding: 6px 20px 6px 12px;
  border-radius: 999px 0 0 999px;
  color: #ffffff;
  filter: drop-shadow(0 0 8px rgba(45, 212, 191, 0.36));
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.project-corner-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #0f766e, #2dd4bf);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 100%, 0 100%);
}

.project-corner-tag span {
  position: relative;
  z-index: 1;
}

.project-linkedin-award {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 230px;
  margin: -8px 0 2px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(10, 102, 194, 0.18);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(10, 102, 194, 0.35);
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.project-linkedin-award img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  border-radius: 4px;
  flex: 0 0 auto;
}

.project-linkedin-award span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-deployed {
  background: linear-gradient(135deg, #137a3a, #30c66d);
  box-shadow: 0 0 12px rgba(48, 198, 109, 0.36);
}

.status-completed {
  background: linear-gradient(135deg, #0f766e, #2dd4bf);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.36);
}

.status-development {
  background: linear-gradient(135deg, #b6884c, #ffd166);
  color: #141a16;
  box-shadow: 0 0 12px rgba(255, 209, 102, 0.36);
}

.status-pending {
  background: linear-gradient(135deg, #315bdc, #8b5cf6);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.36);
}

.project-card-footer {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  row-gap: 4px;
  width: 100%;
  min-height: 32px;
  margin-top: 14px;
  position: relative;
  z-index: 3;
}

.project-tools-area {
  display: contents;
}

.project-github-link {
  grid-column: 1;
  grid-row: 2;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.project-github-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.project-tools-marquee {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.project-tools-track {
  display: inline-flex;
  min-width: max-content;
  animation: projectToolsScroll 18s linear infinite;
}

.project-tools-track span {
  display: inline-block;
  padding-right: 40px;
  color: #e2c5c5;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.0rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@keyframes projectToolsScroll {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.card-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.08);
  background: #232a26;
  margin-top: 20px;
}


.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(-45deg,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0.25) 70%,
      rgba(255, 255, 255, 0) 100%);
  background-size: 250% 250%, 100% 100%;
  background-repeat: no-repeat;
  background-position: -100% -100%, 0 0;
  transition: background-position 0.8s cubic-bezier(.4, 0, .2, 1);
  z-index: 2;
}

.card:hover::before {
  background-position: 100% 100%, 0 0;
}

.card:hover {
  transform: scale(1.05);
  cursor: pointer;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s, opacity 0.3s;
  filter: none;
  opacity: 1;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.18), 0 2px 12px rgba(0, 0, 0, 0.22);
}

.work-cards:has(.card:hover) .card:not(:hover) {
  filter: none;
  opacity: 0.5;
  transition: filter 0.3s, opacity 0.3s;
}


.work-description-glass.minimized {
  min-width: 370px;
  max-width: 420px;
  width: 100%;
  align-self: stretch;
  margin-right: -200px;
  margin-left: 0;

  background: rgba(30, 34, 38, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 28px;

  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
  font-family: 'Amulya', sans-serif;

}

.work-description-glass.minimized::before {
  position: absolute;
  inset: 0;
  border-radius: 28px;

  pointer-events: none;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
}

.work-description-glass.minimized>* {
  position: relative;
  z-index: 2;
  padding-top: 0;
  margin-top: 0;
}

.work-description-glass.minimized {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #e2c5c5;
  padding: 0 32px 0 32px;
  font-size: 1.12rem;
  line-height: 1.7;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
  margin-top: 0;
}

.expand-prompt {
  color: #e2c5c5;
  font-size: 1.05rem;
  text-align: left;
  font-family: 'Amulya', serif;
  margin-bottom: 0;
  display: block;
}

.work-description-glass:not(.minimized) .expand-prompt {
  display: none;
}

:root {
  --carousel-radius: 350px;

  --carousel-card-width: 320px;
  --carousel-card-height: 480px;

  --carousel-perspective: 1800px;

  --carousel-transition: 0.7s cubic-bezier(.4, 0, .2, 1);

  --color-primary-blue: #ffffff;
  --color-dark-base: #0f0618;
  --color-accent-light: #838ce5;
  --color-secondary: #ffffff;
  --color-white: #fff;

}

.projects-carousel {
  width: var(--carousel-radius);
  height: var(--carousel-radius);
  perspective: var(--carousel-perspective);
  perspective-origin: 50% 50%;
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
  transition: opacity var(--carousel-transition);
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-right: auto;
  margin-left: auto;
}

.projects-carousel.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.carousel-cards-container {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: var(--carousel-perspective);
}

.carousel-card {
  position: absolute;
  display: flex;
  left: 50%;
  top: 50%;
  width: var(--carousel-card-width);
  height: var(--carousel-card-height);
  transform-style: preserve-3d;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--color-white);
  transition:
    transform var(--carousel-transition),
    opacity var(--carousel-transition),
    box-shadow var(--carousel-transition),
    filter var(--carousel-transition);
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  text-align: center;
  justify-content: flex-start;
  will-change: transform, opacity;
  padding-right: 25px;
  padding-left: 25px;
  box-sizing: border-box;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.15);
}

.carousel-card .project-status-label {
  top: 16px;
  right: 16px;
  min-width: 74px;
  max-width: calc(100% - 32px);
  padding: 5px 8px;
  font-size: 0.52rem;
  text-align: center;
}

.carousel-card .status-deployed {
  box-shadow:
    0 0 16px rgba(48, 198, 109, 0.72),
    0 0 28px rgba(48, 198, 109, 0.32);
}

.carousel-card .status-completed {
  box-shadow:
    0 0 16px rgba(45, 212, 191, 0.72),
    0 0 28px rgba(45, 212, 191, 0.32);
}

.carousel-card .status-development {
  box-shadow:
    0 0 16px rgba(255, 209, 102, 0.72),
    0 0 28px rgba(255, 209, 102, 0.32);
}

.carousel-card .status-pending {
  box-shadow:
    0 0 16px rgba(139, 92, 246, 0.72),
    0 0 28px rgba(139, 92, 246, 0.32);
}


.carousel-card.active {

  filter: brightness(1.1) drop-shadow(0 0 9px #b6884c);
  z-index: 2;
}

.carousel-card.side {
  opacity: 0.6;
  filter: brightness(0.8);
  box-shadow: 0 2px 8px #ffffff;

}

.carousel-card.far {
  opacity: 0.2;
  filter: brightness(0.6);
  box-shadow: none;
}

.carousel-card.hidden {
  opacity: 0;
  pointer-events: none;
}

.carousel-card h4 {
  color: #b6884c;
  font-size: 1.1rem;
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
}

.carousel-card p {
  color: #e2c5c5;
  font-size: 0.8rem;
  text-align: center;
  white-space: normal;
}

.carousel-card .project-impact {
  margin-top: 6px;
  padding: 7px 9px;
  border-left: 0;
  border-radius: 8px;
  background: rgba(255, 215, 0, 0.08);
  color: #f0d9a9;
  font-size: 0.62rem;
  line-height: 1.32;
  text-align: center;
}

.carousel-card .project-impact span {
  display: block;
  margin-bottom: 2px;
  color: #ffd166;
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.50rem;
  letter-spacing: 0.06em;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  color: #b6884c;
  font-size: 1.8rem;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  user-select: none;
  pointer-events: auto;
}

.carousel-arrow-left {
  left: 105px;
}

.carousel-arrow-right {
  right: -290px;
}

.carousel-arrow:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #fff;
  box-shadow: 0 6px 24px rgba(182, 136, 76, 0.5);
  transform: scale(1.3);
}

.carousel-toggle-btn {
  position: static;
  top: 24px;
  right: 48px;
  z-index: 20;
  background: linear-gradient(90deg, #232a26, #181c1f);
  color: #ffffff;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 2px 12px #d9c5a0;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  margin-left: auto;
  display: block;
}

.carousel-toggle-btn:hover {
  background: linear-gradient(90deg, #b6884c, #b8860b);
  box-shadow: 0 2px 12px #d9c5a0;
}

.carousel-card .card-img img {
  width: 300px;
  height: 100px;
  object-fit: cover;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow:
    inset 0 0 2px rgba(255, 255, 255, 0.3),
    0 8px 24px rgba(255, 215, 0, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.15);
}


.carousel-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  white-space: normal;
}

.work-cards .card.project-gold-card,
.carousel-card.project-gold-card {
  border-color: rgba(255, 215, 0, 0.18);
  box-shadow:
    inset 0 0 18px 5px rgba(255, 215, 0, 0.24),
    inset 0 0 42px rgba(255, 215, 0, 0.10),
    0 8px 32px 0 rgba(31, 38, 135, 0.18),
    0 2px 12px rgba(0, 0, 0, 0.22);
}

.work-cards .card.project-gold-card:hover {
  box-shadow:
    inset 0 0 22px 7px rgba(255, 215, 0, 0.32),
    inset 0 0 54px rgba(255, 215, 0, 0.14),
    0 8px 32px rgba(255, 215, 0, 0.18),
    0 2px 12px rgba(0, 0, 0, 0.22);
}

.carousel-card.project-gold-card {
  box-shadow:
    inset 0 0 18px 5px rgba(255, 215, 0, 0.26),
    inset 0 0 42px rgba(255, 215, 0, 0.12),
    0 0 20px rgba(255, 215, 0, 0.12);
}





.contact-section-box {
  background: rgba(30, 34, 38, 0.55);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 32px;
  border: 1.5px solid rgba(255, 215, 0, 0.12);
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  margin: 60px 5vw 0 5vw;
  padding: 0 40px 0 40px;
}


.contact-para {
  flex: 1 1 0;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e2c5c5;
  font-family: 'contact', sans-serif;
  font-weight: 500;
}

.contact-form-container {
  border: 2px solid rgba(255, 215, 0, 0.12);
  border-radius: 32px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 24px;
  padding: 54px 24px;
}

.contact-form {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  font-family: 'Inter', 'Open Sans', sans-serif;
  background: rgba(24, 28, 31, 0.92);
  color: #ffd700;
  border: 1.5px solid #b6884c;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.08);
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border: 1.5px solid #ffd700;
  box-shadow: 0 0 8px #ffd70033;
  background: rgba(30, 34, 38, 0.98);
  color: #fffbe6;
}

.contact-form textarea {
  min-height: 100px;
  max-height: 240px;
}

.contact-form button.go-btn {
  width: 70%;
  margin: 0 auto;
  font-size: 1.15rem;
  font-weight: bold;
  border-radius: 14px;
  padding: 14px 0;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    transform 0.5s cubic-bezier(0.2, 0, 0.1, 1);
  box-sizing: border-box;
  display: block
}

.contact-form button.go-btn:hover {
  background: linear-gradient(90deg, #b6884c 0%, #ffd700 100%);
  color: #232a26;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.18);
  transform: scale(1.07) translateY(-2px);
}

.contact-success {
  color: #34a938;
  border-radius: 10px;
  padding: 12px 18px;
  margin-top: 10px;
  font-size: 1.08rem;
  font-weight: bold;
}

.contact-social-icons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 18px 0 12px 0;
}

.contact-social-icons a img {
  height: 32px;
  width: 32px;
  border-radius: 6px;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  background: transparent;
  vertical-align: middle;
}

footer {
  margin-top: 60px;
  font-size: 1.05rem;
  color: #e2c5c5;
  background: var(--glass-bg);
  padding: 22px 0 18px 0;
  text-align: center;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 -2px 12px rgba(255, 215, 0, 0.08);
}



@media (max-width: 768px) {
  











  .mobile-nav-dropdown {
    display: flex !important;
    align-items: end;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    top: 0;
    left: 36%;
    right: 0%;
    width: 50%;
    max-width: 60%;
    height: 28vh;
    background: rgba(24, 28, 31, 0.98);
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.18);
    padding: 30px 24px 4px 24px;
    z-index: 2000;
    transform: translateY(-200%);
    transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
  }
  body.nav-open .mobile-nav-dropdown {
    transform: translateY(-10%);
  }
  .mobile-nav-dropdown li a{
    margin: 0;
  }
  .mobile-nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 54px;
    background: none;
    border: none;
    position: fixed;
    top: 18px;
    left: auto;
    right: 18px;
    z-index: 2001;
    cursor: pointer;
  }
  .mobile-nav-toggle span {
    display: block;
    width: 28px;
    height: 4px;
    background: #e2c5c5;
    border-radius: 2px;
    transition: all 0.3s;
  }
  body.nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  body.nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }





























  .home-bg{
    padding-left: 0 !important;
  }
  .intro{
    order: 1 !important;
    padding: 0 !important;
    line-height: normal !important;
    width: 100vw !important;
    margin-left: 0 !important;
  }
  .greeting{
    font-size: 1.6rem !important;
    margin: 80px 0 0 80px !important;
    text-align: center !important;
  }
  .fullname{
    display: inline-block !important;
    font-size: 2.5rem !important;
    height: 1.1em !important;
    margin: 0px !important;
    line-height: 1.1 !important;
    overflow: hidden !important;
    position: relative  !important;
    vertical-align: bottom !important;
    margin-bottom: 0 !important;
  }
  .fullname > span {
    animation: animateWords 8s infinite cubic-bezier(0.4, 0, 0.2, 1) !important;
    line-height: 1.1em;
  }
  .name-role{
    margin-top: 0 !important;
    width: 100vw !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  #tagline{
    font-size: 1.9rem !important;
    margin-top: 0 !important;
    text-align: left !important;
  }
  .quote-text{
    font-size: 0.99rem !important;
  }  
  .vertical-text-wrapper {
    display: block !important;
    writing-mode: horizontal-tb !important;
    transform: none !important;
    height: auto !important;
    overflow: hidden;
    margin: 12px auto 0 auto !important;
    white-space: nowrap !important;
    width: 100vw !important;
    position: static !important;
  }

  .vertical-text {
    display: inline-block !important;
    font-size: 1.4rem !important;
    color: #e2c5c5 !important;
    font-weight: 600 !important;
    animation: scrollLeft 12s linear infinite !important;
    padding: 0 8vw !important;
    min-width: 120vw !important;
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(100%);
    }

    100% {
      transform: translateX(-370%);
    }
  }
  .intro-photo img{
    width: 280px !important;
    height: 280px !important;
    margin: 0 auto !important;
    display: block !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
  }
  .work-flex-row {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
  }

  h3{
    font-size: 2.7rem !important;
  }

  :root {
    --carousel-radius: 150px;

    --carousel-card-width: 170px;
    --carousel-card-height: 300px;

    --carousel-perspective: 800px;

    --carousel-transition: 0.7s cubic-bezier(.4, 0, .2, 1);

    --color-primary-blue: #ffffff;
    --color-dark-base: #0f0618;
    --color-accent-light: #838ce5;
    --color-secondary: #ffffff;
    --color-white: #fff;
  }
  .about-container{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 4vw !important;
    padding-right: 4vw !important;
    box-sizing: border-box !important;
  }
  .navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
  }
  .lux-list {
    font-size: 0.95rem !important;
  }
  .skills-window {
   max-height: 150px;
  }
  #skills-list li {
    font-size: 0.99rem !important;
  }
  .skill-photo {
    width: 22px !important;
    height: 22px !important;
  }
  .download-resume-btn {
    align-self: center !important;
  }
  .expand-btn {
    font-size: 0.95rem !important;
    padding: 8px 14px !important;
    align-self: center !important;
  }
  .projects-carousel {

    justify-content: center !important;
    align-items: center !important;
    margin-left: 10px !important;
    margin-right: auto !important;
  }

    
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    color: #b6884c;
    font-size: 1.8rem;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition:
      background 0.3s ease,
      color 0.3s ease,
      transform 0.2s ease,
      box-shadow 0.3s ease;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    user-select: none;
    pointer-events: auto;
  }
  
  .carousel-arrow-left {
    margin-left: -70px !important;
  }
  
  .carousel-arrow-right {
    right: -170px !important;
  }
  
  .projects-carousel.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
  .carousel-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: var(--carousel-perspective);
  }

  .carousel-card .card-img{
    margin-bottom: 0 !important;
  }
  .carousel-card .card-img img{
    width: 100% !important;
    height: 75% !important;
    object-fit: cover !important;
    border-radius: 25px !important;
    margin-top: 12px 12px 6px 12px !important;
  }
  .carousel-card{
    padding-left: 0% !important;
    padding-right: 0% !important;
  }
  .carousel-card h4{
    font-size: 0.6rem !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .carousel-card p{
    font-size: 0.4rem !important;
    margin-top: 0 !important;
  }

  .work-description-glass.expanded, 
  .work-description-glass.minimized{
    margin-top: 12px !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .work-description-glass.expanded h4, 
  .work-description-glass.minimized h4{
    margin-top: 12px !important;
    font-size: 1.2rem !important;
  }

  .work-description-glass.minimized{
    margin-right: 0 !important;
    margin-left: 0 !important;
    min-width: auto !important;
    max-width: 100vw !important;
    padding-left: 18px !important;
    padding-right: 18px !important;   
    font-size: 0.65rem !important; 

  }
  .work-description-glass.expanded{
    margin-right: 20px !important;
    margin-left: 20px !important;
    min-width: auto !important;
    max-width: 100vw !important;
    padding-left: 18px !important;
    padding-right: 18px !important;   
    font-size: 0.65rem !important; 

  }
  #work{
    width: 100vw !important;
    padding: 0 !important;
  }

  .work-cards{
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
    padding: 20px !important;
  }
  .work-cards .card {
    min-width: auto !important;
    max-width: 96% !important;
    width: 350px !important;
    min-height: auto !important;
    max-height: none !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  .card p{
    font-size: 0.65rem !important;
  }
  .card h4{
    font-size: 0.85rem !important;
  }
  .card-img img{
    width: 60px !important;
    height: 60px !important;
    margin-top: 12px !important;
    margin-bottom: 8px !important;
  }
  .work-description-glass .expand-prompt{
    font-size: 0.55rem !important;
    font-style: italic !important;
  }

  .carousel-toggle-btn{
    top: 12px !important;
    right: 24px !important;
    font-size: 0.78rem !important;
  }
  .contact-section-box {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
    padding: 20px !important;
    margin: 28px 4vw !important;
  }

  .contact-para {
    order: 1 !important;
    text-align: left !important;
    padding: 8px 6px !important;
    width: 100% !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.003em !important;
  }

  .contact-form-container {
    order: 2 !important;
    width: calc(100% - 36px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    
    box-sizing: border-box !important;
  }

  .contact-form {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    font-size: 0.84rem !important;
    padding: 10px 12px !important;
  }

  .contact-form textarea {
    min-height: 120px !important;
  }

  .contact-form button.go-btn {
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    padding: 12px 0 !important;
  }
  footer {
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-size: 0.65rem !important;
  }

  .contact-social-icons a img{
    gap: 16px !important;
    width: 30px !important;
    height: 30px !important;
  }

  * {
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
}


@media (min-width: 769px) and (max-width: 1023px) {
  
  html, body {
    overflow-x: hidden;
  }

  section {
    scroll-margin-top: 60px;
  }

  @font-face {
    font-family: 'name';
    src: url('/static/fonts/ClashDisplay-Variable.ttf') format('opentype');
  }

  @font-face {
    font-family: 'heading';
    src: url('/static/fonts/marschel-pro.otf') format('opentype');
  }

  @font-face {
    font-family: 'content';
    src: url('/static/fonts/Zodiak-Black.otf') format('opentype');
  }

  @font-face {
    font-family: 'extra';
    src: url('/static/fonts/ClashDisplay-Variable.ttf') format('opentype');
  }

  @font-face {
    font-family: 'links';
    src: url('/static/fonts/ClashDisplay-Variable.ttf') format('opentype');
  }

  @font-face {
    font-family: 'greeting';
    src: url('/static/fonts/ClashDisplay-Variable.ttf') format('opentype');
  }

  @font-face {
    font-family: 'contact';
    src: url('/static/fonts/ClashDisplay-Variable.ttf') format('opentype');
  }


  :root {
    --gold: #ffd700;
    --gold-dark: #b8860b;
    --background-gradient: linear-gradient(135deg, #1c1c20 0%, #202523 100%);
  }

  .intro,
  .intro-box,
  .about-section,
  .work-cards,
  .content-section,
  footer {
    animation: fadeInUp 1.2s cubic-bezier(.39, .575, .565, 1) both;
  }

  html {
    scroll-behavior: smooth;
  }

  .mobile-nav-dropdown {
    display: none !important;
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Open Sans', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #161618 0%, #171a18 100%);
    color: #e2c5c5;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
  }

  h3 {
    font-weight: bold;
    font-size: 5rem;
    color: #b6884c;
    font-family: 'Bevellier', sans-serif;
    letter-spacing: 0.1rem;
    margin: 10px 0 10px 0;
  }



  
  body.nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  body.nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .nav-links-header li.active a {
    border-bottom: 2.5px solid var(--gold);
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
    height: 100%;
  }

  .logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: auto;
  }

  .logo {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-right: 28px;
    margin-left: 34px;
    padding: 0;
  }

  .navbar {
    background: rgba(28, 33, 36, 0.85);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 90px;
    min-height: 90px;
    margin-top: 50px;
  }

  .nav-links-header li a {
    color: white;
    font-weight: 600;
    background: none;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    font-family: 'Bevellier', sans-serif;
    word-spacing: normal;
    letter-spacing: 0.12em;
  }

  .nav-links-header li a:hover {
    color: #d9c5a0;
    text-decoration: none;
  }

  .nav-links-header {
    margin: 40px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    list-style: none;
  }

  .nav-links-header a {
    display: block;
    margin: 10px auto;
    width: fit-content;
    padding: 10px 20px;
    background-color: #061f0c;
    text-decoration: none;
    border-radius: 5px;
  }

  @media (max-width: 768px) {
    .nav-links-header {
      display: none !important;
    }
  }

  @media (min-width: 769px) {
    .nav-links-header {
      display: flex !important;
    }
  }

  @media (min-width: 769px) {

    .mobile-nav-toggle,
    .mobile-nav-dropdown {
      display: none !important;
    }
  }


  .intro {
    margin-left: 100px;
    line-height: 70px;
  }

  .greeting {
    font-size: 3rem;
    font-weight: bold;
    color: #e2c5c5;
    font-style: italic;
    margin: 300px;
    text-align: left;
    font-family: 'Bevellier', sans-serif;
  }

  .fullname {
    display: inline-block;
    position: relative;
    color: #b6884c;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    font-size: 6rem;
    letter-spacing: 0.05em;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    height: 1.2em;
    overflow: hidden;
    vertical-align: bottom;
    font-weight: bolder;
  }

  .fullname>span {
    display: block;
    animation: animateWords 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.2em;
  }

  @keyframes animateWords {

    0%,
    10% {
      transform: translateY(0%);
    }

    20%,
    30% {
      transform: translateY(-100%);
    }

    40%,
    50% {
      transform: translateY(-200%);
    }

    60%,
    70% {
      transform: translateY(-300%);
    }

    80%,
    100% {
      transform: translateY(-400%);
    }
  }

  .fullname>span>span {
    display: block;
    height: 1.2em;
  }

  .intro-box {
    width: 100%;
    max-width: none;
    padding: 40px 5%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    padding-bottom: 0;
  }

  .name-role {
    width: 60%;
    max-width: none;
    height: auto;

  }

  .name-role::after {
    content: "";
    display: block;
    margin: 0.5rem auto;
    width: 50%;
    border-bottom: 2px solid #888;
  }

  #tagline {
    display: inline-block;
    white-space: normal;
    overflow-wrap: break-word;
    height: 3.6rem;
  }

  .name-role .tagline {
    font-size: 4rem;
    line-height: 1.2;
    font-size: 3rem;
    color: #e2c5c5;
    text-align: left;
    letter-spacing: 0.02em;

  }

  .blink-caret {
    display: inline-block;
    animation: blink 1s steps(2, start) infinite;
    color: #e2c5c5;
  }

  @keyframes blink {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }

  .tagline {
    font-family: 'Tanker', serif;
    font-weight: bold;

  }

  @font-face {
    font-family: 'Marschel';
    src: url('/static/fonts/marschel-stencil.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }

  .name-role .quote-text {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .quote-text .italic {
    font-style: italic;
    font-family: 'Hind', sans-serif;
  }

  .quote-text {
    margin-bottom: 40px;
    font-family: 'Switzer', sans-serif;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-left: 0;
    max-width: none;
    line-height: 1.4;
    color: #d9c5a0;
  }

  .intro-photo img {
    max-width: 400px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.08), 0 2px 12px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .intro-photo img:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.18), 0 4px 24px rgba(0, 0, 0, 0.28);
  }

  .vertical-text-wrapper {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    height: 430px;
    overflow: hidden;
    margin-right: 10px;
  }

  .vertical-text {
    display: inline-block;
    white-space: nowrap;
    animation: scrollUp 16s linear infinite;
    color: #e2c5c5;
    font-weight: 400;
    font-size: 1.5rem;
    font-family: 'extra', sans-serif;

  }

  @keyframes scrollUp {
    0% {
      transform: translateY(100%);
    }

    100% {
      transform: translateY(-100%);
    }
  }


  .about-container {
    padding-top: 40px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }

  .about-section {
    padding-bottom: 60px;
    margin: 48px auto;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
    color: #e2c5c5;
  }

  .lux-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    font-family: 'Switzer', sans-serif;

  }

  .lux-list li {
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .lux-list li:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
  }

  .expand-btn {
    margin-top: 25px;
    padding: 10px 18px;
    font-size: 16px;
    color: black;
    background-color: #ffbf29;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .expand-btn:hover {
    background-color: #ffcc00;
    transform: scale(1.05);
  }

  .about-full {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }

  .hidden {
    display: none;
  }

  .blinking-cursor,
  #type-cursor-inner {
    animation: blink 1s steps(1) infinite;
  }

  @keyframes blink {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .skills-box {
    min-width: 220px;
    max-width: 260px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 18px 18px 10px 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .skills-head {
    font-size: 1.1rem;
    font-family: 'heading', sans-serif;
    color: #b6884c;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: left;
    letter-spacing: 1px;
  }

  .skills-window {
    max-height: 193px;
    overflow: hidden;
    position: relative;
  }

  #skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #skills-list li {
    font-size: 1rem;
    color: #e0e0e0;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: none;
    text-align: left;
    transition: background 0.2s;
    font-family: 'Hind', sans-serif;
  }

  .download-resume-btn {
    display: inline-block;
    background: linear-gradient(90deg, #232a26 0%, #181c1f 100%);
    color: #ffd700;
    border: 1.5px solid #b6884c;
    border-radius: 12px;
    padding: 10px 22px;
    font-size: 1.04rem;
    font-family: 'Inter', 'Open Sans', sans-serif;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0;
    margin-top: 0;
    transition:
      background 0.2s,
      color 0.2s,
      box-shadow 0.2s,
      transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.08);
    vertical-align: middle;
    align-self: flex-end;
    margin-top: 12px;
  }

  .download-resume-btn:hover {
    background: linear-gradient(90deg, #b6884c 0%, #ffd700 100%);
    color: #232a26;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.18);
    text-decoration: none;
    transform: scale(1.07) translateY(-2px);
  }

  .skill-photo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    vertical-align: middle;
  }

  #work {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 40px;
    max-width: 1100px;
    margin: 48px auto;
  }

  .work-cards {
    display: flex;
    flex-direction: row;
    gap: 32px;
    min-width: 0;
    max-width: 100%;
    flex: 2 1 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
  }


  .work-description-glass.expanded {
    background: rgba(30, 34, 38, 0.55);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1.5px solid rgba(255, 215, 0, 0.12);
    padding: 0 40px 24px 40px;
    color: #e2c5c5;
    box-sizing: border-box;
    height: auto;
    font-size: 1.15rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Amulya', sans-serif;
  }

  .work-description-glass h4 {
    color: #b6884c;
    font-size: 2rem;
    margin-bottom: 4px;
    font-family: 'extra', sans-serif;
    letter-spacing: 1px;
    padding-top: 0;
    margin-top: 15px;
  }

  .work-cards .card {
    display: block;
    margin: 10px auto;
    min-width: 240px;
    max-width: 380px;
    width: 100%;
    flex-direction: row;
    gap: 28px;
    min-height: 500px;
    max-height: 700px;
    height: fit-content;
    padding: 10px 20px;
    background-color: #141a16;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    align-items: center;
    word-wrap: break-word;
    text-align: center;
    transition: transform 0.3s ease;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
      0 0 0 8px rgba(40, 47, 53, 0.18) inset,
      0 8px 32px 0 rgba(31, 38, 135, 0.18),
      0 2px 12px rgba(0, 0, 0, 0.22);
    transition: box-shadow 0.7s cubic-bezier(0.4, 0, 0.2, 1), background 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .card p {
    margin: 0;
    color: #e2c5c5;
    font-size: 1.08rem;
    padding: auto;
    line-height: 1.7;
  }

  .card-content {
    font-size: 2.18rem;
    line-height: 1.7;
    color: #e2c5c5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .card-content h4 {
    font-size: 1.3rem;
    margin: 10px 0 5px;
    color: #b6884c;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 1px;
  }

  .card-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.08);
    background: #232a26;
    margin-top: 20px;
  }

  .card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(-45deg,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0.25) 70%,
        rgba(255, 255, 255, 0) 100%);
    background-size: 250% 250%, 100% 100%;
    background-repeat: no-repeat;
    background-position: -100% -100%, 0 0;
    transition: background-position 0.8s cubic-bezier(.4, 0, .2, 1);
    z-index: 2;
  }

  .card:hover::before {
    background-position: 100% 100%, 0 0;
  }

  .card:hover {
    transform: scale(1.05);
    cursor: pointer;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s, opacity 0.3s;
    filter: none;
    opacity: 1;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.18), 0 2px 12px rgba(0, 0, 0, 0.22);
  }

  .work-cards:has(.card:hover) .card:not(:hover) {
    filter: none;
    opacity: 0.5;
    transition: filter 0.3s, opacity 0.3s;
  }

  .work-description-glass.minimized {
    width: 100%;
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
    align-self: stretch;
    margin-right: -200px;
    margin-left: 0;

    background: rgba(30, 34, 38, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 28px;

    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
    font-family: 'Amulya', sans-serif;

  }

  .work-description-glass.minimized::before {
    position: absolute;
    inset: 0;
    border-radius: 28px;

    pointer-events: none;
    z-index: 1;
    padding-top: 0;
    margin-top: 0;
  }

  .work-description-glass.minimized>* {
    position: relative;
    z-index: 2;
    padding-top: 0;
    margin-top: 0;
  }

  .work-description-glass.minimized {
    background: transparent;
    box-shadow: none;
    border: none;
    color: #e2c5c5;
    padding: 0 32px 0 32px;
    font-size: 1.12rem;
    line-height: 1.7;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
    margin-top: 0;
  }

  .expand-prompt {
    color: #e2c5c5;
    font-size: 1.05rem;
    text-align: left;
    font-family: 'Amulya', serif;
    margin-bottom: 0;
    display: block;
  }

  .work-description-glass:not(.minimized) .expand-prompt {
    display: none;
  }

  :root {
    --carousel-radius: 350px;

    --carousel-card-width: 320px;
    --carousel-card-height: 480px;

    --carousel-perspective: 1800px;

    --carousel-transition: 0.7s cubic-bezier(.4, 0, .2, 1);

    --color-primary-blue: #ffffff;
    --color-dark-base: #0f0618;
    --color-accent-light: #838ce5;
    --color-secondary: #ffffff;
    --color-white: #fff;
  }

  .work-flex-row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: auto auto auto auto;
    flex-wrap: wrap;
    gap: 40px;
  }

  .projects-carousel {

    width: var(--carousel-radius);
    height: var(--carousel-radius);
    perspective: var(--carousel-perspective);
    perspective-origin: 50% 50%;
    display: none;
    position: relative;
    align-items: flex-start;
    transition: opacity var(--carousel-transition);
    overflow: visible;
    opacity: 0;
    pointer-events: none;
    margin-top: 100px;
    margin-bottom: 100px;
    justify-content: flex-start;
    margin-left: 85px;
  }

  .projects-carousel.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .carousel-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: var(--carousel-perspective);
  }

  .carousel-card {
    position: absolute;
    display: flex;
    left: 50%;
    top: 50%;
    width: var(--carousel-card-width);
    height: var(--carousel-card-height);
    transform-style: preserve-3d;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--color-white);
    transition:
      transform var(--carousel-transition),
      opacity var(--carousel-transition),
      box-shadow var(--carousel-transition),
      filter var(--carousel-transition);
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    text-align: center;
    justify-content: flex-start;
    will-change: transform, opacity;
    padding-right: 25px;
    padding-left: 25px;
    box-sizing: border-box;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
      inset 0 0 12px rgba(255, 255, 255, 0.3),
      0 0 20px rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .carousel-card.active {

    filter: brightness(1.1) drop-shadow(0 0 9px #b6884c);
    z-index: 2;
  }

  .carousel-card.side {
    opacity: 0.6;
    filter: brightness(0.8);
    box-shadow: 0 2px 8px #ffffff;

  }

  .carousel-card.far {
    opacity: 0.2;
    filter: brightness(0.6);
    box-shadow: none;
  }

  .carousel-card.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .carousel-card h4 {
    color: #b6884c;
    font-size: 1.1rem;
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
  }

  .carousel-card p {
    color: #e2c5c5;
    font-size: 0.8rem;
    text-align: center;
    white-space: normal;
  }

  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    color: #b6884c;
    font-size: 1.8rem;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition:
      background 0.3s ease,
      color 0.3s ease,
      transform 0.2s ease,
      box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    user-select: none;
    pointer-events: auto;
  }

  .carousel-arrow-left {
    left: 105px;
  }

  .carousel-arrow-right {
    right: -290px;
  }

  .carousel-arrow:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #fff;
    box-shadow: 0 6px 24px rgba(182, 136, 76, 0.5);
    transform: scale(1.3);
  }

  .carousel-toggle-btn {
    position: static;
    top: 24px;
    right: 48px;
    z-index: 20;
    background: linear-gradient(90deg, #232a26, #181c1f);
    color: #ffffff;
    border: none;
    border-radius: 24px;
    padding: 12px 32px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 2px 12px #d9c5a0;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    margin-left: auto;
    margin-bottom: 10px;
    display: block;
  }

  .carousel-toggle-btn:hover {
    background: linear-gradient(90deg, #b6884c, #b8860b);
    box-shadow: 0 2px 12px #d9c5a0;
  }

  .carousel-card .card-img img {
    width: 300px;
    height: 100px;
    object-fit: cover;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
      inset 0 0 2px rgba(255, 255, 255, 0.3),
      0 8px 24px rgba(255, 215, 0, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .carousel-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }


  .contact-section-box {
    background: rgba(30, 34, 38, 0.55);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1.5px solid rgba(255, 215, 0, 0.12);
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    margin: 60px 5vw 0 5vw;
    padding: 0 40px 0 40px;
  }

  .contact-para {
    flex: 1 1 0;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e2c5c5;
    font-family: 'contact', sans-serif;
    font-weight: 500;
  }

  .contact-form-container {
    border: 2px solid rgba(255, 215, 0, 0.12);
    border-radius: 32px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px 24px;
    padding: 54px 24px;
  }

  .contact-form {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 18px;
    font-size: 1.08rem;
    font-family: 'Inter', 'Open Sans', sans-serif;
    background: rgba(24, 28, 31, 0.92);
    color: #ffd700;
    border: 1.5px solid #b6884c;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.08);
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
    resize: vertical;
    box-sizing: border-box;
  }

  .contact-form input[type="text"]:focus,
  .contact-form input[type="email"]:focus,
  .contact-form textarea:focus {
    border: 1.5px solid #ffd700;
    box-shadow: 0 0 8px #ffd70033;
    background: rgba(30, 34, 38, 0.98);
    color: #fffbe6;
  }

  .contact-form textarea {
    min-height: 100px;
    max-height: 240px;
  }

  .contact-form button.go-btn {
    width: 70%;
    margin: 0 auto;
    font-size: 1.15rem;
    font-weight: bold;
    border-radius: 14px;
    padding: 14px 0;
    transition:
      background 0.2s,
      color 0.2s,
      box-shadow 0.2s,
      transform 0.5s cubic-bezier(0.2, 0, 0.1, 1);
    box-sizing: border-box;
    display: block
  }

  .contact-form button.go-btn:hover {
    background: linear-gradient(90deg, #b6884c 0%, #ffd700 100%);
    color: #232a26;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.18);
    transform: scale(1.07) translateY(-2px);
  }

  .contact-success {
    color: #34a938;
    border-radius: 10px;
    padding: 12px 18px;
    margin-top: 10px;
    font-size: 1.08rem;
    font-weight: bold;
  }

  .contact-social-icons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 18px 0 12px 0;
  }

  .contact-social-icons a img {
    height: 32px;
    width: 32px;
    border-radius: 6px;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    background: transparent;
    vertical-align: middle;
  }

  footer {
    margin-top: 60px;
    font-size: 1.05rem;
    color: #e2c5c5;
    background: var(--glass-bg);
    padding: 22px 0 18px 0;
    text-align: center;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 -2px 12px rgba(255, 215, 0, 0.08);
  }
}

@media (min-width: 769px) {
  .work-cards .card.landscape-card {
    display: flex !important;
    flex-direction: column !important;
    height: 610px !important;
    min-height: 610px !important;
    max-height: 610px !important;
  }

  .work-cards .card.landscape-card .card-content {
    flex: 1 1 auto;
    width: 100%;
    justify-content: flex-start;
  }

  .work-cards .card.landscape-card .project-card-footer {
    margin-top: auto;
    margin-bottom: 12px;
  }
}

.recruiter-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 215, 0, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff4cf;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: inset 0 0 18px rgba(255, 215, 0, 0.07);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.recruiter-toggle:hover {
  border-color: rgba(255, 215, 0, 0.72);
  background: rgba(255, 215, 0, 0.12);
  transform: translateY(-1px);
}

.recruiter-toggle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
  flex: 0 0 auto;
}

body.recruiter-mode-active .recruiter-toggle {
  margin-right: 18px;
  background: linear-gradient(135deg, #fff0a8, #d59b2b);
  border-color: rgba(255, 240, 168, 0.88);
  color: #181c1f;
}

.recruiter-mode-panel {
  min-height: calc(100vh - 90px);
  padding: 56px 5vw 72px;
  box-sizing: border-box;
}

.recruiter-mode-panel[hidden] {
  display: none;
}

.recruiter-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  color: #f2e7d0;
  font-family: 'Inter', 'Open Sans', sans-serif;
}

.recruiter-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.20);
}

.recruiter-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: #d9c5a0;
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recruiter-intro h1 {
  margin: 0;
  color: #ffd166;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.recruiter-intro p {
  max-width: 780px;
  margin: 16px 0 0;
  color: #e2c5c5;
  font-size: 1.05rem;
  line-height: 1.7;
}

.recruiter-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 430px;
}

.recruiter-actions a,
.recruiter-actions button,
.recruiter-block-head button,
.recruiter-contact button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 215, 0, 0.30);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff4cf;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.recruiter-actions a:hover,
.recruiter-actions button:hover,
.recruiter-block-head button:hover,
.recruiter-contact button:hover {
  background: rgba(255, 215, 0, 0.14);
  border-color: rgba(255, 215, 0, 0.70);
  color: #ffffff;
  transform: translateY(-1px);
}

.recruiter-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 34px;
}

.recruiter-metric {
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-sizing: border-box;
}

.recruiter-metric span {
  display: block;
  margin-bottom: 8px;
  color: #d9c5a0;
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.recruiter-metric strong {
  color: #ffffff;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.recruiter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
  gap: 26px;
  align-items: start;
}

.recruiter-side {
  display: grid;
  gap: 26px;
  align-content: start;
}

.recruiter-block {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 215, 0, 0.18);
}

.recruiter-block-wide {
  min-width: 0;
}

.recruiter-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.recruiter-block-head > span {
  color: #ffd166;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.recruiter-project-list {
  display: grid;
  gap: 14px;
}

.recruiter-subsection {
  margin-top: 28px;
}

.recruiter-subsection .recruiter-block-head {
  margin-bottom: 14px;
}

.recruiter-project {
  display: block;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-left: 4px solid rgba(255, 215, 0, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.recruiter-project:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.40);
  border-left-color: #ffd700;
  transform: translateY(-2px);
}

.recruiter-project-status {
  display: inline-flex;
  margin-bottom: 10px;
  color: #181c1f;
  background: linear-gradient(135deg, #fff0a8, #d59b2b);
  border-radius: 999px;
  padding: 6px 9px;
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recruiter-project h2 {
  margin: 0;
  color: #ffffff;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.recruiter-project p,
.recruiter-contact p {
  margin: 9px 0 0;
  color: #e2c5c5;
  font-size: 0.95rem;
  line-height: 1.55;
}

.recruiter-project-stack {
  display: block;
  margin-top: 12px;
  color: #d9c5a0;
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.45;
}

.recruiter-skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recruiter-skill-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  color: #f2e7d0;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 700;
}

.recruiter-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruiter-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2c5c5;
  font-size: 0.94rem;
  line-height: 1.5;
}

.recruiter-list li:last-child {
  border-bottom: 0;
}

.recruiter-contact-lines {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  color: #d9c5a0;
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.76rem;
  line-height: 1.5;
}

body.recruiter-mode-active .home-bg,
body.recruiter-mode-active .about-section,
body.recruiter-mode-active #work,
body.recruiter-mode-active .section-separator,
body.recruiter-mode-active #contact,
body.recruiter-mode-active footer {
  display: none !important;
}

body.recruiter-mode-active .nav-links-header,
body.recruiter-mode-active .mobile-nav-toggle {
  display: none !important;
}

body.recruiter-mode-active {
  overflow-x: hidden;
}

@media (max-width: 900px) {
  .recruiter-head,
  .recruiter-grid {
    grid-template-columns: 1fr;
  }

  .recruiter-actions {
    justify-content: flex-start;
    max-width: none;
  }

  .recruiter-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-container {
    gap: 10px !important;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .logo {
    height: 34px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .recruiter-toggle {
    flex: 0 1 auto;
    margin-left: 0;
    margin-right: 60px;
    padding: 8px 10px;
    min-height: 36px;
    max-width: 136px;
    font-size: 0.64rem;
  }

  body.recruiter-mode-active .recruiter-toggle {
    margin-right: 12px;
  }

  .recruiter-toggle-dot {
    width: 7px;
    height: 7px;
  }

  .mobile-nav-toggle {
    flex: 0 0 44px;
  }

  .recruiter-mode-panel {
    padding: 34px 20px 52px;
  }

  .recruiter-intro h1 {
    font-size: clamp(2.25rem, 15vw, 4rem);
  }

  .recruiter-metrics {
    grid-template-columns: 1fr;
  }

  .recruiter-block-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .recruiter-actions a,
  .recruiter-actions button,
  .recruiter-block-head button,
  .recruiter-contact button {
    width: 100%;
  }
}

.navbar,
.work-description-glass,
.work-cards .card,
.carousel-card,
.contact-section-box,
.about-section,
.recruiter-toggle,
.recruiter-metric,
.recruiter-project,
.recruiter-skill-cloud span {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .project-tools-track {
    animation: none !important;
    transform: none !important;
  }
}
