/* =========================================================
   GLOBAL VARIABLES
========================================================= */
:root {
    --bg-main: #0d0823;
    --bg-secondary: #120d2f;
    --bg-card: rgba(255, 255, 255, 0.08);
    --bg-card-strong: rgba(255, 255, 255, 0.13);
  
    --text-main: #f8f5ff;
    --text-muted: #c8bedf;
    --text-soft: #9c91bd;
  
    --accent-pink: #ff63d8;
    --accent-purple: #8b5cff;
    --accent-cyan: #31e6ff;
    --accent-lilac: #d9b7ff;
  
    --border-soft: rgba(255, 255, 255, 0.14);
    --shadow-card: 0 24px 80px rgba(0, 0, 0, 0.35);
  
    --container: 1180px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
  
    --font-main: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: Georgia, "Times New Roman", serif;
  }
  
  /* =========================================================
     RESET / BASE
  ========================================================= */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    background: var(--bg-main);
  }
  
  body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-main);
    color: var(--text-main);
    background:
      radial-gradient(circle at 20% 10%, rgba(139, 92, 255, 0.24), transparent 32rem),
      radial-gradient(circle at 80% 5%, rgba(255, 99, 216, 0.18), transparent 28rem),
      linear-gradient(180deg, #0d0823 0%, #120d2f 45%, #0d0823 100%);
    overflow-x: hidden;
  }
  
  body.menu-open {
    overflow: hidden;
  }

  /* =========================================================
   TYPOGRAPHY
   Custom heading style for this project
========================================================= */
h1,
h2,
h3,
.brand-name {
  font-family: var(--font-heading);
  font-weight: 500;
}

p,
a,
button,
input,
textarea,
span,
li {
  font-family: var(--font-main);
}
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img,
  canvas,
  svg {
    max-width: 100%;
    display: block;
  }
  
  button,
  input,
  textarea {
    font: inherit;
  }
  
  ::selection {
    color: #0d0823;
    background: var(--accent-cyan);
  }
  
  /* =========================================================
     BACKGROUND DECORATION
     No external images. No lantern-style background.
  ========================================================= */
  .site-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
  }
  
  .bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.17;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
  }
  
  .bg-orb {
    position: absolute;
    width: 26rem;
    height: 26rem;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.26;
  }
  
  .bg-orb-one {
    top: 8%;
    left: -8rem;
    background: var(--accent-purple);
  }
  
  .bg-orb-two {
    top: 26%;
    right: -10rem;
    background: var(--accent-pink);
  }
  
  .bg-orb-three {
    bottom: 5%;
    left: 28%;
    background: var(--accent-cyan);
    opacity: 0.15;
  }
  
  /* =========================================================
     HEADER / NAVIGATION
  ========================================================= */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem;
  }
  
  .main-nav {
    position: relative;
    width: min(100%, var(--container));
    min-height: 4.7rem;
    margin: 0 auto;
    padding: 0 1.2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: rgba(13, 8, 35, 0.68);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: min-height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }
  
  .main-nav::after {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    bottom: -1px;
    height: 1px;
    opacity: 0.65;
    background: linear-gradient(90deg, transparent, var(--accent-pink), var(--accent-cyan), transparent);
  }
  
  .nav-side {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-left {
    justify-content: flex-start;
  }
  
  .nav-right {
    justify-content: flex-end;
  }
  
  .nav-side a {
    position: relative;
    display: inline-flex;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
  }
  
  .nav-side a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    transition: width 0.25s ease;
  }
  
  .nav-side a:hover {
    color: var(--text-main);
  }
  
  .nav-side a:hover::after {
    width: 100%;
  }
  
/* =========================================================
   HEADER LOGO IMAGE
========================================================= */
.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 15rem;
    color: var(--text-main);
  }
  
  .brand-logo-image {
    height: 4.2rem;
  }
  
  .brand-logo-image img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 19rem;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(255, 99, 216, 0.28));
  }
  
  .mobile-menu-btn {
    display: none;
    width: 2.7rem;
    height: 2.7rem;
    margin-left: auto;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 1.1rem;
    height: 2px;
    margin: 0.25rem auto;
    background: var(--text-main);
    border-radius: 999px;
  }
  
  .mobile-nav {
    display: none;
  }
  
  /* Scroll animation support */
  @supports (animation-timeline: view()) {
    @keyframes heroFadeOut {
      to {
        opacity: 0.22;
        transform: scale(0.98);
      }
    }
  
    @keyframes logoCompact {
      to {
        transform: scale(0.88);
      }
    }
  
    .hero-section {
      animation: heroFadeOut linear both;
      animation-timeline: view();
      animation-range: exit -120px;
    }
  
    .brand-logo {
      animation: logoCompact linear both;
      animation-timeline: view();
      animation-range-start: 10vh;
      animation-range-end: 90vh;
    }
  }
  
  /* =========================================================
     HERO SECTION
  ========================================================= */
  .hero-section {
    position: relative;
    min-height: calc(100vh - 7rem);
    display: grid;
    align-items: center;
    padding: 6rem 1rem 5rem;
  }
  
  .hero-inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 4rem;
    align-items: center;
  }
  
  .hero-copy h1 {
    max-width: 780px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6.4vw, 7rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.065em;
    text-wrap: balance;
  }
  
  .hero-copy h1 span {
    display: block;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-lilac), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-description {
    max-width: 650px;
    margin: 1.7rem 0 0;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.75;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.2rem;
  }
  
  .primary-btn,
  .secondary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.3rem;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }
  
  .primary-btn {
    color: #080419;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple), var(--accent-cyan));
    box-shadow: 0 16px 45px rgba(255, 99, 216, 0.22);
  }
  
  .secondary-btn {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
  }
  
  .primary-btn:hover,
  .secondary-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .hero-visual {
    position: relative;
    min-height: 32rem;
    display: grid;
    place-items: center;
  }
  
  /* =========================================================
   HERO VISUAL - STUDIO DASHBOARD
========================================================= */
.studio-panel {
    position: relative;
    width: min(100%, 31rem);
    padding: 1.2rem;
    border: 1px solid var(--border-soft);
    border-radius: 2rem;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
      rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
  }
  
  .studio-panel::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -25%;
    width: 20rem;
    height: 20rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 99, 216, 0.34), transparent 68%);
    pointer-events: none;
  }
  
  .studio-panel::after {
    content: "";
    position: absolute;
    right: -18%;
    bottom: -25%;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(49, 230, 255, 0.22), transparent 70%);
    pointer-events: none;
  }
  
  .panel-top,
  .panel-header,
  .panel-track,
  .panel-bottom {
    position: relative;
    z-index: 2;
  }
  
  .panel-top {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1.2rem;
  }
  
  .panel-top span {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
  }
  
  .panel-top span:nth-child(1) {
    background: var(--accent-pink);
  }
  
  .panel-top span:nth-child(2) {
    background: var(--accent-purple);
  }
  
  .panel-top span:nth-child(3) {
    background: var(--accent-cyan);
  }
  
  .panel-header {
    padding: 1.1rem;
    border: 1px solid var(--border-soft);
    border-radius: 1.35rem;
    background: rgba(7, 3, 22, 0.38);
  }
  
  .panel-header strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.04em;
  }
  
  .panel-header small {
    display: block;
    margin-top: 0.3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  .panel-track {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
  }
  
  .panel-line {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.055);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  
  .panel-line:hover {
    transform: translateX(6px);
    border-color: rgba(49, 230, 255, 0.34);
  }
  
  .line-dot {
    width: 0.82rem;
    height: 0.82rem;
    margin-top: 0.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
    box-shadow: 0 0 20px rgba(49, 230, 255, 0.28);
  }
  
  .panel-line strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
  }
  
  .panel-line small {
    color: var(--text-muted);
    line-height: 1.45;
  }
  
  .panel-bottom {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(8, 4, 25, 0.52);
  }
  
  .panel-bottom span {
    display: block;
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  
  .panel-bottom strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.1rem;
  }
  
  .panel-progress {
    height: 0.55rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .panel-progress span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple), var(--accent-cyan));
  }
  
  /* =========================================================
     WAVE DIVIDERS
  ========================================================= */
  .wave-divider {
    position: relative;
    height: 78px;
    margin: -20px 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .wave-divider canvas {
    width: 100%;
    height: 78px;
  }
  
  .wave-divider-alt {
    opacity: 0.88;
  }
  
  /* =========================================================
     COMMON SECTION STYLES
  ========================================================= */
  .section {
    position: relative;
    padding: 7rem 1rem;
  }
  
  .section-inner {
    width: min(100%, var(--container));
    margin: 0 auto;
  }
  
  .section-heading {
    max-width: 760px;
    margin-bottom: 3rem;
  }
  
  .section-heading h2,
  .contact-copy h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }
  
  .section-heading p,
  .contact-copy p {
    color: var(--text-muted);
    line-height: 1.75;
  }
  
  /* =========================================================
     GLASS CARDS
  ========================================================= */
  .glass-card {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
      rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  
  .cards-grid {
    display: grid;
    gap: 1.2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .service-card {
    position: relative;
    min-height: 22rem;
    padding: 1.5rem;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }
  
  .service-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% -20%;
    height: 14rem;
    background: radial-gradient(circle, rgba(255, 99, 216, 0.25), transparent 64%);
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.28);
    background: var(--bg-card-strong);
  }
  
  .service-card:hover::after {
    opacity: 1;
  }
  
  .card-icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    margin-bottom: 4rem;
    border-radius: 1rem;
    color: #080419;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
    font-weight: 900;
  }
  
  .service-card h3 {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
  }
  
  .service-card p {
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  /* =========================================================
     PROJECTS / FOCUS SECTION
  ========================================================= */
  .projects-section {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
      rgba(255, 255, 255, 0.015);
  }
  
  .focus-list {
    display: grid;
    gap: 1rem;
  }
  
  .focus-item {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
    padding: 1.4rem;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.055);
    transition: transform 0.2s ease, border-color 0.2s ease;
  }
  
  .focus-item:hover {
    transform: translateX(8px);
    border-color: rgba(49, 230, 255, 0.4);
  }
  
  .focus-number {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
    color: var(--accent-cyan);
    background: rgba(49, 230, 255, 0.08);
    font-weight: 900;
  }
  
  .focus-item h3 {
    margin: 0 0 0.55rem;
    font-size: 1.45rem;
  }
  
  .focus-item p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  /* =========================================================
     CONTACT SECTION
  ========================================================= */
  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: 2rem;
    align-items: start;
  }
  
  .contact-details {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
  }
  
  .contact-details p {
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.045);
  }
  
  .contact-details span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  
  .contact-details a {
    color: var(--accent-cyan);
  }
  
  .contact-form {
    padding: 1.4rem;
  }
  
  .hidden-field {
    display: none;
  }
  
  .form-row {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
  }
  
  .form-row label {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 800;
  }
  
  .form-row input,
  .form-row textarea {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 0.95rem 1rem;
    color: var(--text-main);
    background: rgba(8, 4, 25, 0.58);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  
  .form-row input:focus,
  .form-row textarea:focus {
    border-color: rgba(49, 230, 255, 0.65);
    background: rgba(8, 4, 25, 0.76);
  }
  
  .form-row textarea {
    resize: vertical;
    min-height: 9rem;
  }
  
  .form-submit {
    width: 100%;
    border: 0;
  }
  
  .form-status {
    min-height: 1.4rem;
    margin: 1rem 0 0;
    color: var(--text-muted);
    line-height: 1.4;
  }
  
  .form-status.success {
    color: #7dffcf;
  }
  
  .form-status.error {
    color: #ff9ab6;
  }
  
  /* =========================================================
     FOOTER
  ========================================================= */
  .site-footer {
    padding: 2rem 1rem;
    border-top: 1px solid var(--border-soft);
    background: rgba(6, 3, 18, 0.72);
  }
  
  .footer-inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr auto;
    gap: 1.5rem;
    align-items: center;
  }
  
  .footer-company,
  .footer-address,
  .footer-links {
    display: grid;
    gap: 0.35rem;
    color: var(--text-muted);
    font-size: 0.92rem;
  }
  
  .footer-company strong {
    color: var(--text-main);
  }
  
  .footer-links {
    justify-items: end;
  }
  
  .footer-links a {
    color: var(--accent-cyan);
  }
  
  /* =========================================================
     PRIVACY POLICY PAGE
  ========================================================= */
  .policy-page {
    padding: 5rem 1rem 7rem;
  }
  
  .policy-card {
    width: min(100%, 920px);
    margin: 0 auto;
    padding: clamp(1.4rem, 4vw, 3rem);
  }
  
  .policy-card h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
  }
  
  .policy-card h2 {
    margin-top: 2.2rem;
    color: var(--text-main);
  }
  
  .policy-card p,
  .policy-card li {
    color: var(--text-muted);
    line-height: 1.75;
  }
  
  .policy-card a {
    color: var(--accent-cyan);
  }
  
  .policy-meta {
    color: var(--text-soft);
  }
  
  /* =========================================================
     RESPONSIVE
  ========================================================= */
  @media (max-width: 920px) {
    .main-nav {
      grid-template-columns: auto 1fr auto;
    }
  
    .nav-side {
      display: none;
    }
  
    .brand-logo {
      justify-content: flex-start;
      min-width: auto;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  
    .mobile-nav {
      position: fixed;
      left: 1rem;
      right: 1rem;
      top: 6.4rem;
      z-index: 45;
      display: grid;
      gap: 0.75rem;
      padding: 1rem;
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-lg);
      background: rgba(13, 8, 35, 0.94);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      transform: translateY(-12px);
      opacity: 0;
      visibility: hidden;
      transition: 0.2s ease;
    }
  
    .mobile-nav.is-open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
  
    .mobile-nav a {
      padding: 0.9rem;
      border-radius: var(--radius-sm);
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.055);
    }
  
    .hero-inner,
    .contact-layout {
      grid-template-columns: 1fr;
    }
  
    .hero-visual {
      min-height: 20rem;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-inner {
      grid-template-columns: 1fr;
    }
  
    .footer-links {
      justify-items: start;
    }
  }
  
  @media (max-width: 560px) {
    .site-header {
      padding: 0.7rem;
    }
  
    .main-nav {
      min-height: 4rem;
      padding: 0 0.8rem;
    }
  
    .brand-logo {
        min-width: auto;
      }
      
      .brand-logo-image {
        height: 3.2rem;
      }
      
      .brand-logo-image img {
        max-width: 12rem;
      }
  
    .hero-section {
      padding-top: 4rem;
    }
  
    .hero-copy h1 {
      font-size: clamp(2.8rem, 16vw, 4.2rem);
    }
  
    .hero-actions {
      flex-direction: column;
    }
  
    .primary-btn,
    .secondary-btn {
      width: 100%;
    }
  
    .focus-item {
      grid-template-columns: 1fr;
    }
  
    .floating-chip {
      display: none;
    }
  }
  
  /* =========================================================
     REDUCED MOTION
  ========================================================= */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }
  }