@keyframes moveStars {
  0% {
    background-position: 0 0;
  }

  to {
    background-position: 0 1000px;
  }
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/inter-v20-latin-regular.woff2) format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/inter-v20-latin-600.woff2) format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/inter-v20-latin-700.woff2) format("woff2");
}

:root {
  --bg-primary: #030812;
  --bg-secondary: #081121;
  --bg-hover: #1e293b;
  --text-primary: #ffffff;
  --text-secondary: #c9d1d9;
  --text-tertiary: #a0aec0;
  --text-muted: #8b95a4;
  --text-footer: #8892b0;
  --border-primary: #3b82f644;
  --border-secondary: rgba(37, 99, 235, 0.27);
  --border-hover: #2563eb;
  --accent-primary: #2563eb;
  --accent-gradient-start: #fff;
  --accent-gradient-end: #60a5fa;
  --social-bg: rgba(255, 255, 255, 0.05);
  --social-bg-hover: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(37, 99, 235, 0.05);
  --shadow-color: rgba(37, 99, 235, 0.3);
  --selection-bg: #ffffff;
  --selection-text: #3b82f6;
  --star-color: #fff;
}

.light-theme {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-hover: #e2e8f0;
  --text-primary: #1e293b;
  --text-secondary: #334155;
  --text-tertiary: #3d4d5f;
  --text-muted: #5b6b84;
  --text-footer: #64748b;
  --border-primary: rgba(0, 0, 0, 0.1);
  --border-secondary: rgba(37, 99, 235, 0.3);
  --border-hover: #2563eb;
  --accent-primary: #2563eb;
  --accent-gradient-start: #1e293b;
  --accent-gradient-end: #2563eb;
  --social-bg: rgba(37, 99, 235, 0.1);
  --social-bg-hover: rgba(37, 99, 235, 0.2);
  --card-bg: rgba(37, 99, 235, 0.05);
  --shadow-color: rgba(37, 99, 235, 0.2);
  --selection-bg: #2563eb;
  --selection-text: #ffffff;
  --star-color: transparent;
}

html {
  scroll-behavior: smooth;
}

*,
body {
  margin: 0;
  padding: 0;
}

body,
html {
  overflow-x: hidden;
  width: 100%;
}

* {
  box-sizing: border-box;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  scroll-behavior: smooth;
}

::selection {
  background-color: var(--selection-bg);
  color: var(--selection-text);
}

.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-primary);
  overflow-x: hidden;
  background-image:
    radial-gradient(1px 1px at 20px 30px, var(--star-color), transparent),
    radial-gradient(1.5px 1.5px at 100px 150px, var(--star-color), transparent),
    radial-gradient(1px 1px at 200px 50px, var(--star-color), transparent);
  background-size: 300px 300px;
  animation: moveStars 100s linear infinite;
  transition: background-color 0.3s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-bar {
  position: fixed;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: 90px;
  background-color: rgba(5, 10, 24, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-primary);
  padding: 20px;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.nav-bar.scrolled {
  background-color: rgba(5, 10, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.light-theme .nav-bar {
  background-color: rgba(248, 250, 252, 0.8);
}

.light-theme .nav-bar.scrolled {
  background-color: rgba(248, 250, 252, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-header {
  color: var(--accent-primary);
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.nav-items {
  display: flex;
  gap: 12px;
  flex: 1;
  justify-content: center;
}

.nav-items a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 400;
  padding: 10px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-items a.active {
  color: #2563eb !important;
  font-weight: 600;
}

.nav-items a:hover {
  color: var(--text-muted);
}

.nav-toggle-button {
  position: relative;
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 999px;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle-button.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle-button.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle-button.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.social-icons,
.social-icons a {
  display: flex;
  align-items: center;
}

.social-icons a {
  background-color: var(--social-bg);
  border-radius: 50%;
  padding: 10px;
  margin-left: 15px;
  transition: 0.3s ease;
  color: var(--text-primary);
  justify-content: center;
  text-decoration: none;
}

.social-icons a svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  transition: fill 0.3s ease;
}

.social-icons a:nth-child(1):hover {
  background-color: #19c427;
  color: #fff;
}

.social-icons a:nth-child(2):hover {
  background-color: #1d9bf0;
  color: #fff;
}

.social-icons a:nth-child(3):hover {
  background-color: #312f2f;
  color: #fff;
}

.social-icons a:nth-child(4):hover {
  background-color: #ea4335;
  color: #fff;
}

.main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 40px 60px;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 90px);
}

.summary {
  flex: 1;
  max-width: 650px;
}

.greeting {
  color: var(--accent-gradient-end);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.main-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 25px;
  font-weight: 700;
}

.highlight {
  color: var(--accent-primary);
  font-weight: 700;
}

.description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.main-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.main-btns a {
  text-decoration: none;
}

.blue-btn,
.outline-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
}

.blue-btn,
.outline-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.blue-btn {
  background-color: #2563eb;
  color: #fff;
  border: 0;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.blue-btn:hover {
  background-color: #1d4ed8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.outline-btn {
  background: 0 0;
  color: var(--text-primary);
  border: 2px solid var(--border-secondary);
  box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
}

.outline-btn:hover {
  background-color: var(--bg-hover);
  border-color: var(--border-hover);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.photo {
  flex-shrink: 0;
}

.image-wrapper {
  width: 380px;
  height: 380px;
  border: 3px solid var(--accent-primary);
  border-radius: 50%;
  padding: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 40px var(--shadow-color);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px var(--shadow-color);
}

.image-wrapper,
.image-wrapper img {
  border-radius: 50%;
}

.about-me {
  background-color: var(--bg-secondary);
  border-radius: 12px;
  border: 2px solid var(--border-secondary);
  max-width: 1000px;
  margin: 160px auto 36px;
  padding: 20px;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.about-split {
  max-width: 1320px;
  padding: 0 32px;
  margin: 96px auto 16px;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.about-header-top {
  text-align: left;
  margin: 0 0 10px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-primary);
}

.about-split-layout {
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(18px, 2.5vw, 32px);
  align-items: stretch;
  min-height: calc(100vh - 180px);
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 1 / 1;
  max-height: min(68vh, 620px);
  background: linear-gradient(
    180deg,
    rgba(8, 17, 33, 0.75),
    rgba(8, 17, 33, 0.95)
  );
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 8, 18, 0.14),
    rgba(3, 8, 18, 0.34)
  );
  pointer-events: none;
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}

.about-media:hover img {
  transform: scale(1.03);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  gap: 8px;
  padding-left: 12px;
}

.about-main-title {
  color: #fff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 600px;
  padding: 9px;
}

.light-theme .about-main-title {
  color: #2563eb;
}

.about-body-copy {
  display: grid;
  gap: 1.5rem;
  max-width: 60ch;
}

.about-body-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 0.95vw, 1.02rem);
  line-height: 1.85;
  word-spacing: 0.04em;
}

.about-body-copy p:first-child {
  font-size: clamp(1.02rem, 1.05vw, 1.1rem);
  color: var(--text-primary);
}

.about-skill-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.skill-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.3s ease;
}

.skill-point:hover {
  transform: translateY(-2px);
}

.skill-point-offset {
  transform: translateY(8px);
}

.skill-point:hover.skill-point-offset {
  transform: translateY(6px);
}

.skill-point-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.12);
  flex-shrink: 0;
}

.skill-point-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.skill-point-label {
  display: block;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
}

.skill-point-text {
  margin: 4px 0 0;
  color: var(--text-tertiary);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 960px) {
  .about-split-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
  }

  .about-media {
    aspect-ratio: 16 / 9;
    max-height: 360px;
  }

  .about-copy {
    padding-left: 0;
    gap: 8px;
  }

  .about-main-title {
    max-width: 14ch;
    font-size: clamp(1.9rem, 5vw, 3rem);
  }

  .about-body-copy {
    max-width: 70ch;
  }

  .about-skill-points {
    margin-top: 12px;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .about-split {
    padding: 0 16px;
    margin: 40px auto 8px;
  }

  .about-header-top {
    margin-bottom: 8px;
  }

  .about-split-layout {
    gap: 16px;
  }

  .about-media {
    aspect-ratio: 4 / 3;
    max-height: 280px;
    border-radius: 22px;
  }

  .about-main-title {
    max-width: none;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 0.98;
    margin-bottom: 0;
  }

  .about-body-copy {
    gap: 10px;
  }

  .about-body-copy p {
    font-size: 0.92rem;
    line-height: 1.6;
    word-spacing: 0.02em;
  }

  .about-body-copy p:first-child {
    font-size: 0.98rem;
  }

  .about-skill-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .skill-point-offset {
    transform: translateY(0);
  }
}

.about-header {
  font-size: 2.5rem;
  color: var(--accent-primary);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  margin-top: 20px;
}

.education-section {
  max-width: 1320px;
  margin: 220px auto 150px;
  padding: 0 32px;
}

.education-section-title {
  color: var(--accent-primary);
  width: 100%;
  text-align: center;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 70px;
}

.education-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.education-intro {
  position: sticky;
  top: 120px;
}

.education-main-title {
  color: #fff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 600px;
  padding: 9px;
}

.light-theme .education-main-title {
  color: #2563eb;
}

.education-content {
  display: grid;
  gap: 28px;
}

.education-timeline {
  display: grid;
  gap: 24px;
}

.education-entry {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.education-entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: calc(100% - 6px);
  background: linear-gradient(
    180deg,
    var(--accent-primary),
    rgba(37, 99, 235, 0.15)
  );
  border-radius: 999px;
}

.education-entry-title {
  color: var(--text-primary);
  font-size: clamp(1.1rem, 1.4vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.education-entry-meta,
.education-entry-date {
  color: var(--text-tertiary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.education-entry-date {
  margin-top: 4px;
  color: var(--text-muted);
}

.certificate-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.certificate-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border-secondary);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.certificate-chip:hover {
  transform: translateY(-2px);
  border-color: var(--accent-primary);
  background: rgba(37, 99, 235, 0.12);
  color: var(--accent-primary);
}

.certificate-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.14);
  color: var(--accent-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .education-section {
    margin: 160px auto 120px;
    padding: 0 24px;
  }

  .education-section-title {
    margin-bottom: 28px;
  }

  .education-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .education-intro {
    position: static;
  }

  .education-main-title {
    max-width: 14ch;
  }
}

@media (max-width: 640px) {
  .education-section {
    margin: 120px auto 100px;
    padding: 0 16px;
  }

  .education-section-title {
    margin-bottom: 14px;
  }

  .education-content {
    gap: 22px;
  }

  .education-timeline {
    gap: 18px;
  }

  .education-entry {
    padding-left: 18px;
    margin-bottom: 8px;
  }

  .education-entry-title {
    font-size: 1.05rem;
  }

  .education-entry-meta,
  .education-entry-date {
    font-size: 0.9rem;
  }

  .certificate-chip {
    width: 100%;
    justify-content: flex-start;
  }
}

.skills {
  margin-top: 350px;
  margin-bottom: 100px;
  padding: 0 20px;
}

.skills .skill-header {
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 50px;
  text-align: center;
  font-weight: 800;
}

.skills-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.skill-item {
  display: flex;
  flex-direction: column;
  padding: 25px;
  background-color: var(--social-bg);
  border-radius: 12px;
  border: 1px solid var(--border-secondary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px var(--shadow-color);
  width: auto;
}

.skill-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.skill-label {
  color: var(--text-tertiary);
}

.skill-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.skill-label svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  fill: var(--text-tertiary);
  transition: fill 0.3s ease;
}

.skill-percentage {
  font-weight: 800;
  color: var(--accent-primary);
}

.progress-bar-container {
  width: 100%;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  position: relative;
  overflow: visible;
}

.progress-fill {
  height: 100%;
  background-color: var(--accent-primary);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
  transition: width 1.5s ease-in-out;
}

.skill-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 40px var(--shadow-color);
  background-color: var(--social-bg-hover);
  cursor: pointer;
}

.skill-item:hover .skill-label {
  color: var(--accent-primary);
}

.skill-item:hover .skill-label svg {
  fill: var(--accent-primary);
}

.projects-section {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin: 300px auto 150px;
  padding: 0 20px;
}

.title {
  font-size: 3rem;
  margin-bottom: 50px;
  font-weight: 600;
  color: var(--accent-primary);
}

.card-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.card {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.8) 0%,
    rgba(30, 41, 59, 0.6) 100%
  );
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  overflow: hidden;
  flex: 0 1 calc(50% - 20px);
  width: calc(50% - 20px);
  min-width: 0;
  height: auto;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.light-theme .card {
  background: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0.95) 0%,
    rgba(241, 245, 249, 0.9) 100%
  );
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

.light-theme .card:hover {
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.light-theme .card::after {
  background: linear-gradient(90deg, #2563eb 0%, transparent 100%);
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.4);
}

@media (max-width: 991px) {
  .card {
    flex: 0 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 500px;
    overflow: hidden;
  }
}

.card-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #0f172a;
  flex-shrink: 0;
  position: relative;
}

.light-theme .card-image {
  background-color: #e2e8f0;
}

.card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
  transition: 0.4s ease;
}

.card:hover .card-image::before {
  background: rgba(0, 0, 0, 0.3);
}

.card-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.icon-btn {
  width: 70px;
  height: 70px;
  background: rgba(37, 99, 235, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  text-decoration: none;
  transition: 0.4s ease;
  cursor: pointer;
}

.light-theme .icon-btn {
  background: rgba(37, 99, 235, 0.85);
  border: 2px solid rgba(37, 99, 235, 0.3);
}

.icon-btn svg {
  width: 32px;
  height: 32px;
  color: white;
  stroke: white;
}

.icon-btn:hover {
  background: rgba(37, 99, 235, 1);
}

.light-theme .icon-btn:hover {
  background: rgba(37, 99, 235, 1);
}

.card:hover .card-icons {
  opacity: 1;
}

.card-image a {
  position: relative;
}

.card-image a img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.card-image img,
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  background: rgba(15, 23, 42, 0.5);
  justify-content: flex-start;
}

.light-theme .card-content {
  background: rgba(248, 250, 252, 0.7);
}

.card-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 10px;
  opacity: 0.8;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-style: italic;
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0;
  flex-grow: 0;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  gap: 15px;
  flex-shrink: 0;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.tag {
  background-color: rgba(37, 99, 235, 0.12);
  font-size: 0.72rem;
  padding: 7px 10px;
  border-radius: 999px;
  margin: 0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  color: var(--text-primary);
  cursor: default;
  border: 1px solid rgba(96, 165, 250, 0.18);
  white-space: nowrap;
}

.light-theme .tag,
.tag {
  color: var(--text-primary);
}

.light-theme .tag {
  background-color: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.14);
}

.live-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.live-link:hover {
  color: #60a5fa;
}

.live-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  fill: currentColor;
}

.contact-section {
  --contact-accent: var(--accent-primary);
  max-width: 1320px;
  margin: 200px auto 0;
  padding: 0 32px 40px;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.contact-copy {
  padding-top: 10px;
}

.contact-kicker {
  text-align: left;
  margin-bottom: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
}

.contact-heading {
  color: var(--text-primary);
  font-size: clamp(3rem, 5.7vw, 5.25rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  max-width: 8ch;
}

.contact-description {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.85;
  margin: 0 0 34px;
  max-width: 44ch;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  width: fit-content;
}

.contact-item:hover .contact-item-value,
.contact-item:hover .contact-item-label {
  color: var(--text-primary);
}

.contact-item-icon {
  width: 22px;
  height: 22px;
  color: var(--contact-accent);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
}

.contact-item-value {
  color: var(--text-tertiary);
  font-size: 0.96rem;
  line-height: 1.5;
  font-weight: 500;
}

.contact-form-shell {
  padding: 18px;
  border-radius: 28px;
  background: rgba(8, 17, 33, 0.62);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.form-message {
  display: none;
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-message.error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

.form-message.success {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid #22c55e;
  color: #22c55e;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin: 0;
  max-width: none;
  text-align: left;
}

.form-group {
  margin: 0;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: rgba(7, 9, 13, 0.95);
  border: 1px solid #1e293b;
  padding: 15px 16px;
  border-radius: 14px;
  color: white;
  font-size: 0.98rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(203, 213, 225, 0.92);
  opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.form-group input.is-error,
.form-group textarea.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

.form-group input.is-success,
.form-group textarea.is-success {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.14);
}

.form-group textarea {
  resize: vertical;
  width: 100%;
  height: 195px;
}

.contact-submit {
  width: 100%;
  border: 0;
  background: var(--accent-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 14px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-submit:hover {
  background: #3b82f6;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.18);
}

.contact-submit:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.light-theme .contact-section {
  --contact-accent: #1a479d;
}

.light-theme .contact-kicker {
  color: #1a479d;
}

.light-theme .contact-heading {
  color: #1f2937;
  font-weight: 800;
}

.light-theme .contact-description {
  color: #475569;
  font-weight: 400;
}

.light-theme .contact-item-value {
  color: #334155;
  font-weight: 500;
}

.light-theme .contact-form-shell {
  background: #e6f0ea;
  border: 1px solid rgba(26, 71, 157, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(31, 41, 55, 0.08);
}

.light-theme .form-group input,
.light-theme .form-group textarea {
  background-color: #f1f7f9;
  border: 1px solid rgba(26, 71, 157, 0.16);
  border-radius: 8px;
  color: #1f2937;
}

.light-theme .form-group input::placeholder,
.light-theme .form-group textarea::placeholder {
  color: #64748b;
}

.light-theme .form-group input:focus-visible,
.light-theme .form-group textarea:focus-visible {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.light-theme .form-group input.is-error,
.light-theme .form-group textarea.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.light-theme .form-group input.is-success,
.light-theme .form-group textarea.is-success {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.light-theme .contact-submit {
  background: #1a479d;
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(26, 71, 157, 0.18);
}

.light-theme .contact-submit:hover {
  background: #2256b9;
  box-shadow: 0 18px 32px rgba(26, 71, 157, 0.22);
}

.light-theme .contact-submit:focus-visible {
  outline: 2px solid #1a479d;
  outline-offset: 3px;
}

.site-footer {
  margin-top: auto;
  width: 100%;
  padding: 48px 40px 28px;
  text-align: center;
  color: var(--text-footer);
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer p {
  margin: 0;
}

.theme-toggle {
  border: 2px solid var(--border-secondary);
  cursor: pointer;
}

.theme-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent-primary);
  box-shadow: 0 4px 15px var(--shadow-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
  color: #fff;
  font-size: 24px;
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.theme-toggle:active {
  transform: scale(0.95);
}

.theme-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .nav-bar {
    padding: 14px 20px;
    height: auto;
  }

  .nav-header {
    font-size: 18px;
  }

  .nav-items a {
    font-size: 14px;
    padding: 8px 10px;
  }

  .social-icons a {
    padding: 8px;
    margin-left: 12px;
  }

  .social-icons a i {
    font-size: 16px;
  }

  .main-content {
    padding: 92px 24px 44px;
    gap: 36px;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .image-wrapper {
    width: min(280px, 44vw);
    height: min(280px, 44vw);
  }

  .skills {
    margin-top: 160px;
    padding: 0 20px;
  }

  .skills .skill-header {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .skills-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .skill-item {
    padding: 20px;
  }

  .skill-label {
    font-size: 1.1rem;
  }

  .skill-label svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .about-me {
    padding: 32px 20px;
    margin: 130px 16px 26px;
    max-width: 100%;
  }

  .about-header {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .projects-section {
    margin-top: 150px;
    padding: 0 24px;
  }

  .title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .card {
    flex: 0 1 calc(50% - 20px);
    width: calc(50% - 20px);
    max-width: none;
    min-width: 0;
    height: auto;
    min-height: 500px;
  }

  .card-title {
    font-size: 1.6rem;
  }

  .card-image {
    height: auto;
  }
}

@media (max-width: 768px) {
  .nav-bar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
  }

  .nav-header {
    order: 1;
    flex: 1;
    text-align: left;
    font-size: 18px;
  }

  .nav-toggle-button {
    order: 2;
    display: flex;
  }

  .nav-bar .social-icons,
  .nav-items {
    display: none;
    justify-content: center;
    width: 100%;
  }

  .nav-items {
    order: 3;
    flex-wrap: wrap;
    gap: 8px 16px;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .nav-items a {
    font-size: 15px;
    padding: 10px 16px;
    width: auto;
  }

  .nav-bar .social-icons {
    order: 4;
    gap: 12px;
    padding: 8px 0;
  }

  .nav-bar .social-icons a {
    margin-left: 0;
    padding: 10px;
  }

  .nav-bar .social-icons a i {
    font-size: 18px;
  }

  .nav-bar.nav-open .nav-items,
  .nav-bar.nav-open .social-icons {
    display: flex;
  }

  .main-content {
    flex-direction: column;
    padding: 90px 24px 40px;
    gap: 40px;
    text-align: center;
  }

  .summary {
    max-width: 100%;
  }

  .greeting {
    font-size: 1rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .image-wrapper {
    width: 280px;
    height: 280px;
  }

  .main-btns {
    justify-content: center;
    gap: 15px;
  }

  .blue-btn,
  .outline-btn {
    width: auto;
    min-width: 200px;
  }

  .skills {
    margin-top: 140px;
    padding: 0 20px;
  }

  .skills .skill-header {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .skills-list {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .skill-item {
    padding: 20px;
  }

  .skill-label {
    font-size: 1.05rem;
    gap: 10px;
  }

  .skill-label svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .skill-percentage {
    font-size: 1rem;
  }

  .about-me {
    padding: 30px 20px;
    margin: 120px 16px 22px;
    border-radius: 8px;
  }

  .about-header {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .projects-section {
    margin-top: 130px;
    padding: 0 12px;
  }

  .title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .card-container {
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
  }

  .card {
    flex: 0 1 calc(50% - 7.5px);
    width: calc(50% - 7.5px);
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 500px;
    overflow: visible;
  }

  .card-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .card-image {
    height: auto;
  }

  .live-link {
    white-space: normal;
  }

  .card-content {
    padding: 14px 14px 12px;
    flex: 1;
  }

  .card-text {
    margin-bottom: 0;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: auto;
  }

  .live-link {
    align-self: flex-start;
  }
}

@media (max-width: 960px) {
  .contact-section {
    margin-top: 150px;
    padding: 0 24px 32px;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-heading {
    max-width: 12ch;
    font-size: clamp(2.8rem, 7vw, 4.4rem);
  }
}

@media (max-width: 640px) {
  .main-content {
    min-height: auto;
    gap: 24px;
  }

  .summary {
    max-width: 100%;
  }

  .photo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-skill-points {
    grid-template-columns: 1fr;
  }

  .education-section {
    margin: 120px auto 100px;
    padding: 0 16px;
  }

  .education-entry,
  .contact-item {
    width: 100%;
  }

  .contact-section {
    margin-top: 120px;
    padding: 0 16px 24px;
  }

  .contact-heading {
    max-width: none;
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .contact-description {
    max-width: none;
    font-size: 0.96rem;
  }

  .contact-form-shell {
    padding: 14px;
    border-radius: 22px;
  }

  .form-group input,
  .form-group textarea,
  .contact-submit {
    border-radius: 12px;
  }

  .site-footer {
    padding-top: 56px;
    font-size: 0.75rem;
  }

  .certificate-links {
    gap: 10px;
  }

  .certificate-chip {
    width: 100%;
    justify-content: center;
  }

  .card {
    flex: 0 1 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 500px;
    overflow: visible;
  }
  .card-image {
    height: auto;
  }
}

@media (max-width: 600px) {
  .nav-bar {
    padding: 11px 15px;
  }

  .nav-bar .social-icons a i,
  .nav-header {
    font-size: 17px;
  }

  .nav-items a {
    font-size: 14px;
    padding: 9px 15px;
  }

  .nav-bar .social-icons a {
    padding: 9px;
  }

  .main-content {
    padding: 85px 20px 35px;
  }

  .greeting {
    font-size: 0.95rem;
  }

  .main-title {
    font-size: 1.85rem;
  }

  .image-wrapper {
    width: 260px;
    height: 260px;
  }
  .card-image {
    height: auto;
  }
}

@media (max-width: 480px) {
  .nav-bar {
    padding: 10px 14px;
  }

  .nav-bar .social-icons a i,
  .nav-header {
    font-size: 16px;
  }

  .nav-items a {
    font-size: 14px;
    padding: 8px 14px;
  }

  .nav-bar .social-icons a {
    padding: 8px;
  }

  .nav-toggle-button {
    width: 36px;
    height: 36px;
  }

  .nav-toggle-button span,
  .nav-toggle-button span::after,
  .nav-toggle-button span::before {
    width: 20px;
  }

  .main-content {
    padding: 80px 16px 30px;
    gap: 30px;
  }

  .greeting {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .main-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .about-skill-points {
    grid-template-columns: 1fr;
  }

  .description {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .image-wrapper {
    width: 240px;
    height: 240px;
    padding: 10px;
  }

  .main-btns {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }

  .blue-btn,
  .outline-btn {
    width: 100%;
    max-width: 280px;
  }

  .skills {
    margin-top: 110px;
    padding: 0 16px;
  }

  .skills .skill-header {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .skills-list {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 100%;
  }

  .skill-item {
    padding: 18px;
  }

  .skill-label {
    font-size: 1rem;
    gap: 8px;
  }

  .skill-label svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .skill-percentage {
    font-size: 0.95rem;
  }

  .skill-info-row {
    margin-bottom: 15px;
  }

  .about-me {
    padding: 20px 16px;
    margin: 100px 12px 18px;
    max-width: 100%;
  }

  .about-header {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .projects-section {
    margin-top: 96px;
    padding: 0 8px;
  }

  .title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .card-container {
    gap: 12px;
  }

  .card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
  }

  .card-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .card-image {
    height: auto;
  }

  .live-link {
    white-space: normal;
  }

  .card-content {
    padding: 10px 10px 10px;
  }

  .card-text {
    font-size: 0.85rem;
    line-height: 1.45;
    flex-grow: 0;
    margin-bottom: 6px;
  }

  .card-footer {
    margin-top: 6px;
    gap: 8px;
  }

  .card-tags {
    gap: 6px;
  }

  .tag {
    font-size: 0.64rem;
    padding: 5px 8px;
  }

  .contact-form-shell {
    padding: 12px;
    border-radius: 18px;
  }

  .contact-details {
    gap: 12px;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-item-label {
    font-size: 0.95rem;
  }

  .contact-item-value {
    font-size: 0.9rem;
  }

  .site-footer {
    padding: 48px 14px 24px;
  }

  .card-category {
    font-size: 0.7rem;
  }

  .live-link {
    font-size: 0.85rem;
  }
}

[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="fade"] {
  opacity: 0;
}

[data-reveal="fade"].reveal-active {
  opacity: 1;
}

[data-reveal="slide-up"] {
  opacity: 0;
  transform: translateY(60px);
}

[data-reveal="slide-up"].reveal-active {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="slide-down"] {
  opacity: 0;
  transform: translateY(-60px);
}

[data-reveal="slide-down"].reveal-active {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="slide-left"] {
  opacity: 0;
  transform: translateX(60px);
}

[data-reveal="slide-left"].reveal-active {
  opacity: 1;
  transform: translateX(0);
}

[data-reveal="slide-right"] {
  opacity: 0;
  transform: translateX(-60px);
}

[data-reveal="slide-right"].reveal-active {
  opacity: 1;
  transform: translateX(0);
}

[data-reveal="zoom-in"] {
  opacity: 0;
  transform: scale(0.9);
}

[data-reveal="zoom-in"].reveal-active {
  opacity: 1;
  transform: scale(1);
}

[data-reveal="zoom-out"] {
  opacity: 0;
  transform: scale(1.1);
}

[data-reveal="zoom-out"].reveal-active {
  opacity: 1;
  transform: scale(1);
}

[data-reveal="flip"] {
  opacity: 0;
  transform: perspective(1000px) rotateY(-15deg);
}

[data-reveal="flip"].reveal-active {
  opacity: 1;
  transform: perspective(1000px) rotateY(0);
}

[data-reveal-delay="100"] {
  transition-delay: 100ms;
}

[data-reveal-delay="200"] {
  transition-delay: 200ms;
}

[data-reveal-delay="300"] {
  transition-delay: 300ms;
}

[data-reveal-delay="400"] {
  transition-delay: 400ms;
}

[data-reveal-delay="500"] {
  transition-delay: 500ms;
}

[data-reveal-delay="600"] {
  transition-delay: 600ms;
}

[data-reveal-delay="700"] {
  transition-delay: 700ms;
}

[data-reveal-delay="800"] {
  transition-delay: 800ms;
}

[data-reveal-duration="fast"] {
  transition-duration: 0.4s;
}

[data-reveal-duration="slow"] {
  transition-duration: 1.2s;
}

[data-reveal-duration="slower"] {
  transition-duration: 1.6s;
}

[data-reveal-easing="ease-out"] {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

[data-reveal-easing="ease-in"] {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

[data-reveal-easing="bounce"] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

svg {
  width: 25px;
  height: 25px;
}
