/* ===== ROOT ===== */
:root {
  --accentColor: #c2a4ff;
  --backgroundColor: #0b080c;
  --cWidth: calc(100% - 30px);
  --cMaxWidth: 1920px;
  --vh: 100svh;
  font-family: 'Geist', sans-serif;
  scroll-behavior: smooth;
  color: #eae5ec;
  background-color: var(--backgroundColor);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background-color: var(--backgroundColor);
  background-image: 
    radial-gradient(rgba(194, 164, 255, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  overflow-x: hidden;
  max-width: 100vw;
  user-select: none;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accentColor); }
.section-container {
  width: 1300px;
  max-width: calc(100% - 160px);
  margin: auto;
}
@media (max-width: 1600px) { .section-container { width: 1200px; } }
@media (max-width: 1400px) { .section-container { width: 900px; } }
@media (max-width: 900px) { .section-container { width: 500px; max-width: var(--cWidth); } }
@media (min-width: 768px) { :root { --cWidth: 94%; } }

/* ===== LOADING SCREEN ===== */
#loading-screen {
  --loaderAccent: var(--accentColor);
  --loaderAccentGlow: rgba(194, 164, 255, 0.4);
  --loaderRed: #8b5cf6;
  
  position: fixed; inset: 0;
  background-color: var(--backgroundColor);
  background-image: 
    radial-gradient(rgba(194, 164, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  z-index: 999999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease;
  overflow: hidden;
}
.loader-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 124, 255, 0.08) 0%, rgba(84, 0, 255, 0.01) 65%, transparent 80%);
  filter: blur(100px);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  animation: loaderPulse 4s ease-in-out infinite alternate;
}
@keyframes loaderPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 1.3; }
}

/* Viewport HUD brackets */
.hud-corner {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(194, 164, 255, 0.15);
  z-index: 9999995;
  pointer-events: none;
  transition: all 0.5s ease;
}
.hud-tl { top: 35px; left: 35px; border-right: none; border-bottom: none; }
.hud-tr { top: 35px; right: 35px; border-left: none; border-bottom: none; }
.hud-bl { bottom: 35px; left: 35px; border-right: none; border-top: none; }
.hud-br { bottom: 35px; right: 35px; border-left: none; border-top: none; }

/* Side status watermarks on loading */
.loader-side-label {
  position: fixed;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.12);
  z-index: 9999995;
  writing-mode: vertical-rl;
  pointer-events: none;
  user-select: none;
}
.label-left { left: 45px; top: 50%; transform: translateY(-50%) rotate(180deg); }
.label-right { right: 45px; top: 50%; transform: translateY(-50%); }

/* Hide loading side HUD details on small viewports */
@media (max-width: 768px) {
  .hud-corner, .loader-side-label { display: none; }
}

.loading-header-bar {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 30px 4%;
  z-index: 9999999;
}
.loader-title {
  font-weight: 700; font-size: 18px; color: #fff; text-decoration: none;
  letter-spacing: 0.2px;
}
.loading-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #00ff66;
  box-shadow: 0 0 10px #00ff66;
  animation: statusGlow 1.8s ease-in-out infinite;
}
.status-lbl {
  font-size: 10px;
  font-weight: 600;
  color: #00ff66;
  letter-spacing: 2px;
}
@keyframes statusGlow {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 4px #00ff66; }
  50% { opacity: 1; box-shadow: 0 0 12px #00ff66; }
}

.bike-loader-container {
  width: min(440px, 85vw);
  margin-bottom: 40px;
  position: relative;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.bike-loader-container.loader-out {
  opacity: 0;
  transform: translateY(-20px);
}
.bike-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  border-radius: 2px;
}
.bike-progress-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--accentColor));
  box-shadow: 0 0 10px var(--accentColor);
  border-radius: 2px;
  transition: width 0.1s ease;
}
.bike-wrapper {
  position: absolute;
  bottom: -1px;
  left: 0%;
  width: 50px;
  height: 30px;
  color: var(--accentColor);
  filter: drop-shadow(0 0 6px rgba(194, 164, 255, 0.6));
  transition: left 0.1s ease;
}
.bike-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.bike-svg-body {
  animation: engineRumble 0.08s linear infinite;
  transform-origin: center;
}
.spinning-wheel-rear {
  transform-origin: 10px 22px;
  animation: spinWheel 0.4s linear infinite;
}
.spinning-wheel-front {
  transform-origin: 40px 22px;
  animation: spinWheel 0.4s linear infinite;
}
@keyframes spinWheel {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes engineRumble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.8px); }
}

/* Dynamic status log subtitle ticker style */
.loading-status-text {
  margin-top: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 0 6px rgba(194, 164, 255, 0.15);
  text-align: center;
  min-height: 16px;
  transition: all 0.3s ease;
}

.loading-marquee-wrap {
  position: fixed; bottom: 60px; left: 0; right: 0;
  overflow: hidden; white-space: nowrap;
  font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  display: flex;
}
.loading-marquee-inner {
  display: inline-flex; gap: 80px;
  animation: marqueeScroll 8s linear infinite;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.loading-wrap {
  --Lsize: 165px;
  padding: 6px;
  position: relative;
  border-radius: 100px;
  background-color: var(--backgroundColor);
  border: 1px solid rgba(194, 164, 255, 0.15);
  overflow: hidden;
  transition: 0.8s ease-in-out;
  transition-delay: 0.2s;
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.5), 0 0 35px 0px rgba(194, 164, 255, 0.03);
  display: flex; justify-content: center; align-items: center;
  cursor: none;
}
.loading-wrap.loading-clicked {
  transition-delay: 0ms;
  transition-timing-function: cubic-bezier(0.33, 0.11, 1, 0.72);
  min-width: calc(100vw + 5000px);
  border-radius: 5000px;
  min-height: calc(100vh + 500px);
  box-shadow: none;
}
.loading-hover {
  background-color: var(--accentColor);
  width: 250px; height: 120px;
  position: absolute;
  top: var(--mouse-y, 50%); left: var(--mouse-x, 50%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(30px);
  opacity: 0; transition: opacity 500ms;
  pointer-events: none;
}
.loading-wrap:hover .loading-hover { opacity: 1; }
.loading-wrap.loading-clicked .loading-hover { opacity: 0; }
.loading-button {
  padding: 20px 50px;
  border-radius: 100px;
  background-color: var(--backgroundColor);
  overflow: hidden;
  font-size: 18px; font-weight: 700;
  position: relative; z-index: 9;
  color: var(--accentColor);
}
.loading-button::before {
  content: '';
  background-color: #fff;
  top: var(--mouse-y, 50%); left: var(--mouse-x, 50%);
  border-radius: 50%;
  width: 60px; height: 60px;
  opacity: 0;
  position: absolute; z-index: 99;
  filter: blur(60px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.loading-button:hover::before { opacity: 1; }
.loading-content { overflow: hidden; text-transform: uppercase; }
.loading-content-in { width: var(--Lsize); overflow: hidden; position: relative; }
.loading-content span { font-weight: 800; color: #fff; }
.loading-content2 {
  letter-spacing: 2px; text-transform: uppercase;
  width: var(--Lsize); text-align: center;
  transition: 1s; max-width: var(--Lsize);
  display: flex; justify-content: center; align-items: center;
  font-weight: 900;
  color: var(--accentColor);
  text-shadow: 0 0 10px rgba(194, 164, 255, 0.4);
}
.loading-wrap.loading-clicked .loading-content2 { opacity: 0; transition: 0.5s; }
.loading-box {
  position: absolute; right: 0; top: 50%;
  transform: translate(100%, -50%);
  width: 15px; height: 25px;
  background-color: var(--accentColor);
  animation: blink 1s linear infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.loading-complete .loading-content2 { display: flex; }
.loading-complete .loading-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

/* ===== CUSTOM CURSOR ===== */
#cursor {
  --size: 50px;
  position: fixed;
  top: calc(var(--size) / -2);
  left: calc(var(--size) / -2);
  width: var(--size); height: var(--size);
  border-radius: 50px;
  pointer-events: none;
  z-index: 99999;
  background-color: #e6c3ff;
  box-shadow: 0 0 30px 0 rgb(175,131,255);
  mix-blend-mode: difference;
  will-change: transform;
}
#cursor.cursor-disable { --size: 0px; }
@media (max-width: 600px) { #cursor { --size: 0px; } }

/* ===== NAVBAR ===== */
.header {
  display: flex;
  width: var(--cWidth); max-width: var(--cMaxWidth);
  justify-content: space-between;
  padding: 35px 0;
  position: fixed; left: 50%; transform: translateX(-50%);
  top: 0; z-index: 9999;
}
.navbar-title { font-weight: 700; font-size: 18px; letter-spacing: 0.2px; }
.navbar-connect {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px; letter-spacing: 1px; font-weight: 500;
  display: none;
}
@media (min-width: 1200px) { .navbar-connect { display: block; } }
.header ul {
  list-style: none; display: flex;
  column-gap: 40px; align-items: center;
  font-size: 15px;
}
.header ul li { letter-spacing: 1px; color: #eae5ec; font-weight: 600; cursor: pointer; }

/* Hover Link */
.hover-link { position: relative; display: flex; text-wrap: nowrap; overflow: hidden; }
.hover-in { position: relative; transition: 0.3s; }
.hover-in div { display: flex; position: absolute; top: 100%; left: 0; }
.hover-link:hover .hover-in { transform: translateY(-100%); color: var(--accentColor); }

/* Ambient background glow layers */
.landing-circle1 {
  top: -10%; left: -10%; z-index: -1; position: fixed;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168, 124, 255, 0.15) 0%, rgba(84, 0, 255, 0.04) 50%, transparent 70%);
  filter: blur(100px); border-radius: 50%;
  animation: ambientFloat1 25s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ambientFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, 12%) scale(1.1); }
  100% { transform: translate(-4%, 4%) scale(0.9); }
}
.landing-circle2 {
  bottom: -10%; right: -10%; z-index: -1; position: fixed;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(251, 141, 255, 0.1) 0%, rgba(194, 164, 255, 0.02) 60%, transparent 80%);
  filter: blur(120px); border-radius: 50%;
  animation: ambientFloat2 30s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ambientFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10%, -8%) scale(0.9); }
  100% { transform: translate(6%, 4%) scale(1.12); }
}
.nav-fade {
  position: fixed; top: 0; width: 100%; height: 130px;
  background-image: linear-gradient(0deg, transparent, var(--backgroundColor) 70%);
  pointer-events: none; z-index: 12;
}

/* ===== SOCIAL ICONS ===== */
.icons-section {
  position: fixed;
  width: var(--cWidth); max-width: var(--cMaxWidth);
  bottom: 0; z-index: 99; left: 50%; transform: translateX(-50%);
}
.social-icons {
  position: absolute; left: -20px; bottom: 20px;
  display: flex; flex-direction: column; gap: 20px;
  z-index: 999; padding: 10px;
}
.social-icons span { width: 50px; height: 50px; position: relative; display: flex; }
.social-icons a {
  --siLeft: 50%; --siTop: 50%;
  position: absolute;
  left: var(--siLeft); top: var(--siTop);
  transform: translate(-50%, -50%);
  display: flex; font-size: 28px;
  will-change: left, top;
  transition: transform 0.3s ease-out;
}
.social-icons:hover { color: var(--accentColor); }
.resume-button {
  position: absolute; z-index: 99;
  display: flex; gap: 5px;
  bottom: 40px; right: 0;
  letter-spacing: 4px; font-size: 20px; line-height: 20px; font-weight: 600;
  color: #5e5e5e; cursor: pointer; transition: 0.5s;
  text-wrap: nowrap;
}
.resume-button:hover { color: #fff; }

/* ===== LANDING ===== */
.landing-section {
  width: 100%; max-width: var(--cMaxWidth); margin: auto;
  position: relative; height: var(--vh);
}
.landing-container {
  width: var(--cWidth); margin: auto;
  height: 100%; position: relative; max-width: var(--cMaxWidth);
}
.landing-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11vw;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.015);
  pointer-events: none;
  z-index: 2;
  user-select: none;
  white-space: nowrap;
  animation: watermarkFloat 12s ease-in-out infinite alternate;
}
@keyframes watermarkFloat {
  0% { transform: translate(-50%, -50%) translateY(0) scale(1); }
  50% { transform: translate(-50%, -50%) translateY(-15px) scale(1.02); }
  100% { transform: translate(-50%, -50%) translateY(5px) scale(0.98); }
}
.landing-image-container {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 450px;
  height: 550px;
  z-index: 8;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.landing-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
  animation: floatHero 6s ease-in-out infinite;
}
@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.landing-intro {
  position: absolute; z-index: 9;
  top: 50%; left: 11%; transform: translateY(-50%);
}
.landing-intro h2 {
  margin: 0; color: var(--accentColor);
  font-size: 38px; font-weight: 300; letter-spacing: 2px;
}
.landing-intro h1 {
  margin: 0; letter-spacing: 2px;
  font-size: 92px; line-height: 86px; font-weight: 800; color: #fff;
}
.landing-intro h1 span {
  display: block;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: var(--accentColor);
  line-height: 1.1;
  margin-top: 10px;
}

/* ===== ABOUT ===== */
.about-section {
  display: flex;
  align-items: center;
  position: relative;
  opacity: 1;
  height: var(--vh);
  width: var(--cWidth);
  max-width: 1920px;
  margin: auto;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
}
.about-visual {
  width: 45%;
  flex-shrink: 0;
}
.about-me {
  width: 50%;
}
.about-me h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 400;
  color: var(--accentColor);
  margin-bottom: 10px;
}
.about-me h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}
.about-me h2 span {
  color: var(--accentColor);
}
.about-me p {
  font-size: 16px;
  font-weight: 400;
  color: #eae5ec;
  line-height: 1.6;
  margin-bottom: 15px;
}
.about-me p.about-sub {
  font-size: 15px;
  font-weight: 400;
  color: #adacac;
  line-height: 1.6;
  margin-top: 10px;
}

/* Terminal Card Styling */
.terminal-card {
  background: rgba(15, 11, 20, 0.6);
  border: 1px solid rgba(194, 164, 255, 0.15);
  border-radius: 12px;
  padding: 24px;
  font-family: 'Courier New', Courier, monospace;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(194, 164, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(194, 164, 255, 0.1);
}
.terminal-dots {
  display: flex;
  gap: 8px;
}
.terminal-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }
.terminal-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Geist', sans-serif;
  letter-spacing: 0.5px;
}
.terminal-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.term-row {
  font-size: 14px;
  line-height: 1.5;
  color: #eae5ec;
}
.term-lbl {
  color: var(--accentColor);
  font-weight: bold;
  margin-right: 8px;
}
.term-val {
  color: #eae5ec;
}
.state-active {
  color: #00ff66;
  text-shadow: 0 0 8px rgba(0, 255, 102, 0.3);
  font-weight: bold;
}
.term-prompt {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #00e5ff;
  font-size: 14px;
}
.term-cursor {
  color: #00ff66;
  font-weight: bold;
  animation: termCursorBlink 1s infinite step-end;
}
.term-typed {
  color: #eae5ec;
}
@keyframes termCursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== WHAT I DO ===== */
.whatIDO {
  display: flex; align-items: center; justify-content: center; place-items: center;
  height: 100vh; width: var(--cWidth); max-width: 1920px; margin: auto; z-index: 9;
}
.what-box { width: 50%; display: flex; justify-content: center; position: relative; z-index: 9; }
.what-box h2 {
  font-size: calc(4vw + 25px); line-height: calc(4vw + 20px);
  font-weight: 600; margin-right: 10%; margin-bottom: 100px;
}
.hat-h2 { font-style: italic; }
.do-h2 { color: var(--accentColor); }
.what-box-in {
  flex-direction: column; height: 500px; margin-left: 80px;
  position: relative; display: flex;
}
.what-content {
  width: 450px; height: 33%; min-height: 50%;
  transition: 0.5s; position: relative;
  padding: 50px; box-sizing: border-box; cursor: default;
}
.what-content:hover, .what-content-active { min-height: 67%; padding: 40px 50px; }
.what-content:hover ~ .what-content,
.what-box-in:hover .what-content:not(:hover),
.what-content.what-sibling { min-height: 33%; padding: 10px 50px; }
.what-content h3 { font-size: 35px; letter-spacing: 1px; margin: 0; }
.what-content p { font-size: 14px; line-height: 18px; font-weight: 200; letter-spacing: 0.7px; }
.what-content h4 { font-weight: 300; letter-spacing: 1px; margin: 0; font-size: 14px; opacity: 0.3; }
.what-content-in { opacity: 0; animation: whatFlicker 0.5s 1 forwards; animation-delay: 1s; }
@keyframes whatFlicker {
  0%,25%,35%,60% { opacity: 0; }
  30%,50%,40%,100% { opacity: 1; }
}
.what-content::before, .what-corner::before, .what-content::after, .what-corner::after {
  content: ''; width: 10px; height: 10px; position: absolute;
  border: 4px solid #fff; opacity: 0;
  animation: whatCorners 0.2s 1 forwards; animation-delay: 0.5s;
}
@keyframes whatCorners { 100% { opacity: 1; } }
.what-content::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.what-corner::before { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.what-content::after { bottom: -2px; left: -2px; border-top: none; border-right: none; }
.what-corner::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.what-arrow {
  position: absolute; bottom: 20px; right: 20px;
  width: 25px; height: 25px; border: 1px solid #fff;
}
.what-arrow::before {
  content: ''; position: absolute; top: 40%; left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-left: 1px solid #fff; border-bottom: 1px solid #fff;
  transition: 0.5s; width: 10px; height: 10px;
}
.what-content:hover .what-arrow::before, .what-content-active .what-arrow::before {
  transform: translate(-50%, -20%) rotate(-225deg);
}
.what-border1 {
  position: absolute; top: 0; width: 100%; left: 50%; transform: translateX(-50%);
  height: 100%; transition: 0.5s; max-width: 0%; overflow: hidden; opacity: 0.8;
  animation: whatBorders 1.2s 1 forwards;
}
.what-border1 svg { position: absolute; left: 50%; transform: translateX(-50%); width: 450px; }
.what-border2 {
  position: absolute; top: 50%; width: 100%; left: 0; transform: translateY(-50%);
  height: 100%; max-height: 0%; overflow: hidden; transition: 0.5s; opacity: 0.8;
  animation: whatBorders 1.2s 1 forwards;
}
.what-border2 svg { height: 500px; top: 50%; transform: translateY(-50%); position: absolute; }
.what-content-in { height: 100%; overflow: hidden; }
.what-content-in h5 {
  font-weight: 300; opacity: 0.5; font-size: 12px; letter-spacing: 1px; margin-bottom: 5px;
}
@keyframes whatBorders {
  80% { opacity: 0.8; }
  100% { max-height: 100%; max-width: 100%; opacity: 0.2; }
}
.what-content-flex { display: flex; gap: 5px; flex-wrap: wrap; }
.what-tags {
  font-size: 13px; font-weight: 400; padding: 2px 7px;
  background-color: rgba(255,255,255,0.15); border: 1px solid #ffffff50; border-radius: 30px;
}
.what-corner { position: absolute; top: 0; right: 0; bottom: 0; width: 0; }

/* ===== CAREER ===== */
.career-section {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; position: relative; height: auto; margin: auto;
  margin-bottom: 250px; padding: 120px 0;
}
.career-section h2 {
  font-size: 70px; line-height: 70px; font-weight: 400; text-align: center;
  background: linear-gradient(0deg, #7f40ff, #ffffff);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  color: transparent; margin-top: 50px; margin-bottom: 90px;
}
.career-section h2 span { font-weight: 300; }
.career-info { position: relative; display: flex; flex-direction: column; margin: 0 auto; }
.career-info-box { display: flex; justify-content: space-between; margin-bottom: 50px; }
.career-info-box p { width: 40%; font-size: 18px; font-weight: 300; margin: 0; }
.career-info-in { display: flex; width: 40%; justify-content: space-between; gap: 50px; }
.career-info h3 { font-size: 48px; margin: 0; font-weight: 500; line-height: 45px; white-space: nowrap; }
.career-info h4 { font-size: 33px; line-height: 30px; letter-spacing: 0.8px; font-weight: 500; margin: 0; }
.career-info h5 { font-weight: 400; letter-spacing: 0.7px; font-size: 20px; margin: 10px 0; color: var(--accentColor); }
.career-timeline {
  position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 0; max-height: 100%;
  background-image: linear-gradient(to top, #aa42ff 20%, var(--accentColor) 50%, transparent 95%);
  transition: height 1.5s ease;
}
.career-timeline.active { height: calc(100% + 50px); }
.career-dot {
  position: absolute; bottom: 0; left: 50%;
  background-color: #aa42ff; width: 12px; height: 12px; border-radius: 50px;
  box-shadow: 0 0 10px rgba(170, 66, 255, 0.5), 0 0 25px rgba(170, 66, 255, 0.3);
  animation: timelinePulse 2.5s ease-in-out infinite;
}
@keyframes timelinePulse {
  0%, 100% {
    transform: translate(-50%, 50%) scale(1);
    box-shadow: 0 0 10px rgba(170, 66, 255, 0.5), 0 0 25px rgba(170, 66, 255, 0.3);
  }
  50% {
    transform: translate(-50%, 50%) scale(1.2);
    box-shadow: 0 0 20px rgba(170, 66, 255, 0.8), 0 0 45px rgba(170, 66, 255, 0.5);
  }
}

/* ===== WORK (horizontal scroll) ===== */
.work-section {
  height: 100vh; box-sizing: border-box;
  will-change: transform; overflow: hidden;
  position: relative;
}
.work-container {
  margin: auto; display: flex; flex-direction: column;
  height: 100%; align-content: stretch;
}
.work-section h2 { margin-top: 100px; font-size: 70px; font-weight: 500; }
.work-section h2 span { color: var(--accentColor); }
.work-flex {
  width: 100%; display: flex; height: 100%;
  margin-left: -80px; padding-right: 120px; position: relative;
}
.work-flex::before, .work-flex::after {
  content: ''; width: calc(50000vw); height: 1px;
  background-color: #363636; position: absolute;
  left: 50%; top: 0; transform: translateX(-50%);
}
.work-flex::after { top: 100%; }
.work-box {
  padding: 50px 40px; display: flex; flex-direction: column;
  width: 580px; box-sizing: border-box;
  flex-shrink: 0;
  gap: 25px; justify-content: start;
  background: rgba(15, 11, 20, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}
/* Individual Neon Accents Per Card */
.work-box:nth-child(1) {
  --projGlow: rgba(0, 255, 120, 0.15);
  --projAccent: #00ff78;
}
.work-box:nth-child(2) {
  --projGlow: rgba(194, 164, 255, 0.2);
  --projAccent: #c2a4ff;
}
.work-box:nth-child(3) {
  --projGlow: rgba(0, 229, 255, 0.15);
  --projAccent: #00e5ff;
}
.work-box:nth-child(4) {
  --projGlow: rgba(255, 107, 107, 0.15);
  --projAccent: #ff6b6b;
}
.work-box:nth-child(5) {
  --projGlow: rgba(255, 215, 0, 0.15);
  --projAccent: #ffd700;
}

.work-box:hover {
  transform: translateY(-15px);
  border-color: var(--projAccent);
  background: radial-gradient(circle at 50% 0%, var(--projGlow) 0%, rgba(15, 11, 20, 0.7) 70%);
  box-shadow: 0 25px 50px var(--projGlow), 0 0 30px rgba(15, 11, 20, 0.03);
}
.work-flex .work-box:nth-child(even) { flex-direction: column-reverse; }

.work-decal {
  font-family: monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  margin-bottom: 2px;
  transition: all 0.3s ease;
}
.work-box:hover .work-decal {
  color: var(--projAccent);
  text-shadow: 0 0 8px var(--projGlow);
}

.work-title { justify-content: space-between; display: flex; width: 100%; margin-bottom: 10px; }
.work-title > div { text-align: right; }
.work-title h3 { font-size: 50px; line-height: 50px; margin: 0; font-weight: 600; color: var(--projAccent); transition: all 0.3s ease; }
.work-box:hover .work-title h3 { text-shadow: 0 0 10px var(--projGlow); }
.work-info h4 { font-size: 18px; font-weight: 400; margin: 0; }
.work-info p { font-weight: 200; color: #adacac; margin: 0; margin-top: 3px; }
.work-info > p { width: 90%; }
.work-image { display: flex; width: 100%; justify-content: center; }
.work-image-in { position: relative; overflow: hidden; border-radius: 16px; width: 100%; display: flex; justify-content: center; }
.work-image img {
  max-width: 100%; max-height: 350px; display: block;
  background-color: #1a1a1a; min-height: 200px; min-width: 400px;
}

.work-img-placeholder {
  width: 500px; max-width: 100%; height: 270px;
  background: #0c0812;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  font-family: 'Geist', sans-serif;
  color: #eae5ec;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.7);
}
.work-box:hover .work-img-placeholder {
  transform: scale(1.03);
  border-color: var(--projAccent);
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.8), 0 0 20px var(--projGlow);
}

/* Custom visual components nested in mockup placeholders */
.mock-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}
.mock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 6px currentColor;
}
.mock-dot.purple { color: #c2a4ff; background-color: #c2a4ff; }
.mock-dot.green { color: #00ff78; background-color: #00ff78; }
.mock-dot.cyan { color: #00e5ff; background-color: #00e5ff; }
.mock-dot.sunset { color: #ff6b6b; background-color: #ff6b6b; }
.mock-dot.gold { color: #ffd700; background-color: #ffd700; }

.mock-lbl {
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}

.mock-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  position: relative;
  width: 100%;
}

.mock-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 8px;
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.25);
}

.mock-data-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.mock-stat {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.mock-stat-lbl {
  font-size: 8px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
}
.mock-stat-val {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.mock-stat-val .unit {
  font-size: 9px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}
.text-violet { color: #c2a4ff; }
.text-green { color: #00ff78; }
.text-gold { color: #ffd700; }
.clinic-pulse {
  color: #c2a4ff;
  animation: ratePulse 1.5s ease-in-out infinite;
}
@keyframes ratePulse {
  0%, 100% { opacity: 0.8; text-shadow: none; }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(194, 164, 255, 0.6); }
}

/* ECG Track (Card 1) */
.ecg-track {
  width: 100%;
  height: 60px;
  position: relative;
  background-color: rgba(194, 164, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.ecg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 10px 10px;
}
.ecg-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ecg-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawEcg 4s linear infinite;
}
@keyframes drawEcg {
  to { stroke-dashoffset: 0; }
}

/* Radar (Card 2) */
.radar-container {
  width: 100%;
  height: 85px;
  position: relative;
  background-color: rgba(0, 255, 120, 0.01);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar-grid {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 120, 0.08);
}
.radar-grid::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 255, 120, 0.05);
}
.radar-grid::after {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 120, 0.03);
}
.radar-sweep {
  position: absolute;
  width: 90px;
  height: 90px;
  background: conic-gradient(from 0deg, rgba(0, 255, 120, 0.15) 0deg, transparent 90deg);
  border-radius: 50%;
  transform-origin: center;
  animation: radarSweep 3s linear infinite;
}
@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.radar-target {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #00ff78;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff78;
}
.radar-target.target-1 { top: 30%; left: 40%; animation: targetGlow 1.2s infinite; }
.radar-target.target-2 { top: 60%; left: 65%; animation: targetGlow 1.8s infinite; animation-delay: 0.5s; }
@keyframes targetGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 1; }
}

/* To-Do List Mockup (Card 3) */
.todo-list-mock {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.todo-item-mock {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.45);
}
.todo-item-mock.checked {
  color: #00e5ff;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
}
.checkbox-mock {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #00e5ff;
}
.todo-item-mock.checked .checkbox-mock {
  border-color: #00e5ff;
  background-color: rgba(0, 229, 255, 0.1);
}
.progress-bar-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.progress-lbl {
  font-size: 8px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.25);
  font-family: monospace;
}
.progress-bar-track {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.02);
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #0099ff, #00e5ff);
  box-shadow: 0 0 10px #00e5ff;
  border-radius: 4px;
  width: 66%;
  animation: todoProgressPulse 2s infinite alternate;
}
@keyframes todoProgressPulse {
  0% { filter: drop-shadow(0 0 2px #00e5ff); }
  100% { filter: drop-shadow(0 0 8px #00e5ff); }
}

/* MENU mock filter UI (Card 4) */
.menu-categories-mock {
  display: flex;
  gap: 6px;
  width: 100%;
  justify-content: start;
}
.cat-pill {
  font-size: 8px;
  padding: 3px 8px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-family: monospace;
}
.cat-pill.active {
  background-color: rgba(255, 107, 107, 0.12);
  border-color: #ff6b6b;
  color: #ff6b6b;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.2);
}
.menu-cards-mock {
  display: flex;
  gap: 12px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.menu-card-mock {
  flex-shrink: 0;
  width: 130px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  display: flex;
  padding: 8px;
  gap: 8px;
}
.menu-card-mock.offset-card {
  opacity: 0.45;
  transform: scale(0.95);
  transform-origin: left center;
}
.card-img-mock {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 107, 107, 0.02));
  border-radius: 4px;
  border: 1px solid rgba(255, 107, 107, 0.15);
  transition: all 0.3s ease;
}
.work-box:hover .card-img-mock {
  border-color: #ff6b6b;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
}
.card-text-mock {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
  justify-content: center;
}
.card-title-mock {
  width: 45px;
  height: 6px;
  background-color: rgba(255, 107, 107, 0.4);
  border-radius: 2px;
}
.card-desc-mock {
  width: 30px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* Englisho Equalizer (Card 5) */
.equalizer-container {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  background-color: rgba(255, 215, 0, 0.01);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 8px;
}
.eq-bar {
  flex-grow: 1;
  max-width: 8px;
  background: linear-gradient(to top, rgba(255, 215, 0, 0.2) 20%, #ffd700 80%);
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.2);
  height: 15%;
  transition: height 0.15s ease;
}
.work-box:hover .eq-bar.bar-1 { animation: eqPulse 1.2s infinite ease-in-out alternate; }
.work-box:hover .eq-bar.bar-2 { animation: eqPulse 0.8s infinite ease-in-out alternate; animation-delay: 0.1s; }
.work-box:hover .eq-bar.bar-3 { animation: eqPulse 1.5s infinite ease-in-out alternate; animation-delay: 0.3s; }
.work-box:hover .eq-bar.bar-4 { animation: eqPulse 1.0s infinite ease-in-out alternate; animation-delay: 0.15s; }
.work-box:hover .eq-bar.bar-5 { animation: eqPulse 0.7s infinite ease-in-out alternate; animation-delay: 0.4s; }
.work-box:hover .eq-bar.bar-6 { animation: eqPulse 1.3s infinite ease-in-out alternate; animation-delay: 0.25s; }
.work-box:hover .eq-bar.bar-7 { animation: eqPulse 0.9s infinite ease-in-out alternate; animation-delay: 0.05s; }
.work-box:hover .eq-bar.bar-8 { animation: eqPulse 1.1s infinite ease-in-out alternate; animation-delay: 0.35s; }

@keyframes eqPulse {
  0% { height: 15%; }
  100% { height: 85%; }
}
.pronunciation-gauge {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.gauge-lbl {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
}
.gauge-val {
  font-size: 10px;
  font-weight: 700;
  font-family: monospace;
}

.work-link {
  position: absolute; bottom: 16px; right: 16px;
  background-color: var(--backgroundColor); width: 44px;
  border-radius: 50px; height: 44px; display: flex;
  justify-content: center; align-items: center; font-size: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.3;
  z-index: 10;
}
.work-box:hover .work-link {
  opacity: 0.85;
  border-color: var(--projAccent);
  color: var(--projAccent);
  box-shadow: 0 4px 20px var(--projGlow);
}
.work-link:hover {
  opacity: 1 !important;
  transform: scale(1.1);
  background-color: var(--projAccent);
  color: var(--backgroundColor) !important;
}

/* ===== TECH STACK (marquee rows) ===== */
.techstack {
  width: 100%; position: relative; height: var(--vh);
  margin: auto; margin-top: 50px; margin-bottom: -100px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.techstack h2 {
  font-size: 80px; text-align: center; font-weight: 400;
  text-transform: uppercase; margin-bottom: 40px; letter-spacing: 4px;
}
.tech-marquee-row { width: 100%; overflow: hidden; padding: 12px 0; }
.tech-marquee-inner {
  display: inline-flex; gap: 30px; white-space: nowrap;
  animation: techScroll 18s linear infinite;
}
.tech-marquee-inner.reverse { animation-direction: reverse; animation-duration: 22s; }
.tech-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 24px; border: 1px solid #2a2a2a; border-radius: 50px;
  font-size: 15px; font-weight: 300; letter-spacing: 1px;
  flex-shrink: 0;
}
.tech-dot { width: 8px; height: 8px; border-radius: 50%; background-color: var(--accentColor); }
@keyframes techScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== CONTACT ===== */
.contact-section { margin: auto; padding-bottom: 100px; margin-top: 100px; }
.contact-section h3 { font-size: 60px; font-weight: 400; text-transform: uppercase; margin: 0; }
.contact-flex { display: flex; justify-content: space-between; }
.contact-flex h4 { font-weight: 500; margin: 0; opacity: 0.6; }
.contact-box { display: flex; flex-direction: column; }
.contact-flex p { margin-top: 10px; margin-bottom: 20px; }
a.contact-social { font-size: 25px; border-bottom: 1px solid #ccc; }
.contact-box h2 { font-weight: 400; font-size: 23px; margin: 0; }
.contact-box h2 span { color: var(--accentColor); }
.contact-box h5 { font-size: 20px; font-weight: 500; display: flex; gap: 10px; opacity: 0.5; margin-top: 10px; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ===== GSAP-like smooth scroll wrapper ===== */
html { scroll-behavior: smooth; }
.smooth-page { overflow-y: scroll; height: 100vh; }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .landing-intro {
    top: 15%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
  }
  .landing-intro h1 {
    font-size: 64px;
    line-height: 60px;
  }
  .landing-intro h1 span {
    font-size: 32px;
  }
  .certificates-section h2 {
    font-size: 45px;
    line-height: 48px;
    margin-bottom: 40px;
  }
  .certificates-marquee-container {
    overflow-x: auto;
    padding: 10px 0 30px 0;
    -webkit-overflow-scrolling: touch;
  }
  .certificates-marquee-container::before,
  .certificates-marquee-container::after {
    display: none;
  }
  .certificates-marquee-inner {
    animation: none;
    padding: 0 30px;
  }
  .certificate-card {
    width: 320px;
    height: 200px;
    padding: 20px;
  }
  .cert-body h3 {
    font-size: 18px;
  }
  .landing-image-container {
    width: 320px;
    height: 400px;
    top: 55%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
  .landing-watermark {
    font-size: 14vw;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.01);
  }
  .about-section { height: auto; justify-content: center; padding: 60px 0; }
  .about-container { flex-direction: column; gap: 40px; }
  .about-visual { width: 100%; max-width: 500px; margin: 0 auto; }
  .about-me { width: 100%; max-width: calc(100% - 70px); text-align: center; }
  .about-me h2 { font-size: 28px; }
  .about-me p { font-size: 16px; line-height: 1.6; }
  .whatIDO { flex-direction: column; height: auto; padding: 50px 0; }
  .what-box { width: 100%; max-width: calc(100% - 50px); }
  .what-box-in { margin-left: 0; height: 450px; }
  .what-content { width: 100%; }
  .career-section { padding-top: 220px; margin-top: -200px; margin-bottom: 0; }
  .work-section { height: auto; overflow: visible; }
  .work-flex { flex-direction: column; margin-left: 0; padding-right: 0; height: auto; }
  .work-box { width: 100%; max-width: 600px; margin: auto; border-right: none; border-bottom: 1px solid #363636; }
  .work-flex .work-box:nth-child(even) { flex-direction: column; }
  .techstack { height: auto; padding: 60px 0; }
  .techstack h2 { font-size: 40px; }
  .contact-flex { flex-direction: column; gap: 40px; }
}
@media (max-width: 900px) {
  .career-info-box { flex-direction: column; gap: 10px; margin-bottom: 70px; }
  .career-info-in, .career-info-box p { width: 100%; padding-left: 10%; box-sizing: border-box; }
  .career-timeline { left: 0; }
  .career-section h2 { font-size: 45px; line-height: 45px; }
}
@media (max-width: 600px) {
  .landing-image-container {
    width: 240px;
    height: 300px;
  }
  .landing-intro h2 { font-size: 18px; }
  .landing-intro h1 { font-size: 48px; line-height: 44px; }
  .landing-intro h1 span { font-size: 24px; }
  .landing-info h2 { font-size: 35px; line-height: 38px; }
  h2.landing-info-h2 { font-size: 38px; }
  .header ul { column-gap: 30px; font-size: 13px; }
  .header { padding: 20px 0; }
}

/* ===== FUTURISTIC CERTIFICATES CAROUSEL ===== */
.certificates-section {
  width: 100%;
  padding: 120px 0;
  margin-bottom: 120px;
  overflow: hidden;
  position: relative;
}
.certificates-section h2 {
  font-size: 70px;
  line-height: 75px;
  font-weight: 400;
  text-align: center;
  background: linear-gradient(0deg, #7f40ff, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 70px;
}
.certificates-section h2 span {
  font-weight: 300;
}
.certificates-marquee-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  cursor: grab;
  user-select: none;
}
.certificates-marquee-container.grabbing {
  cursor: grabbing;
}
/* Left and right fade gradients to blend the scrolling carousel edges */
.certificates-marquee-container::before,
.certificates-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 5;
  pointer-events: none;
}
.certificates-marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--backgroundColor) 0%, transparent 100%);
}
.certificates-marquee-container::after {
  right: 0;
  background: linear-gradient(-90deg, var(--backgroundColor) 0%, transparent 100%);
}
.certificates-marquee-inner {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  width: max-content;
  will-change: scroll-position;
}
.certificate-card {
  width: 420px;
  height: 220px;
  flex-shrink: 0;
  background: rgba(15, 11, 20, 0.65);
  border: 1px solid rgba(194, 164, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  user-select: none;
  -webkit-user-drag: none;
}
.certificate-card * {
  user-select: none;
  -webkit-user-drag: none;
}
/* Cyberpunk corner brackets */
.certificate-card::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid rgba(194, 164, 255, 0.3);
  border-right: 1.5px solid rgba(194, 164, 255, 0.3);
  transition: all 0.3s ease;
}
.certificate-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(22, 16, 30, 0.85);
  border-color: rgba(194, 164, 255, 0.35);
  box-shadow: 0 15px 40px rgba(194, 164, 255, 0.12), 0 0 20px rgba(194, 164, 255, 0.05);
}
.certificate-card:hover::after {
  border-color: var(--accentColor);
  transform: translate(2px, -2px);
}
.cert-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cert-num {
  font-size: 32px;
  font-weight: 800;
  color: rgba(194, 164, 255, 0.15);
  line-height: 1;
  transition: color 0.3s ease;
}
.certificate-card:hover .cert-num {
  color: var(--accentColor);
  text-shadow: 0 0 8px rgba(194, 164, 255, 0.5);
}
.cert-verify {
  font-size: 13px;
  font-weight: 600;
  color: #eae5ec;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.certificate-card:hover .cert-verify {
  background: var(--accentColor);
  color: #0b080c;
  border-color: var(--accentColor);
  box-shadow: 0 0 12px rgba(194, 164, 255, 0.4);
}
.cert-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  white-space: normal;
}
.cert-body h4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--accentColor);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.cert-body p {
  font-size: 14px;
  font-weight: 300;
  color: #adacac;
  line-height: 1.4;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ===== GLOBAL BACKGROUND WATERMARKS ===== */
.side-watermark {
  position: fixed;
  font-size: 8.5vh;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.006);
  pointer-events: none;
  z-index: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  user-select: none;
  opacity: 0.8;
}
.watermark-left {
  left: 3%;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.watermark-right {
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1400px) {
  .side-watermark {
    font-size: 6.5vh;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.004);
  }
}
@media (max-width: 1200px) {
  .side-watermark {
    display: none; /* Hide on smaller screens to prevent overcrowding */
  }
}