/* ==========================================================================
   Thogai Indian Exports - High-End Precision Industrial Design System
   Matches Reference: Modern Crisp Light/Dark Contrast, CNC Sparks, Glassmorphism
   ========================================================================== */

:root {
  --bg-dark: #0b1329;
  --bg-dark-surface: #0f172a;
  --bg-light: #ffffff;
  --bg-light-alt: #f8fafc;
  --bg-light-steel: #f1f5f9;
  
  --coral-primary: #ff5722;
  --coral-hover: #ea580c;
  --amber-gold: #f59e0b;
  --amber-light: #fbbf24;
  --blue-tech: #0284c7;
  --blue-tech-light: #38bdf8;
  
  --text-dark-heading: #0f172a;
  --text-dark-body: #334155;
  --text-dark-muted: #64748b;
  
  --text-light-heading: #ffffff;
  --text-light-body: #cbd5e1;
  --text-light-muted: #94a3b8;
  
  --border-light: #e2e8f0;
  --border-dark: #1e293b;
  
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 4px 10px -2px rgba(0, 0, 0, 0.02);
  --shadow-card-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
  --shadow-coral: 0 10px 25px rgba(255, 87, 34, 0.35);
  
  --radius-card: 20px;
  --radius-pill: 9999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light-alt);
  color: var(--text-dark-body);
  overflow-x: hidden;
  line-height: 1.6;
}

:focus-visible {
  outline: 3px solid var(--amber-light);
  outline-offset: 3px;
}

.rfq-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

#rfq-form input,
#rfq-form select,
#rfq-form textarea,
#rfq-form label,
#rfq-form button {
  font-size: 0.875rem;
}

@media (max-width: 639px) {
  #rfq-form input,
  #rfq-form select,
  #rfq-form textarea {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography classes */
.font-display {
  font-family: 'Outfit', sans-serif;
}
.font-mono-num {
  font-family: 'JetBrains Mono', monospace;
}

/* ==========================================================================
   1. Page Preloader
   ========================================================================== */
#page-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: #0b1329;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
}
#page-preloader.loaded {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-word-container {
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-word {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: #ff5722;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.preloader-word.active {
  transform: translateY(0%);
}
.preloader-progress-bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 24px;
  overflow: hidden;
  position: relative;
}
.preloader-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #ff5722;
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. Lenis Smooth Scroll
   ========================================================================== */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* ==========================================================================
/* ==========================================================================
   3. Standard, Ultra-Reliable Native Cursor System (Zero Lag, Native Hardware-Accelerated)
   ========================================================================== */
html, body {
  cursor: default !important;
}

a, button, [role="button"], .filter-btn, .index-row, select, label, .cursor-pointer,
.fullscreen-nav-link, .sector-card-expand, .sector-close-toggle, .coverflow-card, .npd-node-card,
.view-product-btn, #fullscreen-nav-close, .btn-float, .marquee-item, [tabindex="0"] {
  cursor: pointer !important;
}

input, textarea, p, span, h1, h2, h3, h4, h5, h6, .sector-expanded-desc {
  cursor: auto;
}

.sector-expanded-desc {
  cursor: text !important;
  user-select: text;
}

/* Permanently disable custom canvas trail & fake cursor elements that lag, freeze, or get stuck */
#trailCanvas,
.custom-cursor,
#cursor-dot,
#cursor-follower {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ==========================================================================
   4. Mouse-Follow Image Preview Bubble
   ========================================================================== */
#mouse-preview-bubble {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  pointer-events: none;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  display: none;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 87, 34, 0.3);
  border: 1px solid rgba(255, 87, 34, 0.4);
  background: #0f172a;
}
#mouse-preview-bubble.active {
  opacity: 1;
  visibility: visible;
  display: block !important;
  transform: translate(-50%, -50%) scale(1);
}
#mouse-preview-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mouse-preview-bubble .preview-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(9, 15, 29, 0.95), transparent);
  font-size: 11px;
  font-weight: 700;
  color: #f8fafc;
}

/* ==========================================================================
   5. Hero Section & Background Spark Effects
   ========================================================================== */
.hero-industrial-bg {
  position: relative;
  background: radial-gradient(circle at 70% 30%, rgba(255, 87, 34, 0.15) 0%, transparent 60%),
              linear-gradient(135deg, #070d1e 0%, #0b1428 50%, #060b17 100%);
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.hero-spark-glow {
  position: absolute;
  right: 10%;
  top: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.18) 0%, rgba(251, 191, 36, 0.08) 40%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  animation: sparkPulse 4s ease-in-out infinite alternate;
}
@keyframes sparkPulse {
  0% { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* Fluid heading scale */
.fluid-h1 { font-size: clamp(2.5rem, 1.6rem + 3.6vw, 4.5rem); }
.fluid-h2 { font-size: clamp(1.875rem, 1.4rem + 1.8vw, 3rem); }

/* ==========================================================================
   6. Frosted Glassmorphism Cards ("Built on Accuracy Ribbon")
   ========================================================================== */
.glass-ribbon-card {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-ribbon-card:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 87, 34, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 87, 34, 0.2);
}

/* ==========================================================================
   7. Manufacturing Services (01 to 06 Card Grid)
   ========================================================================== */
.service-card-ref {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.service-card-ref:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(255, 87, 34, 0.4);
}
.service-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #cbd5e1;
  line-height: 1;
  transition: color 0.3s ease;
}
.service-card-ref:hover .service-number {
  color: #ff5722;
}
.service-thumb-img {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  background-color: #0f172a;
  border: 1px solid #e2e8f0;
  transition: transform 0.4s ease;
}
.service-card-ref:hover .service-thumb-img {
  transform: scale(1.05);
}

/* Specialized 4-Axis CNC Milling Center Interactive Visual */
.cncmill-thumb-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #1e293b 0%, #030712 100%);
  border: 1px solid #334155;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.service-card-ref:hover .cncmill-thumb-wrapper {
  border-color: rgba(255, 87, 34, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 87, 34, 0.2);
}
.cncmill-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.service-card-ref:hover .cncmill-img {
  transform: scale(1.09);
  filter: contrast(1.08) brightness(1.04);
}
.cncmill-laser-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.9), #ff5722, rgba(56, 189, 248, 0.9), transparent);
  box-shadow: 0 0 10px rgba(255, 87, 34, 0.8), 0 0 16px rgba(56, 189, 248, 0.6);
  top: -10%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.service-card-ref:hover .cncmill-laser-scan {
  animation: cncmillLaser 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes cncmillLaser {
  0% { top: -8%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 108%; opacity: 0; }
}
.cncmill-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%) scale(0.9);
  border: 1px dashed rgba(56, 189, 248, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cncmill-crosshair::before,
.cncmill-crosshair::after {
  content: '';
  position: absolute;
  background: rgba(56, 189, 248, 0.65);
}
.cncmill-crosshair::before {
  top: 50%;
  left: -6px;
  right: -6px;
  height: 1px;
  transform: translateY(-50%);
}
.cncmill-crosshair::after {
  left: 50%;
  top: -6px;
  bottom: -6px;
  width: 1px;
  transform: translateX(-50%);
}
.service-card-ref:hover .cncmill-crosshair {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1);
  animation: cncmillRotateReticle 8s linear infinite;
}
@keyframes cncmillRotateReticle {
  from { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  to { transform: translate(-50%, -50%) scale(1) rotate(360deg); }
}
.cncmill-spindle-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.22) 0%, rgba(255, 87, 34, 0.12) 35%, transparent 65%);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.service-card-ref:hover .cncmill-spindle-glow {
  opacity: 1;
  animation: cncmillSpindlePulse 2s ease-in-out infinite alternate;
}
@keyframes cncmillSpindlePulse {
  0% { opacity: 0.6; transform: scale(0.96); filter: brightness(1); }
  50% { opacity: 1; transform: scale(1.04); filter: brightness(1.25); }
  100% { opacity: 0.75; transform: scale(1); filter: brightness(1.1); }
}
.cncmill-glass-sheen {
  position: absolute;
  inset: -50%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 4;
}
.service-card-ref:hover .cncmill-glass-sheen {
  animation: cncmillGlassSheen 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes cncmillGlassSheen {
  0% { transform: translateX(-120%); }
  35% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
.cncmill-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #38bdf8;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 2px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  transition: all 0.3s ease;
}
.service-card-ref:hover .cncmill-badge {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(255, 87, 34, 0.6);
  color: #ff8a4c;
}
.cncmill-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: cncmillStatusBlink 1.6s ease-in-out infinite alternate;
}
.service-card-ref:hover .cncmill-badge-dot {
  background: #ff5722;
  box-shadow: 0 0 7px #ff5722;
}
@keyframes cncmillStatusBlink {
  0% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.15); }
}

/* Specialized Turn-Mill Interactive Machine Visual */
.turnmill-thumb-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, #172033 0%, #030712 100%);
  border: 1px solid #334155;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.service-card-ref:hover .turnmill-thumb-wrapper {
  border-color: rgba(255, 87, 34, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 16px rgba(255, 87, 34, 0.15);
}
.turnmill-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}
.service-card-ref:hover .turnmill-img {
  transform: scale(1.08);
}
.turnmill-laser-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.8), #ff5722, rgba(56, 189, 248, 0.8), transparent);
  box-shadow: 0 0 8px rgba(255, 87, 34, 0.7), 0 0 14px rgba(56, 189, 248, 0.4);
  top: -10%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.service-card-ref:hover .turnmill-laser-scan {
  animation: turnmillScan 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes turnmillScan {
  0% { top: -6%; opacity: 0; }
  15% { opacity: 0.9; }
  85% { opacity: 0.9; }
  100% { top: 106%; opacity: 0; }
}

/* Specialized High-Speed Milling Spark Interactive Visual */
.milling-thumb-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #0b1120;
  border: 1px solid #334155;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.service-card-ref:hover .milling-thumb-wrapper {
  border-color: rgba(255, 87, 34, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 16px rgba(255, 138, 76, 0.25);
}
.milling-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.service-card-ref:hover .milling-img {
  transform: scale(1.08);
  filter: contrast(1.05) brightness(1.03);
}
.milling-spark-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 48% 52%, rgba(255, 138, 0, 0.35) 0%, rgba(255, 69, 0, 0.15) 35%, transparent 65%);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.service-card-ref:hover .milling-spark-glow {
  opacity: 1;
  animation: sparkFlicker 1.8s ease-in-out infinite alternate;
}
@keyframes sparkFlicker {
  0% { opacity: 0.7; transform: scale(0.96); filter: brightness(1); }
  25% { opacity: 1; transform: scale(1.04); filter: brightness(1.3); }
  50% { opacity: 0.8; transform: scale(0.98); filter: brightness(1.1); }
  75% { opacity: 1; transform: scale(1.06); filter: brightness(1.35); }
  100% { opacity: 0.85; transform: scale(1); filter: brightness(1.15); }
}
.milling-glass-sheen {
  position: absolute;
  inset: -50%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 3;
}
.service-card-ref:hover .milling-glass-sheen {
  animation: glassSheen 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes glassSheen {
  0% { transform: translateX(-120%); }
  35% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* Specialized Jigs & Fixtures Tooling Interactive Visual */
.fixture-thumb-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #1e293b 0%, #080c14 100%);
  border: 1px solid #334155;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.service-card-ref:hover .fixture-thumb-wrapper {
  border-color: rgba(255, 87, 34, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 87, 34, 0.2);
}
.fixture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.service-card-ref:hover .fixture-img {
  transform: scale(1.09);
  filter: contrast(1.08) brightness(1.04);
}
.fixture-laser-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.9), #ff5722, rgba(34, 197, 94, 0.9), transparent);
  box-shadow: 0 0 10px rgba(255, 87, 34, 0.8), 0 0 16px rgba(34, 197, 94, 0.6);
  top: -10%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.service-card-ref:hover .fixture-laser-scan {
  animation: fixtureLaserScan 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes fixtureLaserScan {
  0% { top: -8%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 108%; opacity: 0; }
}
.fixture-rotary-dial {
  position: absolute;
  top: 58%;
  left: 45%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%) scale(0.9);
  border: 1px dashed rgba(34, 197, 94, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fixture-rotary-dial::before,
.fixture-rotary-dial::after {
  content: '';
  position: absolute;
  background: rgba(34, 197, 94, 0.7);
}
.fixture-rotary-dial::before {
  top: 50%;
  left: -5px;
  right: -5px;
  height: 1px;
  transform: translateY(-50%);
}
.fixture-rotary-dial::after {
  left: 50%;
  top: -5px;
  bottom: -5px;
  width: 1px;
  transform: translateX(-50%);
}
.service-card-ref:hover .fixture-rotary-dial {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1);
  animation: fixtureDialRotate 7s linear infinite;
}
@keyframes fixtureDialRotate {
  from { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  to { transform: translate(-50%, -50%) scale(1) rotate(360deg); }
}
.fixture-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 45% 55%, rgba(34, 197, 94, 0.2) 0%, rgba(255, 87, 34, 0.12) 35%, transparent 65%);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.service-card-ref:hover .fixture-glow {
  opacity: 1;
  animation: fixtureChamberPulse 2s ease-in-out infinite alternate;
}
@keyframes fixtureChamberPulse {
  0% { opacity: 0.55; transform: scale(0.96); filter: brightness(1); }
  50% { opacity: 1; transform: scale(1.04); filter: brightness(1.25); }
  100% { opacity: 0.75; transform: scale(1); filter: brightness(1.1); }
}
.fixture-glass-sheen {
  position: absolute;
  inset: -50%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 4;
}
.service-card-ref:hover .fixture-glass-sheen {
  animation: fixtureGlassSheen 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes fixtureGlassSheen {
  0% { transform: translateX(-120%); }
  35% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
.fixture-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #34d399;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(52, 211, 153, 0.35);
  padding: 2px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  transition: all 0.3s ease;
}
.service-card-ref:hover .fixture-badge {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(255, 87, 34, 0.6);
  color: #ff8a4c;
}
.fixture-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: fixtureStatusBlink 1.6s ease-in-out infinite alternate;
}
.service-card-ref:hover .fixture-badge-dot {
  background: #ff5722;
  box-shadow: 0 0 7px #ff5722;
}
@keyframes fixtureStatusBlink {
  0% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.15); }
}

/* Specialized Sheet Metal Fabrication & CNC Press Brake Interactive Visual */
.sheetmetal-thumb-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #1e293b 0%, #080c14 100%);
  border: 1px solid #334155;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.service-card-ref:hover .sheetmetal-thumb-wrapper {
  border-color: rgba(255, 87, 34, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 87, 34, 0.2);
}
.sheetmetal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 50%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.service-card-ref:hover .sheetmetal-img {
  transform: scale(1.09);
  filter: contrast(1.08) brightness(1.04);
}
.sheetmetal-laser-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.9), #ff5722, rgba(56, 189, 248, 0.9), transparent);
  box-shadow: 0 0 10px rgba(255, 87, 34, 0.8), 0 0 16px rgba(56, 189, 248, 0.6);
  top: -10%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.service-card-ref:hover .sheetmetal-laser-scan {
  animation: sheetmetalLaserScan 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes sheetmetalLaserScan {
  0% { top: -8%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 108%; opacity: 0; }
}
.sheetmetal-bend-reticle {
  position: absolute;
  top: 48%;
  left: 43%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%) scale(0.9);
  border: 1px dashed rgba(56, 189, 248, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sheetmetal-bend-reticle::before,
.sheetmetal-bend-reticle::after {
  content: '';
  position: absolute;
  background: rgba(56, 189, 248, 0.7);
}
.sheetmetal-bend-reticle::before {
  top: 50%;
  left: -5px;
  right: -5px;
  height: 1px;
  transform: translateY(-50%);
}
.sheetmetal-bend-reticle::after {
  left: 50%;
  top: -5px;
  bottom: -5px;
  width: 1px;
  transform: translateX(-50%);
}
.service-card-ref:hover .sheetmetal-bend-reticle {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1);
  animation: sheetmetalReticlePulse 6s linear infinite;
}
@keyframes sheetmetalReticlePulse {
  from { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  to { transform: translate(-50%, -50%) scale(1) rotate(360deg); }
}
.sheetmetal-press-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 43% 48%, rgba(56, 189, 248, 0.25) 0%, rgba(255, 87, 34, 0.15) 35%, transparent 65%);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.service-card-ref:hover .sheetmetal-press-glow {
  opacity: 1;
  animation: sheetmetalPunchGlow 2s ease-in-out infinite alternate;
}
@keyframes sheetmetalPunchGlow {
  0% { opacity: 0.55; transform: scale(0.96); filter: brightness(1); }
  50% { opacity: 1; transform: scale(1.04); filter: brightness(1.25); }
  100% { opacity: 0.75; transform: scale(1); filter: brightness(1.1); }
}
.sheetmetal-glass-sheen {
  position: absolute;
  inset: -50%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 4;
}
.service-card-ref:hover .sheetmetal-glass-sheen {
  animation: sheetmetalGlassSheen 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes sheetmetalGlassSheen {
  0% { transform: translateX(-120%); }
  35% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
.sheetmetal-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #38bdf8;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 2px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  transition: all 0.3s ease;
}
.service-card-ref:hover .sheetmetal-badge {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(255, 87, 34, 0.6);
  color: #ff8a4c;
}
.sheetmetal-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 6px #38bdf8;
  animation: sheetmetalStatusBlink 1.6s ease-in-out infinite alternate;
}
.service-card-ref:hover .sheetmetal-badge-dot {
  background: #ff5722;
  box-shadow: 0 0 7px #ff5722;
}
@keyframes sheetmetalStatusBlink {
  0% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.15); }
}

/* Specialized Custom SPMs & Automation Probing Interactive Visual */
.spm-thumb-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #1e293b 0%, #080c14 100%);
  border: 1px solid #334155;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.service-card-ref:hover .spm-thumb-wrapper {
  border-color: rgba(255, 87, 34, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 87, 34, 0.2);
}
.spm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.service-card-ref:hover .spm-img {
  transform: scale(1.09);
  filter: contrast(1.08) brightness(1.04);
}
.spm-laser-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.9), #ff5722, rgba(56, 189, 248, 0.9), transparent);
  box-shadow: 0 0 10px rgba(255, 87, 34, 0.8), 0 0 16px rgba(56, 189, 248, 0.6);
  top: -10%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.service-card-ref:hover .spm-laser-scan {
  animation: spmLaserScan 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes spmLaserScan {
  0% { top: -8%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 108%; opacity: 0; }
}
.spm-probe-reticle {
  position: absolute;
  top: 55%;
  left: 54%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%) scale(0.9);
  border: 1px dashed rgba(56, 189, 248, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.spm-probe-reticle::before,
.spm-probe-reticle::after {
  content: '';
  position: absolute;
  background: rgba(56, 189, 248, 0.7);
}
.spm-probe-reticle::before {
  top: 50%;
  left: -5px;
  right: -5px;
  height: 1px;
  transform: translateY(-50%);
}
.spm-probe-reticle::after {
  left: 50%;
  top: -5px;
  bottom: -5px;
  width: 1px;
  transform: translateX(-50%);
}
.service-card-ref:hover .spm-probe-reticle {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1);
  animation: spmReticleRotate 6s linear infinite;
}
@keyframes spmReticleRotate {
  from { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  to { transform: translate(-50%, -50%) scale(1) rotate(360deg); }
}
.spm-probe-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 54% 55%, rgba(56, 189, 248, 0.25) 0%, rgba(255, 87, 34, 0.15) 35%, transparent 65%);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.service-card-ref:hover .spm-probe-glow {
  opacity: 1;
  animation: spmProbePulse 2s ease-in-out infinite alternate;
}
@keyframes spmProbePulse {
  0% { opacity: 0.55; transform: scale(0.96); filter: brightness(1); }
  50% { opacity: 1; transform: scale(1.04); filter: brightness(1.25); }
  100% { opacity: 0.75; transform: scale(1); filter: brightness(1.1); }
}
.spm-glass-sheen {
  position: absolute;
  inset: -50%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 4;
}
.service-card-ref:hover .spm-glass-sheen {
  animation: spmGlassSheen 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes spmGlassSheen {
  0% { transform: translateX(-120%); }
  35% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
.spm-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #38bdf8;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 2px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  transition: all 0.3s ease;
}
.service-card-ref:hover .spm-badge {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(255, 87, 34, 0.6);
  color: #ff8a4c;
}
.spm-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 6px #38bdf8;
  animation: spmStatusBlink 1.6s ease-in-out infinite alternate;
}
.service-card-ref:hover .spm-badge-dot {
  background: #ff5722;
  box-shadow: 0 0 7px #ff5722;
}
@keyframes spmStatusBlink {
  0% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.15); }
}





/* ==========================================================================
   8. Dual-Image Story Block ("Receive a Fast Quote")
   ========================================================================== */
.dual-img-container {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}
.dual-img-main {
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.dual-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dual-img-sub {
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.dual-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge-since-2017 {
  position: absolute;
  bottom: 24px;
  left: 45%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid #e2e8f0;
  z-index: 10;
  text-align: center;
}

/* ==========================================================================
   9. Horizontal Expanding Sector Cards Accordion
   ========================================================================== */
.sector-expand-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
  height: 570px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.sector-card-expand {
  flex: 1;
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 16px;
  background: #0b1329;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 20px -5px rgba(11, 19, 41, 0.25);
  transition:
    flex 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  isolation: isolate;
  outline: none;
}

.sector-card-expand:not(.open):hover {
  transform: translateY(-5px);
  border-color: rgba(242, 92, 51, 0.45);
  box-shadow: 0 16px 36px -12px rgba(11, 19, 41, 0.45);
}

.sector-card-expand.open {
  flex: 4.8;
  cursor: default;
  border-color: rgba(242, 92, 51, 0.6);
  border-left: 3px solid #F25C33;
  box-shadow: 0 20px 48px -12px rgba(11, 19, 41, 0.5), 0 0 30px -8px rgba(242, 92, 51, 0.2);
}

/* Background image & gradient for collapsed state */
.sector-card-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.4s ease;
}

.sector-card-expand.open .sector-card-media {
  opacity: 0;
  pointer-events: none;
}

.sector-card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.85) contrast(1.15) brightness(0.78);
  transform: scale(1.08);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.sector-card-expand:not(.open):hover .sector-card-bg-img {
  transform: scale(1.18);
  filter: grayscale(0.15) contrast(1.1) brightness(0.88);
}

.sector-media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 19, 41, 0.65) 0%,
    rgba(11, 19, 41, 0.2) 28%,
    rgba(11, 19, 41, 0.55) 52%,
    rgba(11, 19, 41, 0.95) 75%,
    #0b1329 100%
  );
  transition: background 0.4s ease;
}

/* Collapsed view content layout */
.sector-collapsed-view {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 18px 22px;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.sector-card-expand.open .sector-collapsed-view {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.sector-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sector-tag-text {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.sector-tag-divider {
  width: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  transition: width 0.4s ease, background 0.4s ease;
}

.sector-card-expand:not(.open):hover .sector-tag-divider {
  width: 32px;
  background: #F25C33;
}

.sector-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sector-collapsed-title {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0;
}

.sector-accent-bar {
  width: 24px;
  height: 2px;
  background: #F25C33;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.sector-card-expand:not(.open):hover .sector-accent-bar {
  width: 44px;
}

.sector-expand-badge {
  align-self: flex-start;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  transition: all 0.35s ease;
  margin-top: 4px;
}

.sector-card-expand:not(.open):hover .sector-expand-badge {
  background: #F25C33;
  border-color: #F25C33;
  color: #ffffff;
  transform: rotate(90deg);
}

/* Expanded view layout */
.sector-expanded-view {
  display: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.sector-card-expand.open .sector-expanded-view {
  display: flex;
  flex-direction: row;
  opacity: 1;
  pointer-events: auto;
  animation: sectorFadeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

@keyframes sectorFadeIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Left visual in expanded card */
.sector-expanded-visual {
  width: 36%;
  max-width: 340px;
  min-width: 220px;
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: #080d1d;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sector-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.1) brightness(0.92);
  transform: scale(1.04);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.sector-card-expand.open:hover .sector-visual-img {
  transform: scale(1.08);
}

.sector-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 19, 41, 0.4) 0%,
    rgba(11, 19, 41, 0.1) 40%,
    rgba(11, 19, 41, 0.85) 85%,
    rgba(11, 19, 41, 0.98) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.sector-visual-badge {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #F25C33;
  background: rgba(242, 92, 51, 0.15);
  border: 1px solid rgba(242, 92, 51, 0.3);
  padding: 4px 10px;
  border-radius: 9999px;
  align-self: flex-start;
  backdrop-filter: blur(8px);
}

.sector-visual-caption {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.4;
  border-left: 2px solid #F25C33;
  padding-left: 8px;
}

/* Right content in expanded card */
.sector-expanded-content {
  flex: 1;
  min-width: 0;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  background: #0d152c;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(242, 92, 51, 0.4) transparent;
}

.sector-expanded-content::-webkit-scrollbar {
  width: 5px;
}

.sector-expanded-content::-webkit-scrollbar-track {
  background: transparent;
}

.sector-expanded-content::-webkit-scrollbar-thumb {
  background: rgba(242, 92, 51, 0.4);
  border-radius: 999px;
}

.sector-expanded-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 2px;
  flex-shrink: 0;
}

.sector-focus-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #F25C33;
  background: rgba(242, 92, 51, 0.1);
  border: 1px solid rgba(242, 92, 51, 0.25);
  padding: 4px 12px;
  border-radius: 9999px;
}

.sector-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #F25C33;
  box-shadow: 0 0 8px #F25C33;
  animation: sectorPulse 2s infinite;
}

@keyframes sectorPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.sector-close-toggle {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: all 0.3s ease;
  font-size: 13px;
}

.sector-close-toggle:hover {
  background: rgba(242, 92, 51, 0.2);
  border-color: #F25C33;
  color: #ffffff;
  transform: rotate(90deg);
}

.sector-expanded-heading-wrap {
  margin-bottom: 12px;
}

.sector-expanded-title {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.sector-expanded-accent {
  width: 48px;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #F25C33 0%, rgba(242, 92, 51, 0.2) 100%);
}

.sector-expanded-desc {
  font-size: 0.85rem;
  line-height: 1.68;
  color: #cbd5e1;
  margin: 0 0 16px;
  text-wrap: pretty;
  cursor: text;
  user-select: text;
}

/* Capability Pills Row */
.sector-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.sector-pill {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  cursor: default;
}

.sector-pill i {
  color: #F25C33;
  font-size: 10px;
}

.sector-card-expand.open:hover .sector-pill {
  border-color: rgba(255, 255, 255, 0.16);
  color: #e2e8f0;
}

/* Detail Card Interaction */
.sector-card-expand.open {
  cursor: default !important;
}

.sector-card-expand.open .sector-close-toggle {
  cursor: pointer !important;
}

.sector-card-expand.open .sector-expanded-desc {
  cursor: text !important;
  user-select: text;
}

.sector-card-expand:not(.open) {
  cursor: pointer !important;
}

/* Overflow and containment rules */
.sector-expand-wrap,
.sector-card-expand {
  overflow-x: hidden !important;
}

/* Mobile & Responsive Adaptation (< 1024px) */
@media (max-width: 1023px) {
  .sector-expand-wrap {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  .sector-card-expand {
    flex: none !important;
    width: 100%;
    height: auto;
    min-height: 86px;
    border-left: 2px solid transparent;
  }

  .sector-card-expand:not(.open) {
    height: 86px;
  }

  .sector-card-expand:not(.open) .sector-collapsed-view {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .sector-card-expand:not(.open) .sector-bottom-row {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .sector-card-expand:not(.open) .sector-collapsed-title {
    font-size: 1rem;
  }

  .sector-card-expand:not(.open) .sector-accent-bar {
    display: none;
  }

  .sector-card-expand.open {
    border-left: 4px solid #F25C33;
  }

  .sector-card-expand.open .sector-expanded-view {
    flex-direction: column;
    height: auto;
  }

  .sector-expanded-visual {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: 280px !important;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sector-expanded-content {
    padding: 20px 20px 24px !important;
  }

  .sector-expanded-title {
    font-size: 1.35rem;
  }

  .sector-action-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   10. Coral CTA Banner & Glass RFQ Form
   ========================================================================== */
.banner-coral-gradient {
  background: linear-gradient(135deg, #ff5722 0%, #f97316 50%, #ea580c 100%);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(255, 87, 34, 0.25);
}

.rfq-glass-container {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   11. Infinite Marquee
   ========================================================================== */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  background: #0f172a;
  border-top: 1px solid rgba(51, 65, 85, 0.6);
  border-bottom: 1px solid rgba(51, 65, 85, 0.6);
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marqueeScroll 26s linear infinite;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(71, 85, 105, 0.5);
  font-size: 13px;
  font-weight: 700;
  color: #f8fafc;
}

/* ==========================================================================
   12. Product Cards with 3D Tilt & Clip-Paths
   ========================================================================== */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}
.glare-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tilt-card:hover .glare-overlay {
  opacity: 1;
}

.clip-reveal-container {
  overflow: hidden;
  position: relative;
}
.clip-reveal-img,
.clip-reveal-video,
video.clip-reveal-img {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform: scale(1.15);
  transition: clip-path 1.1s cubic-bezier(0.25, 1, 0.5, 1), transform 1.1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: clip-path, transform;
}
.clip-reveal-container.is-revealed .clip-reveal-img,
.clip-reveal-container.is-revealed .clip-reveal-video,
.clip-reveal-container.is-revealed video.clip-reveal-img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: scale(1);
}

#hero-cnc-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  background-color: #070d1e;
}

.filter-btn.active {
  background-color: #ff5722;
  color: #ffffff;
  border-color: #ff5722;
  font-weight: 700;
  box-shadow: var(--shadow-coral);
}

/* ==========================================================================
   13. Floating Actions
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-float {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.btn-float:hover {
  transform: scale(1.12);
}



/* ==========================================================================
   Full-Screen Overlay Navigation (Ultra-Professional Aerospace & Engineering Console)
   ========================================================================== */
#fullscreen-nav {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background-color: rgba(5, 8, 16, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: none !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

#fullscreen-nav::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

#fullscreen-nav.open {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.fullscreen-nav-preview {
  display: none;
}

@media (min-width: 1024px) {
  .fullscreen-nav-preview {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 42%;
    height: 100%;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #060a14;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 36px;
    overflow: hidden;
  }
}

.fullscreen-nav-preview-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(255, 87, 34, 0.12) 0%, rgba(11, 18, 32, 0.95) 75%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.85);
  padding: 24px;
  overflow: hidden;
}

.fullscreen-nav-preview-stage img {
  max-width: 85%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.4s ease, opacity 0.25s ease;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.9));
}

.fullscreen-nav-menu {
  flex: 1;
  height: 100%;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden !important;
  background-color: #080d1a;
}

.fullscreen-nav-menu nav {
  flex: 1;
  min-height: 0;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 87, 34, 0.4) transparent;
  padding: 10px 4px;
}

.fullscreen-nav-menu nav::-webkit-scrollbar {
  width: 5px !important;
}

.fullscreen-nav-menu nav::-webkit-scrollbar-track {
  background: transparent !important;
}

.fullscreen-nav-menu nav::-webkit-scrollbar-thumb {
  background: rgba(255, 87, 34, 0.4) !important;
  border-radius: 999px !important;
}

@media (min-width: 768px) {
  .fullscreen-nav-menu {
    padding: 36px 48px;
  }
}

.fullscreen-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.fullscreen-nav-link:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 87, 34, 0.3);
  transform: translateX(6px);
}

.fullscreen-nav-link .nav-arrow {
  opacity: 0.25;
  transform: translateX(-6px);
  transition: all 0.25s ease;
  color: #94a3b8;
}

.fullscreen-nav-link:hover .nav-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #ff5722;
}


/* Testimonials Slider */
.testimonial-track {
  display: flex !important;
  flex-direction: row !important;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-slide {
  min-width: 100% !important;
  width: 100% !important;
  flex-shrink: 0 !important;
  box-sizing: border-box;
}


/* ==========================================================================
   Kinetic Text-Slide / Dual-Layer Roll-Up Effect
   ========================================================================== */
.nav-text-slide {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  height: 1.35em;
  line-height: 1.35em;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.nav-text-slide-inner {
  display: inline-flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
  white-space: nowrap !important;
}

.nav-text-slide-inner > span:first-child {
  display: block;
  height: 1.35em;
  line-height: 1.35em;
  color: inherit;
  transition: opacity 0.2s ease;
  white-space: nowrap !important;
}

.nav-text-slide-inner > span.clone {
  display: block;
  height: 1.35em;
  line-height: 1.35em;
  color: #ff5722 !important;
  font-weight: 700;
  white-space: nowrap !important;
}

/* On hover of parent container or link, roll up */
.nav-link:hover .nav-text-slide-inner,
.nav-text-slide:hover .nav-text-slide-inner,
.fullscreen-nav-link:hover .nav-text-slide-inner,
.footer-link:hover .nav-text-slide-inner,
.btn-slide:hover .nav-text-slide-inner {
  transform: translateY(-50%);
}


/* ==========================================================================
   High-Tech Interactive NPD Node Graph / Flowchart System
   Matches Reference: Glowing dark cards, neon SVG bezier curves, animated particles
   ========================================================================== */
.npd-graph-wrapper {
  background: #090f1e;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  padding: 40px 24px;
}

.npd-grid-bg {
  position: absolute;
  inset: 0;
  background-size: 32px 32px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  pointer-events: none;
}

.npd-node-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 16px;
  padding: 16px 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  z-index: 5;
}

.npd-node-card:hover, .npd-node-card.active {
  border-color: #ff5722;
  background: rgba(26, 38, 66, 0.95);
  box-shadow: 0 10px 30px rgba(255, 87, 34, 0.25), 0 0 15px rgba(255, 87, 34, 0.4);
  transform: translateY(-3px);
}

.npd-node-card.green-accent:hover, .npd-node-card.green-accent.active {
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25), 0 0 15px rgba(16, 185, 129, 0.4);
}

.npd-node-card.blue-accent:hover, .npd-node-card.blue-accent.active {
  border-color: #38bdf8;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.25), 0 0 15px rgba(56, 189, 248, 0.4);
}

.node-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot-green {
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.status-dot-coral {
  background-color: #ff5722;
  box-shadow: 0 0 8px #ff5722;
}

.status-dot-blue {
  background-color: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.status-dot-purple {
  background-color: #a855f7;
  box-shadow: 0 0 8px #a855f7;
}

/* SVG Connection Lines */
.npd-connector-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.npd-wire-path {
  fill: none;
  stroke: rgba(148, 163, 184, 0.25);
  stroke-width: 2;
  stroke-dasharray: 6 4;
  animation: wireFlow 20s linear infinite;
  transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.npd-wire-path.active {
  stroke: #ff5722;
  stroke-width: 3;
  stroke-dasharray: none;
  filter: drop-shadow(0 0 6px rgba(255, 87, 34, 0.8));
}

@keyframes wireFlow {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}

.wire-tag {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 2px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #94a3b8;
}

/* ==========================================================================
   3D Curved Perspective Carousel / Coverflow Showcase
   ========================================================================== */
.coverflow-section {
  background-color: #080d1a;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  position: relative;
  overflow: hidden;
}

.coverflow-stage {
  perspective: 1400px;
  perspective-origin: 50% 50%;
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  touch-action: pan-y;
  overflow: hidden;
}

.coverflow-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.coverflow-card {
  position: absolute;
  width: 280px;
  height: 400px;
  border-radius: 20px;
  background: #0d1527;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease, border-color 0.4s ease;
  overflow: hidden;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .coverflow-card {
    width: 320px;
    height: 420px;
  }
}

.coverflow-card.active {
  box-shadow: 0 35px 65px -12px rgba(0, 0, 0, 0.95), 0 0 40px rgba(255, 87, 34, 0.28);
  border-color: rgba(255, 87, 34, 0.6);
}

.coverflow-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.coverflow-card-imgwrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: radial-gradient(circle at 50% 40%, rgba(30, 41, 59, 0.95) 0%, rgba(10, 16, 30, 1) 100%);
  position: relative;
  overflow: hidden;
}

.coverflow-card-imgwrap::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.04) 45%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.04) 55%,
    transparent 65%
  );
  transform: rotate(-25deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.coverflow-card:hover .coverflow-card-imgwrap::after,
.coverflow-card.active .coverflow-card-imgwrap::after {
  opacity: 1;
  animation: cardLightSheen 4.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cardLightSheen {
  0% {
    left: -150%;
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  45% {
    left: 150%;
    opacity: 0;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}

.coverflow-card-img {
  max-width: 92%;
  max-height: 195px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.35);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.coverflow-card.active .coverflow-card-img {
  animation: productFloat 4s ease-in-out infinite alternate;
  border-color: rgba(255, 87, 34, 0.3);
  box-shadow: 0 16px 32px -6px rgba(0, 0, 0, 0.85), 0 0 20px rgba(255, 87, 34, 0.15);
}

@keyframes productFloat {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.025);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

.coverflow-card.active:hover .coverflow-card-img {
  animation-play-state: paused;
  transform: scale(1.07) translateY(-5px);
  border-color: rgba(255, 87, 34, 0.6);
  box-shadow: 0 20px 40px -6px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 87, 34, 0.28);
}

.coverflow-card-info {
  padding: 16px 18px;
  background: #090e1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Product Catalog Grid Card Hover Animation & Reflections */
.tilt-card .clip-reveal-container {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, #1e293b 0%, #090e1a 100%) !important;
}

.tilt-card .clip-reveal-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.tilt-card:hover .clip-reveal-container::after {
  left: 150%;
}

.tilt-card .clip-reveal-img {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease, border-color 0.4s ease;
}

.tilt-card:hover .clip-reveal-img {
  transform: scale(1.05) translateY(-3px);
  border-color: rgba(255, 87, 34, 0.35);
  box-shadow: 0 14px 28px -4px rgba(0, 0, 0, 0.75), 0 0 15px rgba(255, 87, 34, 0.15);
}

/* Minimal Controls with Orange Progress Line matching user screenshot */
.coverflow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}

.coverflow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.coverflow-btn:hover {
  background: #ff5722;
  color: #ffffff;
  border-color: #ff5722;
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
  transform: scale(1.1);
}

.coverflow-progress-track {
  position: relative;
  width: 240px;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.coverflow-progress-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #ff5722;
  box-shadow: 0 0 12px #ff5722;
  border-radius: 999px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

#modal-product-img {
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.75));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

#modal-product-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(255, 87, 34, 0.25));
}
