/* Shared stylesheet for all IVLUC pages (home + product pages). */
* { box-sizing: border-box; }
body { margin: 0; }
::selection { background: #e08a2b; color: #0d1b2e; }
a { color: #e08a2b; text-decoration: none; }
a:hover { color: #f0a352; }

@media (max-width: 960px) {
  .iluc-desktop-nav { display: none !important; }
  .iluc-mobile-toggle { display: block !important; }
  .iluc-about-grid, .iluc-contact-grid { grid-template-columns: 1fr !important; }
  .cc-grid, .iluc-trust-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .iluc-industries-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .iluc-footer-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .cc-grid, .iluc-trust-grid, .iluc-industries-grid { grid-template-columns: 1fr 1fr !important; }
}

/* Shimmer shown over a photo's placeholder background while it loads. */
@keyframes ivluc-shimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.ivluc-img-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0) 25%, rgba(255,255,255,0.16) 37%, rgba(255,255,255,0) 63%);
  background-size: 400% 100%;
  animation: ivluc-shimmer 1.4s ease infinite;
}
