:root{
  --brand-red:#C1002B;
  --brand-black:#0B0F14;
  --brand-sea:#0077B6;
  --bg:#ffffff;
  --text:#0E1116;
  --muted:#5E6672;
  --line:#E9EEF3;
  --card:#ffffff;
  --radius:16px;
  --radius-lg:28px;
  --max:1200px;
  --shadow: 0 14px 34px rgba(11,15,20,0.12);
  --shadow-soft: 0 10px 22px rgba(11,15,20,0.08);
  --focus: 0 0 0 4px rgba(0,119,182,0.18);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 18% -12%, rgba(0,119,182,0.10), transparent 60%),
    radial-gradient(900px 500px at 110% 18%, rgba(193,0,43,0.10), transparent 55%),
    var(--bg);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
p{line-height:1.7}
small,.small{color:var(--muted)}

.container{max-width:var(--max);margin:0 auto;padding:24px}
.section{padding:52px 0}
.section-title{
  display:flex;align-items:flex-end;justify-content:space-between;gap:16px;flex-wrap:wrap
}
.section-title h2{margin:0;font-size:clamp(22px,2.5vw,34px);letter-spacing:-0.02em}
.kicker{color:var(--brand-sea);font-weight:800;letter-spacing:0.12em;text-transform:uppercase;font-size:12px}

/* Header */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,0.82);
  backdrop-filter:saturate(1.2) blur(10px);
  border-bottom:1px solid rgba(233,238,243,0.9);
}

/* UPDATED: keep brand left, let nav stretch, so Enquiry can sit far-right */
.header-inner{
  display:flex;
  align-items:center;
  gap:18px;

  /* was: justify-content:space-between; */
  justify-content:flex-start;
}

.brand{display:flex;align-items:center;gap:12px;min-width:500px}
.logo-wrap{position:relative;width:84px;height:84px;border-radius:14px;overflow:hidden;background:rgba(0,119,182,0.08);border:1px dashed rgba(0,119,182,0.35)}
.logo-wrap img{width:100%;height:100%;object-fit:contain;padding:2px}
.logo-fallback{
  display:none;align-items:center;justify-content:center;
  width:120%;height:120%;
  font-weight:900;letter-spacing:0.12em;
  color:rgba(11,15,20,0.6);
  font-size:20px;
}
.brand-title{display:flex;flex-direction:column;gap:2px}
.brand-title strong{color:var(--brand-red);font-size:20px;letter-spacing:0.02em}
.brand-title span{color:var(--muted);font-size:8px}

/* UPDATED: nav stretches to fill remaining header width */
.nav{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;

  /* NEW: take remaining space so last link can push right */
  flex:1;
  min-width:0;
}

.nav a{
  padding:10px 12px;border-radius:12px;
  color:rgba(11,15,20,0.78);
  font-weight:700;font-size:14px;
}
.nav a:hover{background:rgba(0,119,182,0.08)}
.nav a.active{background:rgba(193,0,43,0.10);color:var(--brand-red)}
.nav .cta{
  background:var(--brand-red);
  color:#fff;
  padding:10px 14px;
  box-shadow: 0 10px 20px rgba(193,0,43,0.18);
}
.nav .cta:hover{filter:brightness(0.97);background:var(--brand-red)}

/* NEW: push Enquiry link to extreme right without disrupting other nav items.
   This targets your exact URL pattern:
   <a href="contact.html?product=General%20Enquiry">...</a>
*/
.nav a[href*="product=General%20Enquiry"]{margin-left:auto}

/* OPTIONAL: if you also add class="enquiry-btn" to the link, this works too */
.nav .enquiry-btn{margin-left:auto}

.mobile-toggle{display:none}
.mobile-toggle button{
  border:1px solid rgba(233,238,243,0.9);
  background:#fff;border-radius:14px;
  padding:10px 12px;
  box-shadow:var(--shadow-soft);
}

.mobile-panel{
  display:none;
  padding:12px 24px 18px;
  border-bottom:1px solid rgba(233,238,243,0.9);
  background:rgba(255,255,255,0.92);
}
.mobile-panel a{display:block;padding:12px 10px;border-radius:12px;font-weight:800}
.mobile-panel a:hover{background:rgba(0,119,182,0.08)}

/* Hero */
.hero{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  background: linear-gradient(135deg, rgba(11,15,20,0.88), rgba(0,119,182,0.22));
}
.hero.home{min-height:62vh;position:relative}
.hero .slides{display:flex;height:100%;transition:transform 900ms cubic-bezier(.2,.9,.2,1)}
.hero .slide{
  min-width:100%;
  background-size:cover;background-position:center;
  padding: clamp(102px,4vw,56px);
  display:flex;align-items:flex-end;
  position:relative;
  color:#fff;
}
.hero .slide::before{
  content:"";
  position:absolute;inset:0;
  background: linear-gradient(0deg, rgba(11,15,20,0.78), rgba(11,15,20,0.30) 55%, rgba(11,15,20,0.10));
}
.hero .caption{position:relative;max-width:820px}
.hero .caption h1,.hero .caption h2{margin:0 0 8px;letter-spacing:-0.02em}
.hero .caption h1{font-size:clamp(24px,4vw,44px)}
.hero .caption h2{font-size:clamp(22px,3.3vw,38px)}
.hero .caption p{margin:0;color:rgba(255,255,255,0.88);font-weight:600}
.hero .controls{
  position:absolute;inset:auto 4px 4px 4px;
  display:flex;justify-content:space-between;align-items:center;gap:12px;
}
.hero .dots{display:flex;gap:8px;align-items:center;justify-content:center}
.dot{width:10px;height:10px;border-radius:999px;background:rgba(255,255,255,0.35);border:1px solid rgba(255,255,255,0.25)}
.dot.active{background:#fff}

.btn-ghost{
  background:rgba(255,255,255,0.88);
  border:1px solid rgba(255,255,255,0.55);
  padding:10px 12px;border-radius:14px;
  font-weight:900;color:rgba(11,15,20,0.85);
  cursor:pointer;
}
.btn-ghost:hover{background:#fff}

.page-hero{
  padding:42px 28px;
  border-radius:var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(193,0,43,0.16), rgba(0,119,182,0.14)),
    radial-gradient(900px 380px at 12% -20%, rgba(0,119,182,0.28), transparent 55%),
    #fff;
  border:1px solid rgba(233,238,243,0.9);
  box-shadow:var(--shadow-soft);
}
.page-hero h1{margin:0 0 8px;font-size:clamp(22px,3vw,38px)}
.page-hero p{margin:0;color:var(--muted);max-width:70ch}

/* Cards, grids */
.grid{display:grid;gap:16px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:960px){
  .grid-2,.grid-3{grid-template-columns:1fr}
}

.card{
  background:var(--card);
  border:1px solid rgba(233,238,243,0.9);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.card-body{padding:16px}
.card h3,.card h4{margin:0 0 8px}
.card p{margin:0;color:rgba(11,15,20,0.80)}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(233,238,243,0.9);
  background:rgba(0,119,182,0.06);
  font-weight:900;font-size:12px;color:rgba(11,15,20,0.72);
}
.badge .dot-mini{width:7px;height:7px;border-radius:999px;background:var(--brand-sea)}

/* Media split */
.split{display:flex;gap:24px;align-items:center}
.split .media{flex:1}
.split .content{flex:1}
@media (max-width:960px){.split{flex-direction:column}}

.media-frame{
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:rgba(0,119,182,0.08);
  border:1px dashed rgba(0,119,182,0.35);
  min-height:320px;
}
.media-frame img{width:100%;height:100%;object-fit:cover}
.media-frame .placeholder{
  height:100%;min-height:320px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;color:rgba(11,15,20,0.55);letter-spacing:0.08em
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 14px;border-radius:14px;
  font-weight:900;
  border:1px solid rgba(233,238,243,0.9);
  background:#fff;
  cursor:pointer;
}
.btn:hover{box-shadow:var(--shadow-soft)}
.btn.primary{
  background:var(--brand-red);
  color:#fff;border:1px solid rgba(193,0,43,0.2);
}
.btn.primary:hover{filter:brightness(0.98)}
.btn.sea{
  background:var(--brand-sea);
  color:#fff;border:1px solid rgba(0,119,182,0.2);
}
.btn.small{padding:10px 12px;border-radius:12px;font-size:14px}

/* Partners marquee */
.marquee{overflow:hidden;border-radius:var(--radius);border:1px solid rgba(233,238,243,0.9);background:#fff;box-shadow:var(--shadow-soft)}
.marquee-track{display:flex;gap:64px;align-items:center;padding:18px 22px;white-space:nowrap;animation:scroll 22s linear infinite}
.marquee img{height:54px;width:auto;opacity:0.92;filter:grayscale(0.18);transition:transform .25s ease, filter .25s ease}
.marquee img:hover{transform:scale(1.05);filter:grayscale(0)}
@keyframes scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* Testimonials */
.testimonials{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
@media (max-width:960px){.testimonials{grid-template-columns:1fr}}
.testimonial{padding:16px}
.testimonial .who{display:flex;gap:12px;align-items:center;margin-bottom:10px}
.testimonial .who img{width:120px;height:120px;border-radius:999px;object-fit:cover;border:2px solid rgba(0,119,182,0.18)}
.testimonial blockquote{margin:0;color:rgba(11,15,20,0.78)}
.testimonial strong{display:block;margin-top:10px}

/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
@media (max-width:960px){.gallery{grid-template-columns:repeat(2,minmax(0,1fr))}}
.gallery .thumb{
  border-radius:18px;overflow:hidden;border:1px solid rgba(233,238,243,0.9);
  background:#fff;box-shadow:var(--shadow-soft);
  cursor:pointer;
}
.gallery .thumb img{width:100%;height:170px;object-fit:cover;transition:transform .25s ease}
.gallery .thumb:hover img{transform:scale(1.03)}

/* Forms */
form{display:grid;gap:10px}
input,textarea,select{
  padding:12px 12px;border-radius:14px;
  border:1px solid rgba(233,238,243,1);
  background:#fff;outline:none;
}
input:focus,textarea:focus,select:focus{box-shadow:var(--focus);border-color:rgba(0,119,182,0.55)}
textarea{resize:vertical}

/* Tabs */
.tabs{display:flex;gap:10px;flex-wrap:wrap}
.tab{
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(233,238,243,0.9);
  background:#fff;font-weight:900;
  cursor:pointer;
}
.tab.active{background:rgba(0,119,182,0.10);border-color:rgba(0,119,182,0.25);color:rgba(11,15,20,0.9)}

/* Product carousel */
.carousel{
  display:flex;gap:14px;overflow:auto;padding:6px 4px 12px;
  scroll-snap-type:x mandatory;
}
.carousel::-webkit-scrollbar{height:10px}
.carousel::-webkit-scrollbar-thumb{background:rgba(11,15,20,0.12);border-radius:999px}
.product{
  min-width:260px;max-width:260px;
  scroll-snap-align:start;
  border-radius:18px;overflow:hidden;
  background:#fff;border:1px solid rgba(233,238,243,0.9);
  box-shadow:var(--shadow-soft);
  position:relative;
}
.  

/* Team */
.people{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
@media (max-width:960px){.people{grid-template-columns:1fr}}
.person{padding:14px}
.person .head{display:flex;gap:12px;align-items:center}
.person .head img{width:120px;height:120px;border-radius:18px;object-fit:cover;border:2px solid rgba(193,0,43,0.12)}
.person .head h4{margin:0}
.person .head span{display:block;color:var(--muted);font-size:13px;font-weight:80;margin-top:2px}
.person p{margin:10px 0 0;color:rgba(11,15,20,0.78)}
.read-more{margin-top:12px}

/* Modal (newspaper style) */
.modal{
  position:fixed;inset:0;
  display:none;align-items:center;justify-content:center;
  padding:18px;
  background:rgba(11,15,20,0.68);
  backdrop-filter: blur(6px);
  z-index:200;
}
.modal.open{display:flex}
.modal-card{
  width:min(980px, 96vw);
  max-height:90vh;
  overflow:auto;
  background:#fff;
  border-radius:26px;
  border:1px solid rgba(233,238,243,0.9);
  box-shadow: 0 18px 60px rgba(11,15,20,0.25);
}
.modal-top{
  display:flex;justify-content:space-between;align-items:center;
  padding:16px 18px;border-bottom:1px solid rgba(233,238,243,0.9);
  position:sticky;top:0;background:rgba(255,255,255,0.94);backdrop-filter: blur(10px);
}
.modal-top strong{color:var(--brand-black)}
.modal-body{padding:18px}
.newspaper{
  display:grid;grid-template-columns:260px 1fr;gap:18px;
}
@media (max-width:960px){.newspaper{grid-template-columns:1fr}}
.news-photo{
  border-radius:18px;overflow:hidden;
  border:1px solid rgba(233,238,243,0.9);
  background:rgba(0,119,182,0.08);
}
.news-photo img{width:100%;height:320px;object-fit:cover}
.news-copy{
  column-count:2;
  column-gap:20px;
  font-size:15px;
  color:rgba(11,15,20,0.88);
}
@media (max-width:960px){.news-copy{column-count:1}}
.news-copy p{margin:0 0 12px}
.news-copy p:first-child::first-letter{
  float:left;
  font-size:52px;
  line-height:0.9;
  font-weight:1000;
  padding:6px 10px 0 0;
  color:var(--brand-red);
}
.modal-actions{
  display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap;margin-top:14px
}
/* Floating WhatsApp */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;

  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:12px 14px;
  border-radius:999px;

  background:#25D366;
  color:#fff;
  text-decoration:none;

  box-shadow:0 16px 34px rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.22);

  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.wa-float i{
  font-size:22px;
  line-height:1;
}

.wa-float .wa-text{
  font-weight:800;
  letter-spacing:.01em;
}

.wa-float:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(0,0,0,.26);
  filter:brightness(1.02);
}

/* Mobile: icon-only to save space */
@media (max-width:520px){
  .wa-float{ padding:12px; }
  .wa-float .wa-text{ display:none; }
}

/* Service centers */
.center-card .top{display:flex;gap:12px;align-items:center}
.center-card .top img{width:84px;height:84px;border-radius:18px;object-fit:cover;border:2px solid rgba(0,119,182,0.14)}
.center-card .meta{display:flex;flex-direction:column}
.center-card .meta strong{font-size:16px}
.center-card .meta span{color:var(--muted);font-weight:800;font-size:13px}
.center-card .body{padding:14px 16px 16px}
.mini-map{margin-top:12px;border-radius:18px;overflow:hidden;border:1px solid rgba(233,238,243,0.9)}

/* Footer */
.site-footer{
  margin-top:34px;
  background: linear-gradient(135deg, rgba(11,15,20,0.96), rgba(0,119,182,0.22));
  color:#fff;
}
.footer-inner{padding:34px 24px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:16px}
@media (max-width:960px){.footer-grid{grid-template-columns:1fr}}
.footer-grid a{color:rgba(255,255,255,0.92)}
.footer-grid a:hover{text-decoration:underline}
.footer-meta{margin-top:14px;color:rgba(255,255,255,0.76);font-size:12px}
.social{display:flex;gap:12px;align-items:center}
.social a{width:42px;height:42px;border-radius:14px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,0.10);border:1px solid rgba(255,255,255,0.12)}
.social a:hover{background:rgba(255,255,255,0.16)}

/* Utility */
.fade-in{animation:fade .9s ease both}
@keyframes fade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.sr-only{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
hr.sep{border:none;border-top:1px solid rgba(233,238,243,0.9);margin:24px 0}

@media (max-width: 1020px){
  .nav{display:none}
  .mobile-toggle{display:block}
}

.justified-text{text-align:justify}
/* Trusted-by marquee (left-to-right, endless) */
.trust-strip .marquee{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 16px 0;
}

/* soft edge fades so it looks premium */
.trust-strip .marquee::before,
.trust-strip .marquee::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 90px;
  z-index: 2;
  pointer-events:none;
}
.trust-strip .marquee::before{
  left:0;
  background: linear-gradient(to right, rgba(11,15,20,0.95), rgba(11,15,20,0));
}
.trust-strip .marquee::after{
  right:0;
  background: linear-gradient(to left, rgba(11,15,20,0.95), rgba(11,15,20,0));
}

.trust-strip .marquee-track{
  display:flex;
  align-items:center;
  gap: 56px;
  width: max-content;
  will-change: transform;
  animation: trustMarqueeLTR 26s linear infinite;
}

.trust-strip .marquee-group{
  display:flex;
  align-items:center;
  gap: 56px;
  padding: 0 28px;
}

@keyframes trustMarqueeLTR{
  from{ transform: translateX(-50%); }
  to{ transform: translateX(0%); }
}

/* Pause on hover */
.trust-strip .marquee:hover .marquee-track{
  animation-play-state: paused;
}

/* Big visible logos */
.trust-strip .logo-item{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width: 170px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

.trust-strip .logo-item img{
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.25));
}

/* If an image is missing, show a clean fallback label */
.trust-strip .logo-item.fallback{
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 22px 18px;
}

/* Mobile tweaks */
@media (max-width: 720px){
  .trust-strip .marquee::before,
  .trust-strip .marquee::after{
    width: 52px;
  }
  .trust-strip .logo-item{
    min-width: 140px;
  }
  .trust-strip .logo-item img{
    height: 46px;
  }
  .trust-strip .marquee-track,
  .trust-strip .marquee-group{
    gap: 28px;
  }
}
/* === Service Center Spotlight Slideshow (NOT page-hero/hero/slides) === */
.sc-spotlight{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233,238,243,0.9);
  background:
    radial-gradient(900px 420px at 12% -20%, rgba(0,119,182,0.18), transparent 55%),
    radial-gradient(900px 420px at 110% 18%, rgba(193,0,43,0.16), transparent 55%),
    rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
}

.sc-spotlight-head{
  display:flex;
  gap: 18px;
  align-items:flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sc-spotlight-copy{
  max-width: 78ch;
}

.sc-spotlight h1{
  margin: 6px 0 8px;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: -0.02em;
}

.sc-spotlight-pills{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sc-spotlight-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sc-stage{
  margin-top: 16px;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11,15,20,0.92), rgba(0,119,182,0.22));
  box-shadow: var(--shadow);
  min-height: 440px;
}

/* Crossfade layers */
.sc-item{
  position:absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 700ms ease, transform 1200ms ease;
}

.sc-item.is-active{
  opacity: 1;
  transform: scale(1.00);
}

.sc-item img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Soft overlay so captions don't “kill” the photo */
.sc-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(0,0,0,0.00), rgba(0,0,0,0.32)),
    linear-gradient(0deg, rgba(0,0,0,0.42), rgba(0,0,0,0.12) 55%, rgba(0,0,0,0.00));
  pointer-events:none;
}

/* Compact caption bottom-left (won’t cover the image much) */
.sc-item figcaption{
  position:absolute;
  left: 16px;
  bottom: 16px;
  max-width: min(520px, 84%);
  padding: 10px 12px;
  border-radius: 16px;
  color: #fff;
  background: rgba(11,15,20,0.36);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.sc-item figcaption strong{
  display:block;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.sc-item figcaption span{
  display:block;
  margin-top: 4px;
  color: rgba(255,255,255,0.86);
  font-weight: 600;
  font-size: 13px;
}

.sc-dots{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display:flex;
  justify-content:center;
  gap: 8px;
  z-index: 3;
}

.sc-dots .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.25);
  cursor:pointer;
}

.sc-dots .dot.active{
  background:#fff;
}

.sc-item.no-img{
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,0.86);
  font-weight: 1000;
  letter-spacing: 0.10em;
}

@media (max-width: 960px){
  .sc-stage{ min-height: 360px; }
  .sc-item figcaption{ left: 12px; bottom: 12px; }
}
