@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@600;700&display=swap');

:root {
  --bg0: #070A12;
  --bg1: #0B1020;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.52);
  --accent: #7C5CFF; /* purple */
  --accent2: #35A7FF; /* blue */
  --accent3: #00E5FF;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 18px 50px rgba(0, 0, 0, 0.5);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 600px at 10% -10%, rgba(124, 92, 255, 0.35), transparent 55%),
    radial-gradient(900px 520px at 90% 0%, rgba(53, 167, 255, 0.22), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

/* Accessible focus */
:focus-visible {
  outline: 2px solid rgba(53, 167, 255, 0.9);
  outline-offset: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #0C1430;
  border: 1px solid var(--stroke);
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  scroll-margin-top: calc(var(--header-h) + 14px);
}

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-title {
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(26px, 2.4vw, 38px);
  margin: 0 0 12px;
}

.section-lead {
  margin: 0 auto;
  max-width: 780px;
  color: var(--muted);
  font-size: 1.03rem;
}

.accent {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-text {
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.98), rgba(53, 167, 255, 0.98));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 14, 30, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.95), rgba(53, 167, 255, 0.9));
  box-shadow: 0 10px 25px rgba(124, 92, 255, 0.18);
  font-weight: 800;
  font-family: Poppins, Inter, system-ui, sans-serif;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-name {
  font-family: Poppins, Inter, system-ui, sans-serif;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 10px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.88);
}

.nav-link.active {
  color: rgba(255, 255, 255, 0.95);
}
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-lines {
  width: 18px;
  height: 12px;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines {
  display: block;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
}
.nav-toggle-lines::before { top: 0; }
.nav-toggle-lines::after { bottom: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle-lines {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  height: 2px;
}

/* Mobile nav */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav { position: relative; }
  .nav-links {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(320px, 86vw);
    padding: 10px;
    border-radius: 16px;
    background: rgba(10, 14, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-link {
    padding: 12px 14px;
    border-radius: 12px;
  }
  .nav-link::after { display: none; }
  .nav-link.active {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.95);
  }
}

/* Loader */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 18, 0.92);
  z-index: 1000;
  display: grid;
  place-items: center;
  transition: opacity 260ms ease;
}

.loader-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(124, 92, 255, 0.95);
  animation: spin 780ms linear infinite;
  box-shadow: 0 20px 45px rgba(124, 92, 255, 0.2);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
  cursor: pointer;
  user-select: none;
}

.btn-sm {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.94rem;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.95), rgba(53, 167, 255, 0.92));
  color: #07101F;
  box-shadow: 0 14px 35px rgba(124, 92, 255, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(124, 92, 255, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

/* Reveal animations
   Default (no JS): content is visible.
   With JS enabled: elements animate in when observed. */
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.hero {
  padding-top: 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.95rem;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(124, 92, 255, 0.12);
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  font-family: Poppins, Inter, system-ui, sans-serif;
}

.hero-subtitle {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.07rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-value {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.stat-label {
  color: var(--muted-2);
  font-size: 0.92rem;
  margin-top: 2px;
}

.hero-side {
  position: relative;
  min-height: 430px;
}

.hero-glow {
  position: absolute;
  inset: -60px -60px -60px -60px;
  background: radial-gradient(closest-side, rgba(124, 92, 255, 0.20), transparent 65%);
  filter: blur(6px);
  pointer-events: none;
}

.hero-card {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.12);
}

.traffic {
  display: flex;
  gap: 8px;
}
.traffic span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}
.hero-card-title {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-card-body {
  padding: 16px;
}

.status-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.status-avatar {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.9), rgba(53, 167, 255, 0.85));
  box-shadow: 0 14px 34px rgba(124, 92, 255, 0.22);
}

.status-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  font-size: 0.9rem;
}
.status-title {
  font-weight: 900;
  letter-spacing: 0.2px;
  margin-top: 2px;
}
.status-sub {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 2px;
}

.status-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 8px;
}

.hero-card-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.card-title {
  margin: 0 0 10px;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: 1.1rem;
}

.card-text {
  color: var(--muted);
  margin: 0 0 14px;
}

.list-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.83);
  font-weight: 700;
  font-size: 0.95rem;
}

.about-progress-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  overflow: hidden;
}
.about-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.95), rgba(53, 167, 255, 0.92));
}

.muted { color: var(--muted); }
.small-note { margin-top: 12px; }

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.skills-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.skill {
  margin-top: 18px;
}
.skill:first-of-type { margin-top: 12px; }

.skill-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.skill-name {
  font-weight: 800;
}
.skill-percent {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  font-size: 0.96rem;
}

.skill-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.skill-meter {
  height: 100%;
  width: calc(var(--percent) * 1%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.95), rgba(53, 167, 255, 0.92));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1200ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.skill-meter.animate {
  transform: scaleX(1);
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.mini-card {
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.mini-title {
  font-weight: 900;
  margin-bottom: 6px;
}
.mini-desc {
  color: var(--muted);
  font-size: 0.96rem;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: start;
}

.project-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(255, 255, 255, 0.15);
}

.project-media {
  padding: 18px 18px 0;
}

.project-media-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.badge {
  font-size: 0.9rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.85);
}
.badge-accent {
  background: rgba(124, 92, 255, 0.15);
  border-color: rgba(124, 92, 255, 0.35);
}

.project-thumb {
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
}

.project-thumb img {
  display: block;
  width: 100%;
  height: clamp(170px, 22vw, 260px);
  object-fit: cover;
}

.project-body {
  padding: 18px 18px 18px;
}

.project-title {
  margin: 0 0 10px;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: 1.35rem;
}

.project-desc {
  color: var(--muted);
  margin: 0 0 14px;
}

.project-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
}

.edu-meta {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.project-meta li {
  color: rgba(255, 255, 255, 0.82);
}
.meta-key {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
  margin-right: 6px;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.placeholder-column {
  display: grid;
  gap: 14px;
}

.placeholder-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.placeholder-card.subtle {
  background: rgba(255, 255, 255, 0.03);
}

.empty-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.empty-item {
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Education timeline */
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.35), rgba(53, 167, 255, 0.25));
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  padding-left: 54px;
  padding-bottom: 22px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: 12px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.95), rgba(53, 167, 255, 0.92));
  box-shadow: 0 0 0 6px rgba(124, 92, 255, 0.16);
}

.timeline-content {
  padding: 16px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
}

.timeline-title {
  margin: 0;
  font-size: 1.08rem;
  font-family: Poppins, Inter, system-ui, sans-serif;
}

.timeline-year {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.78);
}

.timeline-desc {
  color: var(--muted);
  margin: 10px 0 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.contact-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 20px;
}

.contact-items {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.contact-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-label {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 900;
}

.contact-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.contact-link:hover {
  color: rgba(255, 255, 255, 0.98);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* Footer */
.site-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 30, 0.4);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-text {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.footer-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
}
.footer-link:hover {
  color: rgba(255, 255, 255, 0.98);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { min-height: 340px; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cards-row { grid-template-columns: 1fr; }
  .timeline-list::before { left: 20px; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

