 /* Precise styles to match the screenshot */
  :root{
    --bg: #f3f7f6;           /* page bg */
    --card: #ffffff;
    --muted: #9aa6af;
    --accent: #5aa0d6;
    --icon-bg: #eaf4fb;
    --divider: #eef3f6;
    --card-radius: 12px;
    --card-shadow: 0 18px 36px rgba(15,23,32,0.06);
    --title-size: 38px;
    --icon-size: 56px;
  }

  .ts-wrapper{
    background: var(--bg);
    padding: 72px 20px;           /* top large like design */
  }

  .ts-heading {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    font-weight: 800;
    font-size: var(--title-size);
    color: #0f1720;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    text-align:center;
  }

  .ts-underline {
    width: 86px;
    height: 6px;
    margin: 0 auto 34px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(90,160,214,0.12), var(--accent));
  }

  /* outer card that spans wide with rounded corners and shadow */
  .ts-card {
    background: var(--card);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    padding: 0;                 /* inner handled by ts-inner */
  }

  /* large inner padding to match screenshot */
  .ts-inner {
    padding: 36px 48px;
  }

  /* each pair-row container (left+right) */
  .ts-pair {
    display: flex;
    gap: 30px;
    align-items: stretch;
  }

  .ts-col {
    flex: 1;
    display:flex;
    flex-direction:column;
    gap: 18px;
  }

  /* each spec row */
  .ts-item {
    display:flex;
    gap: 18px;
    align-items:center;
    padding: 20px 0;
  }

  /* full-width subtle divider between rows */
  .ts-divider {
    height:1px;
    background: var(--divider);
    margin: 0; /* sits between items */
  }

  .ts-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    min-width: var(--icon-size);
    background: var(--icon-bg);
    border-radius: 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    flex-shrink:0;
  }
  .ts-icon svg{ width:26px; height:26px; fill:var(--accent); }

  .ts-meta { display:flex; flex-direction:column; }
  .ts-label { font-size:13px; color:var(--muted); margin-bottom:6px; }
  .ts-value { font-weight:800; color:#0f1720; font-size:16px; }

  /* adjust spacing to match image where left/right items align horizontally */
  .ts-row-wrap{ display:flex; gap:30px; align-items:flex-start; }

  /* responsiveness: on small screens stack single column */
  @media (max-width: 991.98px){
    .ts-inner{ padding: 28px 24px; }
    .ts-pair{ flex-direction:column; gap:12px; }
  }

  @media (max-width:520px){
    .ts-heading{ font-size:26px; }
    .ts-inner{ padding:18px 14px; }
    .ts-icon{ width:48px; height:48px; min-width:48px; }
    .ts-icon svg{ width:20px; height:20px; }
    .ts-value{ font-size:15px; }
  }



/*==================== Product page css ==================*/

 :root{
    --bg:#fff;            /* page dark bg */
    --card:#ffffff;
    --title:#0f1720;
    --muted:#6b7680;
    --accent:#5aa0d6;
    --card-radius:10px;
    --card-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px ;
    --inner-gap:28px;
  }

  .faq-section{
    background: var(--bg);
    padding: 60px 0px;
    color: #fff;
  }

  .faq-heading{
    font-weight:800;
    font-size:38px;
    color:var(--card);
    text-align:center;
    margin-bottom:0.6rem;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    letter-spacing:-0.02em;
  }

  .faq-underline{
    width:86px;
    height:6px;
    margin: .6rem auto 2.25rem;
    border-radius:6px;
    background:linear-gradient(90deg, rgba(90,160,214,0.12), var(--accent));
  }

  .faq-wrap {
    max-width: 920px;         /* narrow center column like image */
    margin: 0 auto;
    padding: 0 12px;
  }

  .accordion .accordion-item{
    background: transparent;
    border: none;
    margin-bottom: 18px;
  }

  .faq-card {
    background: var(--card);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
  }



  .faq-btn {
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    text-align:left;
    padding: 18px 22px;
    gap: 12px;
    background: transparent;
    border: none;
    font-weight:700;
    font-size:18px;
    color: #0f1720 !important;
  }

  /* chevron */
  .faq-chevron {
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition: transform .25s ease;
    color: var(--accent);
  }
  .faq-chevron svg{ width:18px; height:18px; }

  .accordion-button.collapsed .faq-chevron { transform: rotate(0deg); opacity:0.95; }
  .accordion-button:not(.collapsed) .faq-chevron { transform: rotate(180deg); }

  .accordion-collapse .accordion-body{
    padding: 18px 22px 26px;
    color:#4B5563;
    font-weight:400;
    line-height:1.7;
    font-size:16px;
    background: transparent;
  }
  .accordion-button::after{

  }

  /* subtle top border between questions like image */
  .faq-card + .faq-card{ margin-top: 6px; }

  @media (max-width:576px){
    .faq-heading{ font-size:26px; }
    .faq-btn{ font-size:16px; padding:14px 16px; }
    .accordion-body{ font-size:14px; padding:14px 16px 18px; }
  }


  
  /*================== about us page ==================*/
  /* Section */

/*===============================*/
 /* Image sizing & crop */
    .image-wrap { position: relative; }
    .team-img {
      width: 100%;
      height: 520px;            /* large desktop height like original */
      object-fit: cover;
      border-radius: 18px;
      box-shadow: 0 20px 35px rgba(31,41,55,0.08);
      display: block;
    }

    /* Decorative bottom-right bordered rounded box */
    .decor-border {
      position: absolute;
      right: -18px;
      bottom: -18px;
      width: 120px;
      height: 120px;
      border-radius: 14px;
      border: 6px solid #0ea5a6; /* teal-ish / primary */
      background: transparent;
      z-index: 0;
    }

    /* Decorative top-left small soft square */
    .decor-square {
      position: absolute;
      left: -18px;
      top: -18px;
      width: 72px;
      height: 72px;
      border-radius: 10px;
      background: rgba(6,182,212,0.12);
      z-index: 0;
    }
    .descc p strong {
    color: #111827;
  }
  .descc h2 span {
    color: #06b6d4;
    display: block;
  }
  .descc p {
    color: #6b7280;
    line-height: 24px;
    letter-spacing: 0.4px;
    font-size: 18px;
  }

    /* ensure image sits above decorations */
    .image-wrap > img { position: relative; z-index: 2; }

    /* Responsive adjustments */
    @media (max-width: 991.98px) {
      .team-img { height: 420px; }
      .decor-border { width: 96px; height: 96px; right: -12px; bottom: -12px; border-width:5px; }
      .decor-square { width:56px; height:56px; left:-12px; top:-12px; }
    }

    @media (max-width: 575.98px) {
      .team-img { height: 320px; border-radius:14px; }
      .decor-border { display: none; }  /* hide to avoid overlap on small screens */
      .decor-square { display: none; }
      section.py-5 { padding-top:2.5rem; padding-bottom:2.5rem; }
    }

    /*==========================*/

    /* Background */
.defines-section {
  background: #1d2633; /* dark blue-gray */
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Title */
.section-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: #06b6d4; 
  border-radius: 50px;
  margin: 10px auto 0;
}

/* Cards */
.define-card {
  background: #232f3e;
  border-radius: 18px;
  padding: 35px;
  height: 100%;
  color: #c7d0d9;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.define-card:hover {
  background: #263544;
  transform: translateY(-5px);
}

/* Icon */
.icon-box {
  width: 70px;
  height: 70px;
  background: rgba(6,182,212,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box img {
  width: 35px;
  filter: brightness(0) saturate(100%) invert(63%) sepia(83%) saturate(331%) hue-rotate(132deg) brightness(94%) contrast(95%);
}

/* Titles + Text */
.define-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.define-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #c7d0d9;
}

/* Responsive */
@media (max-width: 575px) {
  .define-card {
    padding: 28px;
  }
}


/*===================================*/

:root{
      --bg:#f3f7f8;
      --card-bg:#ffffff;
      --muted:#6b7280;
      --heading:#111827;
      --primary:#0ea5a6;
      --card-border:#dbeef0;
      --shadow: 0 10px 30px rgba(15,23,42,0.06);
      --radius:14px;
    }

    .brands-section{
      background: var(--bg);
      padding-top: 6rem;
      padding-bottom: 6rem;
    }

    .brands-title{
      color: var(--heading);
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      margin: 0;
    }

    .brands-underline{
      width: 80px;
      height: 6px;
      background: var(--primary);
      border-radius: 999px;
      margin: 12px auto 0;
    }

    .brands-inner { max-width:1200px; margin:0 auto; }

    .brand-card{
      position: relative;
      /*display: flex;*/
      align-items: flex-start;
      gap: 22px;
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 28px 28px 28px 28px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(6,182,212,0.12); /* subtle teal border like original */
      min-height: 160px;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .brand-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(15,23,42,0.09);
    }

    /* Icon area */
    .brand-icon { flex: 0 0 72px; display:flex; align-items:flex-start; }
    .icon-bg{
      width:56px;
      height:56px;
      background: rgba(6,182,212,0.12);
      border-radius: 12px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .icon-bg img{ width:28px; height:28px; display:block; }

    /* Content */
    .brand-content { 
      margin: 20px 0px;
      flex:1; 
    }
    .brand-name{
      margin:0 0 8px 0;
      color: var(--primary);
      font-size:1.125rem;
      font-weight:700;
    }
    .brand-desc{
      margin:0;
      color: var(--muted);
      line-height:1.7;
      font-size:0.98rem;
    }

    /* Arrow action (top-right) */
    .brand-action{
      position: absolute;
      top:18px;
      right:18px;
      width:28px;
      height:28px;
      display:flex;
      align-items:center;
      justify-content:center;
      color: rgba(6,182,212,0.9);
      rotate: -30deg;
    }
    .brand-action .arrow{ width:18px; height:18px; color: rgba(58,80,87,0.9); }

    /* Responsive tweaks */
    @media (max-width: 991.98px){
      .brand-card{ padding:22px; min-height:140px; }
      .brand-icon{ flex-basis:64px; }
      .icon-bg{ width:48px; height:48px; border-radius:10px; }
      .brand-name{ font-size:1.05rem; }
    }

    @media (max-width: 575.98px){
      .brands-section{ padding-top:3.5rem; padding-bottom:3.5rem; }
      .brand-card{ flex-direction: row; gap:16px; padding:18px; }
      .brand-card .brand-action{ top:12px; right:12px; }
    }

    /*===========================================*/

       :root {
      --primary: #0ea5a6;
      --light-bg: #ffffff;
      --dark-bg: #1e2836; 
      --text-dark: #1f2937;
      --text-muted: #6b7280;
      --text-light: #e5e7eb;
      --radius: 16px;
      --shadow-light: 0 12px 28px rgba(0, 0, 0, 0.08);
      --shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    .vision-mission-section {
      background: #eef2f5;
      padding-top: 6rem;
      padding-bottom: 6rem;
    }

    /* Card Base */
    .vm-card {
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow-light);
      min-height: 260px;
      transition: all 0.25s ease;
    }

    .vm-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }

    /* Light Card */
    .light-card {
      background: var(--light-bg);
      color: var(--text-dark);
    }

    /* Dark Card */
    .dark-card {
      background: var(--dark-bg);
      color: var(--text-light);
    }

    /* Icon */
    .icon-box {
      width: 58px;
      height: 58px;
      background: var(--primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .icon-box img {
      width: 30px;
      height: 30px;
      filter: brightness(0) invert(1); /* white icons */
    }

    /* Titles */
    .vm-title {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 14px;
      color: var(--text-dark);
    }

    .dark-title {
      color: #ffffff;
    }

    /* Text */
    .vm-text {
      font-size: 1.07rem;
      line-height: 1.75;
      color: var(--text-muted);
    }

    .dark-text {
      color: #d8e0e8;
    }

    .vm-card.light-card:hover {
    background: var(--dark-bg);
  }
   .vm-card.light-card:hover .vm-title{
    color: #fff;
  }
   .vm-card.light-card:hover .vm-text{
    color: #fff;
  }

    @media (max-width: 575px) {
      .vm-card {
        padding: 28px;
      }
    }

    /*=====================================*/

     :root{
      --bg: #eef2f5;
      --card-bg: #ffffff;
      --muted: #6b7280;
      --heading: #111827;
      --primary: #0ea5a6;
      --card-border: rgba(6,182,212,0.08);
      --shadow: 0 12px 30px rgba(15,23,42,0.06);
      --radius: 14px;
    }

    .what-sets-section{
      background: var(--bg);
      padding-top: 5.5rem;
      padding-bottom: 5.5rem;
    }

    .ws-title{
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--heading);
      margin-bottom: 0.65rem;
      text-align: center;
    }

    .ws-sub{
      color: var(--muted);
      max-width: 900px;
      margin: 0 auto;
      font-size: 1rem;
      line-height: 1.7;
      text-align: center;
    }

    .ws-underline{
      width: 90px;
      height: 6px;
      background: var(--primary);
      border-radius: 999px;
      margin: 18px auto 0;
    }

    /* Feature Card */
    .feature-card{
      display: flex;
      gap: 22px;
      align-items: flex-start;
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 26px;
      border: 1px solid var(--card-border);
      box-shadow: var(--shadow);
      min-height: 120px;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .feature-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(15,23,42,0.09);
    }

    .icon-wrap{ flex: 0 0 74px; display:flex; align-items:flex-start; }
    .icon-bg{
      width:56px;
      height:56px;
      border-radius:12px;
      background: rgba(6,182,212,0.12);
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .icon-bg img{ 
      width:28px;
       height:28px;
       display:block;
         filter: brightness(0) saturate(100%) invert(52%) sepia(51%) saturate(509%) hue-rotate(130deg) brightness(92%) contrast(94%);
       }

    .feature-body{ flex:1; }
    .feature-title{
      margin:0 0 8px 0;
      color: var(--heading);
      font-size:1.05rem;
      font-weight:700;
    }
    .feature-desc{
      margin:0;
      color: var(--muted);
      line-height:1.7;
      font-size:0.98rem;
    }

    /* Responsive tweaks */
    @media (max-width: 991.98px){
      .feature-card{ padding:20px; gap:16px; min-height:110px; }
      .icon-wrap{ flex-basis:64px; }
      .icon-bg{ width:48px; height:48px; }
    }

    @media (max-width: 575.98px){
      .what-sets-section{ padding-top:3.5rem; padding-bottom:3.5rem; }
      .feature-card{ flex-direction:row; padding:16px; }
    }


:root{
      --bg-dark: #1f2933;         /* section background */
      --card-dark: #28313a;       /* inner card background */
      --muted-light: rgba(255,255,255,0.75);
      --icon-bg: rgba(6,182,212,0.12);
      --primary: #06b6d4;
      --card-border: rgba(255,255,255,0.04);
      --radius: 14px;
      --shadow: 0 12px 30px rgba(4,8,12,0.35);
    }

    .numbers-section{
      background: var(--bg-dark);
      padding-top: 5.5rem;
      padding-bottom: 5.5rem;
      color: #fff;
    }

    .numbers-title{
      color: #ffffff;
      font-size: 2.6rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    .numbers-underline{
      width: 80px;
      height: 6px;
      background: var(--primary);
      margin: 12px auto 0;
      border-radius: 999px;
    }

    /* Card */
    .number-card{
      background: var(--card-dark);
      border-radius: var(--radius);
      padding: 36px 28px;
      text-align: center;
      color: var(--muted-light);
      border: 1px solid var(--card-border);
      min-height: 260px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 18px;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .number-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 22px 44px rgba(2,6,12,0.45);
    }

    .num-icon { margin-bottom: 6px; }
    .num-icon-circle{
      width:64px;
      height:64px;
      border-radius: 999px;
      background: var(--icon-bg);
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .num-icon-circle img{
      width:28px;
      height:28px;
      display:block;
      filter: brightness(0) saturate(100%) invert(52%) sepia(51%) saturate(509%) hue-rotate(130deg) brightness(92%) contrast(94%); /* teal-ish */
    }

    .num-title{
      margin:0;
      color:#ffffff;
      font-size:1.1rem;
      font-weight:700;
    }

    .num-desc{
      margin:0;
      color: rgba(255,255,255,0.65);
      font-size:0.96rem;
      line-height:1.7;
      /*max-width: 220px;*/
    }

    /* Responsive tweaks */
    @media (max-width: 991.98px){
      .number-card{ padding:28px; min-height:220px; }
      .num-desc{ max-width: 300px; }
    }

    @media (max-width: 575.98px){
      .numbers-section{ padding-top:3.5rem; padding-bottom:3.5rem; }
      .number-card{ padding:22px; min-height:200px; }
      .num-icon-circle{ width:56px; height:56px; }
      .num-desc{ max-width: 100%; font-size:0.95rem; }
    }






    /*==================================*/
    /*==================================*/
    /*xindux-industries*/

    .industry-alt {
  background: #F4F7FA;
}

.industry-alt .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #0B3C5D;
}

.industry-alt .industry-item {
  background: #ffffff;
  padding: 25px;
  border-left: 5px solid transparent;
  transition: all 0.3s ease;
}

.industry-alt .image-auto img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.industry-alt .industry-item:hover {
  border-left-color: #465b7a;
  transform: translateY(-4px);
}

.industry-alt .industry-img {
  border-radius: 6px;
}

.industry-alt .industry-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #06b6d4;
  margin-bottom: 8px;
}

.industry-alt .industry-item h3 {
  color: #0B3C5D;
  font-size: 24px;
  margin-bottom: 10px;
}

.industry-alt .industry-item p {
  color: #4B5563;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .industry-alt .industry-item {
    padding: 15px;
  }
  .industry-alt .section-title {
    font-size: 28px;
  }
}


/*subfooter*/

.oem-cta {
  padding: 100px 0px 40px 0px;

}

.oem-cta h2 {
  font-size: 34px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}
.subfooter-call {
  background: #1d2633;
  padding: 40px;
  border-radius: 20px;
    position: relative;
}

.oem-cta p {
  color: #fff;
  margin-bottom: 25px;
}

.oem-cta .btn-primary {
  background: #465b7a;
  border: none;
  padding: 10px 24px;
}

.oem-cta .btn-primary:hover {
  background: #fff;
  color: #1d2633;
}

.oem-cta .btn-outline-light {
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 24px;
}

.oem-cta .btn-outline-light:hover {
  background: #fff;
  color: #1d2633;
}

.cta-img {
  max-width: 400px;
  position: absolute;
  right: 0;
  bottom: 0;
}

/* Mobile */
@media (max-width: 767px) {
  .oem-cta {
    text-align: center;
    padding: 30px 0px;
  }
  .oem-cta h2 {
  font-size: 28px;
}
.subfooter-call{
  padding: 20px;
}

  .oem-cta p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-img {
    max-width: 220px;
    display: none;
  }
}


.product-variant-table {
    margin: 60px 0;
    overflow-x: auto;
}

.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.table-wrap thead {
    background: #4a6581;
}

.table-wrap th {
    padding: 14px;
    text-align: left;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.table-wrap td {
    padding: 16px 14px;
    border-bottom: 1px solid #fff;
    font-size: 14px;
}

.table-wrap .download-btn {
  background: #4a6581;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  border: 1px solid #4a6581;
}

.cart-btn {
    background: #4a6581;
    color: #fff;
    padding: 10px 14px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.cart-btn:hover {
    background: #4f8dfd;
}

@media (max-width: 768px) {
    .table-wrap table {
        min-width: 800px;
    }
}


/* Zebra striping */
.table-wrap tbody tr:nth-child(odd) {
    background-color: #f9fbfd;
}

.table-wrap tbody tr:nth-child(even) {
    background-color: #eef3f8;
}

/* Smooth hover effect */
.table-wrap tbody tr:hover {
    background-color: #dce9f5;
    transition: background 0.2s ease;
}

