
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
/* NAV (base desktop & shared) */
.site-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background: rgba(8,10,12,0.6);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
}
.brand .logo {
  color: #00e6d6;
  text-decoration: none;
  font-weight: 700;
}

/* desktop links */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #e6edf3;
  text-decoration: none;
  padding: 6px 8px;
}

/* hamburger (hidden on desktop) */
.hamburger {
  background: transparent;
  position: relative;
  position: absolute;top: 20px; right: 20px;
  border: none;
  display: none; /* shown on small screens via media query */
  cursor: pointer;
  padding: 8px;
}
.hamburger:focus { outline: 2px solid rgba(0,230,214,0.2); }
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #e6edf3;
  margin: 4px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.desktop-nav {
  display:flex; flex-direction: row;
  margin: 4px 0;
  justify-content: space-between;
}
/* mobile menu (hidden by default) */
.mobile-menu {
  display: none;
  position: absolute;top: 20px; right: 20px;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 14px 20px;
}
.mobile-menu ul { list-style: none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.mobile-menu a { color: #e6edf3; text-decoration:none; font-weight:600; }

/* EXPERIENCE: layout & mobile behavior */
#experience {
  padding: 100px 20px 60px; /* top padding accounts for fixed nav */
  max-width: 1100px;
  margin: 0 auto;
}
.experience-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap:wrap;
}
.experience-buttons {
  display:flex;
  gap: 10px;
  flex-wrap:wrap; /* ensures buttons remain visible on small screens */
}
.experience-buttons {
  background: transparent;
  border: 1px solid rgba(0,230,214,0.12);
  color: #00e6d6;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

/* cards layout: desktop side-by-side, mobile stacked */
.experience-details-column {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.card-summary {
  flex: 1 1 calc(33% - 18px); /* 3 columns on desktop */
  min-width: 260px;
  background: linear-gradient(180deg, rgba(7,10,12,0.9), rgba(10,12,14,0.85));
  border-radius: 12px;
  padding: 18px;
  box-sizing: border-box;
  color: #cbd5d9;
  border: 1px solid rgba(0,230,214,0.04);
}

/* card content */
.card-title { font-size: 1.25rem; color: #00e6d6; font-weight:700; margin-bottom:8px; }
.card-date { font-size: .95rem; color: #94a3b8; margin-bottom:10px; }
.card-list { margin-top:8px; padding-left: 18px; }

/* MOBILE RULES: screens under 768px */
@media (max-width: 767px) {
  /* hide desktop nav links, show hamburger */
  .nav-links { display: none !important; }
  .hamburger { display: inline-flex; }
  /* mobile menu open state handled by JS (display:block when active) */

  /* experience header: buttons remain visible, stack vertically if needed */
  .experience-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .experience-buttons { width: 100%; justify-content: flex-start; gap: 8px; }

  /* cards stack full width */
  .experience-cards {
    display: block;
  }
  .exp-card {
    width: 100%;
    margin-bottom: 14px;
    flex: none;
  }

  /* ensure lists are visible and not clipped */
  .card-list { display: block; }
}
@media (max-width:768px) {
  .desktop-nav {display: none ;}
}
@media (min-width: 769px) {
  .mobile-nav { display: none;}
}
/* optional: when mobile menu active (class toggled by JS) */
.mobile-menu.open {
  display: block;
}
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* tablet+ */
@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row; /* side-by-side */
    align-items: stretch;
    gap: 2.5rem;
  }
}
/* Experience Section Styles */
.experience-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, #0f172a, #1e293b);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #94a3b8;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Grid Layout */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .experience-grid {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  }
}

/* Project Buttons Column */
.projects-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.experience-button {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  border-radius: 1rem;
  border: 1px solid #334155;
  background: rgba(30, 41, 59, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.experience-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  transition: left 0.5s ease;
}

.experience-button:hover::before {
  left: 100%;
}

.experience-button:hover {
  border-color: #14b8a6;
  background: rgba(20, 184, 166, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.experience-button.active {
  border-color: #14b8a6;
  background: rgba(20, 184, 166, 0.1);
  box-shadow: 0 0 0 1px #14b8a6, 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.button-content {
  position: relative;
  z-index: 2;
}

.button-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.button-icon {
  color: #14b8a6;
  font-size: 1.25rem;
}

.button-title {
  font-weight: 600;
  color: #14b8a6;
  font-size: 1.1rem;
}

.button-date {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 400;
}

/* Project Details Column */
.details-column {
  position: relative;
}

.project-details {
  padding: 2rem;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 1rem;
  border: 1px solid #334155;
  height: 100%;
  backdrop-filter: blur(10px);
}

.project-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #14b8a6, transparent);
}

.project-title {
  font-size: 2rem;
  font-weight: 700;
  color: #14b8a6;
  margin-bottom: 0.5rem;
}

.project-period {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.project-summary {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.project-features {
  list-style: none;
  padding: 0;
}

.project-features li {
  color: #cbd5e1;
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid #334155;
  transition: color 0.3s ease;
}

.project-features li:last-child {
  border-bottom: none;
}

.project-features li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: bold;
}

.project-features li:hover {
  color: #f1f5f9;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fix container for mobile */
.container {
  max-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

/* Fix buttons for mobile */
.experience-button {
  min-width: unset;
  width: 100%;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
}

/* Fix project details for mobile */
#project-details {
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Ensure text doesn't overflow */
.card-summary, .card-list {
  width: 100%;
  word-wrap: break-word;
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
  .container {
    padding: 0.5rem;
  }
  
  .experience-button {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
  
  #project-details {
    padding: 0.75rem;
  }
}
/* Fix container width */
.container {
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  margin: 0 auto;
}


.experience-button {
  width: 100%;
  max-width: 100%;
  min-width: unset;
  padding: 0.75rem;
  box-sizing: border-box;
}

/* Fix project details width */
#project-details {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1rem;
}

/* Mobile-specific fixes */
@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .experience-button {
    padding: 0.6rem;
    font-size: 14px;
  }
  
  #project-details {
    padding: 0.8rem;
  }
  
  /* Force text to wrap */
  .card-summary, .card-list, h3, p {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}
.navbar {
  transition: all 0.3s ease-in-out;
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/8d697b304b401681-s.woff2) format("woff2");
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}

@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/ba015fad6dcf6784-s.woff2) format("woff2");
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}

@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/569ce4b8f30dc480-s.p.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}

@font-face {
  font-family: Geist Fallback;
  src: local("Arial");
  ascent-override: 95.94%;
  descent-override: 28.16%;
  line-gap-override: 0%;
  size-adjust: 104.76%;
}

.__className_5cfdac {
  font-family: Geist, Geist Fallback;
  font-style: normal;
}

.__variable_5cfdac {
  --font-geist-sans: "Geist", "Geist Fallback";
}

@font-face {
  font-family: Geist Mono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/9610d9e46709d722-s.woff2) format("woff2");
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}

@font-face {
  font-family: Geist Mono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/747892c23ea88013-s.woff2) format("woff2");
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}

@font-face {
  font-family: Geist Mono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/93f479601ee12b01-s.p.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}

@font-face {
  font-family: Geist Mono Fallback;
  src: local("Arial");
  ascent-override: 74.67%;
  descent-override: 21.92%;
  line-gap-override: 0%;
  size-adjust: 134.59%;
}

.__className_9a8899 {
  font-family: Geist Mono, Geist Mono Fallback;
  font-style: normal;
}

.__variable_9a8899 {
  --font-geist-mono: "Geist Mono", "Geist Mono Fallback";
}

/*! tailwindcss v4.0.9 | MIT License | https://tailwindcss.com */
@layer theme {
  :host,
  :root {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
      "Liberation Mono", "Courier New", monospace;
    --color-teal-100: oklch(0.953 0.051 180.801);
    --color-teal-300: oklch(0.855 0.138 181.071);
    --color-teal-400: oklch(0.777 0.152 181.912);
    --color-teal-500: oklch(0.704 0.14 182.503);
    --color-teal-600: oklch(0.6 0.118 184.704);
    --color-teal-700: oklch(0.511 0.096 186.391);
    --color-teal-800: oklch(0.437 0.078 188.216);
    --color-teal-900: oklch(0.386 0.063 188.416);
    --color-indigo-300: oklch(0.785 0.115 274.713);
    --color-indigo-400: oklch(0.673 0.182 276.935);
    --color-indigo-500: oklch(0.585 0.233 277.117);
    --color-purple-400: oklch(0.714 0.203 305.504);
    --color-gray-200: oklch(0.928 0.006 264.531);
    --color-gray-300: oklch(0.872 0.01 258.338);
    --color-gray-400: oklch(0.707 0.022 261.325);
    --color-gray-500: oklch(0.551 0.027 264.364);
    --color-gray-700: oklch(0.373 0.034 259.733);
    --color-gray-800: oklch(0.278 0.033 256.848);
    --color-gray-900: oklch(0.21 0.034 264.665);
    --color-black: #000;
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-sm: 24rem;
    --container-2xl: 42rem;
    --container-6xl: 72rem;
    --container-7xl: 80rem;
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --text-7xl: 4.5rem;
    --text-7xl--line-height: 1;
    --font-weight-light: 300;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-wider: 0.05em;
    --leading-relaxed: 1.625;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --blur-sm: 8px;
    --blur-md: 12px;
    --blur-xl: 24px;
    --blur-3xl: 64px;
    --default-transition-duration: 0.15s;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-font-feature-settings: var(--font-sans--font-feature-settings);
    --default-font-variation-settings: var(
      --font-sans--font-variation-settings
    );
    --default-mono-font-family: var(--font-mono);
    --default-mono-font-feature-settings: var(
      --font-mono--font-feature-settings
    );
    --default-mono-font-variation-settings: var(
      --font-mono--font-variation-settings
    );
  }
}

@layer base {
  *,
  ::backdrop,
  :after,
  :before {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  :host,
  html {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(
      --default-font-family,
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji"
    );
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  body {
    line-height: inherit;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr: where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }

  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }

  b,
  strong {
    font-weight: bolder;
  }

  code,
  kbd,
  pre,
  samp {
    font-family: var(
      --default-mono-font-family,
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace
    );
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(
      --default-mono-font-variation-settings,
      normal
    );
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub,
  sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -0.25em;
  }

  sup {
    top: -0.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  menu,
  ol,
  ul {
    list-style: none;
  }

  audio,
  canvas,
  embed,
  iframe,
  img,
  object,
  svg,
  video {
    vertical-align: middle;
    display: block;
  }

  img,
  video {
    max-width: 100%;
    height: auto;
  }

  button,
  input,
  optgroup,
  select,
  textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select: is([multiple],[size])) optgroup {
    font-weight: bolder;
  }

  :where(select: is([multiple],[size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
    color: color-mix(in oklab, currentColor 50%, transparent);
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button,input: where([type=button], [type=reset], [type=submit]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]: where(: not([hidden=until-found])) {
    display: none !important;
  }
}

@layer components;
@layer utilities {
  .absolute {
    position: absolute;
  }

  .fixed {
    position: fixed;
  }

  .relative {
    position: relative;
  }

  .inset-0 {
    inset: calc(var(--spacing) * 0);
  }

  .top-0 {
    top: calc(var(--spacing) * 0);
  }

  .top-4 {
    top: calc(var(--spacing) * 4);
  }

  .right-0 {
    right: calc(var(--spacing) * 0);
  }

  .bottom-0 {
    bottom: calc(var(--spacing) * 0);
  }

  .bottom-8 {
    bottom: calc(var(--spacing) * 8);
  }

  .left-1\/2 {
    left: 50%;
  }

  .left-4 {
    left: calc(var(--spacing) * 4);
  }

  .z-10 {
    z-index: 10;
  }

  .z-40 {
    z-index: 40;
  }

  .z-50 {
    z-index: 50;
  }

  .mx-auto {
    margin-inline: auto;
  }

  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }

  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }

  .mt-12 {
    margin-top: calc(var(--spacing) * 12);
  }

  .mt-16 {
    margin-top: calc(var(--spacing) * 16);
  }

  .mb-1 {
    margin-bottom: calc(var(--spacing) * 1);
  }

  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }

  .mb-3 {
    margin-bottom: calc(var(--spacing) * 3);
  }

  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }

  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }

  .mb-8 {
    margin-bottom: calc(var(--spacing) * 8);
  }

  .mb-16 {
    margin-bottom: calc(var(--spacing) * 16);
  }

  .line-clamp-3 {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }

  .block {
    display: block;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline-flex {
    display: inline-flex;
  }

  .table {
    display: table;
  }

  .aspect-square {
    aspect-ratio: 1;
  }

  .h-2 {
    height: calc(var(--spacing) * 2);
  }

  .h-5 {
    height: calc(var(--spacing) * 5);
  }

  .h-6 {
    height: calc(var(--spacing) * 6);
  }

  .h-8 {
    height: calc(var(--spacing) * 8);
  }

  .h-14 {
    height: calc(var(--spacing) * 14);
  }

  .h-16 {
    height: calc(var(--spacing) * 16);
  }

  .h-64 {
    height: calc(var(--spacing) * 64);
  }

  .h-full {
    height: 100%;
  }

  .h-screen {
    height: 100vh;
  }

  .min-h-screen {
    min-height: 100vh;
  }

  .w-2 {
    width: calc(var(--spacing) * 2);
  }

  .w-5 {
    width: calc(var(--spacing) * 5);
  }

  .w-6 {
    width: calc(var(--spacing) * 6);
  }

  .w-8 {
    width: calc(var(--spacing) * 8);
  }

  .w-\[75\%\] {
    width: 75%;
  }

  .w-full {
    width: 100%;
  }

  .max-w-2xl {
    max-width: var(--container-2xl);
  }

  .max-w-6xl {
    max-width: var(--container-6xl);
  }

  .max-w-7xl {
    max-width: var(--container-7xl);
  }

  .max-w-sm {
    max-width: var(--container-sm);
  }

  .origin-left {
    transform-origin: 0;
  }

  .-translate-x-1\/2 {
    --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .scale-x-0 {
    --tw-scale-x: 0%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .transform {
    transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z)
      var(--tw-skew-x) var(--tw-skew-y);
  }

  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .flex-col {
    flex-direction: column;
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

  .items-center {
    align-items: center;
  }

  .items-start {
    align-items: flex-start;
  }

  .justify-between {
    justify-content: space-between;
  }

  .justify-center {
    justify-content: center;
  }

  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }

  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }

  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }

  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }

  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }

  .gap-12 {
    gap: calc(var(--spacing) * 12);
  }

  :where(.space-y-2 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(
      calc(var(--spacing) * 2) * var(--tw-space-y-reverse)
    );
    margin-block-end: calc(
      calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse))
    );
  }

  :where(.space-y-3 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(
      calc(var(--spacing) * 3) * var(--tw-space-y-reverse)
    );
    margin-block-end: calc(
      calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse))
    );
  }

  :where(.space-y-4 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(
      calc(var(--spacing) * 4) * var(--tw-space-y-reverse)
    );
    margin-block-end: calc(
      calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse))
    );
  }

  :where(.space-y-6 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(
      calc(var(--spacing) * 6) * var(--tw-space-y-reverse)
    );
    margin-block-end: calc(
      calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse))
    );
  }

  :where(.space-y-8 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(
      calc(var(--spacing) * 8) * var(--tw-space-y-reverse)
    );
    margin-block-end: calc(
      calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse))
    );
  }

  :where(.space-x-2 > :not(:last-child)) {
    --tw-space-x-reverse: 0;
    margin-inline-start: calc(
      calc(var(--spacing) * 2) * var(--tw-space-x-reverse)
    );
    margin-inline-end: calc(
      calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse))
    );
  }

  .overflow-hidden {
    overflow: hidden;
  }

  .overflow-x-auto {
    overflow-x: auto;
  }

  .rounded-2xl {
    border-radius: var(--radius-2xl);
  }

  .rounded-full {
    border-radius: 3.40282e38px;
  }

  .rounded-lg {
    border-radius: var(--radius-lg);
  }

  .rounded-xl {
    border-radius: var(--radius-xl);
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }

  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }

  .border-l {
    border-left-style: var(--tw-border-style);
    border-left-width: 1px;
  }

  .border-gray-700 {
    border-color: var(--color-gray-700);
  }

  .border-indigo-500\/10 {
    border-color: color-mix(in oklab, var(--color-indigo-500) 10%, transparent);
  }

  .border-teal-700 {
    border-color: var(--color-teal-700);
  }

  .border-teal-700\/20 {
    border-color: color-mix(in oklab, var(--color-teal-700) 20%, transparent);
  }

  .border-teal-700\/50 {
    border-color: color-mix(in oklab, var(--color-teal-700) 50%, transparent);
  }

  .bg-\[\#0f1729\]\/80 {
    background-color: oklab(20.6974% -0.00326487 -0.0378429/0.8);
  }

  .bg-black\/30 {
    background-color: color-mix(in oklab, var(--color-black) 30%, transparent);
  }

  .bg-gray-700\/50 {
    background-color: color-mix(
      in oklab,
      var(--color-gray-700) 50%,
      transparent
    );
  }

  .bg-gray-800\/30 {
    background-color: color-mix(
      in oklab,
      var(--color-gray-800) 30%,
      transparent
    );
  }

  .bg-gray-800\/50 {
    background-color: color-mix(
      in oklab,
      var(--color-gray-800) 50%,
      transparent
    );
  }

  .bg-gray-900\/50 {
    background-color: color-mix(
      in oklab,
      var(--color-gray-900) 50%,
      transparent
    );
  }

  .bg-indigo-500\/10 {
    background-color: color-mix(
      in oklab,
      var(--color-indigo-500) 10%,
      transparent
    );
  }

  .bg-teal-500 {
    background-color: var(--color-teal-500);
  }

  .bg-teal-500\/10 {
    background-color: color-mix(
      in oklab,
      var(--color-teal-500) 10%,
      transparent
    );
  }

  .bg-teal-700 {
    background-color: var(--color-teal-700);
  }

  .bg-teal-700\/20 {
    background-color: color-mix(
      in oklab,
      var(--color-teal-700) 20%,
      transparent
    );
  }

  .bg-teal-700\/80 {
    background-color: color-mix(
      in oklab,
      var(--color-teal-700) 80%,
      transparent
    );
  }

  .bg-transparent {
    background-color: #0000;
  }

  .bg-white\/10 {
    background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
  }

  .bg-gradient-to-b {
    --tw-gradient-position: to bottom in oklab;
  }

  .bg-gradient-to-b,
  .bg-gradient-to-r {
    background-image: linear-gradient(var(--tw-gradient-stops));
  }

  .bg-gradient-to-r {
    --tw-gradient-position: to right in oklab;
  }

  .bg-gradient-to-t {
    --tw-gradient-position: to top in oklab;
    background-image: linear-gradient(var(--tw-gradient-stops));
  }

  .from-\[\#0f1729\] {
    --tw-gradient-from: #0f1729;
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .from-gray-900 {
    --tw-gradient-from: var(--color-gray-900);
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .from-indigo-400 {
    --tw-gradient-from: var(--color-indigo-400);
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .from-teal-400 {
    --tw-gradient-from: var(--color-teal-400);
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .from-teal-600 {
    --tw-gradient-from: var(--color-teal-600);
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .from-teal-700\/10 {
    --tw-gradient-from: color-mix(
      in oklab,
      var(--color-teal-700) 10%,
      transparent
    );
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .from-teal-700\/20 {
    --tw-gradient-from: color-mix(
      in oklab,
      var(--color-teal-700) 20%,
      transparent
    );
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .from-teal-900\/50 {
    --tw-gradient-from: color-mix(
      in oklab,
      var(--color-teal-900) 50%,
      transparent
    );
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .via-\[\#1a1f35\] {
    --tw-gradient-via: #1a1f35;
    --tw-gradient-via-stops: var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-via) var(--tw-gradient-via-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-via-stops);
  }

  .via-gray-800 {
    --tw-gradient-via: var(--color-gray-800);
    --tw-gradient-via-stops: var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-via) var(--tw-gradient-via-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-via-stops);
  }

  .via-gray-900\/40 {
    --tw-gradient-via: color-mix(
      in oklab,
      var(--color-gray-900) 40%,
      transparent
    );
    --tw-gradient-via-stops: var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-via) var(--tw-gradient-via-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-via-stops);
  }

  .via-transparent {
    --tw-gradient-via: transparent;
    --tw-gradient-via-stops: var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-via) var(--tw-gradient-via-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-via-stops);
  }

  .to-\[\#1c1c3d\] {
    --tw-gradient-to: #1c1c3d;
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .to-black {
    --tw-gradient-to: var(--color-black);
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .to-purple-400 {
    --tw-gradient-to: var(--color-purple-400);
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .to-teal-400 {
    --tw-gradient-to: var(--color-teal-400);
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .to-teal-600 {
    --tw-gradient-to: var(--color-teal-600);
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .to-teal-700\/10 {
    --tw-gradient-to: color-mix(
      in oklab,
      var(--color-teal-700) 10%,
      transparent
    );
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .to-teal-700\/20 {
    --tw-gradient-to: color-mix(
      in oklab,
      var(--color-teal-700) 20%,
      transparent
    );
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .to-teal-800 {
    --tw-gradient-to: var(--color-teal-800);
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .to-transparent {
    --tw-gradient-to: transparent;
    --tw-gradient-stops: var(
      --tw-gradient-via-stops,
      var(--tw-gradient-position),
      var(--tw-gradient-from) var(--tw-gradient-from-position),
      var(--tw-gradient-to) var(--tw-gradient-to-position)
    );
  }

  .bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
  }

  .object-cover {
    object-fit: cover;
  }

  .p-1 {
    padding: calc(var(--spacing) * 1);
  }

  .p-2 {
    padding: calc(var(--spacing) * 2);
  }

  .p-3 {
    padding: calc(var(--spacing) * 3);
  }

  .p-4 {
    padding: calc(var(--spacing) * 4);
  }

  .p-6 {
    padding: calc(var(--spacing) * 6);
  }

  .p-8 {
    padding: calc(var(--spacing) * 8);
  }

  .px-3 {
    padding-inline: calc(var(--spacing) * 3);
  }

  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }

  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }

  .px-8 {
    padding-inline: calc(var(--spacing) * 8);
  }

  .py-1 {
    padding-block: calc(var(--spacing) * 1);
  }

  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }

  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }

  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }

  .py-20 {
    padding-block: calc(var(--spacing) * 20);
  }

  .pt-4 {
    padding-top: calc(var(--spacing) * 4);
  }

  .text-center {
    text-align: center;
  }

  .text-left {
    text-align: left;
  }

  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }

  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }

  .text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--tw-leading, var(--text-4xl--line-height));
  }

  .text-5xl {
    font-size: var(--text-5xl);
    line-height: var(--tw-leading, var(--text-5xl--line-height));
  }

  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }

  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }

  .leading-relaxed {
    --tw-leading: var(--leading-relaxed);
    line-height: var(--leading-relaxed);
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-light {
    --tw-font-weight: var(--font-weight-light);
    font-weight: var(--font-weight-light);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }

  .tracking-wider {
    --tw-tracking: var(--tracking-wider);
    letter-spacing: var(--tracking-wider);
  }

  .text-gray-200 {
    color: var(--color-gray-200);
  }

  .text-gray-300 {
    color: var(--color-gray-300);
  }

  .text-gray-400 {
    color: var(--color-gray-400);
  }

  .text-gray-500 {
    color: var(--color-gray-500);
  }

  .text-indigo-300 {
    color: var(--color-indigo-300);
  }

  .text-indigo-400 {
    color: var(--color-indigo-400);
  }

  .text-teal-100 {
    color: var(--color-teal-100);
  }

  .text-teal-300 {
    color: var(--color-teal-300);
  }

  .text-teal-400 {
    color: var(--color-teal-400);
  }

  .text-teal-500 {
    color: var(--color-teal-500);
  }

  .text-transparent {
    color: #0000;
  }

  .text-white {
    color: var(--color-white);
  }

  .antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .opacity-0 {
    opacity: 0;
  }

  .opacity-10 {
    opacity: 0.1;
  }

  .shadow-2xl {
    --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, #00000040);
  }

  .shadow-2xl,
  .shadow-lg {
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-lg {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a),
      0 4px 6px -4px var(--tw-shadow-color, #0000001a);
  }

  .shadow-xl {
    --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a),
      0 8px 10px -6px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-teal-700\/20 {
    --tw-shadow-color: color-mix(
      in oklab,
      var(--color-teal-700) 20%,
      transparent
    );
  }

  .blur-3xl {
    --tw-blur: blur(var(--blur-3xl));
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
      var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert)
      var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  }

  .backdrop-blur-md {
    --tw-backdrop-blur: blur(var(--blur-md));
  }

  .backdrop-blur-md,
  .backdrop-blur-sm {
    -webkit-backdrop-filter: var(--tw-backdrop-blur)
      var(--tw-backdrop-brightness) var(--tw-backdrop-contrast)
      var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate)
      var(--tw-backdrop-invert) var(--tw-backdrop-opacity)
      var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
      var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
      var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
      var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
      var(--tw-backdrop-sepia);
  }

  .backdrop-blur-sm {
    --tw-backdrop-blur: blur(var(--blur-sm));
  }

  .backdrop-blur-xl {
    --tw-backdrop-blur: blur(var(--blur-xl));
    -webkit-backdrop-filter: var(--tw-backdrop-blur)
      var(--tw-backdrop-brightness) var(--tw-backdrop-contrast)
      var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate)
      var(--tw-backdrop-invert) var(--tw-backdrop-opacity)
      var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
      var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
      var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
      var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
      var(--tw-backdrop-sepia);
  }

  .transition {
    transition-property: color, background-color, border-color, outline-color,
      text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via,
      --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate,
      filter, -webkit-backdrop-filter, backdrop-filter;
    transition-timing-function: var(
      --tw-ease,
      var(--default-transition-timing-function)
    );
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-all {
    transition-property: all;
    transition-timing-function: var(
      --tw-ease,
      var(--default-transition-timing-function)
    );
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-colors {
    transition-property: color, background-color, border-color, outline-color,
      text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via,
      --tw-gradient-to;
    transition-timing-function: var(
      --tw-ease,
      var(--default-transition-timing-function)
    );
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-opacity {
    transition-property: opacity;
    transition-timing-function: var(
      --tw-ease,
      var(--default-transition-timing-function)
    );
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-transform {
    transition-property: transform, translate, scale, rotate;
    transition-timing-function: var(
      --tw-ease,
      var(--default-transition-timing-function)
    );
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .duration-200 {
    --tw-duration: 0.2s;
    transition-duration: 0.2s;
  }

  .duration-300 {
    --tw-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .duration-500 {
    --tw-duration: 0.5s;
    transition-duration: 0.5s;
  }

  @media (hover: hover) {
    .group-hover\:scale-105:is(:where(.group):hover *) {
      --tw-scale-x: 105%;
      --tw-scale-y: 105%;
      --tw-scale-z: 105%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }

    .group-hover\:scale-x-100:is(:where(.group):hover *) {
      --tw-scale-x: 100%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }

    .group-hover\:rotate-12:is(:where(.group):hover *) {
      rotate: 12deg;
    }

    .group-hover\:rotate-90:is(:where(.group):hover *) {
      rotate: 90deg;
    }

    .group-hover\:bg-teal-500\/20:is(:where(.group):hover *) {
      background-color: color-mix(
        in oklab,
        var(--color-teal-500) 20%,
        transparent
      );
    }

    .group-hover\:bg-teal-700\/30:is(:where(.group):hover *) {
      background-color: color-mix(
        in oklab,
        var(--color-teal-700) 30%,
        transparent
      );
    }

    .group-hover\:text-gray-300:is(:where(.group):hover *) {
      color: var(--color-gray-300);
    }

    .group-hover\:text-teal-300:is(:where(.group):hover *) {
      color: var(--color-teal-300);
    }

    .group-hover\:text-teal-400:is(:where(.group):hover *) {
      color: var(--color-teal-400);
    }

    .group-hover\:text-white:is(:where(.group):hover *) {
      color: var(--color-white);
    }

    .group-hover\:opacity-100:is(:where(.group):hover *) {
      opacity: 1;
    }

    .group-hover\/link\:text-teal-300:is(:where(.group\/link):hover *),
    .group-hover\/skill\:text-teal-300:is(:where(.group\/skill):hover *) {
      color: var(--color-teal-300);
    }

    .hover\:scale-105:hover {
      --tw-scale-x: 105%;
      --tw-scale-y: 105%;
      --tw-scale-z: 105%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }

    .hover\:scale-110:hover {
      --tw-scale-x: 110%;
      --tw-scale-y: 110%;
      --tw-scale-z: 110%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }

    .hover\:rotate-45:hover {
      rotate: 45deg;
    }

    .hover\:bg-gray-800\/40:hover {
      background-color: color-mix(
        in oklab,
        var(--color-gray-800) 40%,
        transparent
      );
    }

    .hover\:bg-indigo-500\/10:hover {
      background-color: color-mix(
        in oklab,
        var(--color-indigo-500) 10%,
        transparent
      );
    }

    .hover\:bg-teal-600:hover {
      background-color: var(--color-teal-600);
    }

    .hover\:bg-teal-700\/20:hover {
      background-color: color-mix(
        in oklab,
        var(--color-teal-700) 20%,
        transparent
      );
    }

    .hover\:bg-teal-700\/30:hover {
      background-color: color-mix(
        in oklab,
        var(--color-teal-700) 30%,
        transparent
      );
    }

    .hover\:bg-white\/10:hover {
      background-color: color-mix(
        in oklab,
        var(--color-white) 10%,
        transparent
      );
    }

    .hover\:text-indigo-300:hover {
      color: var(--color-indigo-300);
    }

    .hover\:text-indigo-400:hover {
      color: var(--color-indigo-400);
    }

    .hover\:text-teal-300:hover {
      color: var(--color-teal-300);
    }

    .hover\:text-teal-400:hover {
      color: var(--color-teal-400);
    }
  }

  .focus\: border-teal-500:focus {
    border-color: var(--color-teal-500);
  }

  .focus\: ring-1:focus {
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
      calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus\: ring-teal-500:focus {
    --tw-ring-color: var(--color-teal-500);
  }

  .disabled\: cursor-not-allowed:disabled {
    cursor: not-allowed;
  }

  .disabled\: opacity-50:disabled {
    opacity: 0.5;
  }

  @media (width>=40rem) {
    .sm\: grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:px-6 {
      padding-inline: calc(var(--spacing) * 6);
    }
  }

  @media (width>=48rem) {
    .md\: flex {
      display: flex;
    }

    .md\:hidden {
      display: none;
    }

    .md\:h-10 {
      height: calc(var(--spacing) * 10);
    }

    .md\:h-20 {
      height: calc(var(--spacing) * 20);
    }

    .md\:w-10 {
      width: calc(var(--spacing) * 10);
    }

    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:px-8 {
      padding-inline: calc(var(--spacing) * 8);
    }

    .md\: text-2xl {
      font-size: var(--text-2xl);
      line-height: var(--tw-leading, var(--text-2xl--line-height));
    }

    .md\:text-3xl {
      font-size: var(--text-3xl);
      line-height: var(--tw-leading, var(--text-3xl--line-height));
    }

    .md\:text-5xl {
      font-size: var(--text-5xl);
      line-height: var(--tw-leading, var(--text-5xl--line-height));
    }

    .md\:text-7xl {
      font-size: var(--text-7xl);
      line-height: var(--tw-leading, var(--text-7xl--line-height));
    }
  }

  @media (width>=64rem) {
    .lg\: col-span-3 {
      grid-column: span 3 / span 3;
    }

    .lg\:col-span-9 {
      grid-column: span 9 / span 9;
    }

    .lg\:grid-cols-12 {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .lg\:flex-col {
      flex-direction: column;
    }

    .lg\:overflow-x-visible {
      overflow-x: visible;
    }

    .lg\:px-8 {
      padding-inline: calc(var(--spacing) * 8);
    }
  }
}

:root {
  --color-background: #fff;
  --color-text: #1a1a1a;
  --color-primary: #2563eb;
  --color-secondary: #10b981;
  --color-accent: #f472b6;
  --color-muted: #6b7280;
  --gradient-start: #111827;
  --gradient-middle: #1f2937;
  --gradient-end: #000;
}

.dark {
  --color-background: #0f172a;
  --color-text: #f1f5f9;
  --color-primary: #3b82f6;
  --color-secondary: #059669;
  --color-accent: #ec4899;
  --color-muted: #94a3b8;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
}

.dark body {
  background: linear-gradient(
    to bottom,
    var(--gradient-start),
    var(--gradient-middle),
    var(--gradient-end)
  );
}

@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-scale-z {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
  initial-value: rotateX(0);
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
  initial-value: rotateY(0);
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
  initial-value: rotateZ(0);
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false;
  initial-value: skewX(0);
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false;
  initial-value: skewY(0);
}

@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-space-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-gradient-position {
  syntax: "*";
  inherits: false;
}

@property --tw-gradient-from {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}

@property --tw-gradient-via {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}

@property --tw-gradient-to {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}

@property --tw-gradient-stops {
  syntax: "*";
  inherits: false;
}

@property --tw-gradient-via-stops {
  syntax: "*";
  inherits: false;
}

@property --tw-gradient-from-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0;
}

@property --tw-gradient-via-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 50%;
}

@property --tw-gradient-to-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-leading {
  syntax: "*";
  inherits: false;
}

@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}

@property --tw-tracking {
  syntax: "*";
  inherits: false;
}

@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}

@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}

@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}

@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}

@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}

@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}

@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-blur {
  syntax: "*";
  inherits: false;
}

@property --tw-brightness {
  syntax: "*";
  inherits: false;
}

@property --tw-contrast {
  syntax: "*";
  inherits: false;
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}

@property --tw-invert {
  syntax: "*";
  inherits: false;
}

@property --tw-opacity {
  syntax: "*";
  inherits: false;
}

@property --tw-saturate {
  syntax: "*";
  inherits: false;
}

@property --tw-sepia {
  syntax: "*";
  inherits: false;
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false;
}

@property --tw-duration {
  syntax: "*";
  inherits: false;
}
.skill-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease; /* Added transition */
}

.skill-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.shadow {
    --font-sans: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-mono: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --color-teal-100: oklch(.953 .051 180.801);
    --color-teal-300: oklch(.855 .138 181.071);
    --color-teal-400: oklch(.777 .152 181.912);
    --color-teal-500: oklch(.704 .14 182.503);
    --color-teal-600: oklch(.6 .118 184.704);
    --color-teal-700: oklch(.511 .096 186.391);
    --color-teal-800: oklch(.437 .078 188.216);
    --color-teal-900: oklch(.386 .063 188.416);
    --color-indigo-300: oklch(.785 .115 274.713);
    --color-indigo-400: oklch(.673 .182 276.935);
    --color-indigo-500: oklch(.585 .233 277.117);
    --color-purple-400: oklch(.714 .203 305.504);
    --color-gray-200: oklch(.928 .006 264.531);
    --color-gray-300: oklch(.872 .01 258.338);
    --color-gray-400: oklch(.707 .022 261.325);
    --color-gray-500: oklch(.551 .027 264.364);
    --color-gray-700: oklch(.373 .034 259.733);
    --color-gray-800: oklch(.278 .033 256.848);
    --color-gray-900: oklch(.21 .034 264.665);
    --color-black: #000;
    --color-white: #fff;
    --spacing: .25rem;
    --container-sm: 24rem;
    --container-2xl: 42rem;
    --container-6xl: 72rem;
    --container-7xl: 80rem;
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25/.875);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75/1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75/1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2/1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25/1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5/2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --text-7xl: 4.5rem;
    --text-7xl--line-height: 1;
    --font-weight-light: 300;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-wider: .05em;
    --leading-relaxed: 1.625;
    --radius-lg: .5rem;
    --radius-xl: .75rem;
    --radius-2xl: 1rem;
    --blur-sm: 8px;
    --blur-md: 12px;
    --blur-xl: 24px;
    --blur-3xl: 64px;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4,0,.2,1);
    --default-font-family: var(--font-sans);
    --default-font-feature-settings: var(--font-sans--font-feature-settings);
    --default-font-variation-settings: var(--font-sans--font-variation-settings);
    --default-mono-font-family: var(--font-mono);
    --default-mono-font-feature-settings: var(--font-mono--font-feature-settings);
    --default-mono-font-variation-settings: var(--font-mono--font-variation-settings);
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings,normal);
    font-variation-settings: var(--default-font-variation-settings,normal);
    -webkit-tap-highlight-color: transparent;
    --color-background: #fff;
    --color-text: #1a1a1a;
    --color-primary: #2563eb;
    --color-secondary: #10b981;
    --color-accent: #f472b6;
    --color-muted: #6b7280;
    --gradient-start: #111827;
    --gradient-middle: #1f2937;
    --gradient-end: #000;
    color-scheme: light;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    --font-geist-sans: "Geist","Geist Fallback";
    --font-geist-mono: "Geist Mono","Geist Mono Fallback";
    color: var(--color-white);
    --tw-gradient-position: to bottom in oklab;
    --tw-gradient-via-stops: var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: calc(var(--spacing)*8);
    left: 50%;
    --tw-translate-x: calc(calc(1/2*100%)*-1);
    translate: var(--tw-translate-x)var(--tw-translate-y);
    transform: translateY(7.73968px);
    opacity: 0.612921;
}
button-gradient {
  background: linear-gradient(
    45deg,
    rgb(15, 118, 110),
    rgb(94, 234, 212)
  );
  opacity: 1;
}
.experience-columns-wrapper {
  display: grid;
  grid-template-columns: 1fr; /* Default: single column on small screens */
  gap: 3rem; /* Equivalent to Tailwind's gap-12 */
  width: 100%;
  max-width: 1280px; /* Equivalent to max-w-7xl */
  margin-left: auto;
  margin-right: auto;
}

/* Apply two columns for large screens (lg breakpoint: 1024px) */
@media (min-width: 1024px) {
  .experience-columns-wrapper {
    grid-template-columns: 1fr 1fr; /* Two equal columns */
  }
  .experience-nav-column .button-list-container {
      flex-direction: column; /* Equivalent to lg:flex-col */
  }
}

/* Custom styles for active button gradient overlay */
.active-

/* Hide scrollbar for the button list container on mobile, if needed */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
/* --- Add this CSS to your stylesheet (e.g., style.css) --- */

/* Basic body styling for demonstration and contrast */
.skill-item-group {
  margin-bottom: 20px;
  max-width: 400px; /* Example width for the skill section */
}

.skill-header {
  display: flex;
  justify-content: space-between; /* Pushes name to left, percentage to right */
  align-items: center;
  margin-bottom: 5px; /* Space between header and bar */
}

.skill-name {
  font-size: 1.1em;
  font-weight: bold;
  color: #eee;
}

.skill-percentage-value {
  font-size: 1em;
  font-weight: bold;
  color: #76E080; /* A nice green for the percentage number too */
}


/* --- THE ACTUAL SKILL BAR STYLES --- */

.skill-bar-container {
  height: 8px; /* Height of the empty bar */
  background-color: #555; /* Color of the empty part of the bar */
  border-radius: 4px; /* Rounded corners for the bar */
  overflow: hidden; /* Ensures the fill stays within the rounded container */
}

.skill-bar-fill {
  height: 100%; /* Make the fill div take up the full height of its container */
  background-color: #4CAF50; /* Solid green color for the fill */
  width: var(--percentage,0%); /* Start at 0% width, JavaScript will update this */
  border-radius: 4px; /* Match the rounded corners of the container */
  transition: width 0.8s ease-out; /* Smooth animation when the width changes */
  /* You can adjust the transition duration and timing function as desired */
}



/* --- Navigation Bar --- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px; /* Adjust padding as needed */
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    backdrop-filter: blur(5px); /* Optional: Frosted glass effect */
    z-index: 100; /* Ensure it's always on top */
    display: flex;
    justify-content: space-between; /* Pushes left and right content apart */
    align-items: center;
    box-sizing: border-box; /* Include padding in width */
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-brand {
    font-size: 1.5em;
    font-weight: 700;
    color: #1abc9c; /* Green color for your brand name */
    text-decoration: none;
    margin-right: 30px; /* Space between brand and socials */
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.nav-socials .social-icon {
    color: white;
    font-size: 1.2em;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
    will-change: transform;
    transition: transform 0.1s ease-out, color 0.3s ease;
}
.nav-socials .social-icon:hover {
    color: #1abc9c;
}

.nav-link {
    color: white;
    text-decoration: none;
    margin-left: 30px; /* Space between nav links */
    font-size: 1.05em;
    position: relative;
    transition: color 0.3s ease;
    will-change: transform;
    transition: transform 0.1s ease-out, color 0.3s ease;
}
.nav-link:hover {
    color: #1abc9c;
}
.nav-link::after { /* Underline effect on hover */
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1abc9c;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* --- Hero Section (Homepage Only Styles) --- */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh; /* This defines the homepage height */
    overflow: hidden; /* Crucial to clip dynamic background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0d0d0d; /* Ensure this section has a dark background */
    padding-top: 80px; /* Adjust for fixed nav bar height */
    box-sizing: border-box;
}

/* --- 1. Green Wireframe Torus Image Styling (Animated) --- */
.background-sphere-image {
    position: absolute; /* Changed to absolute to stay within .hero-section */
    top: 0;
    left: 0;
    width: 100%; /* Fill parent */
    height: 100%; /* Fill parent */
    /* !!! IMPORTANT: Update this path to your actual image !!! */
    background: url('sphere.jpg') no-repeat center center / contain;
    
    /* Filters to make lines green and subtle */
    filter: invert(1) hue-rotate(100deg) saturate(200%) brightness(0.8);
    opacity: 0.1; /* Very subtle, adjust as needed */
    
    z-index: 0; /* Behind canvas and content */

    /* For smooth mouse parallax movement */
    will-change: transform;
    transition: transform 0.1s ease-out;

    /* --- Keyframe Animations for Torus --- */
    animation: 
        torusRotate 40s linear infinite alternate, /* Rotate back and forth */
        torusScale 20s ease-in-out infinite alternate; /* Expand/contract */
}

@keyframes torusRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); } /* Or a smaller range for back and forth */
}
/* This rotation gives a subtle continuous spin, then the JS parallax overlays it.
   For Yared's specific 'halfway back' look, you might need more complex JS or 
   multiple keyframes. Let's start with this. */

@keyframes torusScale {
    0% { transform: scale(1.0); }
    50% { transform: scale(1.1); } /* Expands slightly */
    100% { transform: scale(1.0); }
}


/* --- 2. Canvas for Shiny Dots Styling --- */
#backgroundCanvas {
    position: absolute; /* Changed to absolute to stay within .hero-section */
    top: 0;
    left: 0;
    width: 100%; /* Fill parent */
    height: 100%; /* Fill parent */
    z-index: 1; /* Above torus image, behind content */
}

/* --- 3. Main Hero Content Styling --- */
.hero-content {
    position: relative; /* Allows content elements to be positioned relative to this */
    z-index: 2; /* Ensures content is above all background elements */
    text-align: center;
    /* All child elements (h1, p, buttons) will move with parallax */
}

/* Common style for parallax-enabled content elements */
.hero-title,
.hero-subtitle,
.hero-buttons .hero-button,
.scroll-down,
.nav-brand,
.nav-socials .social-icon,
.nav-link {
    will-change: transform; /* Performance hint for transforms */
    transition: transform 0.1s ease-out; /* Smooth transition for parallax */
}

/* Specific styling for your hero header elements */
.hero-title {
    font-size: 4.5em;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.8em;
    margin-top: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px; /* Space between buttons */
    justify-content: center;
}

.hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
    background-color: #1abc9c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #16a085;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    text-align: center;
    will-change: transform;
    transition: transform 0.1s ease-out;
}
.scroll-down a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    letter-spacing: 1px;
    display: flex; /* To align text and icon */
    flex-direction: column;
    align-items: center;
}
.scroll-down a i {
    font-size: 1.5em;
    margin-top: 5px;
    animation: bounce 1.5s infinite; /* Little bounce animation */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* --- Subsequent Portfolio Sections (Non-Homepage Styles) --- */
.portfolio-section {
    width: 100vw;
    min-height: 100vh; /* Each section takes at least full viewport height */
    background-color: #1a1a1a; /* A solid, dark background for other sections */
    padding: 80px 40px; /* Adjust padding, considering nav bar */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align content to the top of the section */
}

.portfolio-section:nth-child(even) { /* Alternate background for visual separation */
    background-color: #121212;
}

.section-content {
    max-width: 900px; /* Constrain content width for readability */
    text-align: left;
    padding-top: 40px; /* Space from top of section */
}

.section-content h2 {
    font-size: 3em;
    color: #1abc9c;
    margin-bottom: 20px;
}

.section-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1em;
}

/* Your About Me content needs specific styling based on your image */
/* Example for About Me section from your image */
#about .section-content {
    display: flex;
    align-items: flex-start; /* Align items to the start for image + text layout */
    gap: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

#about .section-content img {
    width: 250px; /* Adjust image size */
    height: 250px;
    border-radius: 50%; /* Circular image */
    object-fit: cover;
    flex-shrink: 0; /* Prevent image from shrinking */
}

#about .section-content div { /* Container for text */
    flex-grow: 1; /* Allow text to take remaining space */
    max-width: 600px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .main-nav {
        padding: 10px 20px;
        flex-direction: column; /* Stack nav items on small screens */
    }
    .nav-left, .nav-right {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    .nav-brand {
        margin-right: 0;
    }
    .nav-socials {
        margin-left: 20px;
    }
    .nav-link {
        margin-left: 15px;
        margin-right: 15px;
    }
    .hero-title {
        font-size: 3em;
    }
    .hero-subtitle {
        font-size: 1.2em;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .portfolio-section {
        padding: 60px 20px;
    }
    #about .section-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* General body styling (if not already present) */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0d1117; /* Dark background matching your image */
    color: #e6edf3; /* Light text color */
}

/* Hero Section (Home Page) */
.hero-section {
    position: relative; /* Crucial for positioning canvas absolutely within it */
    width: 100%;
    height: 100vh; /* Make it take the full viewport height */
    display: flex; /* Use flexbox to center content */
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Hide anything that goes outside this section */
}

/* Canvas for the 3D Globe */
#globe-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Place it behind the content (content will have z-index: 1) */
    background-color: transparent; /* Ensure canvas background is transparent */
}

/* Content Container */
.hero-content {
    position: relative; /* Crucial for z-index to work */
    z-index: 1; /* Place it above the canvas */
    text-align: center;
    padding: 20px;
    max-width: 800px; /* Limit content width for better readability */
    color: #e6edf3; /* Ensure text is visible over the dark background */
}

.hero-content h1 {
    font-size: 3.5em; /* Larger font for name */
    color: #00e6e6; /* Bright teal/green color as in your image */
    margin-bottom: 0.2em;
}

.hero-content p {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 1em;
}

.hero-content .description {
    font-size: 1em;
    color: #a0a8b1; /* Slightly lighter for the description */
    margin-bottom: 2em;
}

.action-buttons button {
    background-color: #008080; /* Teal background for buttons */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.action-buttons button:hover {
    background-color: #006666;
}

.scroll-down {
    position: absolute; /* Position relative to .hero-section */
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #a0a8b1;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.scroll-down .arrow-down {
    display: block;
    margin-top: 5px;
    font-size: 1.5em;
    animation: bounce 1.5s infinite; /* Simple bounce animation */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

