/* Oliver Massaad - Smooth Interactive Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0b0d12;
  --bg-2: #11141b;
  --surface: #171c27;
  --surface-soft: #1d2433;
  --text: #f4f7fb;
  --text-muted: #9ea8bc;
  --line: #2b3448;
  --line-strong: #3a4660;
  --accent: #ffffff;
  --success: #4de08e;
  --radius: 14px;
  --radius-lg: 18px;
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.32);
  --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.4);
  --space: 1.25rem;
  --max-width: 1050px;
  --nav-height: 70px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@keyframes textFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes textShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes textPulse {
  0%, 100% { text-shadow: 0 0 0 rgba(255, 255, 255, 0); }
  50% { text-shadow: 0 0 22px rgba(255, 255, 255, 0.18); }
}

@keyframes longWordIn {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 255, 255, 0); }
  50% { box-shadow: 0 0 18px rgba(255, 255, 255, 0.12); }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes blinkCaret {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(900px 600px at 110% 10%, rgba(255, 255, 255, 0.04), transparent 60%),
    linear-gradient(170deg, #0a0c10, #0e1118 45%, #0b0d12);
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 13, 18, 0.75);
  backdrop-filter: blur(12px);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--nav-height);
  padding: 0 var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}

nav .logo:hover { opacity: 0.85; }

nav ul {
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  display: flex;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(20, 25, 35, 0.8);
  position: relative;
  isolation: isolate;
  --nav-pill-x: 0px;
  --nav-pill-w: 0px;
}

nav ul::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: var(--nav-pill-x);
  width: var(--nav-pill-w);
  height: calc(100% - 0.7rem);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  z-index: 0;
  transition: left 0.34s cubic-bezier(0.22, 1, 0.36, 1), width 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

nav ul a {
  display: block;
  position: relative;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

nav ul a:hover,
nav ul a.active {
  color: var(--text);
  background: transparent;
  transform: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

main {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 1.8rem) var(--space) 4rem;
  text-align: left;
}

.hero-flat {
  --hero-parallax: 0px;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0 0.8rem;
  text-align: center;
  transform: translateY(var(--hero-parallax));
  transition: transform 0.35s ease;
}

.hero-flat h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(2rem, 5vw, 3.05rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #ffffff 20%, #c9d1df 50%, #ffffff 80%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textFadeUp 0.7s ease both, textShimmer 12s linear infinite 1.2s;
}

.hero-flat .tagline {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.04rem;
  animation: textFadeUp 0.75s ease both 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-flat .tagline::after {
  content: "";
  width: 0.48rem;
  height: 1.1rem;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.7);
  animation: blinkCaret 1.05s step-end infinite 1.1s;
}

.hero-flat .cta {
  margin-top: 1.15rem;
  display: flex;
  gap: 0.72rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-flat .meta-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  animation: textFadeUp 0.75s ease both 0.3s;
}

.pill {
  display: inline-flex;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  animation: softFloat 4s ease-in-out infinite;
}

.pill:nth-child(2) { animation-delay: 0.35s; }
.pill:nth-child(3) { animation-delay: 0.7s; }

.pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.home-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1.3fr 1fr;
}

.section {
  --ty: 0px;
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(29, 36, 51, 0.72), rgba(23, 28, 39, 0.65));
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
  transform: translateY(var(--ty)) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}

.section.span-2 { grid-column: span 2; }

.section::after,
.card::after,
.skill-group::after,
.contact-block::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(240px circle at var(--mx, -20%) var(--my, -20%), rgba(255, 255, 255, 0.12), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.section:hover,
.card:hover,
.skill-group:hover,
.contact-block:hover {
  --ty: -2px;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-card);
}

.section:hover::after,
.card:hover::after,
.skill-group:hover::after,
.contact-block:hover::after {
  opacity: 1;
}

.section h2 {
  margin: 0 0 0.72rem;
  font-size: 0.92rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
  animation: textFadeUp 0.55s ease both;
}

.section p {
  margin: 0 0 0.72rem;
  color: #d5dcec;
  max-width: 72ch;
}

.section p:last-child { margin-bottom: 0; }

.about-section {
  text-align: center;
}

.about-section p {
  margin-inline: auto;
}

/* Home page visual modules (below About Me) */
.highlights-panel,
.education-panel,
.volunteer-panel,
.achievements-panel {
  display: grid;
  gap: 0.8rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.fact-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 0.8rem;
  text-align: center;
}

.fact-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #edf3ff;
  line-height: 1.1;
}

.fact-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: #b5bfd4;
}

.mini-stack {
  display: grid;
  gap: 0.6rem;
}

.mini-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  padding: 0.75rem 0.85rem;
  text-align: center;
}

.mini-card h3 {
  margin: 0.2rem 0 0.25rem;
  font-size: 0.95rem;
}

.mini-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #bac4d9;
}

.mini-year {
  display: inline-block;
  font-size: 0.74rem;
  color: #d6deef;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  margin-inline: auto;
}

.experience-panel {
  display: grid;
  gap: 0.75rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.experience-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.9rem 0.95rem;
  text-align: center;
}

.experience-head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.experience-head h3 {
  margin: 0;
  font-size: 0.95rem;
}

.experience-head span {
  font-size: 0.76rem;
  color: #c6d0e4;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.16rem 0.45rem;
  border-radius: 999px;
}

.experience-card .where {
  margin: 0.35rem 0 0.45rem;
  font-size: 0.84rem;
  color: #b7c1d7;
}

.experience-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.experience-card li {
  color: #d7deed;
  font-size: 0.88rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
  color: #d9e1f2;
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
  font-size: 0.8rem;
}

.skill-cloud-panel {
  display: grid;
  gap: 0.75rem;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.skill-cloud span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: #dce4f5;
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
  font-size: 0.82rem;
  line-height: 1.2;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.skill-cloud span:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.fact-card,
.mini-card,
.experience-card,
.chip {
  --ty: 0px;
  --rx: 0deg;
  --ry: 0deg;
  transform: translateY(var(--ty)) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.fact-card:hover,
.mini-card:hover,
.experience-card:hover {
  --ty: -2px;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.achievement-banner {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  color: #e8edf8;
  font-weight: 600;
}

.long-animate {
  line-height: 1.8;
}

.long-animate .long-word {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity, filter;
}

.long-animate.play .long-word {
  animation: longWordIn 0.5s ease forwards;
  animation-delay: var(--d, 0ms);
}

.section a,
.contact-links a,
footer a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.section a:hover,
.contact-links a:hover,
footer a:hover {
  border-bottom-color: #ffffff;
}

.timeline-item {
  margin-bottom: 0.95rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.timeline-item .role {
  margin-bottom: 0.15rem;
  font-weight: 600;
}

.timeline-item .where {
  margin-bottom: 0.42rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.skills-grid,
.card-grid {
  display: grid;
  gap: 1rem;
  justify-items: stretch;
}

.skills-grid {
  grid-template-columns: 1fr;
}

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

.skill-group,
.card,
.contact-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(165deg, var(--surface-soft), var(--surface));
  box-shadow: var(--shadow-soft);
}

.skill-group,
.card {
  padding: 1.05rem 1.12rem;
  width: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card h2,
.card h3 {
  margin: 0 0 0.34rem;
  font-size: 1.08rem;
}

.card .meta {
  margin-bottom: 0.52rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card p {
  margin: 0;
  max-width: 70ch;
  color: #d8deea;
}

.card .badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-winner {
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
}

.badge-cert {
  color: var(--success);
  background: rgba(77, 224, 142, 0.15);
}

.skill-group strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.skill-group span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.page-header {
  margin-bottom: 1.35rem;
  text-align: left;
}

.page-header h1 {
  margin: 0 0 0.32rem;
  font-size: clamp(1.9rem, 4vw, 2.45rem);
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #ffffff 20%, #c9d1df 50%, #ffffff 80%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textFadeUp 0.7s ease both, textShimmer 14s linear infinite 1.6s;
}

.page-header p {
  margin: 0;
  color: var(--text-muted);
  animation: textFadeUp 0.6s ease both 0.08s;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.63rem 1.06rem;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  transform: skewX(-24deg);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover::after { left: 135%; }
.btn:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.03);
}
.btn:active {
  transform: translateY(0) scale(0.99);
}
.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.btn-primary {
  color: #0b0d12;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.btn-primary:hover {
  background: #eceff5;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32), 0 0 18px rgba(255, 255, 255, 0.14);
  animation: btnGlow 2.2s ease-in-out infinite;
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.contact-block {
  padding: 1.2rem 1.25rem;
  margin-bottom: 1rem;
}

.contact-block h2,
.form-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.03rem;
}

.contact-links {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.contact-links-spaced {
  margin-top: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.form-section {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(29, 36, 51, 0.72), rgba(23, 28, 39, 0.65));
  box-shadow: var(--shadow-soft);
}

form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 640px;
  margin-inline: auto;
}

form p { margin-bottom: 0.85rem; }

form label {
  display: block;
  margin-bottom: 0.32rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  text-align: left;
}

form input,
form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.66rem 0.82rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #101622;
  color: var(--text);
  text-align: left;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.32);
  background: #141b2b;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

.msg-success {
  margin-bottom: 1rem;
  padding: 0.82rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(77, 224, 142, 0.45);
  color: var(--success);
  background: rgba(77, 224, 142, 0.1);
}

footer {
  margin-top: auto;
  padding: 1.35rem var(--space);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.87rem;
  color: var(--text-muted);
}

footer p { margin: 0 0 0.24rem; }

.achievement-card .top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.42rem;
}

/* Smooth reveal animation */
.reveal {
  opacity: 0;
  --reveal-y: 16px;
  --reveal-s: 0.985;
  transform: translateY(calc(var(--reveal-y) + var(--ty, 0px))) scale(var(--reveal-s)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1), transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  --reveal-y: 0px;
  --reveal-s: 1;
  opacity: 1;
  transform: translateY(calc(var(--reveal-y) + var(--ty, 0px))) scale(var(--reveal-s)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

@media (max-width: 980px) {
  .home-grid {
    grid-template-columns: 1fr;
  }

  .section.span-2 { grid-column: auto; }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .fact-grid,
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  main {
    padding-top: calc(var(--nav-height) + 1.2rem);
  }

  .hero-flat {
    padding: 0.25rem 0 0.65rem;
  }
}

@media (max-width: 640px) {
  .nav-toggle { display: inline-flex; }

  nav ul::before {
    display: none;
  }

  nav ul {
    position: fixed;
    top: calc(var(--nav-height) + 8px);
    left: 0.8rem;
    right: 0.8rem;
    display: grid;
    gap: 0.3rem;
    padding: 0.55rem;
    background: rgba(16, 20, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  nav ul.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  nav ul a {
    text-align: center;
    border-radius: 10px;
    padding: 0.58rem 0.8rem;
  }

  .fact-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .long-animate .long-word {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

}
