:root{
  --ink:#0A0A12;
  --navy:#12142E;
  --navy-deep:#0B0C20;
  --navy-soft:#1D2044;
  --orange:#E8672A;
  --orange-light:#F5905C;
  --cream:#F6F1E7;
  --paper:#FCFAF6;
  --slate:#6B6E85;
  --line-dark:rgba(255,255,255,.14);
  --line-light:rgba(10,10,18,.12);
  --cut: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter',sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,.display{
  font-family:'Chakra Petch',sans-serif;
  font-weight:700;
  letter-spacing:-0.01em;
  margin:0;
}
.eyebrow{
  font-family:'JetBrains Mono',monospace;
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--orange);
  display:flex;
  align-items:center;
  gap:.6em;
}
.eyebrow::before{
  content:"";
  width:22px;height:2px;
  background:var(--orange);
  display:inline-block;
}
a{color:inherit;}
img{max-width:100%;display:block;}
:focus-visible{outline:2px solid var(--orange); outline-offset:3px;}
.wrap{max-width:1180px;margin:0 auto;padding:0 28px;}
section{position:relative;}

/* ---------- SCROLL PROGRESS ---------- */
#progressBar{
  position:fixed;top:0;left:0;height:3px;width:0%;
  background:linear-gradient(90deg,var(--orange),var(--orange-light));
  z-index:300;transition:width .1s linear;
}

/* ---------- NAV ---------- */
header.site{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(10,10,18,.82);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line-dark);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 28px;max-width:1180px;margin:0 auto;
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:#fff;}
.brand img{width:34px;height:34px;border-radius:6px;}
.brand-text{line-height:1.05;}
.brand-text b{font-family:'Chakra Petch',sans-serif;font-size:1rem;letter-spacing:.02em;display:block;color:#fff;}
.brand-text span{font-family:'JetBrains Mono',monospace;font-size:.6rem;letter-spacing:.24em;color:var(--orange-light);}
nav.links{display:flex;gap:34px;list-style:none;margin:0;padding:0;}
nav.links a{
  color:#D9DAE5;text-decoration:none;font-size:.92rem;font-weight:500;
  position:relative;padding:4px 0;
}
nav.links a::after{
  content:"";position:absolute;left:0;bottom:-4px;width:0;height:2px;
  background:var(--orange);transition:width .25s ease;
}
nav.links a:hover{color:#fff;}
nav.links a:hover::after{width:100%;}
nav.links a.active{color:#fff;}
nav.links a.active::after{width:100%;}
.nav-cta{
  background:var(--orange);color:#fff;text-decoration:none;
  padding:10px 20px;border-radius:3px;font-weight:600;font-size:.88rem;
  white-space:nowrap;
}
.nav-cta:hover{background:var(--orange-light);}
.burger{display:none;background:none;border:0;cursor:pointer;padding:6px;}
.burger span{display:block;width:22px;height:2px;background:#fff;margin:5px 0;transition:transform .2s ease, opacity .2s ease;}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.burger.open span:nth-child(2){opacity:0;}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.mobile-menu{
  display:none;flex-direction:column;gap:2px;
  background:var(--navy-deep);border-top:1px solid var(--line-dark);
  padding:10px 28px 20px;
}
.mobile-menu a{color:#D9DAE5;text-decoration:none;padding:12px 0;border-bottom:1px solid var(--line-dark);font-size:.95rem;}
.mobile-menu a.active{color:var(--orange-light);}
.mobile-menu.open{display:flex;}

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero{
  background:var(--navy);color:#fff;padding:150px 0 76px;
  clip-path:var(--cut);
}
.page-hero h1{font-size:clamp(2rem,4.2vw,2.9rem);margin:14px 0 16px;color:#fff;}
.page-hero .lede{color:#B9BBD1;max-width:560px;font-size:1.05rem;line-height:1.6;margin:0;}
.breadcrumb{
  font-family:'JetBrains Mono',monospace;font-size:.72rem;letter-spacing:.08em;
  color:#9FA1B8;margin:0 0 16px;
}
.breadcrumb a{color:#D9DAE5;text-decoration:none;}
.breadcrumb a:hover{color:#fff;}

/* ---------- EXPLORE (home page links to sub-pages) ---------- */
.explore{padding:100px 0;background:var(--paper);}
.explore-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
.explore-card{
  display:block;background:#fff;border:1px solid var(--line-light);border-radius:6px;
  padding:28px 24px;text-decoration:none;color:inherit;position:relative;overflow:hidden;
  transition:transform .18s ease, border-color .18s ease;
}
.explore-card:hover{transform:translateY(-4px);border-color:var(--orange);}
.explore-card .svc-index{display:block;margin-bottom:12px;}
.explore-card h3{font-size:1.08rem;margin:0 0 8px;}
.explore-card p{margin:0;font-size:.88rem;color:var(--slate);line-height:1.5;}
.explore-card .arrow{
  position:absolute;top:24px;right:22px;font-size:1.2rem;color:var(--orange);
  transition:transform .18s ease;
}
.explore-card:hover .arrow{transform:translate(3px,-3px);}

/* cross-link footer within page content */
.next-link{
  margin-top:70px;padding-top:34px;border-top:1px solid var(--line-light);
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;
}
.next-link a{
  text-decoration:none;color:var(--ink);font-family:'Chakra Petch',sans-serif;
  font-size:1.05rem;display:flex;align-items:center;gap:10px;
}
.next-link a:hover{color:var(--orange);}
.next-link .eyebrow{margin:0;}

/* ---------- HERO (home page) ---------- */
.hero{
  background:var(--navy);
  color:#fff;
  padding:150px 0 120px;
  clip-path:var(--cut);
  overflow:hidden;
}
.hero-grid{
  display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center;
}
.hero h1{
  font-size:clamp(2.1rem,4.6vw,3.5rem);
  line-height:1.05;color:#fff;margin:18px 0 22px;
}
.hero h1 em{
  font-style:normal;color:var(--orange-light);
}
.hero p.lede{
  font-size:1.08rem;line-height:1.6;color:#B9BBD1;max-width:520px;margin:0 0 32px;
}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:36px;}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 26px;border-radius:3px;font-weight:600;font-size:.94rem;
  text-decoration:none;border:1px solid transparent;transition:transform .15s ease, background .15s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--orange);color:#fff;}
.btn-primary:hover{background:var(--orange-light);}
.btn-ghost{border-color:var(--line-dark);color:#fff;background:none;}
.btn-ghost:hover{border-color:#fff;}
.btn-sm{padding:9px 16px;font-size:.82rem;}
.hero-tags{display:flex;gap:10px;flex-wrap:wrap;}
.tag{
  font-family:'JetBrains Mono',monospace;font-size:.7rem;letter-spacing:.06em;
  border:1px solid var(--line-dark);color:#C7C9DA;padding:6px 12px;border-radius:20px;
}

/* signature: overlapping circles echoing the company's own brand mark, now interactive */
.circle-device{position:relative;height:380px;}
.circle-device .c{position:absolute;border-radius:50%;transition:transform .25s ease-out;will-change:transform;}
.circle-device .c1{
  width:270px;height:270px;background:var(--orange);
  top:20px;left:20px;opacity:.95;
}
.circle-device .c2{
  width:270px;height:270px;border:2px solid var(--orange-light);
  top:110px;left:150px;
}
.circle-device .label{
  position:absolute;font-family:'JetBrains Mono',monospace;font-size:.68rem;
  letter-spacing:.1em;color:#fff;pointer-events:none;
}
.circle-device .label.tech{top:60px;left:56px;}
.circle-device .label.supply{bottom:40px;right:6px;color:var(--orange-light);}
.circle-device .label.mid{
  top:168px;left:190px;color:var(--navy);font-weight:700;background:#fff;
  padding:4px 10px;border-radius:20px;font-size:.62rem;
}

/* ---------- OVERVIEW STRIP ---------- */
.strip{
  background:var(--navy-deep);color:#fff;padding:44px 0 54px;margin-top:-1px;
}
.strip-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:0;
}
.strip-grid>div{
  padding:0 30px;border-left:1px solid var(--line-dark);
}
.strip-grid>div:first-child{border-left:none;padding-left:0;}
.strip-grid p{margin:8px 0 0;color:#9FA1B8;font-size:.92rem;line-height:1.55;}
.strip-grid .num{font-family:'Chakra Petch',sans-serif;font-size:1.6rem;color:var(--orange-light);font-weight:700;}

/* ---------- SECTION HEADERS ---------- */
.sec-head{max-width:640px;margin:0 0 40px;}
.sec-head h2{font-size:clamp(1.7rem,3.4vw,2.5rem);margin-top:14px;}
.sec-head p{color:var(--slate);font-size:1.02rem;line-height:1.6;margin-top:14px;}

/* ---------- SERVICES (flip cards) ---------- */
.services{padding:110px 0 90px;background:var(--paper);}
.flip-hint{
  font-family:'JetBrains Mono',monospace;font-size:.74rem;color:var(--slate);
  letter-spacing:.06em;margin:0 0 26px;
}
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.svc-card{
  perspective:1400px;background:none;border:none;padding:0;margin:0;
  text-align:left;font:inherit;color:inherit;cursor:pointer;display:block;width:100%;
}
.svc-inner{
  position:relative;min-height:320px;width:100%;
  transition:transform .65s cubic-bezier(.45,.15,.15,1.15);
  transform-style:preserve-3d;
}
.svc-card.flipped .svc-inner{transform:rotateY(180deg);}
.svc-face{
  position:absolute;inset:0;backface-visibility:hidden;-webkit-backface-visibility:hidden;
  border-radius:6px;padding:32px 26px 28px;display:flex;flex-direction:column;overflow:hidden;
}
.svc-front{
  background:#fff;border:1px solid var(--line-light);
}
.svc-front::before{
  content:"";position:absolute;top:-40px;right:-40px;width:120px;height:120px;
  border-radius:50%;background:var(--cream);z-index:0;
}
.svc-front>*{position:relative;z-index:1;}
.svc-back{
  background:var(--navy);color:#fff;transform:rotateY(180deg);justify-content:center;
  border:1px solid var(--navy-soft);
}
.svc-index{
  font-family:'JetBrains Mono',monospace;color:var(--orange);font-size:.75rem;letter-spacing:.1em;
}
.svc-back .svc-index{color:var(--orange-light);}
.svc-card h3{font-size:1.24rem;margin:14px 0 16px;color:var(--ink);}
.svc-card ul{margin:0;padding:0;list-style:none;}
.svc-card li{
  font-size:.92rem;color:#41465C;padding:9px 0;border-top:1px solid var(--line-light);
}
.svc-card li:first-child{border-top:none;}
.svc-back p{margin:14px 0 0;font-size:.96rem;line-height:1.6;color:#D9DAE5;}
.svc-flip-icon{
  position:absolute;top:20px;right:20px;font-size:1.15rem;color:var(--slate);line-height:1;
}
.svc-back .svc-flip-icon{color:#fff;}
.svc-card:hover .svc-front{border-color:var(--orange);}

/* ---------- WHY US ---------- */
.why{background:var(--cream);padding:100px 0;}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start;}
.why-list{list-style:none;margin:0;padding:0;}
.why-list li{
  display:flex;gap:18px;padding:22px 0;border-top:1px solid var(--line-light);
}
.why-list li:first-child{border-top:none;padding-top:0;}
.why-mark{
  width:34px;height:34px;flex-shrink:0;background:var(--navy);
  clip-path:polygon(0 0,100% 0,100% 70%,70% 100%,0 100%);
}
.why-list h4{margin:0 0 4px;font-family:'Chakra Petch',sans-serif;font-size:1.02rem;}
.why-list p{margin:0;color:var(--slate);font-size:.92rem;line-height:1.5;}

.why-copy .eyebrow{margin-bottom:16px;}
.why-copy h2{font-size:clamp(1.7rem,3.2vw,2.3rem);margin-bottom:20px;}
.why-copy p{color:var(--slate);line-height:1.65;font-size:1rem;}
.sector-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:26px;}
.sector-chips span{
  font-size:.82rem;font-weight:500;padding:8px 16px;border-radius:20px;
  background:#fff;border:1px solid var(--line-light);color:var(--ink);
  transition:background .2s ease, color .2s ease;
}
.sector-chips span:hover{background:var(--navy);color:#fff;}

/* ---------- VALUES (tilt cards) ---------- */
.values{padding:100px 0;background:var(--paper);}
.values-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;perspective:1000px;}
.value-card{
  padding:26px 18px;border-top:3px solid var(--orange);background:#fff;
  border-radius:2px;box-shadow:0 1px 0 var(--line-light);
  transition:transform .12s ease, box-shadow .2s ease;
  transform-style:preserve-3d;
  will-change:transform;
}
.value-card:hover{box-shadow:0 18px 30px -14px rgba(18,20,46,.28);}
.value-card h4{font-family:'Chakra Petch',sans-serif;font-size:1rem;margin:0 0 8px;}
.value-card p{margin:0;font-size:.84rem;color:var(--slate);line-height:1.5;}

/* ---------- CONTACT ---------- */
.contact{
  background:var(--navy);color:#fff;padding:110px 0 90px;
  clip-path:polygon(0 6%,100% 0,100% 100%,0 100%);
  margin-top:-1px;
}
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:60px;}
.contact h2{font-size:clamp(1.8rem,3.6vw,2.6rem);color:#fff;margin:16px 0 20px;}
.contact p.lede{color:#B9BBD1;font-size:1.02rem;line-height:1.6;max-width:460px;}
.contact-card{
  background:var(--navy-soft);border:1px solid var(--line-dark);border-radius:8px;
  padding:34px;
}
.cline{display:flex;gap:16px;padding:16px 0;border-top:1px solid var(--line-dark);}
.cline:first-child{border-top:none;padding-top:0;}
.cline .k{
  font-family:'JetBrains Mono',monospace;font-size:.68rem;letter-spacing:.1em;
  color:var(--orange-light);width:90px;flex-shrink:0;text-transform:uppercase;padding-top:3px;
}
.cline .v{font-size:.98rem;color:#E7E8F1;line-height:1.5;}
.cline .v a{text-decoration:none;color:#fff;border-bottom:1px solid var(--orange);}
.contact-ctas{display:flex;gap:14px;margin-top:30px;flex-wrap:wrap;}

/* map panel */
.map-panel{
  margin-top:50px;background:var(--navy-soft);border:1px solid var(--line-dark);
  border-radius:8px;overflow:hidden;
}
.map-panel iframe{
  width:100%;height:340px;border:0;display:block;filter:grayscale(.15) contrast(1.05);
}
.map-caption{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;
  padding:20px 26px;
}
.map-caption .addr{font-size:.9rem;color:#D9DAE5;}
.map-caption .addr b{color:#fff;display:block;font-family:'Chakra Petch',sans-serif;font-size:1rem;margin-bottom:4px;}
.map-actions{display:flex;gap:10px;flex-wrap:wrap;}
.copy-feedback{
  font-family:'JetBrains Mono',monospace;font-size:.72rem;color:var(--orange-light);
  align-self:center;opacity:0;transition:opacity .2s ease;
}
.copy-feedback.show{opacity:1;}

/* ---------- FOOTER ---------- */
footer{background:var(--navy-deep);color:#8B8DA6;padding:50px 0 30px;}
.foot-grid{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:20px;border-bottom:1px solid var(--line-dark);padding-bottom:30px;}
.foot-brand{display:flex;align-items:center;gap:12px;}
.foot-brand img{width:30px;height:30px;border-radius:6px;}
.foot-brand b{font-family:'Chakra Petch',sans-serif;color:#fff;font-size:.95rem;}
footer nav{display:flex;gap:26px;}
footer nav a{text-decoration:none;color:#9FA1B8;font-size:.88rem;}
footer nav a:hover{color:#fff;}
.foot-bottom{display:flex;justify-content:space-between;padding-top:22px;font-size:.8rem;flex-wrap:wrap;gap:10px;}

/* HEADER BACKGROUND */
.site-header {
  background: radial-gradient(circle at center, #0a0f2c 0%, #1a237e 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

/* BRAND CONTAINER */
.header-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
/* General page background */
body {
  background: #002b5c; /* dark blue */
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Progress Bar */
#progressBar {
  height: 4px;
  background: linear-gradient(to right, #0078d7, #00b294);
  width: 0;
  transition: width 0.3s ease;
}

/* Navigation */
.site-header {
  background: #111;
  color: #fff;
  padding: 1rem 2rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav .logo img {
  height: 40px;
}

.brand-text {
  font-weight: 700;
  margin-left: 1rem;
  color: #00b294;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00b294;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* Services Section */
.services {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0078d7;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.svc-card {
  perspective: 1000px;
}

.svc-front, .svc-back {
  background: #369799;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.6s;
  backface-visibility: hidden;
}

.svc-front {
  transform: rotateY(0deg);
}

.svc-back {
  transform: rotateY(180deg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.svc-card:hover .svc-front {
  transform: rotateY(-180deg);
}

.svc-card:hover .svc-back {
  transform: rotateY(0deg);
}

.svc-index {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0078d7;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

footer .foot-brand span {
  font-weight: 700;
  color: #00b294;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin-left: 1rem;
}

footer a:hover {
  color: #00b294;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
}

/* Menu Bar */
.menu-bar {
  background: #0a2a66; /* deep blue */
  padding: 1rem 2rem;
}

.menu-bar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0;
}

.menu-bar li {
  display: inline-block;
}

.menu-bar a {
  text-decoration: none;
  font-weight: 600;
  color: #fff; /* white text */
  transition: color 0.3s ease;
}

.menu-bar a:hover {
  color: #ff6600; /* orange hover */
}

/* Quote Button */
.quote-btn {
  background: #ffcc00; /* yellow button */
  color: #0a2a66;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
}

.quote-btn:hover {
  background: #ffd633;
  color: #000;
}


/* Header */
.site-header {
  background: #001f3f;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Position header brand relative so watermark can be placed */
.header-brand {
  position: relative;
  display: flex;
  align-items: center;
}

/* Logo stays normal */
.logo {
  height: 100px;
  z-index: 2; /* keep logo above watermark */
}

/* Header */
.site-header {
  background: #0a2a66; /* deep blue */
  padding: 1rem 2rem;
  position: relative;
}

/* Flex container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.logo img {
  height: 60px;
  width: auto;
  margin-right: 1rem;
}

/* Watermark */
.watermark {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  color: rgba(255, 255, 255, 0.08); /* transparent watermark */
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  flex-grow: 1; /* expands to fill space */
  text-align: center;
  animation: fadeInOut 8s infinite alternate;
}

/* Fade In/Out Animation */
@keyframes fadeInOut {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Menu Bar */
.menu-bar {
  z-index: 1;
}

.menu-bar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.menu-bar a {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.menu-bar a:hover {
  color: #ff6600; /* orange hover */
}
/* Header */
.site-header {
  background: #0a2a66; /* deep blue */
  padding: 1rem 2rem;
  position: relative;
}

/* Flex container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.logo img {
  height: 60px;
  width: auto;
  margin-right: 1rem;
}

/* Watermark */
.watermark {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  color: rgba(255, 255, 255, 0.08); /* transparent watermark */
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  flex-grow: 1; /* expands to fill space */
  text-align: center;
  animation: fadeInOut 8s infinite alternate;
}

/* Fade In/Out Animation */
@keyframes fadeInOut {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Menu Bar */
.menu-bar {
  z-index: 1;
}

.menu-bar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.menu-bar a {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.menu-bar a:hover {
  color: #ff6600; /* orange hover */
}

/* Quote Button */
.quote-btn {
  background: #ffcc00;
  color: #0a2a66;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
}

.quote-btn:hover {
  background: #ffd633;
  color: #000;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0a1a2f;
  color: #fff;
  margin: 0;
  padding: 0;
}

header {
  background: #0f2747;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav a {
  color: #ff9800;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

.cta {
  background: #ff9800;
  border: none;
  padding: 0.6rem 1.2rem;
  color: #0a1a2f;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

section#why {
  padding: 3rem 2rem;
  text-align: center;
}

.rotating-words {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  height: 2rem;
  color: #ff9800;
  font-weight: bold;
  font-size: 1.4rem;
}

.rotating-words span {
  display: block;
  animation: slide 12s infinite;
}

@keyframes slide {
  0% {margin-top: 0;}
  20% {margin-top: 0;}
  25% {margin-top: -2rem;}
  45% {margin-top: -2rem;}
  50% {margin-top: -4rem;}
  70% {margin-top: -4rem;}
  75% {margin-top: -6rem;}
  95% {margin-top: -6rem;}
  100% {margin-top: 0;}
}

footer {
  background: #0f2747;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}

/* General reset */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header styling */
header {
  background: #0f2747; /* Dark blue tech tone */
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Navigation links */
.nav-links a {
  color: #ffffff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff9800; /* Orange hover effect */
}



/* Call-to-action button */
.cta {
  background: #ff9800;
  border: none;
  padding: 0.6rem 1.2rem;
  color: #0a1a2f;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #ffc107; /* Slightly lighter on hover */
}
/* Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



/* Company heading */
.site-heading {
  color: #ff9800;
  font-size: 1.2rem; /* smaller heading */
  margin: 0 0 0.3rem 0;
  font-weight: 700;
  letter-spacing: 1.2px;
}

/* Navigation bar */
.nav-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem; /* tighter spacing */
}

/* Navigation links */
.nav-links a {
  color: #ffffff;
  font-size: 0.96rem;   /* smaller text */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff9800; /* Orange hover effect */
}

/* Call-to-action button */
.cta {
  background: #ff9800;
  border: none;
  padding: 0.3rem 0.7rem; /* smaller button */
  color: #0a1a2f;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  font-size: 0.75rem;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #ffc107;
}


/* Quote Button */
.quote-btn {
  background: #ffcc00;
  color: #0a2a66;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
}

.quote-btn:hover {
  background: #ffd633;
  color: #000;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General page background with watermark */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  position: relative;
  min-height: 100vh;
}

/* Full-page logo watermark */
body::before {
  content: "";
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: url("IMAG/IMG-20260524-WA0010.jpg") no-repeat center center;
  background-size: contain; /* scales logo to fit page */
  opacity: 0.05; /* faint watermark */
  z-index: -1; /* keeps watermark behind everything */
}



.logo {
  height: 100px;
}

.watermark {
  font-size: 1.5rem;
  font-weight: bold;
  color: #dad6c9;
  margin-left: 15px;
}



/* Navigation */
.nav-bar a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.1rem;
}

.nav-bar a:hover {
  color: #ffcc00;
}

.cta-button {
  background: #ffcc00;
  color: #111;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  color: #ffcc00;
}

.hero .highlight {
  font-size: 1.2rem;
  color: #ffcc00;
  margin: 10px 0;
}

/* Quote form */
.quote-section {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: #f9f9f9;
  color: #111;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.quote-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.quote-form button {
  margin-top: 20px;
  padding: 12px 20px;
  background: #ffcc00;
  color: #111;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.quote-form button:hover {
  background: #e6b800;
}

/* Footer */
.site-footer {
  background: #001f3f;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.site-footer a {
  color: #ffcc00;
  text-decoration: none;
}


/* LOGO */
.logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0,153,255,0.4));
}

/* WATERMARK */
.watermark {
  font-family: 'Orbitron', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 10px;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 0 20px rgba(0, 153, 255, 0.3),
               0 0 40px rgba(0, 153, 255, 0.2);
  animation: glowPulse 14s infinite ease-in-out; /* slower, smoother */
}

/* NAVIGATION BAR */
.nav-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.nav-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-bar a:hover {
  color: #ffcc00;
}

.logo {
  height: 120px;   /* increased size */
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0,153,255,0.4));
}

/* Compact Navigation Bar */
.compact-nav {
  font-size: 0.85rem;       /* smaller text */
  gap: 1rem;                /* tighter spacing */
  margin-top: 0.01rem;       /* closer to watermark/logo */
}

.compact-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 200;         /* lighter, professional look */
  transition: color 0.3s ease;
}

.compact-nav a:hover {
  color: #ffcc00;           /* subtle highlight */
}

/* Compact CTA Button */
.compact-nav .cta-button {
  background: #ffcc00;
  color: #0a0f2c;
  padding: 0.35rem 0.8rem;  /* smaller button size */
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.compact-nav .cta-button:hover {
  background: #ffd633;
}


/* CTA BUTTON */
.cta-button {
  background: #ffcc00;
  color: #0a0f2c;
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #ffd633;
}

/* Reduce size of TECH text */
.tech-banner {
  font-size: 2.5rem;        /* smaller font size */
  font-weight: 600;         /* clean, professional weight */
  letter-spacing: 2px;      /* subtle spacing for polish */
  margin: 1rem 0;           /* tighter vertical spacing */
  color: #80868b;           /* softer blue for professionalism */
}

/* Header Container */
.site-header {
  background-color: #0a0f2c;   /* deep professional blue */
  height: 60px;                /* reduced height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;           /* less horizontal padding */
}

/* Logo */
.logo {
  height: 40px;                /* smaller logo height */
  width: auto;
}

/* Watermark */
.watermark {
  font-size: 1rem;             /* smaller watermark text */
  font-weight: 600;
  color: #fff;
  margin-left: 0.5rem;
}

/* Compact Navigation */
.compact-nav {
  font-size: 0.85rem;          /* smaller text */
  gap: 1rem;                   /* tighter spacing */
}

.compact-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.compact-nav a:hover {
  color: #ffcc00;
}

/* CTA Button */
.compact-nav .cta-button {
  background: #ffcc00;
  color: #0a0f2c;
  padding: 0.35rem 0.9rem;     /* smaller button */
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.compact-nav .cta-button:hover {
  background: #ffd633;
}

/* Watermark Styling */
.watermark {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  animation: fadeInOut 20s ease-in-out infinite; /* apply animation */
}

.circle-device {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  perspective: 1000px; /* adds 3D depth */
}

.c {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.9;
}

.c1 {
  background: radial-gradient(circle, orange, #cc6600);
  left: 40px;
  top: 40px;
}

.c2 {
  background: radial-gradient(circle, #ffffff, #cccccc);
  right: 40px;
  top: 40px;
}

.label {
  position: absolute;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.label.tech { left: 20px; top: 120px; }
.label.supply { right: 20px; top: 120px; }
.label.mid {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: #ffcc00;
}

.circle-device {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  perspective: 1000px;
}

.c {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}

.c1 {
  background: radial-gradient(circle, orange, #cc6600);
  left: 40px;
  top: 40px;
}

.c2 {
  background: radial-gradient(circle, #ffffff, #cccccc);
  right: 40px;
  top: 40px;
}

.label {
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.circle-device {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  perspective: 1000px; /* adds 3D depth */
}

.c {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.9;
}

.c1 {
  background: radial-gradient(circle, orange, #cc6600);
  left: 40px;
  top: 40px;
}

.c2 {
  background: radial-gradient(circle, #ffffff, #cccccc);
  right: 40px;
  top: 40px;
}

.label {
  position: absolute;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.label.tech { left: 20px; top: 120px; }
.label.supply { right: 20px; top: 120px; }
.label.mid {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: #ffcc00;
}



.label.mid {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: #ffcc00;
}

/* Fade In & Out Keyframes */
@keyframes fadeInOut {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.5s ease;
}

.site-header {
  padding: 20px 40px;   /* more breathing room */
  font-size: 1.1rem;    /* slightly larger text */
}
.logo {
  height: 140px;   /* increase from default */
  width: auto;     /* keep proportions */
}
                                                                                                                                                                                                                            
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Base state: hidden */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.5s ease;
}

/* When scrolled into view */
.reveal:in-view {
  opacity: 1;
  transform: translateY(0);
}


/* Adjust banner container */
.banner-container {
  padding: 0.5rem;          /* less padding = smaller block */
  text-align: center;
  background-color: #0a0f2c; /* deep blue background */
}

/* Refine CTA button */
.banner-container .cta-button {
  background: #ffcc00;
  color: #0a0f2c;
  padding: 0.4rem 1rem;     /* smaller button */
  font-size: 0.9rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.banner-container .cta-button:hover {
  background: #ffd633;
}


/* SLOW PROFESSIONAL GLOW */
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 20px rgba(0,153,255,0.3),
                 0 0 40px rgba(0,153,255,0.2);
  }
  50% {
    text-shadow: 0 0 35px rgba(0,153,255,0.5),
                 0 0 70px rgba(0,153,255,0.3);
  }
}


/* back to top */
#backToTop{
  position:fixed;right:24px;bottom:24px;z-index:150;
  width:44px;height:44px;border-radius:50%;background:var(--orange);color:#fff;
  border:none;cursor:pointer;font-size:1.1rem;display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, background .2s ease;
}
#backToTop.show{opacity:1;pointer-events:auto;transform:none;}
#backToTop:hover{background:var(--orange-light);}

/* ---------- REVEAL ---------- */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1;transform:none;}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  .reveal{opacity:1;transform:none;transition:none;}
  .svc-inner{transition:none;}
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:920px){
  nav.links, .nav-cta{display:none;}
  .burger{display:block;}
  .hero-grid{grid-template-columns:1fr;}
  .circle-device{height:260px;margin-top:20px;}
  .strip-grid{grid-template-columns:1fr;gap:24px;}
  .strip-grid>div{border-left:none;padding-left:0;border-top:1px solid var(--line-dark);padding-top:20px;}
  .strip-grid>div:first-child{border-top:none;padding-top:0;}
  .svc-grid{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;gap:40px;}
  .values-grid{grid-template-columns:repeat(2,1fr);}
  .contact-grid{grid-template-columns:1fr;gap:40px;}
  .map-panel iframe{height:260px;}
  .explore-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:600px){
  .explore-grid{grid-template-columns:1fr;}
}
@media (max-width:520px){
  .values-grid{grid-template-columns:1fr;}
  .hero{padding:130px 0 90px;}
}