
/* =============================================================
   SHK POLYMERS — ABOUT US PAGE STYLES
   All selectors are scoped under `.shk-au` so this file
   will not affect any other page in the site.
   ============================================================= */

/* =============================================================
   0. DESIGN TOKENS (scoped)
   ============================================================= */
.shk-au {
  --au-brand: #ED1C24;
  --au-brand-dark: #b91219;
  --au-ink: #111111;
  --au-subtle: #475569;
  --au-muted: #64748b;
  --au-bg: #ffffff;
  --au-soft: #f6f7f9;
  --au-border: #e5e7eb;
  --au-shadow-sm: 0 4px 14px rgba(17,17,17,0.06);
  --au-shadow-md: 0 10px 30px rgba(17,17,17,0.08);
  --au-shadow-lg: 0 22px 60px rgba(17,17,17,0.14);
  --au-shadow-brand: 0 12px 40px rgba(237,28,36,0.28);
  --au-gradient-brand: linear-gradient(135deg, #ED1C24 0%, #b91219 100%);
  --au-gradient-ink: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);

  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--au-ink);
  background: var(--au-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.shk-au *,
.shk-au *::before,
.shk-au *::after { box-sizing: border-box; }

.shk-au img { max-width: 100%; display: block; }

.shk-au__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* =============================================================
   1. SHARED PRIMITIVES (headings, eyebrow, icons, rings)
   ============================================================= */
.shk-au__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--au-brand);
  background: rgba(237,28,36,0.08);
  padding: 6px 14px;
  border-radius: 999px;
}
.shk-au__eyebrow--onDark {
  color: #5E5E5E;
  background: rgba(237,28,36,0.08);
}

.shk-au__heading {
  font-size: 34px;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin: 16px 0 0;
  color: var(--au-ink);
}
.shk-au__text-red { color: var(--au-brand); }

.shk-au__subtitle {
  margin-top: 16px;
  color: var(--au-subtle);
  font-size: 15px;
  line-height: 1.7;
}

.shk-au__section-head {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.shk-au__icon-ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--au-brand);
  color: var(--au-brand);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--au-shadow-sm);
  flex: none;
}
.shk-au__icon-ring--outline {
  background: transparent;
  color: #fff;
}

.shk-au__ring {
  position: absolute;
  border: 2px dashed rgba(237,28,36,0.35);
  border-radius: 50%;
  pointer-events: none;
  animation: aboutUsSpin 40s linear infinite;
}
.shk-au__ring--lg { width: 420px; height: 420px; right: -130px; top: -100px; }
.shk-au__ring--sm { width: 220px; height: 220px; right: 160px; bottom: 40px; animation-duration: 26s; }
.shk-au__ring--card { width: 160px; height: 160px; right: -40px; top: -40px; opacity: .5; }
.shk-au__ring--ctaLg { width: 300px; height: 300px; right: -60px; top: -60px; border-color: rgba(255,255,255,0.45); opacity: .5; }
.shk-au__ring--ctaSm { width: 160px; height: 160px; right: 160px; bottom: 24px; border-color: rgba(255,255,255,0.45); opacity: .35; }

@keyframes aboutUsSpin { to { transform: rotate(360deg); } }

/* =============================================================
   2. SECTION 1 — HERO
   ============================================================= */
.shk-au__hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
}
.shk-au__hero-bg { position: absolute; inset: 0; }
.shk-au__hero-bg img { width: 100%; height: 100% !important; object-fit: cover; }
.shk-au__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgb(255 255 255 / 85%) 0%, rgb(191 191 191 / 60%) 45%, rgba(0, 0, 0, 0.3) 100%);
}

.shk-au__hero-inner {
  position: relative;
  padding: 96px 20px;
}
.shk-au__hero-content { max-width: 733px; }

/* --- WHITE GLOW / SHADOW BEHIND HERO LEFT TEXT --- */
/*.shk-au__hero-title,
.shk-au__hero-lead,
.shk-au__hero-stats {
  text-shadow:
    0 0 24px rgba(255,255,255,0.35),
    0 0 60px rgba(255,255,255,0.22),
    0 2px 4px rgba(0,0,0,0.35);
}
*/
.shk-au__hero-title {
  font-size: 44px;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin: 20px 0 0;
  color: #111111;
}

.shk-au__hero-lead {
  margin-top: 22px;
  font-size: clamp(0.95rem, 1.3vw, 1.125rem);
  color: #5E5E5E;
  max-width: 520px;
  line-height: 1.7;
}

.shk-au__hero-stats {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.shk-au__stat { min-width: 110px; }
.shk-au__stat-num { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: #111111; line-height: 1.1; }
.shk-au__stat-label { margin-top: 6px; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: #5E5E5E; }

/* =============================================================
   3. SECTION 2 — COMPANY OVERVIEW
   ============================================================= */
.shk-au__overview { padding: 80px 0; }
.shk-au__overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.shk-au__overview-head { max-width: 900px; }
.shk-au__overview-head .shk-au__heading { margin-top: 12px; }
.shk-au__overview-body p {
  color: var(--au-subtle);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 18px;
}
.shk-au__overview-body strong { color: var(--au-ink); }

.shk-au__tag-row { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.shk-au__tag {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--au-border);
  border-radius: 999px;
  background: #fff;
  color: var(--au-ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Timeline card bullet list (used by 2014, 2019 entries) */
.shk-au__timeline-bullets {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.shk-au__timeline-bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--au-ink);
}
.shk-au__timeline-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--au-brand);
}
.shk-au__timeline-item--left .shk-au__timeline-bullets {
  display: inline-block;
  text-align: left;
}
.shk-au__timeline-card + p,
.shk-au__timeline-bullets + .shk-au__timeline-body { margin-top: 10px; }


/* =============================================================
   4. SECTION 3 — OUR STORY / TIMELINE
   ============================================================= */
.shk-au__timeline {
  padding: 80px 0;
  background: var(--au-soft);
}
.shk-au__timeline-wrap { position: relative; margin-top: 56px; }
.shk-au__timeline-spine {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent 0%, var(--au-brand) 8%, var(--au-brand) 92%, transparent 100%);
}
.shk-au__timeline-list { list-style: none; margin: 0; padding: 0; }
.shk-au__timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.shk-au__timeline-item:last-child { margin-bottom: 0; }
.shk-au__timeline-node {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--au-brand);
  color: var(--au-brand);
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: var(--au-shadow-sm);
}
.shk-au__timeline-card {
  background: #fff;
  border: 1px solid var(--au-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--au-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.shk-au__timeline-card:hover { transform: translateY(-3px); box-shadow: var(--au-shadow-md); }

.shk-au__timeline-item--left .shk-au__timeline-card { margin-right: 64px; text-align: right; }
.shk-au__timeline-item--right .shk-au__timeline-card { grid-column: 2; margin-left: 64px; }

.shk-au__timeline-year-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.shk-au__timeline-item--left .shk-au__timeline-year-row { justify-content: flex-end; }
.shk-au__timeline-year { font-size: 24px; font-weight: 800; color: var(--au-brand); }
.shk-au__timeline-bar { height: 2px; width: 32px; background: rgba(237,28,36,0.4); }
.shk-au__timeline-title { font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }
.shk-au__timeline-body { margin: 8px 0 0; color: var(--au-subtle); font-size: 14px; line-height: 1.6; }

/* =============================================================
   5. SECTION 4 — MISSION & VISION
   ============================================================= */
.shk-au__mv { padding: 80px 0; }
.shk-au__mv-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.shk-au__mv-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--au-border);
  box-shadow: var(--au-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.shk-au__mv-card:hover { transform: translateY(-3px); box-shadow: var(--au-shadow-md); }
.shk-au__mv-card--vision {
  background: var(--au-gradient-ink);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--au-shadow-lg);
}
.shk-au__mv-head { display: flex; align-items: center; gap: 14px; }
.shk-au__mv-title { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; text-transform: uppercase; margin: 0; }
.shk-au__mv-card--vision .shk-au__mv-title { color: #fff; }
.shk-au__mv-body { margin: 16px 0 0; font-size: 15px; line-height: 1.7; color: var(--au-subtle); }
.shk-au__mv-card--vision .shk-au__mv-body { color: rgba(255,255,255,0.75); }
.shk-au__mv-list { list-style: none; padding: 0; margin: 20px 0 0; }
.shk-au__mv-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; font-size: 14px; color: rgba(17,17,17,0.85); }
.shk-au__mv-card--vision .shk-au__mv-list li { color: rgba(255,255,255,0.85); }
.shk-au__dot { flex: none; margin-top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--au-brand); }

/* =============================================================
   6. SECTION 5 — INFRASTRUCTURE
   ============================================================= */
.shk-au__infra { padding: 80px 0; background: var(--au-soft); }
.shk-au__infra-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 28px;
  align-items: stretch;
}
.shk-au__infra-photo {
  position: relative;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--au-shadow-lg);
}
.shk-au__infra-photo img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; }
.shk-au__infra-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}
.shk-au__infra-photo-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  color: #fff;
}
.shk-au__infra-photo-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.shk-au__infra-photo-num { margin-top: 4px; font-size: 30px; font-weight: 800; line-height: 1.1; }
.shk-au__infra-photo-num span { font-size: 15px; font-weight: 500; }
.shk-au__infra-photo-sub { margin-top: 4px; font-size: 13px; color: rgba(255,255,255,0.8); }

.shk-au__infra-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.shk-au__infra-card {
  background: #fff;
  border: 1px solid var(--au-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--au-shadow-sm);
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform .25s ease, box-shadow .25s ease;
}
.shk-au__infra-card:hover { transform: translateY(-3px); box-shadow: var(--au-shadow-md); }
.shk-au__infra-card-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }
.shk-au__infra-card-body { margin: 6px 0 0; font-size: 13.5px; color: var(--au-subtle); line-height: 1.6; }

/* =============================================================
   7. SECTION 6 — CERTIFICATIONS
   ============================================================= */
.shk-au__cert { padding: 80px 0; }
.shk-au__cert-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.shk-au__cert-card {
  background: #fff;
  border: 1px solid var(--au-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--au-shadow-sm);
  display: flex; align-items: center; gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.shk-au__cert-card:hover { transform: translateY(-3px); box-shadow: var(--au-shadow-md); }
.shk-au__cert-code {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--au-brand);
  color: var(--au-brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px; letter-spacing: 1px;
  flex: none;
  box-shadow: var(--au-shadow-sm);
}
.shk-au__cert-label { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--au-ink); }

/* =============================================================
   8. SECTION 7 — CTA
   ============================================================= */
.shk-au__cta-wrap { padding: 0 0 80px; }
.shk-au__cta {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 56px 40px;
  color: #fff;
  background: var(--au-gradient-brand);
  box-shadow: var(--au-shadow-brand);
}
.shk-au__cta-content { position: relative; max-width: 640px; }
.shk-au__cta-title { font-size: clamp(1.5rem, 3vw, 2.25rem); color: #fff; font-weight: 700; text-transform: uppercase; margin: 0; line-height: 1.2; letter-spacing: 0.5px; }
.shk-au__cta-body { margin: 16px 0 0; color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.7; }
.shk-au__cta-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }

.shk-au__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.shk-au__btn--solid { background: #fff; color: var(--au-brand); box-shadow: var(--au-shadow-md); }
.shk-au__btn--solid:hover { transform: translateY(-2px); }
.shk-au__btn--outline { border: 2px solid rgba(255,255,255,0.7); color: #fff; }
.shk-au__btn--outline:hover { background: rgba(255,255,255,0.1); color:#fff; }

/* =============================================================
   9. RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================= */
@media (max-width: 1024px) {
  .shk-au__overview-grid { grid-template-columns: 1fr; gap: 24px; }
  .shk-au__infra-grid { grid-template-columns: 1fr; }
  .shk-au__cert-grid { grid-template-columns: repeat(2, 1fr); }
  .shk-au__ring--lg { width: 300px; height: 300px; right: -100px; top: -80px; }
  .shk-au__ring--sm { width: 160px; height: 160px; right: 60px; bottom: 20px; }
}

/* =============================================================
   10. RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================= */
@media (max-width: 768px) {
  .shk-au__overview,
  .shk-au__timeline,
  .shk-au__mv,
  .shk-au__infra,
  .shk-au__cert { padding: 56px 0; }

  .shk-au__hero { min-height: 480px; }
  .shk-au__hero-inner { padding-top: 30% }
  .shk-au__hero-stats { gap: 16px; }
  .shk-au__stat { min-width: 45%; }
.shk-au__hero-overlay{background: linear-gradient(to right, rgb(255 255 255 / 885%) 8%, rgb(191 191 191 / 60%) 98%, rgba(0, 0, 0, 0.3) 100%);}
  .shk-au__mv-grid { grid-template-columns: 1fr; }
  .shk-au__infra-features { grid-template-columns: 1fr; }
  .shk-au__cert-grid { grid-template-columns: 1fr; }

  .shk-au__cta { padding: 40px 24px; border-radius: 20px; }

  /* Timeline: collapse to single left rail */
  .shk-au__timeline-spine { left: 20px; transform: none; }
  .shk-au__timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 32px;
    padding-left: 56px;
  }
  .shk-au__timeline-node {
    left: 20px;
    top: 24px;
    transform: translate(-50%, 0);
    width: 40px; height: 40px;
    font-size: 12px;
  }
  .shk-au__timeline-item--left .shk-au__timeline-card,
  .shk-au__timeline-item--right .shk-au__timeline-card {
    grid-column: 1;
    margin: 0;
    text-align: left;
  }
  .shk-au__timeline-item--left .shk-au__timeline-year-row { justify-content: flex-start; }

  .shk-au__ring--lg,
  .shk-au__ring--sm,
  .shk-au__ring--card,
  .shk-au__ring--ctaLg,
  .shk-au__ring--ctaSm { display: none; }
}

/* =============================================================
   11. RESPONSIVE — SMALL MOBILE (max-width: 420px)
   ============================================================= */
@media (max-width: 420px) {
  .shk-au__stat { min-width: 100%; }
  .shk-au__btn { width: 100%; }
}

/* =============================================================
   12. SCROLL-IN ANIMATION (optional — toggled from Style tab)
   Only applies when the wrapper has .shk-au-animate, and only
   before JS adds .is-in-view (progressive enhancement — content
   is fully visible by default with no JS/CSS support).
   ============================================================= */
.shk-au.shk-au-animate .shk-au__stat,
.shk-au.shk-au-animate .shk-au__timeline-card,
.shk-au.shk-au-animate .shk-au__infra-card,
.shk-au.shk-au-animate .shk-au__cert-card,
.shk-au.shk-au-animate .shk-au__mv-card,
.shk-au.shk-au-animate .shk-au__tag {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.shk-au.shk-au-animate .shk-au__stat.shk-au-inview,
.shk-au.shk-au-animate .shk-au__timeline-card.shk-au-inview,
.shk-au.shk-au-animate .shk-au__infra-card.shk-au-inview,
.shk-au.shk-au-animate .shk-au__cert-card.shk-au-inview,
.shk-au.shk-au-animate .shk-au__mv-card.shk-au-inview,
.shk-au.shk-au-animate .shk-au__tag.shk-au-inview {
  opacity: 1;
  transform: translateY(0);
}
/* No-JS fallback: never leave content invisible if JS fails to run. */
.shk-au.shk-au-animate.shk-au-no-js .shk-au__stat,
.shk-au.shk-au-animate.shk-au-no-js .shk-au__timeline-card,
.shk-au.shk-au-animate.shk-au-no-js .shk-au__infra-card,
.shk-au.shk-au-animate.shk-au-no-js .shk-au__cert-card,
.shk-au.shk-au-animate.shk-au-no-js .shk-au__mv-card,
.shk-au.shk-au-animate.shk-au-no-js .shk-au__tag {
  opacity: 1;
  transform: none;
}
