/* ============================================================
   S. CHETAN & CO. — SHARED STYLESHEET
   Font: Poppins | Colors: Navy #1B2766 · Gold #C49A1E
   ============================================================ */

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

:root {
  --navy:       #1B2766;
  --navy-dark:  #0F1941;
  --navy-mid:   #253494;
  --gold:       #C49A1E;
  --gold-light: #E8BE4A;
  --gold-bg:    #FDF8E8;
  --white:      #FFFFFF;
  --off-white:  #F5F8FF;
  --light:      #EEF1FB;
  --text:       #1C2641;
  --muted:      #64748B;
  --border:     #DDE3F2;
  --shadow:     0 4px 24px rgba(27,39,102,0.10);
  --shadow-lg:  0 8px 48px rgba(27,39,102,0.14);
  --radius:     10px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; color: var(--navy); }
.gold-text { color: var(--gold); }
.navy-text { color: var(--navy); }
.muted { color: var(--muted); }
.gold-line {
  display: block; width: 56px; height: 3px;
  background: var(--gold); margin: 14px 0 20px;
}
.gold-line.center { margin: 14px auto 20px; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.03em;
  padding: 13px 28px; border-radius: 6px;
  cursor: pointer; transition: var(--transition); border: none;
}
.btn-primary {
  background: var(--gold); color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(196,154,30,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--navy); border: 2px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn svg, .btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 2px solid rgba(196,154,30,0.2);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.25); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img {
  height: 44px; width: auto; object-fit: contain;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-name { font-size: 1rem; font-weight: 700; color: var(--white); }
.nav-logo-sub { font-size: 0.6rem; font-weight: 400; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.84rem; font-weight: 500; color: rgba(255,255,255,0.85);
  padding: 8px 14px; border-radius: 5px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link .chevron { font-size: 0.65rem; transition: transform 0.2s; }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border-radius: 8px;
  box-shadow: 0 16px 48px rgba(27,39,102,0.16);
  min-width: 280px; padding: 10px 0;
  border-top: 3px solid var(--gold);
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 20px; font-size: 0.82rem; font-weight: 500;
  color: var(--text); transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--off-white); color: var(--navy); padding-left: 26px; }
.nav-dropdown a .dd-icon { font-size: 1rem; min-width: 20px; }

.nav-cta { margin-left: 16px; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}

/* Mobile menu */
.nav-mobile {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark); overflow-y: auto;
  padding: 20px 24px 40px; z-index: 999;
}
.nav-mobile.open { display: block; }
.mobile-link {
  display: block; padding: 14px 0;
  font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-link:hover { color: var(--gold); }
.mobile-submenu { padding-left: 16px; }
.mobile-sub-link {
  display: block; padding: 10px 0;
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-sub-link:hover { color: var(--gold); }
.mobile-cta { margin-top: 24px; }

/* ── PAGE HERO ──────────────────────────────────────── */
.page-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><line x1="0" y1="100" x2="100" y2="0" stroke="rgba(196,154,30,0.08)" stroke-width="1"/></svg>');
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.08rem; color: rgba(255,255,255,0.72); margin-bottom: 24px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── SECTIONS ───────────────────────────────────────── */
.section { padding: 90px 24px; }
.section-sm { padding: 60px 24px; }
.section-bg { background: var(--off-white); }
.section-navy { background: var(--navy-dark); }
.section-navy-light { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-light { background: var(--light); }
.container { max-width: 1180px; margin: 0 auto; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.section-header p { font-size: 1.02rem; color: var(--muted); }

/* ── CARDS ──────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); transition: var(--transition);
  overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-gold-top { border-top: 3px solid var(--gold); }
.card-navy-top { border-top: 3px solid var(--navy); }

/* ── SERVICE CARDS ──────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow); padding: 32px 28px;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card:hover .service-icon { background: var(--gold); color: var(--white); }
.service-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--light); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 18px;
  transition: var(--transition);
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.service-link {
  font-size: 0.82rem; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 5px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ── STATS ──────────────────────────────────────────── */
.stats-strip {
  background: var(--navy); padding: 56px 24px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px; max-width: 900px; margin: 0 auto; text-align: center;
}
.stat-item {}
.stat-number {
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.72); font-weight: 500; letter-spacing: 0.04em; }

/* ── TEAM ───────────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px; max-width: 800px; margin: 0 auto;
}
.team-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-photo {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top center;
}
.team-info { padding: 24px; border-top: 3px solid var(--gold); }
.team-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--light); color: var(--navy); padding: 4px 10px;
  border-radius: 20px; margin-bottom: 10px;
}
.team-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-cred { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.team-list { font-size: 0.82rem; color: var(--muted); }
.team-list li { padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
.team-list li::before { content: '→'; color: var(--gold); font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }

/* ── WHY CHOOSE ─────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 26px; box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ── JOURNEY ────────────────────────────────────────── */
.journey-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; position: relative;
}
.journey-step { text-align: center; position: relative; }
.journey-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: var(--transition);
}
.journey-step:hover .journey-num { background: var(--gold); color: var(--white); }
.journey-step h4 { font-size: 0.9rem; margin-bottom: 8px; }
.journey-step p { font-size: 0.82rem; color: var(--muted); }

/* ── TESTIMONIALS ───────────────────────────────────── */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
  border-top: 3px solid var(--gold); position: relative;
}
.testi-quote {
  font-size: 2.5rem; color: var(--gold); line-height: 1;
  margin-bottom: 12px; font-family: Georgia, serif;
}
.testi-card p { font-size: 0.92rem; color: var(--muted); font-style: italic; line-height: 1.75; margin-bottom: 16px; }
.testi-name { font-weight: 600; color: var(--navy); font-size: 0.88rem; }

/* ── INDUSTRIES ─────────────────────────────────────── */
.industry-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.industry-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 20px; text-align: center;
  box-shadow: var(--shadow); transition: var(--transition);
  border-bottom: 2px solid transparent;
}
.industry-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.industry-icon { font-size: 2rem; margin-bottom: 12px; }
.industry-card h4 { font-size: 0.88rem; margin-bottom: 6px; }
.industry-card p { font-size: 0.78rem; color: var(--muted); }

/* ── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(196,154,30,0.08);
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SERVICE INNER PAGE ─────────────────────────────── */
.service-content { max-width: 860px; margin: 0 auto; }
.service-intro {
  font-size: 1.1rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.service-section-title {
  font-size: 1.4rem; margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.service-section-title::before {
  content: ''; display: block; width: 4px; height: 24px;
  background: var(--gold); border-radius: 2px; flex-shrink: 0;
}
.service-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; margin-bottom: 48px; }
.service-list-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--off-white); border-radius: 8px; padding: 16px 18px;
  font-size: 0.9rem; color: var(--text); font-weight: 500;
  border-left: 3px solid var(--gold);
}
.service-list-item .check { color: var(--gold); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.benefit-item {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 20px; box-shadow: var(--shadow); text-align: center;
  transition: var(--transition);
}
.benefit-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.benefit-icon { font-size: 2rem; margin-bottom: 12px; }
.benefit-item h4 { font-size: 0.9rem; margin-bottom: 8px; }
.benefit-item p { font-size: 0.82rem; color: var(--muted); }

/* ── CONTACT ────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--muted); margin-bottom: 32px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--light); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
  color: var(--navy);
}
.contact-item h4 { font-size: 0.88rem; color: var(--muted); font-weight: 500; }
.contact-item p { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.contact-item a { color: var(--navy); }
.contact-item a:hover { color: var(--gold); }

/* Contact form */
.contact-form { background: var(--white); border-radius: 12px; padding: 36px; box-shadow: var(--shadow-lg); border-top: 3px solid var(--gold); }
.form-title { font-size: 1.4rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 12px 16px;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  color: var(--text); background: var(--off-white);
  border: 1.5px solid var(--border); border-radius: 7px;
  transition: var(--transition); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--navy); background: var(--white); }
textarea { resize: vertical; min-height: 120px; }

/* ── VALUES ─────────────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; box-shadow: var(--shadow); text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--navy); }
.value-card:hover h3, .value-card:hover p { color: rgba(255,255,255,0.88); }
.value-card:hover .value-icon { background: rgba(196,154,30,0.2); }
.value-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--light); display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; margin: 0 auto 16px;
  transition: var(--transition);
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; transition: color 0.3s; }
.value-card p { font-size: 0.86rem; color: var(--muted); transition: color 0.3s; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.8);
  padding: 72px 24px 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1180px; margin: 0 auto; padding-bottom: 56px;
}
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.55); margin: 16px 0 20px; line-height: 1.7; }
.footer-logo { height: 40px; width: auto; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center; font-size: 0.85rem;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--navy-dark); }
.footer-col h4 {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.86rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-contact li { font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact li a { color: rgba(255,255,255,0.6); }
.footer-contact li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; text-align: center;
  max-width: 1180px; margin: 0 auto;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }

/* ── ANIMATIONS ─────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── PEER REVIEW BADGE ──────────────────────────────── */
.pr-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,154,30,0.12); border: 1px solid rgba(196,154,30,0.4);
  border-radius: 4px; padding: 6px 14px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
  .page-hero { padding: 120px 20px 60px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; }
  * { transition: none !important; }
}
