.brand-wrap {
    text-decoration: none;
}

.nav-logo-badge{
  display:inline-flex;
  align-items:center;
  background:#f7f9fc;
  padding: 8px 14px 10px;
  margin-top:-14px;
  border-radius: 0 0 14px 14px;
  border: 1px solid rgba(43,47,143,0.18);
  border-top:none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.brand-logo{
  display:block;
  height:34px;
  width: auto;
  object-fit:contain;
}
@media (max-width: 575.98px){
  .nav-logo-badge{
    padding: 6px 10px 8px;
    margin-top: -10px;
    border-radius: 0 0 12px 12px;
  }
  .brand-logo{
    height: 30px;
  }
}




.brand-name {
    font-size: 1.2rem;
    color: #0B1020;
    letter-spacing: 0.3px;
}

.brand-sub {
    font-size: 0.9rem;
    color: #2B2F8F;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-dot {
    color: #C81E2A;
    font-size: 1.4rem;
    line-height: 1;
}


:root{
  --primary:#2B2F8F;
  --accent:#C81E2A;
  --ink:#0B1020;
  --bg:#F7F9FC;
  --border:#E6EAF2;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

.tts-nav{
  background: linear-gradient(90deg,  rgba(20,22,70,0.96), rgba(20,22,70,0.96));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.tts-nav .navbar-brand{
  padding-top: .2rem;
  padding-bottom: .2rem;
}

.brand-mark{
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, #ffffff, rgba(255,255,255,0.2));
  box-shadow: 0 0 0 3px rgba(200,30,42,0.22), 0 10px 25px rgba(0,0,0,0.25);
}

.brand-dot{ color: rgba(255,255,255,0.45); }
.brand-sub{ color: rgba(255,255,255,0.75); font-size: .9rem; }

.navbar .nav-link{
  color: rgba(255,255,255,0.85);
}
.navbar .nav-link:hover{ color: #fff; }
.navbar .nav-link.active{
  color:#fff;
  position: relative;
}
.navbar .nav-link.active::after{
  content:"";
  position:absolute;
  left: .25rem;
  right: .25rem;
  bottom: .15rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.btn-accent{
  background: var(--accent);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-accent:hover{
  background: #b01924;
  color:#fff;
}

.link-accent{ color: var(--accent); text-decoration: none; }
.link-accent:hover{ text-decoration: underline; }

.hero{
  position: relative;
  padding: 4.5rem 0 3.5rem;
  color: #fff;
  background: radial-gradient(1200px 600px at 15% 20%, rgba(200,30,42,0.25), transparent 60%),
              radial-gradient(900px 500px at 75% 30%, rgba(43,47,143,0.55), transparent 60%),
              linear-gradient(180deg, #0b1020 0%, #12163a 50%, #0b1020 100%);
  overflow: hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 30% 20%, rgba(0,0,0,0.9), rgba(0,0,0,0.2) 55%, transparent 70%);
  pointer-events:none;
}

.hero-kicker{
  display:inline-block;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: .35rem .75rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}

.hero-title{
  font-weight: 800;
  line-height: 1.05;
  margin-top: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.hero-subtitle{
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 36rem;
}

.hero-badges{ display:flex; flex-wrap:wrap; gap:.5rem; }
.badge-pill{
  font-size: .9rem;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  padding: .35rem .75rem;
  border-radius: 999px;
}

.hero-panel{
  position: relative;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.hero-grid{
  position:absolute;
  inset:0;
  background: radial-gradient(600px 240px at 30% 30%, rgba(200,30,42,0.25), transparent 60%),
              radial-gradient(700px 300px at 70% 40%, rgba(43,47,143,0.50), transparent 60%);
  pointer-events:none;
}

.hero-cards{
  position: relative;
  display: grid;
  gap: .75rem;
  padding: 1.25rem;
  margin-top: .5rem;
}
.mini-card{
  display:flex;
  gap:.75rem;
  align-items:center;
  padding: .9rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.mini-icon{
  width: 42px; height:42px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color:#fff;
}
.mini-title{ font-weight:700; }
.mini-sub{ font-size: .9rem; color: rgba(255,255,255,0.72); }

.hero-spotlight{
  position:absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1rem;
  border-radius: 18px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}
.spotlight-title{ font-weight:700; }
.spotlight-tags{ display:flex; flex-wrap:wrap; gap:.35rem; margin-top:.5rem; }
.tag{
  font-size:.8rem;
  padding:.2rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.spotlight-note{ color: rgba(255,255,255,0.75); margin-top:.5rem; font-size:.9rem; }

.stats .stat-card{
  border-radius: 18px;
  padding: 1.25rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  height: 100%;
}
.stat-value{ font-size: 1.8rem; font-weight: 800; }
.stat-label{ color: rgba(255,255,255,0.70); }

.section{ background:#fff; }
.section-soft{ background: var(--bg); }
.section-head{ max-width: 52rem; }
.kicker{
  font-size:.85rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(253, 253, 255, 0.85);
  font-weight: 700;
}
.section-title{
  font-weight: 800;
  margin-top: .6rem;
}
.section-subtitle{
  color: rgba(11,16,32,0.65);
  margin-top: .5rem;
}

.tts-card{
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(11,16,32,0.06);
}

.svc-icon{
  width: 46px; height: 46px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(43,47,143,0.08);
  color: var(--primary);
  border: 1px solid rgba(43,47,143,0.12);
  font-size: 1.2rem;
}

.product-card{
  border-radius: 22px;
  overflow:hidden;
  background:#fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(11,16,32,0.06);
  height:100%;
}
.product-top{
  padding: 1.25rem 1.25rem 1rem;
  background: linear-gradient(180deg, rgba(43,47,143,0.06), rgba(255,255,255,0));
}
.product-body{ padding: 1rem 1.25rem 1.25rem; }

.product-badge{
  display:inline-block;
  padding:.25rem .6rem;
  border-radius: 999px;
  background: rgba(200,30,42,0.10);
  color: var(--accent);
  border: 1px solid rgba(200,30,42,0.18);
  font-weight: 800;
  letter-spacing:.08em;
  font-size:.78rem;
  margin-bottom: .65rem;
}

.list-check{
  list-style:none;
  padding-left:0;
  margin:0;
}
.list-check li{
  position:relative;
  padding-left: 1.75rem;
  margin-bottom: .55rem;
  color: rgba(11,16,32,0.74);
}
.list-check li::before{
  content:"\F26A";
  font-family: "bootstrap-icons";
  position:absolute;
  left:0;
  top:0.05rem;
  color: var(--primary);
}

.cta-band{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  align-items:center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(11,16,32,0.06);
}
.cta-title{ font-weight: 800; font-size: 1.25rem; }
.cta-sub{ color: rgba(11,16,32,0.65); }

.page-hero{
  padding: 3.5rem 0 2.25rem;
  color:#fff;
  background: radial-gradient(800px 420px at 20% 20%, rgba(200,30,42,0.25), transparent 60%),
              linear-gradient(180deg, rgba(43,47,143,0.92), rgba(11,16,32,0.98));
}
.page-hero-inner{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  align-items:flex-end;
  justify-content:space-between;
}
.page-title{ font-weight: 900; margin-top: .5rem; }
.page-subtitle{ color: rgba(255,255,255,0.78); max-width: 44rem; margin-top: .6rem; }
.page-hero-card{
  display:grid;
  gap:.5rem;
  padding: 1rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  min-width: 260px;
}
.mini-metric{ display:flex; align-items:baseline; justify-content:space-between; }
.mini-metric .num{ font-weight: 900; font-size: 1.25rem; }
.mini-metric .lbl{ color: rgba(255,255,255,0.72); font-size: .9rem; }

.page-hero-chip{
  display:inline-flex;
  align-items:center;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
}

.feature-box{
  display:flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:#fff;
  box-shadow: 0 12px 30px rgba(11,16,32,0.06);
}
.feature-icon{
  width: 44px; height:44px;
  flex: 0 0 44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(200,30,42,0.10);
  color: var(--accent);
  border: 1px solid rgba(200,30,42,0.18);
}
.feature-title{ font-weight: 800; }

.kicker-dark{
  color: var(--primary);
}

.it-services-layout{
  display:grid;
  gap:1rem;
}
@media (min-width: 992px){
  .it-services-layout{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
}
.it-services-copy{
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #f2f4f8;
  box-shadow: 0 12px 30px rgba(11,16,32,0.08);
  padding: clamp(1.35rem, 2.8vw, 2rem);
}
.it-services-title{
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .9rem;
}
.it-services-intro{
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.62;
  color: rgba(11,16,32,0.88);
  max-width: 54ch;
  margin-bottom: 0;
}
.it-services-subtitle{
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin: 1.55rem 0 .85rem;
  font-weight: 800;
}
.it-services-list{
  margin: 0;
  padding-left: 1.2rem;
}
.it-services-list li{
  margin-bottom: .42rem;
  font-size: clamp(.98rem, 1.15vw, 1.04rem);
  color: rgba(11,16,32,0.92);
}

.about-story{
  overflow: hidden;
}
.about-story-layout{
  display:grid;
  gap: 1.25rem;
  align-items:start;
}
.about-story-brand{
  display:grid;
  gap: .7rem;
  width: min(100%, 310px);
  margin-left: auto;
}
.about-brand-card{
  background: #fff;
  border: 1px solid rgba(11,16,32,0.1);
  box-shadow: 0 12px 24px rgba(11,16,32,0.08);
  padding: .7rem .78rem;
  border-radius: 14px;
}
.about-brand-logo{
  display:block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about-brand-logo-wjt{
  max-height: 64px;
}
.about-brand-logo-take{
  max-height: 58px;
}
.about-brand-divider{
  height: 1px;
  margin: .12rem .55rem;
  background: linear-gradient(90deg, rgba(11,16,32,0.06), rgba(11,16,32,0.24), rgba(11,16,32,0.06));
}
.about-story-copy p{
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.64;
  color: rgba(11,16,32,0.9);
}
@media (min-width: 992px){
  .about-story-layout{
    grid-template-columns: minmax(0, 1fr) minmax(230px, 310px);
    gap: 1.5rem;
  }
}
@media (max-width: 991.98px){
  .about-story-brand{
    margin-left: 0;
    width: min(100%, 360px);
  }
}
@media (max-width: 575.98px){
  .about-brand-card{
    padding: .62rem .68rem;
    border-radius: 12px;
  }
  .about-brand-logo-wjt{
    max-height: 56px;
  }
  .about-brand-logo-take{
    max-height: 50px;
  }
}

.it-services-collage{
  display:grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(52px, 1fr));
  gap: .75rem;
  min-height: 560px;
}
.it-shot{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(11,16,32,0.1);
  box-shadow: 0 18px 38px rgba(11,16,32,0.22);
  background: #0f1528;
}
.it-shot::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,16,32,0.1), rgba(11,16,32,0.78));
}
.it-shot-lab{
  grid-column: 1 / span 7;
  grid-row: 1 / span 3;
  background: radial-gradient(220px 140px at 20% 15%, rgba(43,47,143,0.6), transparent 72%),
              linear-gradient(130deg, #2a335a 0%, #131a32 80%);
}
.it-shot-access{
  grid-column: 8 / span 5;
  grid-row: 1 / span 6;
  background: radial-gradient(220px 180px at 80% 20%, rgba(200,30,42,0.4), transparent 75%),
              linear-gradient(150deg, #2d2f40 0%, #181b2e 52%, #2f2034 100%);
}
.it-shot-server{
  grid-column: 1 / span 7;
  grid-row: 4 / span 3;
  background: radial-gradient(220px 130px at 30% 20%, rgba(34,197,94,0.38), transparent 70%),
              linear-gradient(130deg, #10192c, #070a12);
}
.it-shot-honeywell{
  grid-column: 1 / -1;
  grid-row: 7 / span 2;
  background: url("../images/Honeywell-Products.jpeg") center center / cover no-repeat;
  display:block;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.it-shot-honeywell::before{
  display: none;
}
.it-shot-label{
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: .58rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  backdrop-filter: blur(5px);
}

@media (max-width: 991.98px){
  .it-services-collage{
    min-height: 500px;
  }
}
@media (max-width: 767.98px){
  .it-services-collage{
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: auto;
  }
  .it-shot-lab{
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 180px;
  }
  .it-shot-access{
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }
  .it-shot-server{
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 180px;
  }
  .it-shot-honeywell{
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 130px;
  }
}

.product-wide{
  border-radius: 22px;
  background:#fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(11,16,32,0.06);
  overflow:hidden;
}
.product-wide-head{
  display:flex;
  gap: .9rem;
  align-items:flex-start;
  padding: 1.25rem 1.25rem 1rem;
  background: linear-gradient(180deg, rgba(43,47,143,0.06), rgba(255,255,255,0));
}
.product-wide-body{ padding: 0 1.25rem 1.25rem; }
.pill{
  padding: .56rem .72rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: rgba(11,16,32,0.75);
  font-size: .92rem;
  line-height: 1.35;
}

.logo-wall{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px){
  .logo-wall{ grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px){
  .logo-wall{ grid-template-columns: repeat(4, 1fr); }
}
.logo-item{
  border: 1px solid var(--border);
  border-radius: 18px;
  background:#fff;
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(11,16,32,0.06);
  min-height: 92px;
  display:grid;
  place-items:center;
}
.logo-badge{
  font-weight: 800;
  color: rgba(43,47,143,0.9);
  text-align:center;
}

.partner-card{
  border-radius: 18px;
  border: 1px solid var(--border);
  background:#fff;
  padding: 1rem;
  text-align:center;
  box-shadow: 0 12px 30px rgba(11,16,32,0.06);
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:.7rem;
}
.partner-logo-wrap{
  min-height: 58px;
  display:grid;
  place-items:center;
}
.partner-logo{
  max-width: 100%;
  max-height: 52px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.partner-mark{
  width: 54px; height:54px;
  display:grid; place-items:center;
  border-radius: 18px;
  margin: 0 auto .7rem;
  background: rgba(43,47,143,0.08);
  color: var(--primary);
  border: 1px solid rgba(43,47,143,0.12);
}
.partner-name{
  font-weight: 800;
  font-size: .95rem;
}

.contact-item{
  display:flex;
  gap:.85rem;
  padding: .85rem 0;
  border-bottom: 1px dashed var(--border);
}
.contact-item:last-child{ border-bottom: none; padding-bottom: 0; }
.contact-ico{
  width: 44px; height:44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(43,47,143,0.08);
  color: var(--primary);
  border: 1px solid rgba(43,47,143,0.12);
}
.contact-title{ font-weight: 800; }

.tts-footer{
  background: linear-gradient(180deg, #0b1020, #070a14);
}
.footer-logo-badge{
  display:inline-flex;
  align-items:center;
  background:#fff;
  padding: .45rem .65rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.footer-logo{
  display:block;
  height: 46px;
  width: auto;
  object-fit: contain;
}
.footer-title{
  color:#fff;
  font-weight: 800;
  margin-bottom: .75rem;
}
.footer-links{
  list-style:none;
  padding-left:0;
  margin:0;
}
.footer-links li{ margin-bottom: .45rem; }
.footer-links a{
  color: rgba(255,255,255,0.72);
  text-decoration:none;
}
.footer-links a:hover{ color:#fff; text-decoration: underline; }

.social-btn{
  width: 38px; height:38px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color:#fff;
  text-decoration:none;
}
.social-btn:hover{
  background: rgba(255,255,255,0.12);
  color:#fff;
}
@media (max-width: 575.98px){
  .footer-logo{
    height: 38px;
  }
}

.border-white-10{ border-color: rgba(255,255,255,0.10)!important; }
