@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@600;700;800&display=swap');

@font-face { font-family: 'BoschSerif'; src: url('../fonts/BoschSerif-Regular.woff2') format('woff2'), url('../fonts/BoschSerif-Regular.woff') format('woff'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'BoschSerif'; src: url('../fonts/BoschSerif-Bold.woff2') format('woff2'), url('../fonts/BoschSerif-Bold.woff') format('woff'); font-weight: 700; font-style: normal; font-display: swap; }

:root { --gold: #D4AF37; --black: #0A0A0A; --dark-grey: #0A0A0A; --soft-white: #F9F9F9; --grey: #E8E8E8; --ink: #111; --header-h: 72px; --header-offset: 12px; }

* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: 'Open Sans', sans-serif; color: var(--ink); background: var(--soft-white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.preloader { position: fixed; inset: 0; background: var(--dark-grey); display: grid; place-items: center; z-index: 4000; }
.preloader .pl-content { width: min(360px, 86%); text-align: center; }
.preloader img { width: 200px; height: auto; margin: 0 auto 16px; filter: drop-shadow(0 6px 12px rgba(212,175,55,.25)); }
.preloader .pl-bar { height: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(212,175,55,.35); border-radius: 999px; overflow: hidden; }
.preloader .pl-fill { height: 100%; width: 0%; background: linear-gradient(135deg, #d4af37, #b18b2f); box-shadow: 0 10px 20px rgba(212,175,55,.25); transition: width .18s ease; }
.preloader.hide { opacity: 0; pointer-events: none; transition: opacity .4s ease; }

.container { width: min(1200px, 92%); margin: 0 auto; }

.header { position: fixed; top: var(--header-offset); left: 0; right: 0; background: transparent; color: #fff; z-index: 1000; transition: background .3s ease, box-shadow .3s ease; padding: 0; overflow: hidden; }
.header::before { content: none; }
.header .nav { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; height: var(--header-h); background: linear-gradient(180deg, var(--dark-grey), var(--dark-grey)); border: 1px solid rgba(212,175,55,.25); border-radius: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); padding: 0 18px; overflow: hidden; }
.header.scrolled .nav { box-shadow: inset 0 1px 0 rgba(255,255,255,.08); border-color: rgba(212,175,55,.35); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; filter: drop-shadow(0 6px 12px rgba(212,175,55,.25)); }
.brand .name { font-weight: 800; letter-spacing: .6px; font-size: 1.05rem; }
.brand .name strong { color: var(--gold); }
.header .brand .name, .footer .brand .name { font-family: 'Open Sans', sans-serif; font-weight: 600; }

.nav-links { display: flex; gap: 24px; }
.nav-links a { color: #f5f5f5; opacity: .9; font-weight: 600; transition: color .2s ease, opacity .2s ease; }
.nav-links a:hover { color: var(--gold); opacity: 1; }
.actions { display: flex; align-items: center; gap: 12px; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 10px; font-weight: 600; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, #d4af37, #b18b2f); color: #0A0A0A; box-shadow: 0 10px 20px rgba(212,175,55,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(212,175,55,.35); }
.btn-outline { border-color: rgba(212,175,55,.6); color: #f9f9f9; background: transparent; }
.btn-outline:hover { background: rgba(212,175,55,.15); color: #fff; }
 .whatsapp-btn { background: linear-gradient(135deg, #25D366, #1ebe57); color: #0A0A0A; border-color: transparent; box-shadow: 0 10px 20px rgba(37,211,102,.25); }
 .whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37,211,102,.35); }

.menu-toggle { display: none; cursor: pointer; color: #fff; font-size: 24px; }

@media (max-width: 1024px) {
  .menu-toggle { display: block; padding: 8px; -webkit-tap-highlight-color: transparent; }
  .nav-links { position: fixed; top: calc(var(--header-h) + var(--header-offset)); left: 0; right: 0; background: var(--dark-grey); border-top: 1px solid rgba(212,175,55,.25); padding: 18px 24px; flex-direction: column; gap: 12px; transform: translate3d(0,-120%,0); transition: transform .3s ease, opacity .25s ease; z-index: 2000; max-height: calc(100vh - (var(--header-h) + var(--header-offset))); overflow-y: auto; opacity: 0; pointer-events: none; -webkit-overflow-scrolling: touch; will-change: transform, opacity; backface-visibility: hidden; }
  .nav-links.open { transform: translate3d(0,0,0); opacity: 1; pointer-events: auto; }
  .actions .btn-primary { display: none; }
  .nav-links .nav-cta { display: inline-flex; width: 100%; justify-content: center; margin-top: 8px; }
  .brand img { height: 46px; }
  .brand .name { font-size: 0.92rem; }
}

.nav-links .nav-cta { display: none; }
body.no-scroll { overflow: hidden; }

.hero { background: radial-gradient(1000px 400px at 10% 10%, rgba(212,175,55,.15), transparent 60%), linear-gradient(180deg, var(--dark-grey) 0%, var(--dark-grey) 100%); color: #fff; padding: 0 0 48px; position: relative; overflow: hidden; min-height: 700px; }
.hero .container { width: min(1280px, 98%); }
.hero .content { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: start; min-height: 700px; }
@media (max-width: 900px) { .hero .content { grid-template-columns: 1fr; } }
.text-gradient { background: linear-gradient(135deg, #ffffff 20%, #d4af37 60%, #fff); -webkit-background-clip: text; background-clip: text; color: transparent; animation: shine 6s linear infinite; }
@keyframes shine { 0% { filter: brightness(1); } 50% { filter: brightness(1.25); } 100% { filter: brightness(1); } }
.hero p { font-size: 1.1rem; opacity: .9; }
.hero .cta { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.hero h1, .hero p, .hero .kicker { text-shadow: 0 6px 22px rgba(0,0,0,.55); }
.hero-subheadline { font-family: 'Overpass', 'Open Sans', sans-serif; color: #f5f5f5; font-weight: 600; margin-top: 6px; text-shadow: 0 6px 22px rgba(0,0,0,.55); }
.hero .content { justify-items: center; }
.hero .content > div:first-child { text-align: center; }
.hero .cta { justify-content: center; }
.hero h1 { font-family: 'Overpass', 'Open Sans', sans-serif; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.06; }
.hero p { font-size: clamp(0.98rem, 1.4vw, 1.15rem); }
.hero .kicker { font-size: clamp(0.85rem, 1.2vw, 1.1rem); margin-top: 12px; margin-bottom: 12px; }
.hero .cta .btn { padding: 14px 26px; font-size: 1rem; border-radius: 10px; }
.hero .cta .btn-outline { background: linear-gradient(135deg, #d4af37, #b18b2f); color: #0A0A0A; border-color: transparent; box-shadow: 0 10px 20px rgba(212,175,55,.25); }
.hero .cta .btn-outline:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(212,175,55,.35); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.stat { background: rgba(255,255,255,.06); border: 1px solid rgba(212,175,55,.25); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); padding: 18px; border-radius: 14px; text-align: center; }
.stat .value { font-size: 1.4rem; font-weight: 800; color: #d4af37; }
.stat .label { font-size: .95rem; color: #ddd; }

.hero .bg, .hero .bg-next { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.45) saturate(1.05); transition: opacity .8s ease; }
.hero .bg { opacity: 1; }
.hero .bg-next { opacity: 0; }
.hero .bg-next.show { opacity: 1; }
.hero .bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45) saturate(1.05); pointer-events: none; z-index: 0; }
.hero .bg-next.show { opacity: 1; }
.aos-fallback [data-aos], .aos-fallback .reveal { opacity: 1 !important; transform: none !important; }
.hero .content { position: relative; padding-top: calc(var(--header-h) + 32px); }
.hero .hero-dots { position: absolute; right: 16px; bottom: 16px; display: flex; gap: 6px; z-index: 1; }
.hero .hero-dots .dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.35); border: 1px solid rgba(212,175,55,.6); cursor: pointer; }
.hero .hero-dots .dot.active { background: #d4af37; }

/* Homepage-specific hero offset */
.home-hero .content { padding-top: calc(var(--header-h) + 120px); }
/* About hero specific centering */
.about-hero .content { align-items: center; justify-items: center; min-height: 720px; padding-top: calc(var(--header-h) + 140px); padding-bottom: 60px; }

@media (min-width: 1024px) {
  /* Let the hero media run edge-to-edge on desktop */
  .hero { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
  .hero { min-height: 700px; }
  .hero .bg-video { width: 100vw; left: 50%; right: auto; transform: translateX(-50%); }
  .hero .bg, .hero .bg-next { left: 50%; right: auto; width: 100vw; transform: translateX(-50%); }
  .hero .container { width: min(1280px, 96%); margin: 0 auto; }
  .hero .content { min-height: 700px; }
}

.hero-slider { position: relative; height: 360px; background: radial-gradient(600px 260px at 0% 0%, rgba(212,175,55,.08), transparent 70%), var(--dark-grey); border: 1px solid rgba(212,175,55,.25); border-radius: 16px; overflow: hidden; }
.hero-slider .slide { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transform: scale(1.02); transition: opacity .6s ease, transform .6s ease; }
.hero-slider .slide.active { opacity: 1; transform: none; }
.hero-slider img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.hero-slider .slide-img { width: 100%; height: 100%; padding: 20px; background: radial-gradient(520px 220px at 10% 10%, rgba(212,175,55,.12), transparent 60%), linear-gradient(180deg, var(--dark-grey), var(--dark-grey)); border-radius: 12px; }
.hero-slider .slide-img.dist { background: radial-gradient(520px 220px at 10% 10%, rgba(212,175,55,.16), transparent 60%), linear-gradient(180deg, var(--dark-grey), var(--dark-grey)); }
.hero-slider .slide-img.power { background: radial-gradient(520px 220px at 90% 15%, rgba(212,175,55,.16), transparent 60%), linear-gradient(180deg, var(--dark-grey), var(--dark-grey)); }
.hero-slider .slide-img.custom { background: radial-gradient(520px 220px at 50% 50%, rgba(212,175,55,.16), transparent 60%), linear-gradient(180deg, var(--dark-grey), var(--dark-grey)); }
.hero-slider .caption { position: absolute; left: 16px; bottom: 16px; background: rgba(0,0,0,.55); color: #fff; border: 1px solid rgba(212,175,55,.35); padding: 8px 12px; border-radius: 10px; font-weight: 700; }
.hero-slider .controls { position: absolute; right: 12px; bottom: 12px; display: flex; gap: 8px; }
.hero-slider .controls button { background: rgba(212,175,55,.2); color: #fff; border: 1px solid rgba(212,175,55,.4); border-radius: 10px; padding: 8px 12px; font-weight: 800; cursor: pointer; }
.hero-slider .controls button:hover { background: rgba(212,175,55,.35); }
.hero-slider .dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 14px; display: flex; gap: 6px; }
.hero-slider .dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.3); border: 1px solid rgba(212,175,55,.5); cursor: pointer; }
.hero-slider .dot.active { background: #d4af37; }

.hero-slider { display: none; }

.section { padding: 80px 0; }
.section.dark { background: var(--dark-grey); color: #fff; }
.header + .section.dark { padding-top: 110px; }
.section-title { font-family: 'Overpass', 'Open Sans', sans-serif; font-weight: 700; font-size: 2rem; margin-bottom: 18px; }
.section-subtitle { font-weight: 600; opacity: .8; margin-bottom: 26px; }
.section#categories .kicker,
.section#categories .section-title,
.section#categories .section-subtitle { text-align: center; }
.section#categories { background: #fff; color: var(--ink); }
.section#categories .section-title, .section#categories .section-subtitle { color: var(--ink); }
.section#categories .product-card .body, .section#categories .product-card h3, .section#categories .product-card .specs { color: #fff; }
.section#quality-control .kicker { text-align: center; font-size: 1.2rem; }
.section#quality-control > .container > .section-title,
.section#quality-control > .container > .section-subtitle { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.section#testimonials { background: #fff; color: var(--ink); }
.section#testimonials .section-title, .section#testimonials .section-subtitle { color: var(--ink); }
.section#testimonials .kicker,
.section#testimonials .section-title,
.section#testimonials .section-subtitle { text-align: center; }
.section#testimonials .container { text-align: center; }
.section#testimonials .testimonial-slider { background: #fff; border: 1px solid rgba(212,175,55,.18); box-shadow: 0 16px 40px rgba(0,0,0,.08); border-radius: 18px; padding: 36px 40px; max-width: 960px; margin: 32px auto 0; }
.section#testimonials .testimonial-slider .t-copy,
.section#testimonials .testimonial-slider .t-quote,
.section#testimonials .testimonial-slider .t-meta { color: #111; }
.section#testimonials .testimonial-slider .t-media { background: #fff; border: 1px solid rgba(212,175,55,.18); }
.section#testimonials .testimonial-slider .t-quote { line-height: 1.7; font-size: 1.15rem; max-width: 720px; margin: 0 auto; }
.section#certifications .kicker,
.section#certifications .section-title,
.section#certifications .section-subtitle { text-align: center; }
.section#certifications { background: #fff; color: var(--ink); }
.section#certifications .section-title, .section#certifications .section-subtitle, .section#certifications .cert-caption { color: var(--ink); }
.section#certifications .kicker { font-size: 1.2rem; margin-top: 8px; margin-bottom: 16px; }
.header + .section#certifications { padding-top: 120px; }
@media (max-width: 700px) {
  .section#certifications .grid.cols-3 { grid-template-columns: 1fr 1fr; }
}
 .section#locations .kicker, .section#locations .section-title { text-align: center; }
 .header + .section#locations { padding-top: 120px; }
 .section#inquiry .kicker, .section#inquiry .section-title { text-align: center; }
 
.section#clients-main .kicker { text-align: center; }
.section#clients-main .section-title { text-align: center; }
.logo-grid .logo-idap img { height: 90px; }
.section#private-sector .kicker, .section#private-sector .section-title { text-align: center; }
.section#contact-details .kicker { text-align: center; font-size: 1.35rem; letter-spacing: .3px; font-weight: 800; }
.contact-number { font-family: 'Open Sans', sans-serif; }
.section#featured-products .kicker,
.section#featured-products .section-title { text-align: center; }
.section#why-choose .kicker,
.section#why-choose .section-title { text-align: center; }
.section#home-certs .kicker,
.section#home-certs .section-title { text-align: center; }
.section#home-clients .kicker,
.section#home-clients .section-title { text-align: center; }
.section#why-choose .icon-block { flex-direction: column; align-items: center; text-align: center; gap: 12px; background: var(--dark-grey); border: 1px solid rgba(212,175,55,.25); border-radius: 14px; padding: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 10px 20px rgba(0,0,0,.18); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; min-height: 220px; }
.section#why-choose .icon-block:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.35); box-shadow: 0 16px 32px rgba(0,0,0,.35); }
.section#why-choose .icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.08)); color: #d4af37; display: inline-flex; align-items: center; justify-content: center; font-size: 26px; }
.section#why-choose .icon-block h3 { color: #fff; font-weight: 800; letter-spacing: .3px; }
.section#why-choose .icon-block p { color: #ddd; }
.section#why-choose .container { text-align: center; }
.section#why-choose .kicker, .section#why-choose .section-title { text-align: center; }
.section#why-choose .grid { justify-items: center; gap: 18px; }
.section#why-choose .icon-block { width: 100%; max-width: 280px; }
.section#why-choose .grid.cols-4 { grid-template-columns: repeat(4, minmax(240px, auto)); justify-content: center; }
 .section#why-choose .section-title { margin-bottom: 24px; }
 .section#why-choose .grid.cols-4 { margin-top: 8px; }
@media (max-width: 1100px) { .section#why-choose .grid.cols-4 { grid-template-columns: repeat(2, minmax(240px, auto)); } }
@media (max-width: 600px) { .section#why-choose .grid.cols-4 { grid-template-columns: 1fr; } }
.section#why-choose-products .kicker,
.section#why-choose-products .section-title { text-align: center; }
.section#why-choose-products .icon-block { flex-direction: column; align-items: center; text-align: center; gap: 12px; background: var(--dark-grey); border: 1px solid rgba(212,175,55,.25); border-radius: 14px; padding: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 10px 20px rgba(0,0,0,.18); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; min-height: 220px; width: 100%; max-width: 280px; }
.section#why-choose-products .icon-block:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.35); box-shadow: 0 16px 32px rgba(0,0,0,.35); }
.section#why-choose-products .icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.08)); color: #d4af37; display: inline-flex; align-items: center; justify-content: center; font-size: 26px; }
.section#why-choose-products .icon-block h3 { color: #fff; font-weight: 800; letter-spacing: .3px; }
.section#why-choose-products .icon-block p { color: #ddd; }
.section#why-choose-products .container { text-align: center; }
.section#why-choose-products .grid { justify-items: center; gap: 18px; }
.section#why-choose-products .grid.cols-4 { grid-template-columns: repeat(4, minmax(240px, auto)); justify-content: center; margin-top: 8px; }
 .section#why-choose-products .section-title { margin-bottom: 24px; }
@media (max-width: 1100px) { .section#why-choose-products .grid.cols-4 { grid-template-columns: repeat(2, minmax(240px, auto)); } }
@media (max-width: 600px) { .section#why-choose-products .grid.cols-4 { grid-template-columns: 1fr; } }
.section#core-values .kicker, .section#core-values .section-title, .section#core-values .section-subtitle { text-align: center; }
.section#core-values .section-subtitle { color: #ddd; margin-bottom: 26px; }
.section#team .kicker, .section#team .section-title { text-align: center; }
.section#core-values .icon-block { flex-direction: column; align-items: center; text-align: center; gap: 12px; background: var(--dark-grey); border: 1px solid rgba(212,175,55,.25); border-radius: 14px; padding: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 10px 20px rgba(0,0,0,.18); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; min-height: 220px; }
.section#core-values .icon-block:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.35); box-shadow: 0 16px 32px rgba(0,0,0,.35); }
.section#core-values .icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.08)); color: #d4af37; }
 .section#timeline .kicker, .section#timeline .section-title { text-align: center; }
 .section#timeline .timeline-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; margin-top: 10px; }
 @media (max-width: 900px) { .section#timeline .timeline-cards { grid-template-columns: repeat(2, 1fr); } }
 @media (max-width: 600px) { .section#timeline .timeline-cards { grid-template-columns: 1fr; } }
 .section#timeline .t-card { background: linear-gradient(180deg, #3a3a3a, var(--dark-grey)); border: 1px solid rgba(232,232,232,.12); border-radius: 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 12px 24px rgba(0,0,0,.28); padding: 20px; color: #eee; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; display: grid; gap: 8px; }
 .section#timeline .t-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.34); border-color: rgba(212,175,55,.35); }
 .section#timeline .t-year { font-weight: 800; color: #d4af37; letter-spacing: .4px; }
 .section#timeline .t-text { opacity: .92; }
/* Certificate framing: only golden outline on images */
.section#certifications .cert-art { background: transparent; padding: 0; }
.section#certifications .cert-art img { width: auto; height: auto; max-width: 100%; max-height: 240px; display: block; margin: 0 auto; object-fit: contain; border: 1px solid var(--gold); border-radius: 8px; }
 .sector-grid .sector-item { text-align: center; }
 .sector-grid .media { height: 160px; border: 1px solid rgba(212,175,55,.25); border-radius: 12px; overflow: hidden; background: #fff; }
 .sector-grid .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
 .sector-grid .caption { font-weight: 700; margin-top: 8px; }
 .sector-grid .sector-item:last-child { grid-column: 1 / -1; justify-self: center; }
.product-hero-bg { position: relative; color: #fff; overflow: hidden; }
.product-hero-bg .phbg-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.55) saturate(1.05); }
.product-hero-bg .phbg-content { position: relative; min-height: 700px; display: grid; place-items: center; text-align: center; padding-top: calc(var(--header-h) + 32px); padding-bottom: 48px; }
.product-hero-bg .cta { display: flex; justify-content: center; gap: 12px; }
.product-hero-bg .container { width: min(1280px, 96%); }
.product-hero-bg .section-title { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.product-hero-bg#clients-hero .section-title { color: var(--gold); }
.product-hero-bg .section-subtitle { font-size: clamp(1.1rem, 1.8vw, 1.3rem); }
@media (min-width: 1024px) {
  .product-hero-bg { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
  .product-hero-bg .phbg-bg { left: 50%; right: auto; width: 100vw; transform: translateX(-50%); }
}
 
/* About page: Manufacturing Facility split section */
.section#manufacturing-facility .grid { align-items: center; gap: 26px; }
.section#manufacturing-facility .kicker { text-align: left; }
.section#manufacturing-facility .section-title,
.section#manufacturing-facility .section-subtitle { text-align: left; }
.section#manufacturing-facility .about-media { height: 340px; }
@media (max-width: 900px) { .section#manufacturing-facility .about-media { height: 240px; } }
 
.clients-hero { background: radial-gradient(1000px 400px at 10% 10%, rgba(212,175,55,.12), transparent 60%), linear-gradient(180deg, var(--dark-grey) 0%, var(--dark-grey) 100%); color: #fff; }
.clients-hero .ch-content { position: relative; min-height: 720px; display: grid; place-items: center; padding-top: calc(var(--header-h) + 32px); padding-bottom: 48px; text-align: center; }
.clients-hero .container { width: min(1280px, 96%); margin: 0 auto; }
.clients-hero .ch-media { width: 1280px; height: 720px; max-width: 100%; aspect-ratio: 16 / 9; border: 1px solid rgba(212,175,55,.25); border-radius: 16px; background: radial-gradient(520px 220px at 10% 10%, rgba(212,175,55,.12), transparent 60%), var(--dark-grey); box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 10px 20px rgba(0,0,0,.18); display: grid; place-items: center; }
.clients-hero .ph-label { font-weight: 800; color: #d4af37; letter-spacing: .6px; }

/* Certifications hero specific sizing */
#cert-hero .phbg-content { height: clamp(600px, 70vh, 750px); min-height: 0; }
#cert-hero .container { width: min(1600px, 95%); }
@media (min-width: 1024px) {
  #cert-hero { margin-left: 0; margin-right: 0; width: auto; }
  #cert-hero .phbg-bg { left: 0; right: 0; width: 100%; transform: none; }
}
.product-hero { background: radial-gradient(800px 320px at 10% 10%, rgba(212,175,55,.12), transparent 60%), linear-gradient(180deg, var(--dark-grey), var(--dark-grey)); }
.product-hero .ph-content { display: grid; grid-template-columns: 1.25fr 1fr; gap: 26px; align-items: center; }
@media (max-width: 900px) { .product-hero .ph-content { grid-template-columns: 1fr; } }
.product-hero .ph-content { justify-items: center; }
.product-hero .ph-text { text-align: center; }
.product-hero .ph-media { height: 380px; border: 1px solid rgba(212,175,55,.25); border-radius: 16px; background: var(--dark-grey); box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 10px 20px rgba(0,0,0,.18); overflow: hidden; }
.product-hero .ph-media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.product-hero .cta { display: flex; justify-content: center; gap: 12px; }
.process-grid { align-items: center; gap: 26px; }
.process-row { margin: 18px 0; }
.process-media { height: 320px; border: 1px solid rgba(212,175,55,.25); border-radius: 14px; overflow: hidden; background: var(--dark-grey); }
.process-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.section-cta { display: flex; justify-content: center; align-items: center; width: 100%; margin-top: 28px; }
.section-cta .btn { padding: 14px 22px; font-size: 1.05rem; border-radius: 12px; }

.grid { display: grid; gap: 22px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.about-grid { align-items: center; gap: 26px; }
@media (max-width: 1000px) { .grid.cols-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .grid.cols-4, .grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid.cols-4, .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; } }

.card { background: linear-gradient(180deg, #3a3a3a, var(--dark-grey)); border: 1px solid rgba(232,232,232,.08); border-radius: 16px; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 10px 20px rgba(0,0,0,.25); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.35); border-color: rgba(212,175,55,.35); }
.card .media { height: 160px; background: radial-gradient(400px 160px at 0% 0%, rgba(212,175,55,.08), transparent 70%), var(--dark-grey); display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.card .media.media-power { background-image: url('../images/Power-Transformer.png'); }
.card .media.media-furnace { background-image: url('../images/Furnace-Transformer.png'); }
.card .body { padding: 18px; color: #eee; }
.product-card .specs { font-size: .95rem; opacity: .8; margin: 10px 0 12px; }
.product-card .actions { display: flex; justify-content: space-between; align-items: center; }
.product-card .btn { font-size: .95rem; padding: 10px 14px; }

.icon-block { display: flex; gap: 12px; align-items: flex-start; background: var(--dark-grey); border: 1px solid rgba(212,175,55,.2); padding: 16px; border-radius: 12px; color: #eee; }
.icon-block h3 { color: #fff; }
.icon-block p { color: #ddd; }
.icon { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05)); color: #d4af37; }

.about-media { height: 400px; border-radius: 18px; border: 1px solid rgba(212,175,55,.25); box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 10px 20px rgba(0,0,0,.18); background: radial-gradient(520px 220px at 10% 10%, rgba(212,175,55,.12), transparent 60%), var(--dark-grey); overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.05) brightness(.95); border-radius: 18px; }
@media (max-width: 900px) { .about-media { height: 280px; } }

.cert-frame { background: transparent; border-radius: 0; border: 0; box-shadow: none; padding: 0; }
.cert-art { height: 240px; border-radius: 0; background: transparent; border: 0; display: flex; align-items: center; justify-content: center; cursor: zoom-in; }
.cert-art img { width: 100%; height: 100%; object-fit: contain; padding: 0; }
.cert-caption { text-align: center; margin-top: 8px; font-weight: 700; color: #eee; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.75); display: none; align-items: center; justify-content: center; z-index: 2000; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1000px, 92%); max-height: 85vh; border-radius: 12px; background: #fff; padding: 8px; box-shadow: 0 20px 40px rgba(0,0,0,.35); }

.logo-grid .logo-item { background: transparent; border: 0; border-radius: 0; padding: 0; display: flex; align-items: center; justify-content: center; filter: none; transition: none; }
.logo-grid .logo-item { height: auto; }
.logo-grid .logo-item { flex-direction: column; gap: 8px; }
.logo-grid .logo-item img { width: auto; height: 120px; object-fit: contain; filter: none; }
.logo-grid .logo-item:hover { transform: none; }
.client-caption { font-weight: 700; color: var(--ink); }

.footer { background: var(--dark-grey); color: #eee; border-top: 1px solid rgba(212,175,55,.35); }
.footer .top { padding: 40px 0; }
.footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 22px; }
.footer .brand { color: #fff; }
.footer a { color: #ddd; }
.footer .bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 16px 0; font-size: .9rem; opacity: .8; }
@media (max-width: 900px) { .footer .cols { grid-template-columns: 1fr; } }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.show { opacity: 1; transform: none; }

.kicker { color: #d4af37; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; font-size: .85rem; }
.badge { display: inline-block; background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.3); color: #d4af37; border-radius: 999px; padding: 6px 10px; font-weight: 600; font-size: .85rem; }

.form { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,.06); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .field { display: flex; flex-direction: column; gap: 8px; }
.form label { font-weight: 600; }
.form input, .form textarea, .form select { padding: 12px 14px; border: 1px solid #e1e1e1; border-radius: 10px; background: #f9f9f9; transition: border-color .2s ease, box-shadow .2s ease; }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: #d4af37; box-shadow: 0 0 0 3px rgba(212,175,55,.15); }
 
 .floating-whatsapp { position: fixed; right: 16px; bottom: 16px; width: 56px; height: 56px; border-radius: 999px; background: linear-gradient(135deg, #25D366, #1ebe57); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(37,211,102,.35); z-index: 2000; border: 1px solid rgba(255,255,255,.18); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
 .floating-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(37,211,102,.45); }
 .floating-whatsapp svg { width: 26px; height: 26px; display: block; }
 @media (max-width: 560px) { .floating-whatsapp { width: 50px; height: 50px; right: 12px; bottom: 12px; } .floating-whatsapp svg { width: 22px; height: 22px; } }
.form textarea { min-height: 140px; resize: vertical; }
.form .actions { margin-top: 14px; display: flex; gap: 12px; }
@media (max-width: 700px) { .form .row { grid-template-columns: 1fr; } }

.map { width: 100%; border: 0; border-radius: 12px; height: 320px; }

.testimonial-slider { position: relative; min-height: 260px; background: var(--dark-grey); border: 1px solid rgba(212,175,55,.25); border-radius: 16px; overflow: hidden; padding: 24px; }
.testimonial-slider .t-slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; padding: 14px; }
.testimonial-slider .t-slide.active { opacity: 1; transform: none; }
.testimonial-slider .t-media { width: 140px; height: 140px; border-radius: 14px; background: var(--dark-grey); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(212,175,55,.25); }
.testimonial-slider .t-media img { width: 100%; height: 100%; object-fit: contain; }
.testimonial-slider .t-copy { color: #eee; max-width: 900px; }
.testimonial-slider .t-quote { font-size: 1.1rem; }
.testimonial-slider .t-meta { margin-top: 8px; font-weight: 700; color: #fff; }
.testimonial-slider .t-meta .t-role { margin-left: 8px; font-weight: 600; color: #d4af37; }
@media (max-width: 700px) {
  .testimonial-slider { min-height: 450px; }
  .testimonial-slider .t-media { width: 100px; height: 100px; margin: 0 auto; }
  .testimonial-slider .t-quote { font-size: 1rem; }
}
