/* ===========================================================
   Jeesuu Industrial Technology — SVG Illustrations & Images
   All embedded SVGs — no external dependencies
   =========================================================== */

/* ---- HERO BACKGROUND PATTERN ---- */
.hero-illustration {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* ---- SECTION DECORATION: GEAR SVG ---- */
.section-decoration {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.section-decoration.right { right: -60px; top: -40px; width: 300px; height: 300px; }
.section-decoration.left { left: -60px; bottom: -40px; width: 250px; height: 250px; }

/* ---- INDUSTRY ICON BACKGROUNDS ---- */
.industry-icon-bg {
  width: 80px; height: 80px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 15px;
  font-size: 36px;
}
.ic-steel { background: linear-gradient(135deg, #f59e0b, #d97706); }
.ic-auto { background: linear-gradient(135deg, #ef4444, #dc2626); }
.ic-data { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.ic-hydro { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.ic-aero { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.ic-bio { background: linear-gradient(135deg, #10b981, #059669); }
.ic-power { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.ic-pack { background: linear-gradient(135deg, #ec4899, #db2777); }
.ic-tool { background: linear-gradient(135deg, #6366f1, #4f46e5); }

/* ---- CARD IMAGE FALLBACK ---- */
.card-img-fallback {
  width: 100%; height: 210px;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
  color: rgba(255,255,255,.15);
}

/* ---- BANNER SECTION IMAGES ---- */
.img-banner-container {
  width: 100%; height: 350px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0b1833 0%, #0f2348 50%, #153062 100%);
  display: flex; align-items: center; justify-content: center;
}
.img-banner-container .banner-content {
  text-align: center;
  color: rgba(255,255,255,.3);
  z-index: 1;
}
.img-banner-container .banner-content svg {
  width: 120px; height: 120px;
  margin: 0 auto 15px;
  opacity: 0.4;
}

/* ---- GEAR ANIMATION ---- */
@keyframes rotate-gear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.gear-rotate {
  animation: rotate-gear 20s linear infinite;
  transform-origin: center;
}
.gear-rotate-slow {
  animation: rotate-gear 35s linear infinite reverse;
  transform-origin: center;
}

/* ---- INDUSTRY PANEL IMAGES ---- */
.industry-panel-img {
  height: 120px;
  border-radius: var(--r);
  margin-bottom: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 50px;
}

/* ---- PAGE HEADER OVERLAY ---- */
.page-header-overlay {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.08;
  pointer-events: none;
}

/* ---- ABOUT PAGE VISUALS ---- */
.about-visual-svg {
  margin-bottom: 20px;
  opacity: 0.7;
}

/* ---- TIMELINE DOTS ---- */
.timeline-dot {
  position: absolute;
  left: -7px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--pri);
  border-radius: 50%;
  border: 2px solid var(--bg-darkest);
  box-shadow: 0 0 12px rgba(59,130,246,.4);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-illustration { display: none; }
  .section-decoration { display: none; }
  .page-header-overlay { display: none; }
  .img-banner-container { height: 200px; }
}
