/**** New Product - Home 10/11/2025 ****/
  
 /* ----- Parent Tabs Styling ----- */
.parent-tabs ul.nav-tabs {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  border: none;
  flex-wrap: wrap;
  gap: 0px; /* reduced spacing */
  padding-left: 0;
  list-style: none;
  margin-bottom: 120px;
}

.parent-tabs .nav-item {
  margin: 0 -39px; /* additional fine control */
 
}

.parent-tabs .nav-link {
  border: none;
  background: #f0f3fa;
  color: #333;
  font-weight: 600;
  border-radius: 25px;
  padding: 10px 28px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.parent-tabs .nav-link:hover {
  background-image: linear-gradient(130deg, #80c 0%, #06c 100%);
  color: #fff;
}

.parent-tabs .nav-link.active {
  color: #fff;
  background-image: linear-gradient(130deg, #70b 0%, #05b 100%);
  border: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}
/* ====== Mobile Responsive Fix ====== */
/* ==============================
   Parent Tabs Mobile View
   ============================== */
/* ---------- Parent tabs: mobile (3-in-row, no overlap) ---------- */
@media (max-width: 768px) {
  /* ensure consistent sizing */
  .parent-tabs,
  .parent-tabs * {
    box-sizing: border-box;
  }

  .parent-tabs {
    width: 100%;
    padding: 0 10px;
    overflow: hidden;
  }

  .parent-tabs .parent-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px !important; /* 👈 visible spacing between buttons */
    padding: 10px 0;
    margin-bottom: 36px !important;
    flex-wrap: nowrap !important;
  }

  .parent-tabs .parent-nav .nav-item {
    flex: 0 1 calc(33.333% - 7px); /* 👈 allow space for gap */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .parent-tabs .parent-nav .nav-link {
    width: 100%;
    padding: 10px 10px;
    font-size: 13px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: none;
    border-radius: 24px;
    background: #f1f1f1;
    color: #111;
    box-shadow: none;
    transition: all 0.18s ease;
  }

  .parent-tabs .parent-nav .nav-link.active {
    background-image: linear-gradient(130deg, #70b 0%, #05b 100%);
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: none;
  }

  .parent-tabs .parent-nav .nav-link:focus,
  .parent-tabs .parent-nav .nav-link:active {
    outline: none;
  }

  .parent-tabs .parent-nav {
    z-index: 2;
  }
}


@media (max-width: 799px) {
  .header-menu .header-lang-switch, .header-menu .schedule-demo-button {
    font-size: 16px;
  }
}

/* Move banner caption to the left side */
.video-banner-slider .product-overlay {
  display: flex;
  align-items: center;       /* vertically center */
  justify-content: flex-start; /* move content to the left */
  padding-left: 50px;        /* adjust spacing from left edge */
  text-align: left;
}

.video-banner-slider .product-content {
  max-width: 600px;          /* limit text width for balance */
  margin: 0;                 /* remove any centering margin */
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .video-banner-slider .product-overlay {
    justify-content: center;  /* center on mobile for better UX */
    padding-left: 20px;
    padding-right: 20px;
  }
  .video-banner-slider .product-content {
    text-align: center;
  }
}

.disabled-tab {
    pointer-events: none;
    cursor: not-allowed;
    /*opacity: 0.4;*/
}