/* ============================================
   MEVONICS TECHNOLOGIES — PREMIUM LAYER
   Design system, dark mode, glassmorphism,
   redesigned hero + enterprise homepage sections.
   Loaded AFTER main.css so it wins on conflicts.
   ============================================ */

:root {
  /* Spacing scale */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.75rem;
  --sp-lg: 3rem;
  --sp-xl: 5rem;
  --sp-2xl: 7rem;

  /* Radii */
  --radius-sm: 0.6rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 999px;

  /* Premium typography */
  --font-display: 'Poppins', 'Inter', sans-serif;

  /* Soft, layered shadows */
  --shadow-soft: 0 4px 16px rgba(17, 24, 39, 0.06), 0 2px 4px rgba(17, 24, 39, 0.04);
  --shadow-card: 0 10px 30px rgba(17, 24, 39, 0.08), 0 2px 8px rgba(17, 24, 39, 0.04);
  --shadow-hover: 0 22px 48px rgba(76, 0, 75, 0.16), 0 6px 16px rgba(227, 106, 0, 0.12);
  --shadow-glass: 0 8px 32px rgba(17, 24, 39, 0.12);

  /* Brand gradient */
  --grad-brand: linear-gradient(120deg, #e36a00 0%, #a83279 55%, #4c004b 100%);
  --grad-brand-soft: linear-gradient(120deg, rgba(227,106,0,0.12), rgba(76,0,75,0.12));

  /* Page surface tokens (light) */
  --pg-bg: #ffffff;
  --pg-surface: #ffffff;
  --pg-surface-2: #f6f7fb;
  --pg-text: #1f2937;
  --pg-heading: #141a2a;
  --pg-muted: #5b6473;
  --pg-border: #e7e9f0;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-blur: 16px;
}

/* ---------- DARK THEME ---------- */
:root[data-theme="dark"] {
  --pg-bg: #0b0f1c;
  --pg-surface: #131a2c;
  --pg-surface-2: #0e1524;
  --pg-text: #dbe2f0;
  --pg-heading: #f2f5fb;
  --pg-muted: #97a1b6;
  --pg-border: rgba(255, 255, 255, 0.09);

  --glass-bg: rgba(19, 26, 44, 0.55);
  --glass-border: rgba(255, 255, 255, 0.12);

  --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 12px 34px rgba(0, 0, 0, 0.45);
  --shadow-hover: 0 24px 50px rgba(0, 0, 0, 0.55);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ---------- GLOBAL DARK CHROME (applies site-wide) ---------- */
:root[data-theme="dark"] body {
  background-color: var(--pg-bg);
  color: var(--pg-text);
}
:root[data-theme="dark"] body::before { opacity: 0.06; }

:root[data-theme="dark"] header {
  background: rgb(11, 15, 28);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
:root[data-theme="dark"] .nav-link { color: var(--pg-text); }
:root[data-theme="dark"] .hamburger span { background: var(--pg-text); }
:root[data-theme="dark"] .mobile-menu { background: var(--pg-surface); }
:root[data-theme="dark"] .mobile-menu .nav-link { color: var(--pg-text); border-bottom-color: var(--pg-border); }
:root[data-theme="dark"] .mobile-menu .nav-link:hover { background: var(--pg-surface-2); }

:root[data-theme="dark"] h1,
:root[data-theme="dark"] h2,
:root[data-theme="dark"] h3,
:root[data-theme="dark"] h4 { color: var(--pg-heading); }
:root[data-theme="dark"] p { color: var(--pg-muted); }

/* Shared section surfaces */
:root[data-theme="dark"] .services-section,
:root[data-theme="dark"] .internship-section { background: var(--pg-bg); }
:root[data-theme="dark"] .about-section,
:root[data-theme="dark"] .products-section { background: var(--pg-surface-2); }

/* Shared cards */
:root[data-theme="dark"] .service-card,
:root[data-theme="dark"] .product-card {
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
}
:root[data-theme="dark"] .internship-card { background: var(--pg-surface); }
:root[data-theme="dark"] .service-card p,
:root[data-theme="dark"] .product-info p { color: var(--pg-muted); }

/* Fallback background for content sections without a class */
:root[data-theme="dark"] section:not([class*="hero"]):not(.stats-section):not(.contact-section):not(.about-section):not(.services-section):not(.products-section):not(.internship-section) {
  background: var(--pg-bg);
}

/* ============================================
   BASE REFINEMENTS
   ============================================ */
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; }

/* Remove the faded neon-logo watermark behind body content. */
body::before { display: none !important; }

/* Compositor hints for the GSAP hero + image reveals */
.hero .hero-content h1 { will-change: clip-path, transform, opacity; }
.about-image img, .reveal-img { will-change: clip-path; }
.hero .hero-content { backface-visibility: hidden; }

/* Logo (now transparent) — gentle idle glow + lively hover */
.logo-img {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  animation: logoGlow 4.5s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(247, 160, 72, 0)); }
  50% { filter: drop-shadow(0 0 8px rgba(247, 160, 72, 0.5)); }
}
.logo:hover .logo-img {
  transform: rotate(-6deg) scale(1.12);
  filter: drop-shadow(0 0 13px rgba(247, 160, 72, 0.75));
  animation-play-state: paused;
}

/* ============================================
   SUB-PAGE HERO — premium 3D redesign
   (.hero only; the homepage uses .hero-v2)
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  perspective: 1100px;
  background: linear-gradient(135deg, #e36a00 0%, #a83279 45%, #4c004b 100%);
  background-size: 220% 220%;
  animation: gradientShift 16s ease infinite;
}
:root[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #b5540b 0%, #7a2568 48%, #34003a 100%);
  background-size: 220% 220%;
}

/* Repurpose the old watermark ::after into a subtle tech grid with vignette */
.hero::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  width: auto !important; height: auto !important;
  transform: none !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) !important;
  background-size: 46px 46px !important;
  background-position: center !important;
  background-repeat: repeat !important;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 22%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 22%, transparent 72%);
  opacity: 1 !important;
  z-index: 0 !important;
  pointer-events: none;
}

.hero .hero-content { position: relative; z-index: 3; }

/* Floating depth orbs (injected by premium.js) */
.sub-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  animation: orbFloat 15s ease-in-out infinite;
}
.sub-orb.a { width: 320px; height: 320px; background: rgba(247, 160, 72, 0.55); top: -70px; left: -50px; }
.sub-orb.b { width: 300px; height: 300px; background: rgba(131, 39, 125, 0.6); bottom: -80px; right: 4%; animation-delay: -7s; }

/* Rotating 3D wireframe cubes (injected by premium.js) */
.hero-cube {
  position: absolute;
  width: 92px; height: 92px;
  transform-style: preserve-3d;
  animation: cubeSpin 20s linear infinite;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
.hero-cube .cface {
  position: absolute; width: 92px; height: 92px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.03);
}
.hero-cube .cf1 { transform: rotateY(0deg)   translateZ(46px); }
.hero-cube .cf2 { transform: rotateY(90deg)  translateZ(46px); }
.hero-cube .cf3 { transform: rotateY(180deg) translateZ(46px); }
.hero-cube .cf4 { transform: rotateY(270deg) translateZ(46px); }
.hero-cube .cf5 { transform: rotateX(90deg)  translateZ(46px); }
.hero-cube .cf6 { transform: rotateX(-90deg) translateZ(46px); }
.hero-cube.c1 { top: 16%; left: 7%; }
.hero-cube.c2 { bottom: 14%; right: 9%; width: 64px; height: 64px; animation-duration: 26s; animation-direction: reverse; }
.hero-cube.c2 .cface { width: 64px; height: 64px; }
.hero-cube.c2 .cf1 { transform: rotateY(0deg) translateZ(32px); }
.hero-cube.c2 .cf2 { transform: rotateY(90deg) translateZ(32px); }
.hero-cube.c2 .cf3 { transform: rotateY(180deg) translateZ(32px); }
.hero-cube.c2 .cf4 { transform: rotateY(270deg) translateZ(32px); }
.hero-cube.c2 .cf5 { transform: rotateX(90deg) translateZ(32px); }
.hero-cube.c2 .cf6 { transform: rotateX(-90deg) translateZ(32px); }
@keyframes cubeSpin { from { transform: rotateX(0) rotateY(0); } to { transform: rotateX(360deg) rotateY(360deg); } }

/* Glass eyebrow badge above the heading */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.35rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.hero-eyebrow i { font-size: 0.85rem; }

/* Rotating aurora colour glow (injected by premium.js) */
.hero-aurora {
  position: absolute;
  inset: -25%;
  z-index: 0;
  pointer-events: none;
  background: conic-gradient(from 0deg,
    rgba(247, 160, 72, 0), rgba(247, 160, 72, 0.4), rgba(131, 39, 125, 0.4),
    rgba(76, 0, 75, 0), rgba(227, 106, 0, 0.35), rgba(247, 160, 72, 0));
  filter: blur(70px);
  opacity: 0.5;
  animation: auroraSpin 26s linear infinite;
}
@keyframes auroraSpin { to { transform: rotate(360deg); } }

/* Refined hero typography with depth */
.hero h1 { text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28); }
.hero .tagline { text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22); }

@media (prefers-reduced-motion: reduce) {
  .hero { animation: none !important; }
  .hero-cube { animation: none !important; }
  .sub-orb { animation: none !important; }
  .hero-aurora { animation: none !important; }
}

.section { padding: var(--sp-xl) 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: var(--grad-brand-soft);
  border: 1px solid rgba(227, 106, 0, 0.22);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.section-title .section-eyebrow { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   REVEAL-ON-SCROLL (premium.js observer)
   ============================================ */
/* Only hide when JS is available to reveal it — fails safe to visible */
.has-js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.has-js .reveal.in { opacity: 1; transform: none; }
.has-js .reveal-left { transform: translateX(-40px); }
.has-js .reveal-right { transform: translateX(40px); }
.has-js .reveal-scale { transform: scale(0.94); }

/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--pg-border);
  background: var(--pg-surface-2);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.05rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover { transform: translateY(-2px) rotate(-8deg); box-shadow: var(--shadow-soft); }
.theme-toggle .fa-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .fa-sun { display: inline; }
:root[data-theme="dark"] .theme-toggle .fa-moon { display: none; }
.nav-actions { display: flex; align-items: center; gap: 1.25rem; }

/* ============================================
   PREMIUM BUTTONS
   ============================================ */
.btn-gradient {
  background: var(--grad-brand);
  background-size: 160% 160%;
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(227, 106, 0, 0.32);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.6s ease;
}
.btn-gradient:hover {
  color: #fff;
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 16px 34px rgba(76, 0, 75, 0.38);
}
.btn-ghost {
  background: transparent;
  color: var(--pg-heading);
  border: 1.5px solid var(--pg-border);
}
.btn-ghost:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}
:root[data-theme="dark"] .btn-ghost { color: var(--pg-text); }

/* ============================================
   HERO — 2 COLUMN
   ============================================ */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  margin-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(227, 106, 0, 0.10), transparent 60%),
    radial-gradient(900px 700px at 85% 90%, rgba(76, 0, 75, 0.12), transparent 60%),
    var(--pg-bg);
}
:root[data-theme="dark"] .hero-v2 {
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(227, 106, 0, 0.16), transparent 60%),
    radial-gradient(900px 700px at 85% 90%, rgba(131, 39, 125, 0.22), transparent 60%),
    var(--pg-bg);
}

/* particle canvas + floating orbs */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  animation: orbFloat 16s ease-in-out infinite;
}
.hero-orb.o1 { width: 340px; height: 340px; background: rgba(227, 106, 0, 0.45); top: -60px; left: -40px; }
.hero-orb.o2 { width: 300px; height: 300px; background: rgba(131, 39, 125, 0.5); bottom: -70px; right: 6%; animation-delay: -6s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -30px) scale(1.08); }
}

/* Set by premium.js when the hero scrolls out of view — these are blurred layers
   that re-rasterise every frame, so they must not keep animating below the fold. */
.fx-paused .hero-orb,
.fx-paused .sub-orb,
.fx-paused .hero-aurora,
.fx-paused .hero-cube,
.fx-paused .hero-visual-card,
.fx-paused .hero-visual svg * {
  animation-play-state: paused;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pg-text);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-v2 h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.06;
  color: var(--pg-heading);
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.hero-v2 .hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--pg-muted);
  max-width: 560px;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.hero-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pg-text);
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.hero-tag:hover {
  color: #fff;
  background: var(--grad-brand);
  border-color: transparent;
  transform: translateY(-2px);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- HERO VISUAL (animated SVG) ---------- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-card {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-glass);
  padding: 1.5rem;
  animation: cardFloat 7s ease-in-out infinite;
}
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-visual svg { width: 100%; height: 100%; display: block; overflow: visible; }

.spin-slow { transform-box: fill-box; transform-origin: center; animation: spin 26s linear infinite; }
.spin-rev { transform-box: fill-box; transform-origin: center; animation: spin 20s linear infinite reverse; }
.node-pulse { transform-box: fill-box; transform-origin: center; animation: nodePulse 2.4s ease-in-out infinite; }
.node-pulse.d1 { animation-delay: .4s; } .node-pulse.d2 { animation-delay: .8s; }
.node-pulse.d3 { animation-delay: 1.2s; } .node-pulse.d4 { animation-delay: 1.6s; }
@keyframes nodePulse { 0%,100%{opacity:.55; transform:scale(1)} 50%{opacity:1; transform:scale(1.35)} }
.chip-core { transform-box: fill-box; transform-origin: center; animation: chipBreath 3.4s ease-in-out infinite; }
@keyframes chipBreath { 0%,100%{filter:drop-shadow(0 0 6px rgba(227,106,0,.5))} 50%{filter:drop-shadow(0 0 22px rgba(227,106,0,.85))} }

.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem; font-weight: 700;
  color: var(--pg-heading);
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  animation: cardFloat 5.5s ease-in-out infinite;
}
.float-chip i { color: var(--primary-color); }
.float-chip.fc1 { top: 6%; right: -8%; animation-delay: -1s; }
.float-chip.fc2 { bottom: 10%; left: -10%; animation-delay: -3s; }
:root[data-theme="dark"] .float-chip i { color: var(--secondary-color); }

/* ============================================
   ANIMATED IMAGE FRAME (.about-image-animated)
   A richer, more alive treatment for hero-style
   content photos: rotating gradient border, idle
   breathing zoom, shine sweep on hover, and
   floating badge chips.
   ============================================ */
.about-image-animated {
  position: relative;
  padding: 6px;
  isolation: isolate;
}
.about-image-animated::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 3px;
  background: conic-gradient(from var(--frame-angle, 0deg),
    var(--primary-color), var(--secondary-color), var(--accent-light-color),
    var(--accent-color), var(--primary-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: frameSpin 6s linear infinite;
  z-index: 0;
}
@property --frame-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes frameSpin { to { --frame-angle: 360deg; } }
.about-image-animated .about-image-inner {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  z-index: 1;
}
.about-image-animated .about-image-inner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  animation: photoBreathe 8s ease-in-out infinite;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}
@keyframes photoBreathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.035); } }
.about-image-animated:hover .about-image-inner img {
  transform: scale(1.09);
  filter: saturate(1.12) brightness(1.03);
  animation-play-state: paused;
}
/* shine sweep on hover */
.about-image-animated .about-image-inner::after {
  content: '';
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  z-index: 2; pointer-events: none;
}
.about-image-animated:hover .about-image-inner::after { left: 130%; }
/* floating badge chips over the photo — kept inset (not overflowing) so they
   never clip against the viewport edge in the narrower about-grid column */
.about-image-animated .float-chip { z-index: 3; }
.about-image-animated .float-chip.fc1 { top: 5%; right: 5%; }
.about-image-animated .float-chip.fc2 { bottom: 5%; left: 5%; }
.about-image-animated .float-chip.fc3 { bottom: 5%; right: 5%; animation-delay: -2s; }
@media (prefers-reduced-motion: reduce) {
  .about-image-animated::before { animation: none; }
  .about-image-animated .about-image-inner img { animation: none; }
}

/* ============================================
   3D VARIANT (.about-image-3d) — adds real
   perspective depth on top of .about-image-animated:
   the frame floats in 3D space at rest, and (via
   the shared .tilt behavior in premium.js) tips
   toward the cursor on hover.
   ============================================ */
.about-image-3d {
  perspective: 1400px;
  transition: transform 0.2s ease;
}
.about-image-3d .about-image-inner {
  transform-style: preserve-3d;
  animation: frame3DFloat 7s ease-in-out infinite;
}
@keyframes frame3DFloat {
  0%, 100% { transform: translateZ(0) rotateX(0deg) rotateY(0deg); }
  25%      { transform: translateZ(14px) rotateX(1.6deg) rotateY(-1.4deg); }
  50%      { transform: translateZ(22px) rotateX(0deg) rotateY(0deg); }
  75%      { transform: translateZ(14px) rotateX(-1.6deg) rotateY(1.4deg); }
}
/* .float-chip's own animation drives translateY only; redefine it here with
   translateZ baked in so the badges sit visibly in front of the 3D frame. */
.about-image-3d .float-chip { animation: cardFloat3D 5.5s ease-in-out infinite; }
@keyframes cardFloat3D {
  0%, 100% { transform: translateY(0) translateZ(40px); }
  50%      { transform: translateY(-14px) translateZ(40px); }
}
@media (prefers-reduced-motion: reduce) {
  .about-image-3d .about-image-inner { animation: none; }
  .about-image-3d .float-chip { animation: none; }
}

/* ============================================
   HUD OVERLAY (.about-image-hud) — sci-fi targeting
   corners + a continuous scanning beam, layered on
   top of .about-image-animated/.about-image-3d.
   ============================================ */
.about-image-hud .about-image-inner { position: relative; }
/* continuous scan-line sweep */
.about-image-hud .about-image-inner::before {
  content: '';
  position: absolute; left: 0; right: 0; height: 2px;
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(247,160,72,0.9), rgba(131,39,125,0.9), transparent);
  box-shadow: 0 0 12px 2px rgba(247,160,72,0.7);
  z-index: 4;
  animation: hudScan 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hudScan {
  0%   { top: 0%; opacity: 0; }
  8%   { opacity: 1; }
  50%  { top: 100%; opacity: 1; }
  58%  { opacity: 0; }
  100% { top: 100%; opacity: 0; }
}
/* animated targeting-bracket corners */
.hud-corner {
  position: absolute;
  width: 34px; height: 34px;
  border: 2px solid var(--primary-color);
  z-index: 4;
  opacity: 0.9;
  animation: hudPulse 2.6s ease-in-out infinite;
  pointer-events: none;
}
.hud-corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.hud-corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; animation-delay: 0.2s; }
.hud-corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; border-radius: 0 0 0 6px; animation-delay: 0.4s; }
.hud-corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; border-radius: 0 0 6px 0; animation-delay: 0.6s; }
@keyframes hudPulse {
  0%, 100% { opacity: 0.5; border-color: var(--primary-color); }
  50%      { opacity: 1; border-color: var(--secondary-color); }
}
:root[data-theme="dark"] .hud-corner { border-color: var(--secondary-color); }
/* secondary counter-rotating thin ring, layered behind the main gradient border */
.about-image-hud::after {
  content: '';
  position: absolute; inset: -10px;
  border-radius: 1.4rem;
  border: 1px dashed rgba(227, 106, 0, 0.35);
  animation: hudRingSpin 14s linear infinite reverse;
  z-index: -1;
  pointer-events: none;
}
@keyframes hudRingSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .about-image-hud .about-image-inner::before { animation: none; opacity: 0; }
  .hud-corner { animation: none; }
  .about-image-hud::after { animation: none; }
}

/* ============================================
   CLIENT / TRUST MARQUEE
   ============================================ */
.marquee-section {
  padding: 2.5rem 0;
  background: var(--pg-surface-2);
  border-top: 1px solid var(--pg-border);
  border-bottom: 1px solid var(--pg-border);
}
.marquee-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pg-muted);
  margin-bottom: 1.5rem;
}
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  padding-right: 3.5rem;
  flex-shrink: 0;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pg-muted);
  white-space: nowrap;
  opacity: 0.75;
  transition: var(--transition);
}
.marquee-item i { font-size: 1.4rem; }
.marquee-item:hover { opacity: 1; color: var(--primary-color); }

/* ============================================
   STAT TILES (glass) — restyle existing stats
   ============================================ */
.stats-section { position: relative; overflow: hidden; }
.stats-section .stats-grid { position: relative; z-index: 2; }
.stat-tile {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  transition: var(--transition);
}
.stat-tile:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.16); }
.stat-tile .stat-ico { font-size: 1.6rem; color: #fff; opacity: 0.9; margin-bottom: 0.75rem; }
.stat-tile .stat-number { color: #fff; -webkit-text-fill-color: #fff; background: none; }
.stat-suffix { font-size: clamp(2rem, 8vw, 3.5rem); font-weight: 800; }

/* ============================================
   GENERIC PREMIUM CARD / GLASS UTILITIES
   ============================================ */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-glass);
}
.tilt { transform-style: preserve-3d; transition: transform 0.2s ease; }

/* ============================================
   TECHNOLOGY STACK
   ============================================ */
.tech-section { background: var(--pg-bg); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.tech-group {
  position: relative;
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
/* gradient accent bar that draws in on hover (inset so it clears the rounded corners) */
.tech-group::before {
  content: '';
  position: absolute; top: 0; left: 20px; right: 20px; height: 3px;
  background: var(--grad-brand);
  border-radius: 0 0 4px 4px;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.tech-group:hover::before { transform: scaleX(1); }
/* animated gradient border on hover */
.tech-group::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.tech-group:hover { box-shadow: var(--shadow-hover); }
.tech-group:hover::after { opacity: 1; }
.tech-group h4 {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display);
  color: var(--pg-heading);
  margin-bottom: 1.15rem;
}
.tech-group h4 i {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-brand); color: #fff; font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(227, 106, 0, 0.3);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.tech-group:hover h4 i { transform: rotate(-8deg) scale(1.1); box-shadow: 0 12px 26px rgba(227, 106, 0, 0.45); }
.tech-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tech-chip {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 600;
  color: var(--pg-text);
  background: var(--pg-surface-2);
  border: 1px solid var(--pg-border);
  padding: 0.42rem 0.75rem;
  border-radius: var(--radius-pill);
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
/* chips gently rise in a stagger when the card is hovered */
.tech-group:hover .tech-chip { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.tech-group:hover .tech-chip:nth-child(2) { transition-delay: 0.04s; }
.tech-group:hover .tech-chip:nth-child(3) { transition-delay: 0.08s; }
.tech-group:hover .tech-chip:nth-child(4) { transition-delay: 0.12s; }
.tech-group:hover .tech-chip:nth-child(5) { transition-delay: 0.16s; }
.tech-chip:hover { color: #fff; background: var(--grad-brand); border-color: transparent; transform: translateY(-4px) scale(1.04); box-shadow: 0 8px 16px rgba(227, 106, 0, 0.32); }
.tech-chip[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 130%; left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--pg-heading); color: var(--pg-bg);
  font-size: 0.7rem; font-weight: 600; white-space: nowrap;
  padding: 0.3rem 0.55rem; border-radius: 6px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 5;
}
.tech-chip[data-tip]:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================
   DEVELOPMENT PROCESS TIMELINE
   ============================================ */
.process-section { background: var(--pg-surface-2); }
.process-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 1.25rem;
  overflow-x: auto;
  padding: 1rem 0.25rem 1.5rem;
  scroll-snap-type: x proximity;
}
.process-step {
  scroll-snap-align: start;
  position: relative;
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.process-num {
  position: absolute; top: -16px; left: 1.35rem;
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: #fff;
  background: var(--grad-brand);
  box-shadow: 0 8px 18px rgba(227, 106, 0, 0.35);
}
.process-step i { font-size: 1.35rem; color: var(--primary-color); margin: 0.75rem 0 0.6rem; display: block; }
.process-step h4 { color: var(--pg-heading); margin-bottom: 0.35rem; }
.process-step p { font-size: 0.85rem; color: var(--pg-muted); margin: 0; }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-section { background: var(--pg-bg); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}
.industry-card {
  text-align: center;
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.industry-ico {
  width: 58px; height: 58px; margin: 0 auto 0.9rem;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--primary-color);
  background: var(--grad-brand-soft);
  transition: var(--transition);
}
.industry-card:hover .industry-ico { color: #fff; background: var(--grad-brand); transform: rotate(-6deg) scale(1.05); }
.industry-card h4 { color: var(--pg-heading); margin-bottom: 0.25rem; font-size: 1rem; }
.industry-card p { font-size: 0.8rem; color: var(--pg-muted); margin: 0; }

/* ============================================
   BOARD MEMBERS / TEAM
   ============================================ */
.team-section { background: var(--pg-bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  justify-content: center;
  gap: 2.2rem;
  max-width: 960px;
  margin: 0 auto;
}
.member-card {
  position: relative;
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  border-radius: var(--radius-lg);
  padding: 2.6rem 1.6rem 2.1rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.4s ease;
}
.member-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: 3;
}
.member-card:hover { box-shadow: var(--shadow-hover); }
.member-card:hover::after { opacity: 1; }
/* Circular avatar with a gradient ring */
.member-photo-wrap {
  position: relative;
  width: 165px; height: 165px;
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 0 0 4px var(--pg-surface), 0 0 0 7px rgba(227, 106, 0, 0.4), 0 12px 26px rgba(76, 0, 75, 0.18);
}
.member-ph-fallback { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.92); }
.member-ph-fallback i { font-size: 3.6rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.28)); }
.member-photo {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.member-card:hover .member-photo { transform: scale(1.08); }
.member-info { padding: 0; }
.member-info h3 { color: var(--pg-heading); font-size: 1.32rem; line-height: 1.25; margin-bottom: 0.7rem; }
/* Designation as a clearly-visible pill badge */
.member-role {
  display: inline-block;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.01em;
  color: var(--primary-color);
  background: var(--grad-brand-soft);
  border: 1px solid rgba(227, 106, 0, 0.28);
  padding: 0.42rem 1.1rem; border-radius: var(--radius-pill);
  margin: 0 0 1.05rem;
}
.member-phone {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 1rem; font-weight: 600;
  color: var(--pg-muted); text-decoration: none;
  margin-bottom: 1.15rem;
  transition: var(--transition);
}
.member-phone i { color: var(--primary-color); font-size: 0.95rem; }
.member-phone:hover { color: var(--primary-color); }
.member-social { display: flex; justify-content: center; gap: 0.75rem; }
.member-social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--pg-surface-2); border: 1px solid var(--pg-border);
  color: var(--pg-muted); transition: var(--transition);
}
.member-social a:hover { color: #fff; background: var(--grad-brand); border-color: transparent; transform: translateY(-3px); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--pg-surface-2); }
.testi-viewport { overflow: hidden; max-width: 780px; margin: 0 auto; }
.testi-track { display: flex; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.testi-card {
  flex: 0 0 100%;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.testi-stars { color: #f7a048; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-quote { font-size: 1.15rem; line-height: 1.7; color: var(--pg-text); font-weight: 500; margin-bottom: 1.5rem; }
.testi-person { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.1rem;
  background: var(--grad-brand);
  flex-shrink: 0;
}
.testi-meta strong { display: block; color: var(--pg-heading); }
.testi-meta span { font-size: 0.85rem; color: var(--pg-muted); }
.testi-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.75rem; }
.testi-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  background: var(--pg-border); transition: var(--transition);
}
.testi-dot.active { background: var(--grad-brand); width: 28px; border-radius: 6px; }

/* ============================================
   INTERNSHIP CARDS + DETAIL MODAL
   ============================================ */
.intern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.intern-card {
  display: flex; flex-direction: column;
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.35s ease;
}
.intern-card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg); padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: 4;
}
.intern-card:hover { box-shadow: var(--shadow-hover); }
.intern-card:hover::after { opacity: 1; }
.intern-media {
  position: relative; height: 148px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}
.intern-card:nth-child(4n+2) .intern-media { background: linear-gradient(135deg, var(--accent-color), var(--accent-light-color)); }
.intern-card:nth-child(4n+3) .intern-media { background: linear-gradient(135deg, var(--primary-dark-color), var(--secondary-color)); }
.intern-card:nth-child(4n) .intern-media { background: linear-gradient(135deg, var(--accent-light-color), var(--primary-color)); }
.intern-media::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.28) 1.5px, transparent 1.6px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
  opacity: 0.5;
}
.intern-media::after {
  content: ''; position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.7s ease;
}
.intern-card:hover .intern-media::after { left: 130%; }
.intern-ico { position: relative; z-index: 2; font-size: 3rem; color: #fff; filter: drop-shadow(0 10px 22px rgba(0,0,0,0.32)); transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); }
.intern-card:hover .intern-ico { transform: translateY(-4px) scale(1.14) rotate(-5deg); }
.intern-duration-badge {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 3;
  font-size: 0.72rem; font-weight: 700; color: #fff;
  background: rgba(0,0,0,0.4); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.28); padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.intern-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.intern-body h3 { color: var(--pg-heading); margin-bottom: 0.5rem; font-size: 1.2rem; }
.intern-body > p { color: var(--pg-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.intern-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.1rem; }
.intern-tags span { font-size: 0.72rem; font-weight: 600; color: var(--primary-color); background: var(--grad-brand-soft); border: 1px solid rgba(227,106,0,0.2); padding: 0.25rem 0.6rem; border-radius: var(--radius-pill); }
.intern-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--pg-border); padding-top: 1rem; }
.intern-open { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--primary-color); font-weight: 700; font-size: 0.88rem; }
.intern-open i { transition: transform 0.3s ease; }
.intern-card:hover .intern-open i { transform: translateX(5px); }
.intern-full { display: none; }

/* Modal */
.intern-modal { position: fixed; inset: 0; z-index: 2000; display: none; }
.intern-modal.open { display: block; }
.intern-modal-backdrop { position: absolute; inset: 0; background: rgba(10, 8, 20, 0.62); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.intern-modal-panel {
  position: relative; z-index: 1;
  max-width: 640px; width: calc(100% - 2rem);
  margin: 6vh auto; max-height: 88vh; overflow-y: auto;
  background: var(--pg-surface); border: 1px solid var(--pg-border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-glass);
  animation: modalIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(26px) scale(0.98); } to { opacity: 1; transform: none; } }
.intern-modal-head { position: relative; padding: 2.25rem 2rem 1.75rem; color: #fff; background: var(--grad-brand); }
.intern-modal-ico { font-size: 2.4rem; margin-bottom: 0.75rem; opacity: 0.95; }
.intern-modal-head h2 { color: #fff; margin: 0; font-size: 1.6rem; }
.intern-modal-meta { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.9rem; }
.intern-modal-meta span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: #fff; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.3); padding: 0.35rem 0.8rem; border-radius: var(--radius-pill); }
.intern-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.15);
  color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.intern-modal-close:hover { background: #fff; color: var(--accent-color); transform: rotate(90deg); }
.intern-modal-body { padding: 2rem; }
.intern-modal-body h4 { color: var(--pg-heading); margin: 1.4rem 0 0.7rem; display: flex; align-items: center; gap: 0.5rem; }
.intern-modal-body h4:first-child { margin-top: 0; }
.intern-modal-body h4 i { color: var(--primary-color); }
.intern-modal-body p { color: var(--pg-muted); }
.intern-modal-body ul { list-style: none; padding: 0; margin: 0; }
.intern-modal-body ul li { display: flex; gap: 0.55rem; align-items: flex-start; color: var(--pg-text); font-size: 0.92rem; margin-bottom: 0.55rem; }
.intern-modal-body ul li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary-color); flex-shrink: 0; }
.intern-modal-tools { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.intern-modal-tools span { font-size: 0.8rem; font-weight: 600; color: var(--pg-text); background: var(--pg-surface-2); border: 1px solid var(--pg-border); padding: 0.35rem 0.7rem; border-radius: var(--radius-pill); }
.intern-apply { margin-top: 1.75rem; width: 100%; }

/* ============================================
   SERVICE CARDS — 3D animated, clickable
   ============================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.35s ease;
}
.svc-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: 4;
}
.svc-card:hover { box-shadow: var(--shadow-hover); }
.svc-card:hover::after { opacity: 1; }

.svc-media {
  position: relative;
  height: 172px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}
.svc-card:nth-child(3n+2) .svc-media { background: linear-gradient(135deg, var(--accent-color), var(--accent-light-color)); }
.svc-card:nth-child(3n) .svc-media { background: linear-gradient(135deg, var(--primary-dark-color), var(--secondary-color)); }
/* dotted circuit pattern + glow */
.svc-media::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.28) 1.5px, transparent 1.6px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
  opacity: 0.5;
}
/* shine sweep */
.svc-media::after {
  content: '';
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.svc-card:hover .svc-media::after { left: 130%; }
/* optional real photo: add <img class="svc-photo"> and it covers the gradient */
.svc-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.svc-card:hover .svc-photo { transform: scale(1.1); }
.svc-ico {
  position: relative; z-index: 2;
  font-size: 3.4rem; color: #fff;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.32));
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.svc-card:hover .svc-ico { transform: translateY(-4px) scale(1.14) rotate(-5deg); }
.svc-badge {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 3;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  color: #fff; background: rgba(0,0,0,0.4);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
}
.svc-body { padding: 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.svc-body h3 { color: var(--pg-heading); margin-bottom: 0.5rem; font-size: 1.2rem; }
.svc-body > p { color: var(--pg-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.svc-feats { list-style: none; padding: 0; margin: 0 0 1.1rem; }
.svc-feats li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.85rem; color: var(--pg-text); margin-bottom: 0.5rem; }
.svc-feats li i { color: var(--primary-color); margin-top: 0.15rem; }
.svc-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 0.45rem; color: var(--primary-color); font-weight: 700; font-size: 0.9rem; }
.svc-cta i { transition: transform 0.3s ease; }
.svc-card:hover .svc-cta i { transform: translateX(5px); }

/* ============================================
   EXPLORE HUB (home-page launchpad cards)
   ============================================ */
.explore-section { background: var(--pg-surface-2); }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.explore-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.explore-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.explore-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.explore-card:hover::after { opacity: 1; }
.explore-ico {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary-color); background: var(--grad-brand-soft);
  transition: var(--transition);
}
.explore-card:hover .explore-ico { color: #fff; background: var(--grad-brand); transform: rotate(-6deg) scale(1.05); }
.explore-card h3 { color: var(--pg-heading); margin-bottom: 0.3rem; font-size: 1.15rem; }
.explore-card p { color: var(--pg-muted); font-size: 0.9rem; margin: 0 0 0.7rem; line-height: 1.6; }
.explore-link { color: var(--primary-color); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.explore-link i { transition: transform 0.3s ease; }
.explore-card:hover .explore-link i { transform: translateX(5px); }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-section { background: var(--pg-bg); }

.pf-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.pf-filter {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pg-text);
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}
.pf-filter:hover { border-color: var(--primary-color); transform: translateY(-2px); }
.pf-filter.active { color: #fff; background: var(--grad-brand); border-color: transparent; box-shadow: 0 8px 18px rgba(227,106,0,0.3); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.portfolio-card {
  position: relative;
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
/* animated gradient border on hover */
.portfolio-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.portfolio-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.portfolio-card:hover::after { opacity: 1; }
.portfolio-card.is-hidden { display: none; }

.pf-media {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
}
.pf-media img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.pf-media-contain img { object-fit: contain; padding: 0.9rem; box-sizing: border-box; }
.pf-media > i { position: relative; z-index: 0; font-size: 3.5rem; color: rgba(255,255,255,0.92); }
.portfolio-card:hover .pf-media img { transform: scale(1.12); }
/* shine sweep */
.pf-media::before {
  content: '';
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  z-index: 3; pointer-events: none;
}
.portfolio-card:hover .pf-media::before { left: 130%; }

.pf-badge {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 4;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  color: #fff; background: rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
}
.pf-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  background: rgba(20, 10, 30, 0.55);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.4s ease;
}
.portfolio-card:hover .pf-overlay { opacity: 1; }
.pf-overlay .btn { transform: translateY(8px); transition: transform 0.4s ease, background 0.3s ease; }
.portfolio-card:hover .pf-overlay .btn { transform: translateY(0); }
.pf-overlay .btn-glass {
  background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.pf-overlay .btn-glass:hover { background: #fff; color: var(--accent-color); }

.pf-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.pf-body h3 { color: var(--pg-heading); margin-bottom: 0.4rem; font-size: 1.2rem; }
.pf-body > p { font-size: 0.9rem; color: var(--pg-muted); margin-bottom: 1rem; flex-grow: 1; }
.pf-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.pf-tags span {
  font-size: 0.72rem; font-weight: 600; color: var(--primary-color);
  background: var(--grad-brand-soft); border: 1px solid rgba(227,106,0,0.2);
  padding: 0.25rem 0.6rem; border-radius: var(--radius-pill);
}
.pf-meta { display: flex; flex-wrap: wrap; gap: 1rem; border-top: 1px solid var(--pg-border); padding-top: 1rem; }
.pf-meta span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--pg-muted); }
.pf-meta i { color: var(--primary-color); }
.pf-empty { text-align: center; color: var(--pg-muted); padding: 3rem 0; display: none; }

/* ============================================
   PRODUCT / FARMLYTIX DETAIL PAGE
   ============================================ */
.fx-showcase img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
}
/* image slot with graceful gradient placeholder (shown until a real photo is added) */
.fx-slot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  box-shadow: var(--shadow-card);
}
.fx-slot img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.fx-ph {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  color: rgba(255, 255, 255, 0.92);
}
.fx-ph i { font-size: 3.4rem; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.28)); }
.fx-ph span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }
.fx-lead { max-width: 820px; margin: 0 auto; text-align: center; }
.fx-lead p { font-size: 1.1rem; color: var(--pg-muted); }
.fx-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
  justify-content: center;
  gap: 2rem;
}
.phone-frame {
  width: 100%; max-width: 240px;
  border: 9px solid #0f172a;
  border-radius: 34px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: var(--shadow-hover);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.phone-frame:hover { transform: translateY(-8px); }
.phone-frame img { width: 100%; display: block; }
.fx-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.fx-benefit {
  display: flex; gap: 0.75rem; align-items: center;
  background: var(--pg-surface); border: 1px solid var(--pg-border);
  border-radius: var(--radius-md); padding: 1rem 1.15rem;
  box-shadow: var(--shadow-soft); transition: var(--transition);
}
.fx-benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(227,106,0,0.3); }
.fx-benefit i {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-brand-soft); color: var(--primary-color); font-size: 1rem;
}
.fx-benefit span { font-weight: 600; color: var(--pg-text); font-size: 0.92rem; }
.fx-highlights { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.fx-highlights .tech-chip { font-size: 0.85rem; padding: 0.5rem 0.9rem; }
.fx-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ============================================
   CASE STUDY
   ============================================ */
.cs-section { background: var(--pg-bg); }
.cs-section.alt { background: var(--pg-surface-2); }
.cs-lead { max-width: 780px; }
.cs-lead p { font-size: 1.1rem; color: var(--pg-muted); }

.cs-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.cs-block {
  background: var(--pg-surface); border: 1px solid var(--pg-border);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-soft);
}
.cs-block h3 { display: flex; align-items: center; gap: 0.6rem; color: var(--pg-heading); margin-bottom: 1rem; }
.cs-block h3 i { color: var(--primary-color); }
.cs-list { list-style: none; padding: 0; margin: 0; }
.cs-list li { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.8rem; color: var(--pg-muted); font-size: 0.95rem; }
.cs-list li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary-color); flex-shrink: 0; }

/* architecture diagram (flow of nodes) */
.cs-arch { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem; }
.cs-node {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  min-width: 120px; padding: 1.25rem 1rem;
  background: var(--pg-surface); border: 1px solid var(--pg-border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-soft); text-align: center;
}
.cs-node i { font-size: 1.5rem; color: var(--primary-color); }
.cs-node span { font-size: 0.82rem; font-weight: 600; color: var(--pg-heading); }
.cs-arrow { color: var(--primary-color); font-size: 1.1rem; }

.cs-results { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; }
.cs-result {
  text-align: center; background: var(--pg-surface); border: 1px solid var(--pg-border);
  border-radius: var(--radius-lg); padding: 2rem 1rem; box-shadow: var(--shadow-soft);
}
.cs-result .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; }
.cs-result .num .counter { display: inline; }
.cs-result p { margin: 0.25rem 0 0; font-size: 0.85rem; color: var(--pg-muted); }
.cs-timeline { position: relative; padding-left: 2rem; }
.cs-timeline::before { content: ''; position: absolute; left: 0.5rem; top: 0; bottom: 0; width: 2px; background: var(--grad-brand); }
.cs-phase { position: relative; margin-bottom: 1.5rem; }
.cs-phase::before {
  content: ''; position: absolute; left: -1.65rem; top: 0.35rem;
  width: 12px; height: 12px; border-radius: 50%; background: var(--primary-color);
  box-shadow: 0 0 0 4px var(--grad-brand-soft);
}
.cs-phase strong { color: var(--pg-heading); }
.cs-phase span { display: block; font-size: 0.85rem; color: var(--pg-muted); }

@media (max-width: 768px) {
  .cs-grid-2 { grid-template-columns: 1fr; }
  .cs-arrow { transform: rotate(90deg); }
}

/* ============================================
   WORD-BY-WORD TEXT REVEAL (headings)
   .tr-word spans are injected by premium.js, so this
   fails safe to visible if the script never runs.
   ============================================ */
.tr-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.text-reveal.in .tr-word { opacity: 1; transform: none; }

/* ============================================
   DARK MODE — sub-page inline-style overrides
   Sub-pages carry inline styles; these attribute
   selectors make them theme-aware without editing
   every element by hand.
   ============================================ */
:root[data-theme="dark"] [style*="var(--lighter-gray)"] { background-color: var(--pg-surface-2) !important; }
:root[data-theme="dark"] [style*="background: var(--white)"],
:root[data-theme="dark"] [style*="background:var(--white)"] { background-color: var(--pg-surface) !important; }
:root[data-theme="dark"] [style*="color: var(--dark-gray)"] { color: var(--pg-heading) !important; }
:root[data-theme="dark"] [style*="color: var(--medium-gray)"] { color: var(--pg-muted) !important; }
:root[data-theme="dark"] [style*="rgba(0,0,0,0.1)"],
:root[data-theme="dark"] [style*="rgba(0, 0, 0, 0.1)"] { box-shadow: var(--shadow-card) !important; }

/* Keep form controls readable — their backgrounds stay light */
:root[data-theme="dark"] .form-group input,
:root[data-theme="dark"] .form-group textarea,
:root[data-theme="dark"] .form-group select,
:root[data-theme="dark"] input[style*="var(--dark-gray)"],
:root[data-theme="dark"] textarea[style*="var(--dark-gray)"],
:root[data-theme="dark"] select[style*="var(--dark-gray)"] { color: #1f2937 !important; }

/* FAQ / accordion answer text stays muted-light in dark */
:root[data-theme="dark"] .faq-item p { color: var(--pg-muted) !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-v2 .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-tags, .hero-cta { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-visual-card { width: min(78%, 360px); }
  .float-chip.fc1 { right: 0; } .float-chip.fc2 { left: 0; }
}
@media (max-width: 768px) {
  .section { padding: 3.25rem 0; }
  .nav-actions { gap: 0.75rem; }
}
@media (max-width: 600px) {
  .hero-visual-card { width: min(88%, 320px); }
  .float-chip { font-size: 0.72rem; padding: 0.45rem 0.65rem; }
  .testi-card { padding: 1.75rem; }
}

/* ============================================
   ACCESSIBILITY: focus + reduced motion
   ============================================ */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.theme-toggle:focus-visible,
.tech-chip:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .tr-word { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}
