:root {
  --secondary-color: #17a2b8;
  --accent-color: #f5a623;
  --dark-color: #12242a;
  --text-color: #4d5b61;
  --light-bg: #f4f9fb;
  --top-header-bg: #08343a;
  --shadow-sm: 0 8px 20px rgba(11, 107, 119, 0.08);
  --shadow-md: 0 12px 30px rgba(11, 107, 119, 0.12);
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
   font-family: 'Inter', Arial, Helvetica, sans-serif !important;
  color: #12242a;
  background: #fff;
}

a {
  text-decoration: none !important;
  transition: all 0.35s ease;;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 9999;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  left: 10px;
}

.labozi-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Top Header */
.top-header {
  background: #08343a;
  color: #ffffff;
  padding: 10px 12px;
  font-size: 13px;
}

.top-link,
.top-info {
 display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 500;
  background-color: #717a7b96;
  padding: 4px 12px;
  border-radius: 4px;
}

.top-link:hover {
  color: #9fe7ef;
}

.contact-animate {
  animation: slideFadeIn 0.8s ease forwards;
}

.contact-animate.delay-1 {
  animation-delay: 0.2s;
}

.contact-animate.delay-2 {
  animation-delay: 0.4s;
}
.labolinks{
    margin-left: auto;
    display: flex;
    gap: 12px;
    text-align: left;
    justify-content: end;
}
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Middle Header */
.middle-header {
  background: #ffffff;
  padding: 12px 12px;
  border-bottom: 1px solid #dce6ea;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #12242a;
}

.logo-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b6b77;
  background: rgba(11, 107, 119, 0.08);
  border-radius: 12px;
}

.logo-text h1 {
  font-size: 40px;
  line-height: 1;
  margin: 0 0 4px;
  font-weight: 700;
  color: #074b53;
  font-family: "Google Sans", sans-serif;
  background-color: #08343a26;
  padding: 2px 8px;
  border-radius: 4px;
}

.logo-text p {
  margin: 0;
  font-size: 13px;
  color: var(--text-color);
}

/* Search */
.header-search {
  position: relative;
}

.search-form {
  position: relative;
}

.custom-search-group {
  border: 1px solid #dce6ea;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
}

.custom-search-group .input-group-text {
  background: transparent;
  border: 0;
  color: #0b6b77;
  padding-left: 18px;
}

.custom-search-group .form-control {
  border: 0;
  box-shadow: none;
  min-height: 45px;
  padding: 10px 18px;
  font-size: 14px;
   font-family: "Google Sans", sans-serif;
}

.custom-search-group .form-control:focus {
  box-shadow: none;
}

.search-btn {
  background: #0b6b77;
  color: #ffffff;
  border: 0;
  padding: 0px 18px;
  font-weight: 600;
  margin: 2px;
  border-radius: 0 4px 4px 0;
}

.search-btn:hover {
  background: #074b53;
  color: #ffffff;
}

/* Suggestion Box */
.search-suggestions {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #dce6ea;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(11, 107, 119, 0.12);;
  display: none;
  z-index: 99;
  overflow: hidden;
}

.search-suggestions.active {
  display: block;
}

.search-suggestions ul {
  margin: 0;
  padding: 8px 0;
}

.search-suggestions li {
  padding: 12px 18px;
  cursor: pointer;
  font-size: 14px;
  color: #12242a;
  transition: all 0.35s ease;;
  border-bottom: 1px solid #edf3f5;
}

.search-suggestions li:last-child {
  border-bottom: none;
}

.search-suggestions li:hover,
.search-suggestions li.active {
  background: #eef8fa;
  color: #0b6b77;
  padding-left: 24px;
}

/* Quote button */
.quote-section{
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  position: relative;
}
.header-compare-link{
  font-size: 13px;
  font-weight: 500;
  font-family: "Google Sans", sans-serif;
  color: #f3f3f3;
  position: relative;
  right: 8px;
}
.header-compare-link::before{
  content: '\F813';
  font-family: 'Bootstrap-Icons';
  font-size: 30px;
  color: #696969;
}
#compareCount {
  position: absolute;
  right: -2px;
  bottom: 4px;
  width: 17px;
  height: 17px;
  background-color: #0b6b77;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  font-family: "Google Sans", sans-serif;
}
.quote-actions {
  display: flex;
  justify-content: flex-end;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #08343a;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 400;
  box-shadow: 0 8px 20px rgba(11, 107, 119, 0.08);;
   font-family: "Google Sans", sans-serif;
}

.quote-btn:hover {
  background: #03889d;
  color: #ffffff;
  transform: translateY(-2px);
}
.quote-btn::before{
    content: '\F38B';
    font-family: 'Bootstrap-Icons';

}
/* Main Navigation */
.main-nav-header {
  background: var(--light-bg);
  border-bottom: 1px solid #dce6ea;
}

.main-menu {
  align-items: center;
  gap: 6px;
}

.main-menu .nav-link {
  color: #12242a;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 14px !important;
  position: relative;
   font-family: "Google Sans", sans-serif;
}

.main-menu .nav-link:hover,
.main-menu .nav-link.active {
  color: #0b6b77;
}

.main-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 0px;
  width: 0;
  height: 2px;
  background: #0b6b77;
  transition: all 0.35s ease;;
}

.main-menu .nav-link:hover::after,
.main-menu .nav-link.active::after {
  width: calc(100% - 28px);
}

.dropdown-menu {
  border: 1px solid #dce6ea;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(11, 107, 119, 0.12);;
  padding: 8px 0;
}

.dropdown-item {
  padding: 10px 16px;
  font-size: 14px;
}

.dropdown-item:hover {
  background: #eef8fa;
  color: #0b6b77;
}
.dropdown-toggle::after {
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-left: none !important;
}
.nav-right-info {
  display: flex;
  justify-content: flex-end;
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(11, 107, 119, 0.08);
  color: #074b53;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
}

.custom-toggler {
  border: 1px solid #dce6ea;
  padding: 8px 12px;
  border-radius: 8px;
  color: #0b6b77;
  background: #ffffff;
}

.custom-toggler:focus {
  box-shadow: none;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .logo-text h1 {
    font-size: 24px;
  }

  .quote-btn {
    padding: 12px 20px;
  }
}

@media (max-width: 991.98px) {
  .top-header {
    text-align: center;
  }

  .middle-header {
    padding: 16px 0;
  }

  .logo-wrap {
    justify-content: center;
    width: 100%;
  }

  .quote-actions {
    justify-content: center;
  }

  .header-search {
    margin: 4px 0;
  }

  .main-nav-header .row {
    row-gap: 12px;
  }

  .navbar-collapse {
    background: #ffffff;
    margin-top: 14px;
    padding: 12px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
  }

  .main-menu {
    align-items: flex-start;
    gap: 0;
  }

  .main-menu .nav-link {
    width: 100%;
    padding: 12px 10px !important;
  }

  .main-menu .nav-link::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .top-header {
    padding: 12px 0;
  }

  .top-link,
  .top-info {
    justify-content: center;
    width: 100%;
    font-size: 13px;
  }

  .logo-wrap {
    flex-direction: column;
    text-align: center;
  }

  .logo-text h1 {
    font-size: 22px;
  }

  .logo-text p {
    font-size: 12px;
  }

  .custom-search-group .form-control {
    min-height: 48px;
    font-size: 14px;
  }

  .search-btn {
    padding: 0 16px;
    font-size: 14px;
  }

  .quote-btn {
    width: 100%;
    justify-content: center;
  }

  .search-suggestions li {
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .middle-header,
  .main-nav-header,
  .top-header {
    padding-left: 0;
    padding-right: 0;
  }

  .custom-search-group {
    border-radius: 16px;
  }

  .custom-search-group .input-group-text {
    padding-left: 14px;
  }

  .quote-btn {
    padding: 13px 18px;
  }
}

/* Mega Menu */
.has-megamenu {
  position: static;
}

.mega-menu-wrap {
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0;
  padding: 18px 0 0;
  background: transparent;
}

.mega-menu-box {
  background: #ffffff;
  border: 1px solid #dce6ea;
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(9, 66, 74, 0.12);
  padding: 24px;
}

.mega-card {
  display: block;
  background: #ffffff;
  border: 1px solid #e8eff2;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  transition: all 0.35s ease;;
}

.mega-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(11, 107, 119, 0.12);
  border-color: rgba(11, 107, 119, 0.22);
}

.mega-img {
  overflow: hidden;
  height: 160px;
  width: 160px;
}

.mega-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.mega-card:hover .mega-img img {
  transform: scale(1.06);
}

.mega-content {
  padding: 16px;
}

.mega-content h6 {
  font-size: 17px;
  font-weight: 700;
  color: #074b53;
  margin-bottom: 8px;
}

.mega-content p {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.mega-links-block {
  height: 100%;
  background: #f7fbfc;
  border: 1px solid #e3edf0;
  border-radius: 4px;
  padding: 22px;
}

.mega-title {
  font-size: 15px;
  font-weight: 700;
  color: #074b53;
  margin-bottom: 12px;
}

.mega-links li {
  margin-bottom: 10px;
}

.mega-links li:last-child {
  margin-bottom: 0;
}

.mega-links a {
  color: #12242a;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-left: 16px;
  display: inline-block;
}

.mega-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0b6b77;
}

.mega-links a:hover {
  color: #0b6b77;
  padding-left: 20px;
}

.mega-highlight {
  height: 100%;
  background: linear-gradient(135deg, #0b6b77 0%, #0e8d9d 100%);
  border-radius: 4px;
  padding: 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mega-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  padding: 7px 12px;
  margin-bottom: 14px;
}

.mega-highlight h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.mega-highlight p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
}

.mega-btn {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #074b53;
  padding: 12px 18px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
}

.mega-btn:hover {
  background: #f3fbfc;
  color: #0b6b77;
}

@media (min-width: 992px) {
  .has-megamenu:hover .dropdown-menu {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .mega-menu-wrap {
    position: static !important;
    transform: none !important;
    padding-top: 10px;
  }

  .mega-menu-box {
    padding: 16px;
    border-radius: 16px;
  }

  .mega-img {
    height: 140px;
  }

  .mega-highlight h5 {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .mega-content h6 {
    font-size: 16px;
  }

  .mega-links-block,
  .mega-highlight {
    padding: 18px;
  }

  .mega-highlight h5 {
    font-size: 18px;
  }
}
/* -------------------Banner */
.labozi-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef8fb 0%, #f8fcfd 55%, #e8f5f7 100%);
  padding: 30px 12px 30px;
background-image: url(../../assets/images/abstract-geometric-white-background-free-vector.jpg);
}

.banner-slider {
  position: relative;
  min-height: 480px;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: all 0.7s ease;
  display: flex;
  align-items: center;
}

.banner-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
  z-index: 2;
}

.banner-content {
  max-width: 580px;
  padding: 20px 0;
}

.banner-tag {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(11, 107, 119, 0.10);
  color: #0b6b77;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
   font-family: "Google Sans", sans-serif;
}

.banner-content h2 {
  font-size: 54px;
  line-height: 1.12;
  color: #0e2630;
  font-weight: 500;
  margin-bottom: 18px;
  font-family: "Google Sans", sans-serif;
}

.banner-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #50626c;
  margin-bottom: 28px;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

.primary-btn {
  background: #0b6b77;
  color: #fff;
  box-shadow: 0 12px 24px rgba(11, 107, 119, 0.18);
}

.primary-btn:hover {
  background: #084f58;
  color: #fff;
  transform: translateY(-2px);
}

.secondary-btn {
  background: #fff;
  color: #0b6b77;
  border: 1px solid #cfe2e7;
}

.secondary-btn:hover {
  background: #f3fbfc;
  color: #0b6b77;
  transform: translateY(-2px);
}

.banner-visual {
  position: relative;
  padding: 0px 12px;
}

.visual-card.main-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 65, 72, 0.14);
  background: #fff;
}

.visual-card.main-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.floating-badge {
  position: absolute;
  background: #ffffff9e;
  color: #0e2630;
  padding: 6px 18px;
  border-radius: 4px;
  box-shadow: 0 16px 30px rgba(10, 65, 72, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.badge-one {
  left: 34px;
  top: 70px;
}

.badge-two {
  right: 33px;
  bottom: 120px;
}

.banner-controls {
  position: absolute;
  right: 38px;
  bottom: 12px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.banner-arrow {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 4px;
  background: #0b6b7763;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(11, 107, 119, 0.18);
  transition: all 0.35s ease;
}

.banner-arrow:hover {
  background: #084f58;
  transform: translateY(-2px);
}

.banner-dots {
  position: absolute;
  left: 12px;;
  bottom: 30px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.banner-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  border: 0;
  background: rgba(11, 107, 119, 0.24);
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1px solid #e1e1e1;
}

.banner-dots .dot.active {
  width: 34px;
  border-radius: 4px;
  background: #0b6b77;
}

/* Responsive */
@media (max-width: 1199px) {
  .banner-content h2 {
    font-size: 46px;
  }

  .visual-card.main-card img {
    height: 430px;
  }
}

@media (max-width: 991px) {
  .labozi-banner {
    padding: 30px 0 90px;
  }

  .banner-slider {
    min-height: auto;
  }

  .banner-slide,
  .banner-slide.active {
    position: relative;
  }

  .banner-slide {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .banner-slide.active {
    display: flex;
  }

  .banner-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 18px;
  }

  .banner-actions {
    justify-content: center;
  }

  .banner-content h2 {
    font-size: 38px;
  }

  .banner-content p {
    font-size: 16px;
  }

  .banner-visual {
    max-width: 680px;
    margin: 0 auto;
  }

  .floating-badge {
    font-size: 13px;
    padding: 10px 14px;
  }

  .badge-one {
    left: 12px;
    top: 24px;
  }

  .badge-two {
    right: 12px;
    bottom: 24px;
  }

  .banner-controls {
    right: 50%;
    transform: translateX(50%);
    bottom: -62px;
  }

  .banner-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: -10px;
  }
}

@media (max-width: 767px) {
  .labozi-banner {
    padding: 24px 0 88px;
  }

  .banner-content h2 {
    font-size: 31px;
  }

  .banner-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .banner-btn {
    width: 100%;
    min-width: 100%;
  }

  .visual-card.main-card img {
    height: 300px;
  }

  .floating-badge {
    position: static;
    display: inline-block;
    margin: 10px 8px 0;
  }

  .banner-visual {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .banner-content h2 {
    font-size: 27px;
  }

  .banner-tag {
    font-size: 12px;
  }

  .banner-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .banner-dots .dot {
    width: 10px;
    height: 10px;
  }

  .banner-dots .dot.active {
    width: 28px;
  }
}
/* --------------------------Category section */
.labozi-category-slider {
  padding: 70px 12px;
  background: linear-gradient(180deg, #f6fbfc 0%, #ffffff 100%);
  overflow: hidden;
}

.section-heading-labozi {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 22px;
}

.mini-title-labozi {
  display: inline-block;
  padding: 7px 14px;
    border-radius: 4px;
  background: rgba(11, 107, 119, 0.08);
  color: #0b6b77;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
  font-family: "Google Sans", sans-serif;
}

.section-heading-labozi h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: #10262d;
  margin-bottom: 12px;
  font-family: "Google Sans", sans-serif;
}

.section-heading-labozi p {
  font-size: 16px;
  line-height: 1.8;
  color: #5d6d73;
  margin: 0 auto;
}

.category-slider-wrap-labozi {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.category-slider-track-labozi {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation: laboziCategoryScroll 34s linear infinite;
  will-change: transform;
}

.category-slider-wrap-labozi:hover .category-slider-track-labozi {
  animation-play-state: paused;
}

.category-card-labozi {
  flex: 0 0 calc((100vw - 220px) / 7);
  max-width: 210px;
  min-width: 170px;
  background: #ffffff;
  border: 1px solid #e3edef;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(12, 76, 84, 0.06);
  transition: all 0.35s ease;
  margin-top: 10px;
}

.category-card-labozi:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(12, 76, 84, 0.12);
  border-color: rgba(11, 107, 119, 0.22);
}

.category-img-labozi {
  height: 170px;
  background:
    linear-gradient(135deg, #eef6f8 0%, #ddecef 100%);
  border-bottom: 1px solid #e7eff2;
  position: relative;

}
.category-img-labozi img{
    width: 100%;

}
/* .category-img-labozi::before {
  content: "Add Image";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
  color: #8ba1a8;
  letter-spacing: 0.4px;
} */

.category-name-labozi {
  padding: 16px 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #15313a;
  line-height: 1.4;
  background: #ffffff;
}

@keyframes laboziCategoryScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 9px));
  }
}

/* Large screens */
@media (max-width: 1399px) {
  .category-card-labozi {
    flex: 0 0 180px;
  }
}

/* Desktop medium */
@media (max-width: 1199px) {
  .section-heading-labozi h2 {
    font-size: 34px;
  }

  .category-card-labozi {
    flex: 0 0 170px;
  }

  .category-img-labozi {
    height: 155px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .labozi-category-slider {
    padding: 60px 0;
  }

  .section-heading-labozi h2 {
    font-size: 30px;
  }

  .section-heading-labozi p {
    font-size: 15px;
  }

  .category-slider-track-labozi {
    gap: 16px;
    animation-duration: 28s;
  }

  .category-card-labozi {
    flex: 0 0 190px;
    min-width: 190px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .labozi-category-slider {
    padding: 50px 0;
  }

  .section-heading-labozi {
    margin-bottom: 28px;
  }

  .section-heading-labozi h2 {
    font-size: 26px;
  }

  .category-slider-track-labozi {
    animation-duration: 24s;
  }

  .category-card-labozi {
    flex: 0 0 160px;
    min-width: 160px;
  }

  .category-img-labozi {
    height: 140px;
  }

  .category-name-labozi {
    font-size: 14px;
    padding: 14px 10px;
  }
}

/* Small mobile */
@media (max-width: 575px) {
  .mini-title-labozi {
    font-size: 12px;
  }

  .section-heading-labozi h2 {
    font-size: 23px;
  }

  .section-heading-labozi p {
    font-size: 14px;
    line-height: 1.7;
  }

  .category-card-labozi {
    flex: 0 0 145px;
    min-width: 145px;
  }

  .category-img-labozi {
    height: 130px;
  }
}
/* ----------------------Home section */
/* .labozi-center-slider-section {
  padding: 80px 12px;
  background: linear-gradient(180deg, #f4fafb 0%, #ffffff 100%);
  overflow: hidden;
}

.labozi-section-head {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.labozi-mini-label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 30px;
  background: rgba(11, 107, 119, 0.08);
  color: #0b6b77;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.labozi-section-head h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #132c34;
  margin-bottom: 12px;
}

.labozi-section-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #617178;
}

.labozi-center-slider {
  position: relative;
  height: 660px;
}

.labozi-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.labozi-slide-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  background: #ffffff;
  border: 1px solid #dfebee;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(14, 72, 80, 0.08);
  transform: translate(-50%, -50%);
  transition: all 0.65s ease;
  opacity: 0;
  pointer-events: none;
}

.labozi-slide-card.is-active {
  width: 380px;
  opacity: 1;
  z-index: 20;
  pointer-events: auto;
  box-shadow: 0 24px 52px rgba(14, 72, 80, 0.16);
}

.labozi-slide-card.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.labozi-slide-card.pos--3,
.labozi-slide-card.pos--2,
.labozi-slide-card.pos--1,
.labozi-slide-card.pos-1,
.labozi-slide-card.pos-2,
.labozi-slide-card.pos-3 {
  opacity: 1;
}

.labozi-slide-card.pos--3 {
  transform: translate(calc(-50% - 470px), -50%) scale(0.76);
  z-index: 3;
  filter: blur(0.2px);
}

.labozi-slide-card.pos--2 {
  transform: translate(calc(-50% - 320px), -50%) scale(0.84);
  z-index: 6;
}

.labozi-slide-card.pos--1 {
  transform: translate(calc(-50% - 170px), -50%) scale(0.92);
  z-index: 10;
}

.labozi-slide-card.is-active {
  transform: translate(-50%, -50%) scale(1);
}

.labozi-slide-card.pos-1 {
  transform: translate(calc(-50% + 170px), -50%) scale(0.92);
  z-index: 10;
}

.labozi-slide-card.pos-2 {
  transform: translate(calc(-50% + 320px), -50%) scale(0.84);
  z-index: 6;
}

.labozi-slide-card.pos-3 {
  transform: translate(calc(-50% + 470px), -50%) scale(0.76);
  z-index: 3;
  filter: blur(0.2px);
}

.labozi-card-image-wrap {
  position: relative;
  padding: 14px 14px 0;
}

.labozi-card-image {
  height: 210px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e7f1f4 0%, #d9e8ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #87a0a7;
  font-size: 15px;
  font-weight: 700;
  border: 1px dashed #bfd3d8;
}

.center-image-wrap .labozi-card-image,
.labozi-slide-card.is-active .labozi-card-image {
  height: 250px;
}

.labozi-card-body {
  padding: 18px;
}

.labozi-card-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(11, 107, 119, 0.08);
  color: #0b6b77;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.labozi-card-body h3 {
  font-size: 24px;
  line-height: 1.25;
  color: #132c34;
  margin-bottom: 14px;
  font-weight: 800;
}

.labozi-card-list {
  padding-left: 18px;
  margin: 0 0 16px;
}

.labozi-card-list li {
  font-size: 14px;
  line-height: 1.7;
  color: #56666d;
  margin-bottom: 4px;
}

.labozi-card-spec span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0b6b77;
  margin-bottom: 6px;
}

.labozi-card-spec p {
  font-size: 14px;
  line-height: 1.7;
  color: #5e7077;
  margin-bottom: 18px;
}

.labozi-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.labozi-btn {
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 14px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s ease;
}

.labozi-btn-primary {
  background: #0b6b77;
  color: #fff;
}

.labozi-btn-primary:hover {
  background: #084d56;
}

.labozi-btn-outline {
  background: #fff;
  color: #0b6b77;
  border: 1px solid #c9dde2;
}

.labozi-btn-outline:hover,
.labozi-btn-outline.is-added {
  background: #eef8fa;
  color: #0b6b77;
}

.compare-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  font-size: 16px;
  font-weight: 800;
}

.labozi-slider-nav.on-image {
  position: absolute;
  top: 26px;
  right: 26px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.labozi-nav-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #0b6b77;
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(10, 54, 61, 0.12);
  cursor: pointer;
  transition: all 0.35s ease;
}

.labozi-nav-btn:hover {
  background: #0b6b77;
  color: #fff;
}

@media (max-width: 1399px) {
  .labozi-slide-card {
    width: 290px;
  }

  .labozi-slide-card.is-active {
    width: 350px;
  }

  .labozi-slide-card.pos--3 {
    transform: translate(calc(-50% - 390px), -50%) scale(0.74);
  }

  .labozi-slide-card.pos--2 {
    transform: translate(calc(-50% - 265px), -50%) scale(0.82);
  }

  .labozi-slide-card.pos--1 {
    transform: translate(calc(-50% - 140px), -50%) scale(0.90);
  }

  .labozi-slide-card.pos-1 {
    transform: translate(calc(-50% + 140px), -50%) scale(0.90);
  }

  .labozi-slide-card.pos-2 {
    transform: translate(calc(-50% + 265px), -50%) scale(0.82);
  }

  .labozi-slide-card.pos-3 {
    transform: translate(calc(-50% + 390px), -50%) scale(0.74);
  }
}

@media (max-width: 1199px) {
  .labozi-center-slider {
    height: 620px;
  }

  .labozi-section-head h2 {
    font-size: 34px;
  }

  .labozi-slide-card {
    width: 270px;
  }

  .labozi-slide-card.is-active {
    width: 330px;
  }

  .labozi-slide-card.pos--3,
  .labozi-slide-card.pos-3 {
    opacity: 0;
    pointer-events: none;
  }

  .labozi-slide-card.pos--2 {
    transform: translate(calc(-50% - 230px), -50%) scale(0.82);
  }

  .labozi-slide-card.pos--1 {
    transform: translate(calc(-50% - 115px), -50%) scale(0.92);
  }

  .labozi-slide-card.pos-1 {
    transform: translate(calc(-50% + 115px), -50%) scale(0.92);
  }

  .labozi-slide-card.pos-2 {
    transform: translate(calc(-50% + 230px), -50%) scale(0.82);
  }
}

@media (max-width: 991px) {
  .labozi-center-slider-section {
    padding: 65px 0;
  }

  .labozi-center-slider {
    height: 760px;
  }

  .labozi-section-head h2 {
    font-size: 30px;
  }

  .labozi-slide-card {
    width: 300px;
  }

  .labozi-slide-card.is-active {
    width: 360px;
  }

  .labozi-slide-card.pos--2,
  .labozi-slide-card.pos-2,
  .labozi-slide-card.pos--3,
  .labozi-slide-card.pos-3 {
    opacity: 0;
    pointer-events: none;
  }

  .labozi-slide-card.pos--1 {
    transform: translate(calc(-50% - 95px), -50%) scale(0.86);
  }

  .labozi-slide-card.pos-1 {
    transform: translate(calc(-50% + 95px), -50%) scale(0.86);
  }
}

@media (max-width: 767px) {
  .labozi-center-slider-section {
    padding: 50px 0;
  }

  .labozi-section-head {
    margin-bottom: 24px;
  }

  .labozi-section-head h2 {
    font-size: 26px;
  }

  .labozi-section-head p {
    font-size: 14px;
  }

  .labozi-center-slider {
    height: 700px;
  }

  .labozi-slide-card,
  .labozi-slide-card.is-active,
  .labozi-slide-card.pos--1,
  .labozi-slide-card.pos-1 {
    width: 100%;
    max-width: 360px;
  }

  .labozi-slide-card.pos--1,
  .labozi-slide-card.pos-1,
  .labozi-slide-card.pos--2,
  .labozi-slide-card.pos-2,
  .labozi-slide-card.pos--3,
  .labozi-slide-card.pos-3 {
    opacity: 0;
    pointer-events: none;
  }

  .labozi-slide-card.is-active {
    transform: translate(-50%, -50%) scale(1);
  }

  .labozi-card-body h3 {
    font-size: 22px;
  }

  .labozi-slider-nav.on-image {
    top: 20px;
    right: 20px;
  }

  .labozi-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
} */
 .labozi-center-slider-section {
  padding: 80px 12px;
  background: linear-gradient(180deg, #f4fafb 0%, #ffffff 100%);
  overflow: hidden;
}

.labozi-section-head-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.labozi-section-head {
  /* max-width: 760px; */
  text-align: center;
}

.labozi-mini-label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 4px;
  background: rgba(11, 107, 119, 0.08);
  color: #0b6b77;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.labozi-section-head h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  color: #132c34;
  margin-bottom: 24px;
  font-family: "Google Sans", sans-serif;
}

.labozi-section-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #617178;
}

.labozi-compare-header {
  margin-left: auto;
}

.labozi-compare-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #d6e6ea;
  background: #ffffff;
  color: #0b6b77;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(10, 71, 80, 0.08);
}

.compare-pill-icon {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.compare-pill-count {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: #0b6b77;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.labozi-center-slider {
  position: relative;
 height: 538px;
}

.labozi-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.labozi-slide-card {
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 320px; */
  width: 330px;
  background: #ffffff;
  border: 1px solid #dfebee;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(14, 72, 80, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: left 0.65s ease, opacity 0.65s ease, transform 0.65s ease, box-shadow 0.65s ease;
}

/* fixed exact center */
.labozi-slide-card.is-active {
  left: 50%;
  top: 50%;
  width: 350px;
  opacity: 1;
  z-index: 20;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 24px 52px rgba(14, 72, 80, 0.16);
}

/* left side */
.labozi-slide-card.pos--1 {
  left: calc(50% - 165px);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 1;
  z-index: 12;
  pointer-events: auto;
}

.labozi-slide-card.pos--2 {
  left: calc(50% - 305px);
  transform: translate(-50%, -50%) scale(0.84);
  opacity: 1;
  z-index: 8;
  pointer-events: auto;
}

.labozi-slide-card.pos--3 {
  left: calc(50% - 450px);
  transform: translate(-50%, -50%) scale(0.76);
  opacity: 1;
  z-index: 4;
  pointer-events: auto;
}
.labozi-slide-card.pos--4 {
  left: calc(50% - 595px);
  transform: translate(-50%, -50%) scale(0.68);
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
/* right side */
.labozi-slide-card.pos-1 {
  left: calc(50% + 165px);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 1;
  z-index: 12;
  pointer-events: auto;
}

.labozi-slide-card.pos-2 {
  left: calc(50% + 305px);
  transform: translate(-50%, -50%) scale(0.84);
  opacity: 1;
  z-index: 8;
  pointer-events: auto;
}

.labozi-slide-card.pos-3 {
  left: calc(50% + 450px);
  transform: translate(-50%, -50%) scale(0.76);
  opacity: 1;
  z-index: 4;
  pointer-events: auto;
}

.labozi-slide-card.pos-4 {
  left: calc(50% + 595px);
  transform: translate(-50%, -50%) scale(0.68);
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.labozi-card-image-wrap {
  position: relative;
  padding: 19px 19px 0;
}

.labozi-card-image {
  height: 210px;
  border-radius: 4px;
  background: linear-gradient(135deg, #e7f1f4 0%, #d9e8ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #87a0a7;
  font-size: 15px;
  font-weight: 700;
  border: 1px dashed #bfd3d8;
}
.labozi-card-image img{
  width: 85%;
  height: 85%;
  border-radius: 4px;
}
.labozi-slide-card.is-active .labozi-card-image {
  height: 312px;
  width: 312px;
}

.labozi-card-body {
  padding: 18px;
}

.labozi-card-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(11, 107, 119, 0.08);
  color: #0b6b77;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.labozi-card-body h3 {
  font-size: 24px;
  line-height: 1.25;
  color: #132c34;
  margin-bottom: 14px;
  font-weight: 600;
  font-family: "Google Sans", sans-serif;
}

.labozi-card-list {
  padding-left: 18px;
  margin: 0 0 16px;
}

.labozi-card-list li {
  font-size: 14px;
  line-height: 1.7;
  color: #56666d;
  margin-bottom: 4px;
}

.labozi-card-spec span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0b6b77;
  margin-bottom: 6px;
}

.labozi-card-spec p {
  font-size: 14px;
  line-height: 1.7;
  color: #5e7077;
  margin-bottom: 18px;
}

.labozi-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
}
.labozi-product-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  margin-top: auto;
 padding: 0 16px 16px;
}
.labozi-btn {
  min-height: 23px;
  padding: 6px 10px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s ease;
  font-family: "Google Sans", sans-serif;
}

.labozi-btn-primary {
  background: #0b6b77;
  color: #fff;
}

.labozi-btn-primary:hover {
  background: #084d56;
}

.labozi-btn-outline {
  background: #fff;
  color: #0b6b77;
  border: 1px solid #c9dde2;
}

.labozi-btn-outline:hover,
.labozi-btn-outline.is-added {
  background: #eef8fa;
  color: #0b6b77;
  border-color: #0b6b77;
}

.compare-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  /* margin-right: 6px; */
  font-size: 13px;
  font-weight: 800;
}

.labozi-slider-nav.on-image {
  position: absolute;
  top: 26px;
  right: 26px;
  display: flex;
  gap: 8px;
  z-index: 5;
  display: none;
}

.labozi-nav-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #0b6b77;
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(10, 54, 61, 0.12);
  cursor: pointer;
  transition: all 0.35s ease;
}

.labozi-nav-btn:hover {
  background: #0b6b77;
  color: #fff;
}

@media (max-width: 1399px) {
  .labozi-slide-card.is-active {
    width: 350px;
  }

  .labozi-slide-card {
    width: 290px;
  }

  .labozi-slide-card.pos--1 { left: calc(50% - 145px); }
  .labozi-slide-card.pos--2 { left: calc(50% - 265px); }
  .labozi-slide-card.pos--3 { left: calc(50% - 385px); }

  .labozi-slide-card.pos-1 { left: calc(50% + 145px); }
  .labozi-slide-card.pos-2 { left: calc(50% + 265px); }
  .labozi-slide-card.pos-3 { left: calc(50% + 385px); }
}

@media (max-width: 1199px) {
  .labozi-center-slider {
    height: 640px;
  }

  .labozi-section-head h2 {
    font-size: 34px;
  }

  .labozi-slide-card {
    width: 270px;
  }

  .labozi-slide-card.is-active {
    width: 330px;
  }

  .labozi-slide-card.pos--3,
  .labozi-slide-card.pos-3 {
    opacity: 0;
    pointer-events: none;
  }

  .labozi-slide-card.pos--1 { left: calc(50% - 120px); }
  .labozi-slide-card.pos--2 { left: calc(50% - 230px); }

  .labozi-slide-card.pos-1 { left: calc(50% + 120px); }
  .labozi-slide-card.pos-2 { left: calc(50% + 230px); }
}

@media (max-width: 991px) {
  .labozi-section-head-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .labozi-compare-header {
    margin-left: 0;
  }

  .labozi-center-slider {
    height: 760px;
  }

  .labozi-section-head h2 {
    font-size: 30px;
  }

  .labozi-slide-card {
    width: 300px;
  }

  .labozi-slide-card.is-active {
    width: 360px;
  }

  .labozi-slide-card.pos--2,
  .labozi-slide-card.pos-2,
  .labozi-slide-card.pos--3,
  .labozi-slide-card.pos-3 {
    opacity: 0;
    pointer-events: none;
  }

  .labozi-slide-card.pos--1 { left: calc(50% - 95px); }
  .labozi-slide-card.pos-1 { left: calc(50% + 95px); }
}

@media (max-width: 767px) {
  .labozi-center-slider-section {
    padding: 50px 0;
  }

  .labozi-section-head h2 {
    font-size: 26px;
  }

  .labozi-section-head p {
    font-size: 14px;
  }

  .labozi-center-slider {
    height: 700px;
  }

  .labozi-slide-card,
  .labozi-slide-card.is-active {
    width: 100%;
    max-width: 360px;
  }

  .labozi-slide-card.pos--1,
  .labozi-slide-card.pos-1,
  .labozi-slide-card.pos--2,
  .labozi-slide-card.pos-2,
  .labozi-slide-card.pos--3,
  .labozi-slide-card.pos-3 {
    opacity: 0;
    pointer-events: none;
  }

  .labozi-slide-card.is-active {
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
  }
}
/* -----------------------------section2 */
.labozi-product-grid-section {
  padding: 60px 12px;
}
.main-header-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.labozi-grid-header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.labozi-grid-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  background: #e8f5f7;
  color: #0b6b77;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
}
.labozi-grid-header h2 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.2;
  color: #16323a;
}
.labozi-grid-header p {
  margin: 0;
  max-width: 720px;
  color: #5e7178;
  line-height: 1.7;
  font-size: 15px;
}
.labozi-compare-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #d7e5e8;
  border-radius: 4px;
  padding: 10px 12px;
  min-height: 44px;
  color: #0b6b77;
  font-size: 14px;
  font-weight: 700;
}
.labozi-compare-status strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  background: #0b6b77;
  color: #ffffff;
  border-radius: 4px;
  font-size: 13px;
}
.labozi-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.labozi-product-card {
  background: #ffffff;
  border: 1px solid #d9e6e9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(9, 65, 74, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.labozi-product-image-wrap {
  padding: 12px;
}
.labozi-product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  background: #edf5f7;
}

.labozi-product-content {
  padding: 0 12px 12px;
  border-radius: 4px;
}

.labozi-product-content h3 {
  margin: 2px 0 12px;
  font-size: 20px;
  line-height: 1.3;
  color: #18353d;
  font-family: "Google Sans", sans-serif;
}

.labozi-product-spec {
  margin-bottom: 16px;
  padding: 10px;
  background: #f8fcfd;
  border: 1px solid #e2edef;
  border-radius: 4px;
}
.labozi-product-spec span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #0b6b77;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.labozi-product-spec p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #596d74;
}
@media (max-width: 1399px) {
  .labozi-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1199px) {
  .labozi-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .labozi-grid-header h2 {
    font-size: 28px;
  }

  .labozi-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .labozi-product-grid {
    grid-template-columns: 1fr;
  }

  .labozi-grid-header h2 {
    font-size: 24px;
  }

  .labozi-product-image-wrap img {
    height: 220px;
  }
}
.product-spec-list {
  margin: 0;
  padding-left: 12px;
  list-style: disc;
}

.product-spec-list li {
  font-size: 14px;
  line-height: 1.7;
  color: #596d74;
  margin-bottom: 6px;
}
/* ------------------section3 */
.labozi-why-section{
   padding: 70px 12px;
}
.labozi-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.labozi-why-card {
  background: #f8fcfd;
  border: 1px solid #dce8eb;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(9, 65, 74, 0.06);
  height: 100%;
  min-height: 300px;
  border-radius: 10px;
}

.labozi-why-title {
  font-size: 35px;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Google Sans", sans-serif;
}

.labozi-why-text {
  font-size: 14px;
  color: #e7e7e7;
  font-family: "Google Sans", sans-serif;
}
.labozi-section-heading {
  text-align: center;
  margin-bottom: 24px;
}

.labozi-section-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  color: #132c34;
  margin-bottom: 12px;
  font-family: "Google Sans", sans-serif;
}

.labozi-section-text {
  max-width: 760px;
  margin: 0 auto;
  color: #62757b;
  font-size: 15px;
}
.labozi-section-label {
  display: inline-block;
  background: #dff1f4;
  color: #0b5560;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.labozi-why-grid .p1, .labozi-why-grid .p2, .labozi-why-grid .p3, .labozi-why-grid .p4 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  text-align: center;
}

.labozi-why-grid .p1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/wclp1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
  z-index: -2;
}
.labozi-why-grid .p2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/wcp2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
  z-index: -2;
}
.labozi-why-grid .p3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/wcp3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
  z-index: -2;
}
.labozi-why-grid .p4::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/wcp4.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
  z-index: -2;
}
.labozi-why-grid .p1::after, .labozi-why-grid .p2::after, .labozi-why-grid .p3::after, .labozi-why-grid .p4::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
  z-index: -1;
}

.labozi-why-grid .p1:hover::before , .labozi-why-grid .p2:hover::before, .labozi-why-grid .p3:hover::before, .labozi-why-grid .p4:hover::before {
  transform: scale(1.05);
}

/* ------------------------ */
/* Industries */
.labozi-industries-section{
  padding: 70px 12px;
}
.labozi-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.labozi-industry-box {
  background: #ffffff;
  border: 1px solid #dce8eb;
  border-radius: 8px;
  padding: 12px;
  font-weight: 700;
  color: #447381;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
}
.labozi-industry-box img{
  width: 100px;
  height: 100px;
  /* border: 1px solid #e1e1e1; */
  border-radius: 4px;
  background-color: #fff;
  padding: 22px;
}
.labozi-industry-box:hover{
   border: 1px solid #b9d9dd;
   color: #08343a;
}
.labozi-industry-box:hover img{
  background-color: #f0fdffc7;
  border: 1px solid #b9d9dd;
}
/* Quote */
.labozi-quote-section {
  padding: 28px 12px;
  background: #0b5560;
}

.labozi-quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 26px;
  align-items: center;
}

.labozi-quote-title {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
  font-family: "Google Sans", sans-serif;
}

.labozi-quote-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
  font-family: "Google Sans", sans-serif;
}

.labozi-quote-form {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.labozi-form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.labozi-form-input,
.labozi-form-textarea {
  width: 100%;
  flex: 1;
  border: 1px solid #d6e4e8;
  border-radius: 2px;
  padding: 8px 10px;
  font-size: 14px;
  outline: none;
  font-family: "Google Sans", sans-serif;
}

.labozi-form-textarea {
  min-height: 130px;
  resize: vertical;
}

.labozi-form-submit {
  background: #0b5560;
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Google Sans", sans-serif;
}
.labozi-section-label-light{
  font-family: "Google Sans", sans-serif;
}
/* ----------------------- */
/* Footer */
.labozi-footer-main {
  background: #10292f;
  padding-top: 60px;
  padding-left: 12px;
  padding-right: 12px;
}

.labozi-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}
.labozi-footer-subtitle{
  color: #fff;
  font-size: 20px;
  font-family: "Google Sans", sans-serif;
}
.labozi-footer-title {
  color: #ffffff;
  margin-bottom: 22px;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  font-family: "Google Sans", sans-serif;
  background-color: #0a545f;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

.labozi-footer-text,
.labozi-footer-contact,
.labozi-footer-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-family: "Google Sans", sans-serif;
}
.labozi-footer-link:hover {
  background-color: #4a4e4f;
  padding: 1px 5px 2px;
  border-radius: 4px;
}
.labozi-footer-contact a{
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}  
.labozi-footer-contact a:hover{
  background-color: #4a4e4f;
  padding: 1px 5px 2px;
  border-radius: 4px;
}
.labozi-footer-column:nth-child(1){
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  /* margin-right: 30px; */
}
.labozi-footer-column:nth-child(2) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  /* margin-right: 30px; */
}
.labozi-footer-column:nth-child(3) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  /* margin-right: 30px; */
}
.labozi-footer-column:nth-child(4) {
  border-left: 0;
}
.labozi-footer-list{
  list-style: none;
  padding: 0;
  color: #ffffff7a;
}
.speul{
  display: flex !important;
  flex-wrap: wrap;
}
.speul .speli{
  margin-right: 5px;
  margin-bottom: 5px;
  border-right: 2px dotted rgba(255, 255, 255, 0.08);
  padding-right: 5px;
}
.speul .speli:last-child{
  border-right: 0;
}
.labozi-footer-list-item {
  margin-bottom: 10px;
}

.labozi-footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
}

.labozi-footer-bottom-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .labozi-category-grid,
  .labozi-products-grid,
  .labozi-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .labozi-hero-grid,
  .labozi-quote-wrapper,
  .labozi-footer-grid {
    grid-template-columns: 1fr;
  }

  .labozi-blog-grid,
  .labozi-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .labozi-hero-title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .labozi-menu-toggle {
    display: inline-block;
  }

  .labozi-nav-block {
    display: none;
    width: 100%;
  }

  .labozi-nav-block.labozi-nav-open {
    display: block;
  }

  .labozi-navbar-row {
    flex-wrap: wrap;
  }

  .labozi-nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 16px;
  }

  .labozi-navbar-action {
    margin-left: auto;
  }

  .labozi-hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .labozi-products-grid,
  .labozi-why-grid,
  .labozi-blog-grid,
  .labozi-industries-grid,
  .labozi-category-grid {
    grid-template-columns: 1fr;
  }

  .labozi-topbar-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .labozi-topbar-right {
    flex-direction: column;
    gap: 8px;
  }

  .labozi-hero-title {
    font-size: 32px;
  }

  .labozi-section-title,
  .labozi-quote-title {
    font-size: 28px;
  }

  .labozi-navbar-action {
    width: 100%;
    justify-content: flex-start;
  }

  .labozi-hero-image {
    height: 360px;
  }
}
.labozi-footer-newsletter {
  margin-top: 22px;
}

.labozi-footer-newsletter-title,
.labozi-footer-social-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.labozi-footer-newsletter-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
}

.labozi-footer-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

.labozi-footer-newsletter-input {
  flex: 1 1 220px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0 14px;
  border-radius: 6px;
  outline: none;
}

.labozi-footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.labozi-footer-newsletter-input:focus {
  border-color: #1bb6c9;
}

.labozi-footer-newsletter-btn {
  height: 38px;
  border: none;
  background: #1bb6c9;
  color: #ffffff;
  padding: 0 18px;
  border-radius: 0 6px 6px 0;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  position: absolute;
  right: 0;
}

.labozi-footer-newsletter-btn:hover {
  background: #1194a4;
}

.labozi-footer-social {
  margin-top: 24px;
}

.labozi-footer-social-list {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.labozi-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  text-decoration: none;
}

.labozi-footer-social-link:hover {
  background: #1bb6c9;
  color: #ffffff;
  transform: translateY(-3px);
}
.labozi-footer-social-listst{
  display: flex;
  padding: 0;
  gap: 12px;
  margin-bottom: 0;
}
/* --------------------button show */
.labozi-product-title-box {
  position: relative;
  width: 100%;
}

.labozi-product-title {
  /* margin: 0; */
  /* padding-right: 34px; */
  /* font-size: 18px; */
  /* font-weight: 600; */
  /* line-height: 1.4; */
  /* color: #1a1a1a; */
  /* display: -webkit-box; */
  display: block ruby;
  -webkit-box-orient: vertical;
  /* -webkit-line-clamp: 2; */
  overflow: hidden;
  text-overflow: ellipsis;
 min-height: 18px;
}

.labozi-product-title.is-expanded {
  display: block;
  overflow: visible;
  min-height: auto;
}

.labozi-product-title-more {
  position: absolute;
  right: 0;
  bottom: 0;
  border: none;
  background: #fff;
  color: #0b6b77;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.labozi-product-title-more.is-hidden {
  display: block;
}
/* ----------------------About Us */

.labozi-about-mini-title {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 4px;
  background: rgba(11, 107, 119, 0.10);
  color: var(--labozi-primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.labozi-about-mini-title-light {
  background: rgba(255,255,255,0.14);
  color: var(--labozi-white);
}

.labozi-about-main-title,
.labozi-about-section-title,
.labozi-about-cta-title {
  font-weight: 500;
  color: var(--labozi-heading);
}

.labozi-about-main-title {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 18px;
  font-family: "Google Sans", sans-serif;
  text-align: center;
}

.labozi-about-main-text,
.labozi-about-section-desc,
.labozi-about-paragraph,
.labozi-about-card-text,
.labozi-about-cta-text {
  color: var(--labozi-text);
  font-size: 15px;
}

.labozi-about-card-title {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--labozi-heading);
  font-family: "Google Sans", sans-serif;
}

.labozi-about-section-head {
  margin-bottom: 42px;
}

.labozi-about-section-center {
  text-align: center;
}

.labozi-about-section-center .labozi-about-section-title,
.labozi-about-section-center .labozi-about-section-desc {
  margin-left: auto;
  margin-right: auto;
}

.labozi-about-section-title {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 14px;
  font-family: "Google Sans", sans-serif;
}

.labozi-about-primary-btn,
.labozi-about-secondary-btn,
.labozi-about-outline-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.labozi-about-primary-btn {
  background: var(--labozi-primary);
  color: var(--labozi-white);
}

.labozi-about-primary-btn:hover {
  background: var(--labozi-primary-dark);
}

.labozi-about-secondary-btn {
  background: transparent;
  color: var(--labozi-heading);
  border: 1px solid var(--labozi-border);
}

.labozi-about-secondary-btn:hover {
  border-color: var(--labozi-primary);
  color: var(--labozi-primary);
}

.labozi-about-primary-btn-light {
  background: var(--labozi-white);
  color: var(--labozi-primary);
}

.labozi-about-primary-btn-light:hover {
  background: #f5f5f5;
}

.labozi-about-outline-btn-light {
  color: var(--labozi-white);
  border: 1px solid rgba(255,255,255,0.25);
}

.labozi-about-outline-btn-light:hover {
  background: rgba(255,255,255,0.1);
}

.labozi-about-hero-section {
  padding: 12px 12px 12px;
  /* background: linear-gradient(180deg, #f7fbfc 0%, #ffffff 100%); */
}

.labozi-about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 50px;
}

.labozi-about-main-text {
  margin-bottom: 28px;
}

.labozi-about-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.labozi-about-slider-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--labozi-shadow);
  background: var(--labozi-soft-bg);
}

.labozi-about-slide {
  display: none;
}

.labozi-about-slide.labozi-about-slide-active {
  display: block;
}

.labozi-about-slide-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.fade {
  animation: laboziFade 0.7s ease;
}

@keyframes laboziFade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.labozi-about-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--labozi-heading);
  cursor: pointer;
  z-index: 2;
  transition: var(--labozi-transition);
}

.labozi-about-slider-arrow:hover {
  background: var(--labozi-primary);
  color: var(--labozi-white);
}

.labozi-about-slider-prev {
  left: 16px;
}

.labozi-about-slider-next {
  right: 16px;
}

.labozi-about-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.labozi-about-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: var(--labozi-transition);
}

.labozi-about-dot.active-dot {
  background: var(--labozi-white);
  transform: scale(1.15);
}

/* Sections */
.labozi-about-story-section,
.labozi-about-mission-section,
.labozi-about-strength-section,
.labozi-about-industries-section,
.labozi-about-values-section,
.labozi-about-cta-section {
  padding: 0 12px;
}

.labozi-about-story-grid,
.labozi-about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  /* align-items: center; */
}

.labozi-about-story-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.labozi-about-story-image,
.labozi-about-values-image {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--labozi-shadow);
}

/* Mission */
.labozi-about-mission-section {
  background: var(--labozi-light-bg);
}

.labozi-about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.labozi-about-mission-card,
.labozi-about-strength-card {
  background: var(--labozi-white);
  border: 1px solid var(--labozi-border);
  border-radius: 22px;
  padding: 30px 24px;
  box-shadow: var(--labozi-shadow);
}

.labozi-about-mission-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(11, 107, 119, 0.10);
  color: var(--labozi-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

/* Strength */
.labozi-about-strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.labozi-about-strength-card i {
  font-size: 28px;
  color: var(--labozi-primary);
  margin-bottom: 16px;
}

/* Industries */
.labozi-about-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.labozi-about-industry-item {
  background: var(--labozi-white);
  border: 1px solid var(--labozi-border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--labozi-shadow);
}

.labozi-about-industry-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.labozi-about-industry-content {
  padding: 24px;
}

/* Values */
.labozi-about-values-content {
  display: flex;
  flex-direction: column;
}

.labozi-about-value-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}

.labozi-about-value-item {
  padding: 20px 22px;
  border: 1px solid var(--labozi-border);
  border-radius: 18px;
  background: var(--labozi-light-bg);
}

/* CTA */
.labozi-about-cta-box {
  background: linear-gradient(135deg, var(--labozi-primary), #1290a1);
  border-radius: 28px;
  padding: 46px;
  text-align: center;
}

.labozi-about-cta-title {
  color: var(--labozi-white);
  font-size: 40px;
  line-height: 1.2;
  max-width: 850px;
  margin: 0 auto 16px;
}

.labozi-about-cta-text {
  color: rgba(255,255,255,0.86);
  max-width: 720px;
  margin: 0 auto 24px;
}

.labozi-about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1199px) {
  .labozi-about-main-title {
    font-size: 42px;
  }

  .labozi-about-strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .labozi-about-hero-grid,
  .labozi-about-story-grid,
  .labozi-about-values-grid,
  .labozi-about-mission-grid,
  .labozi-about-industries-grid {
    grid-template-columns: 1fr;
  }

  .labozi-about-main-title {
    font-size: 36px;
  }

  .labozi-about-section-title,
  .labozi-about-cta-title {
    font-size: 32px;
  }

  .labozi-about-slide-image {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .labozi-about-hero-section,
  .labozi-about-story-section,
  .labozi-about-mission-section,
  .labozi-about-strength-section,
  .labozi-about-industries-section,
  .labozi-about-values-section,
  .labozi-about-cta-section {
    padding: 60px 0;
  }

  .labozi-about-main-title {
    font-size: 30px;
  }

  .labozi-about-section-title,
  .labozi-about-cta-title {
    font-size: 27px;
  }

  .labozi-about-slide-image {
    height: 360px;
  }

  .labozi-about-strength-grid {
    grid-template-columns: 1fr;
  }

  .labozi-about-cta-box {
    padding: 34px 22px;
  }
}

@media (max-width: 575px) {
  .labozi-about-main-text,
  .labozi-about-section-desc,
  .labozi-about-paragraph,
  .labozi-about-card-text,
  .labozi-about-cta-text {
    font-size: 14px;
  }

  .labozi-about-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .labozi-about-slide-image {
    height: 300px;
  }
}
.main-title h1, .main-title h2, .main-title h3, .main-title h4, .main-title h4, .main-title h5, .main-title h6{
    padding:  0 12px;
    font-size: 35px;
    font-weight: 600;
    color: #08343a;
    font-family: "Google Sans", sans-serif;
    text-align: center;
    margin-bottom: 24px;
}
/* ---------------------Breadcrumb */
.labobread{
  padding: 4px 12px !important;
  margin-bottom: 2px !important;
}
.labobread .labobreadit{
  font-size: 12px;
  display: flex;
  align-items: end;
}
.labobread .labobreadit a{
  color: #08343a;
}
.mainlabobread{
  padding: 4px 12px !important;
}
.labobread .labobreadit::before{
  content: '\F423';
  font-family: 'Bootstrap-Icons';
  color: #08343a;
  font-size: 13px;
  font-weight: 500;
  margin-right: 3px;
}
.breadcrumb-item + .breadcrumb-item::before {
  content:  "\F285" !important;
  font-family: 'Bootstrap-Icons';
  font-size: 12px;
  font-weight: 600;
}
.breadcrumb-item + .breadcrumb-item{
  font-size: 12px !important;
}
/* ----------------Section page */
.labozi-category-section{
 padding: 12px 12px 70px;
}
.catecard{
  border: 1px solid #e1e1e1;
  padding: 25px 25px 10px;
  border-radius: 4px;
  background-color: aliceblue;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}
.catecard:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
}
.catecard .action-list{
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-110%);
  transition: all 0.4s ease;
  border-radius: 4px;
  overflow: hidden;
}

.catecard:hover .action-list{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.action-blur-bg {
  position: absolute;
  inset: 0;
  background: rgba(8, 77, 85, 0.35);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.action-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.action-content a{
  text-decoration: none;
}
.action-content a h4 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 500;
  font-family: "Google Sans", sans-serif;
  color: #0b6b77;
}

.action-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.action-content ul li {
  margin-bottom: 12px;
}

.action-content ul li a {
  display: block;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.action-content ul li a:hover {
  background: #ffffff;
  color: #0b6b77;
  transform: translateX(6px);
}
.card-wrap:hover .catecard:not(:hover) {
  filter: blur(3px);
  opacity: 0.75;
  transition: 0.3s ease;
}

.card-wrap .catecard {
  transition: 0.3s ease;
}
.catecard .action-list ul{
  margin-bottom: 0;
  padding-left: 4px;
}
.catecard .cateimage{
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  border-radius: 10px 10px;
  margin: 0 auto;
}
.catecard .cateimage img{
  width: 302px;
  height: 302px;
  /* object-fit: cover; */
  display: block;
  margin: 0 auto;
}
.catecard .catename h1, .catecard .catename h2, .catecard .catename h3, .catecard .catename h4, .catecard .catename h5, .catecard .catename h6{ 
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  color: #10292f;
  font-family: "Google Sans", sans-serif;
}
/* -------------------category page */

.labozi-category-section{
   padding: 12px 12px 70px;
}
.labozi-filter-box {
  background: #ffffff;
  border: 1px solid #dce8eb;
  border-radius: 4px;
  padding: 24px 20px;
  box-shadow: 0 10px 25px rgba(10, 71, 78, 0.06);
  position: sticky;
  top: 195px;
}

.labozi-filter-head h3 {
  font-size: 24px;
  font-weight: 600;
  color: #12343a;
  margin-bottom: 8px;
  font-family: "Google Sans", sans-serif;
}

.labozi-filter-head p {
  font-size: 14px;
  color: #61757b;
  line-height: 1.7;
  margin-bottom: 18px;
}

.labozi-filter-group {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf3f4;
}

.labozi-filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.labozi-filter-group h4 {
  font-size: 16px;
  font-weight: 500;
  color: #12343a;
  margin-bottom: 14px;
  font-family: "Google Sans", sans-serif;
}

.labozi-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 13px;
  color: #4d6268;
  margin-bottom: 10px;
  cursor: pointer;
}

.labozi-check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0c6d78;
  cursor: pointer;
}

.labozi-related-note {
  background: #f3fafb;
  border-radius: 12px;
  padding: 14px 14px 10px;
}

.labozi-related-note ul {
  padding-left: 18px;
  margin: 0;
}

.labozi-related-note ul li {
  font-size: 14px;
  color: #587076;
  margin-bottom: 8px;
}


/* Product cards */
.labozi-product-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid #dce8eb;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(10, 71, 78, 0.06);
  transition: all 0.35s ease;
  display: grid;
}

.labozi-product-card:hover {
  /* transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(10, 71, 78, 0.12); */
}

.labozi-product-card img {
  width: 150px;
  height: 150px;
  margin: 20px auto 0;
}

.labozi-product-card-body {
  padding: 18px 16px 0;
}

.labozi-product-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 30px;
  background: #e9f7f8;
  color: #0c6d78;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.labozi-product-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0b6b77;
  margin-bottom: 10px;
  font-family: "Google Sans", sans-serif;
}

.labozi-product-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #61757b;
  margin-bottom: 0;
}

.labozi-no-result {
  margin-top: 24px;
  background: #fff6f6;
  border: 1px solid #f0d9d9;
  color: #8d4c4c;
  border-radius: 12px;
  padding: 14px 16px;
}

@media (max-width: 991.98px) {
  .labozi-filter-box {
    position: static;
  }

  #laboziCategoryCarousel .carousel-control-prev {
    left: 8px;
  }

  #laboziCategoryCarousel .carousel-control-next {
    right: 8px;
  }
}

@media (max-width: 767.98px) {
  .labozi-category-slide-card img,
  .labozi-product-card img {
    height: 200px;
  }
}
.speccate{
  padding: 0;
}
.speccate li span{
  font-size: 13px;
  font-weight: 500;
}
.speccate li span:first-child{
  color: #000;
  margin-right: 4px;
  font-weight: 600;
}
.speccate li span:last-child{
  color: #555;
}
.subnamelit{
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  display: flex;
  gap: 5px;
  position: relative;
}
.subnamelit img{
  width: 70px;
  height: 70px;
  border-radius: 4px 0 0 4px;
  object-fit: cover;
  padding: 4px;
}
.subnamelit .subname{
  display: flex;
  align-items: center;
  width: 100%;
  /* background-color: #08343a26; */
}
.subnamelit .subname h2{
  font-size: 15px;
  font-weight: 600;
  font-family: "Google Sans", sans-serif;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  color: #0b6b77;
  text-align: center;
  padding: 0 12px;
}
.subcatename{
  min-width: fit-content;
  display: flex;
  flex-wrap: wrap;
  padding: 0 12px 22px;
  gap: 8px;
}
.-sub{
  padding: 0 16px 16px;
}

.avail {
  position: absolute;
  right: -3px;
  top: -13px;
}
.avail span{
 background-color: #dae1e2;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 999px;
  color: #074b53;
}
.cbtn{
  border: 0;
  /* display: flex; */
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  align-items: center;
  padding: 2px !important;
  justify-content: center;
  background-color: #f4f9fb;
}
.compare-text {
  font-size: 12px;
}
.compare-icon1 {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  /* margin-right: 6px; */
  font-size: 28px;
  font-weight: 500;
}
.banner-products{
  padding: 0 12px;
}
.banner-products img{
 width: 100%;

  border-radius: 4px;
}
.sch1{
  position: absolute;
  top: 95px;
  left: 0;
  right: 0;
}
/* -------------------Subcategory page */

.labozi-subcategory-section{
   padding: 12px 12px 70px;
}
.labozi-filter-box {
  background: #ffffff;
  border: 1px solid #dce8eb;
  border-radius: 4px;
  padding: 24px 20px;
  box-shadow: 0 10px 25px rgba(10, 71, 78, 0.06);
  position: sticky;
  top: 195px;
}

.labozi-filter-head h3 {
  font-size: 24px;
  font-weight: 600;
  color: #12343a;
  margin-bottom: 8px;
  font-family: "Google Sans", sans-serif;
}

.labozi-filter-head p {
  font-size: 14px;
  color: #61757b;
  line-height: 1.7;
  margin-bottom: 18px;
}

.labozi-filter-group {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf3f4;
}

.labozi-filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.labozi-filter-group h4 {
  font-size: 16px;
  font-weight: 500;
  color: #12343a;
  margin-bottom: 14px;
  font-family: "Google Sans", sans-serif;
}

.labozi-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 13px;
  color: #4d6268;
  margin-bottom: 10px;
  cursor: pointer;
}

.labozi-check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0c6d78;
  cursor: pointer;
}

.labozi-related-note {
  background: #f3fafb;
  border-radius: 12px;
  padding: 14px 14px 10px;
}

.labozi-related-note ul {
  padding-left: 18px;
  margin: 0;
}

.labozi-related-note ul li {
  font-size: 14px;
  color: #587076;
  margin-bottom: 8px;
}


/* Product cards */
.labozi-product-card-sub {
  height: 100%;
  background: #ffffff;
  border: 1px solid #dce8eb;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(10, 71, 78, 0.06);
  transition: all 0.35s ease;
  display: grid;
}

.labozi-product-card-sub:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(10, 71, 78, 0.12);
}

.labozi-product-card-sub img {
  width: 150px;
  height: 150px;
  margin: 20px auto 0;
}

.labozi-product-card-body-sub {
  padding: 18px 16px 0;
}

.labozi-product-card-sub h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0b6b77;
  margin-bottom: 10px;
  font-family: "Google Sans", sans-serif;
}

.labozi-product-card-sub p {
  font-size: 14px;
  line-height: 1.7;
  color: #61757b;
  margin-bottom: 0;
}

.labozi-no-result {
  margin-top: 24px;
  background: #fff6f6;
  border: 1px solid #f0d9d9;
  color: #8d4c4c;
  border-radius: 12px;
  padding: 14px 16px;
}

@media (max-width: 991.98px) {
  .labozi-filter-box {
    position: static;
  }

  #laboziCategoryCarousel .carousel-control-prev {
    left: 8px;
  }

  #laboziCategoryCarousel .carousel-control-next {
    right: 8px;
  }
}

@media (max-width: 767.98px) {
  .labozi-category-slide-card img,
  .labozi-product-card-sub img {
    height: 200px;
  }
}
.speccate-sub{
  padding: 0;
}
.speccate-sub li span{
  font-size: 13px;
  font-weight: 500;
}
.speccate-sub li span:first-child{
  color: #000;
  margin-right: 4px;
  font-weight: 600;
}
.speccate-sub li span:last-child{
  color: #555;
}
.subnamelit{
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  display: flex;
  gap: 5px;
  position: relative;
}
.subnamelit img{
  width: 70px;
  height: 70px;
  border-radius: 4px 0 0 4px;
  object-fit: cover;
  padding: 4px;
}
.subnamelit .subname{
  display: flex;
  align-items: center;
  width: 100%;
  /* background-color: #08343a26; */
}
.subnamelit .subname h2{
  font-size: 15px;
  font-weight: 600;
  font-family: "Google Sans", sans-serif;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  color: #0b6b77;
  text-align: center;
  padding: 0 12px;
}
.subcatename{
  min-width: fit-content;
  display: flex;
  flex-wrap: wrap;
  padding: 0 12px 22px;
  gap: 8px;
}
.category-action-sub{
  padding: 0 16px 16px;
}

.avail {
  position: absolute;
  right: -3px;
  top: -13px;
}
.avail span{
 background-color: #dae1e2;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 999px;
  color: #074b53;
}
.cbtn{
  border: 0;
  /* display: flex; */
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  align-items: center;
  padding: 2px !important;
  justify-content: center;
  background-color: #f4f9fb;
}
.compare-text {
  font-size: 12px;
}
.compare-icon1 {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  /* margin-right: 6px; */
  font-size: 28px;
  font-weight: 500;
}
.banner-products{
  padding: 0 12px;
}
.banner-products img{
 width: 100%;

  border-radius: 4px;
}
.sch1{
  position: absolute;
  top: 95px;
  left: 0;
  right: 0;
}
/* -------------compare toast */
.labozi-toast-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  pointer-events: none;
}

.labozi-toast {
  width: 340px;
  max-width: calc(100vw - 24px);
  background: #ffffff;
  border: 1px solid #d7e4e8;
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transform: translateY(24px);
  opacity: 0;
  pointer-events: auto;
  animation: laboziToastIn 0.35s ease forwards;
}

.labozi-toast.is-removing {
  animation: laboziToastOut 0.3s ease forwards;
}

.labozi-toast-inner {
  display: flex;
  gap: 12px;
  padding: 10px;
  align-items: center;
}

.labozi-toast-thumb {
  width: 70px;
  height: 70px;
  min-width: 58px;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f7f8;
  border: 1px solid #e3ecef;
}

.labozi-toast-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.labozi-toast-content {
  flex: 1;
  min-width: 0;
}

.labozi-toast-title {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #15333a;
  margin: 0 0 4px;
  font-family: "Google Sans", sans-serif;
}

.labozi-toast-text {
  font-size: 12px;
  line-height: 1.5;
  color: #61757b;
  margin: 0;
  font-family: "Google Sans", sans-serif;
}

.labozi-toast-success {
  border-left: 4px solid #147a86;
}

.labozi-toast-warning {
  border-left: 4px solid #d9822b;
}

.labozi-toast-remove {
  border-left: 4px solid #d9534f;
}

@keyframes laboziToastIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes laboziToastOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(16px);
  }
}

@media (max-width: 575.98px) {
  .labozi-toast-container {
    right: 12px;
    left: 12px;
    bottom: 12px;
    align-items: stretch;
  }

  .labozi-toast {
    width: 100%;
    max-width: 100%;
  }
}
.labozi-toast-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.labozi-toast-icon.warning-icon {
  background: #fff8ef;
  border: 1px solid #f3d4aa;
}
.labozi-toast-icon.warning-icon img{
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 12px;
}
/* ----------------------Product Description */
.labozi-product-details {
  background: #ffffff;
}

.labozi-product-gallery-sticky {
  position: sticky;
  top: 160px;
}

.labozi-product-gallery-wrap,
.labozi-product-info,
.labozi-review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.labozi-product-gallery-wrap {
  padding: 18px;
}

.labozi-main-image-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.img-zoom-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
}

.img-zoom-box img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 4px;
}

.img-zoom-lens {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1px solid var(--primary);
  background: rgba(15, 118, 130, 0.12);
  border-radius: 4px;
  pointer-events: none;
  display: none;
  z-index: 2;
}

.img-zoom-result {
  width: 500px;
  height: 500px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  background-color: #fff;
  background-repeat: no-repeat;
  display: none;
  overflow: hidden;
  position: absolute;
}

@media (max-width: 991.98px) {
  .img-zoom-box img {
    height: 420px;
  }
}

@media (max-width: 767.98px) {
  .img-zoom-box img {
    height: 320px;
  }

  .img-zoom-result {
    height: 180px;
  }
}
.labozi-thumb-slider-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.labozi-thumb-slider {
  overflow: hidden;
  flex: 1;
}

.labozi-thumb-track {
  display: flex;
  gap: 12px;
  transition: transform 0.35s ease;
}

.thumb-item {
  min-width: 88px;
  width: 88px;
  height: 88px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 4px;
  cursor: pointer;
}

.thumb-item.active {
  border-color: var(--primary);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.thumb-nav {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.labozi-product-info {
  padding: 24px;
  height: 100%;
}

.labozi-product-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: #ecf8fa;
  border-radius: var(--radius);
  margin-bottom: 14px;
}

.labozi-product-info h1 {
  font-size: 35px;
  font-weight: 600;
  color: #08343a;
  font-family: "Google Sans", sans-serif;
  margin-bottom: 10px;
}

.labozi-product-short-desc {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 5px;
}

.labozi-product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;  
  gap: 12px;
  margin-top: 22px;
  margin-bottom: 22px;
}

.meta-item {
  background: #f4f9fb;
  border: 1px solid #f4f9fb;
  border-radius: 4px;
  padding: 4px 14px;
  font-size: 14px;
  font-family: "Google Sans", sans-serif;
}

.meta-item span {
  font-weight: 600;
  color: var(--text-dark);
}

.labozi-product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.labozi-btn-primary,
.labozi-btn-outline {
  min-width: 125px !important;
  min-height: 34px !important;
  border-radius: 4px !important;
  padding: 4px 16px !important;
  font-weight: 500 !important;
  font-family: "Google Sans", sans-serif;
}

.labozi-btn-primary {
  background: #08343a !important;
  color: #fff !important;
}

.labozi-btn-primary:hover {
  background: black;
  color: #fff;
}

.labozi-btn-outline {
  border: 1px solid #0b6b77 !important;
  color: #0b6b77 !important;
  background: #fff !important;
}

.labozi-product-desc-block,
.labozi-product-specs {
  margin-top: 24px;
}

.labozi-product-desc-block h3,
.labozi-product-specs h3,
.labozi-section-head h2 {
  font-size: 24px;
  margin-bottom: 4px;
}

.labozi-product-desc-block p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.labozi-product-specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.labozi-product-specs ul li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 8px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 10px;
  background: #fcfcfc;
  font-size: 14px;
}
.labozi-product-specs ul li span:first-child{
  color: #000;
  font-weight: 600;
}
.labozi-product-specs ul li span:last-child{
  color: #555;
}
.labozi-review-section {
  padding-top: 20px;
}

.labozi-section-head {
  margin-bottom: 24px;
}

.labozi-section-head p {
  color: var(--text-muted);
  margin: 0;
}

.labozi-review-card {
  padding: 20px;
  height: 100%;
}

.review-stars {
  color: #f4a100;
  margin-bottom: 12px;
}

.labozi-review-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "Google Sans", sans-serif;
}

.labozi-review-card p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 4px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 4px;
}

.review-user {
  font-size: 14px;
  font-weight: 600;
  font-family: "Google Sans", sans-serif;
  color: #000;
}

@media (max-width: 991.98px) {
  .labozi-product-gallery-sticky {
    position: static;
  }

  .img-zoom-container img {
    height: 420px;
  }

  .labozi-product-info h1 {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  .img-zoom-container img {
    height: 320px;
  }

  .img-zoom-result {
    height: 180px;
  }

  .labozi-product-meta {
    grid-template-columns: 1fr;
  }

  .thumb-item {
    min-width: 72px;
    width: 72px;
    height: 72px;
  }

  .labozi-product-info {
    padding: 18px;
  }

  .labozi-product-info h1 {
    font-size: 24px;
  }
}
.labozi-product-featurs ul{
  list-style: disc;
  margin: 0;
  padding: 0;
}
.labozi-product-featurs ul li {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  font-size: 15px;
}
.labozi-product-featurs ul li::before{
  content: '\F285';
  font-family: 'Bootstrap-Icons';
  font-weight: 600;
  color: #0b6b77;
}

/* --- */
.labozi-card-slider {
  width: 100%;
  position: relative;
  padding: 0 12px;
}

.labozi-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.labozi-slider-head h2 {
  margin: 0;
  font-size: 28px;
  color: #14343a;
}

.labozi-slider-arrows {
  display: flex;
  gap: 10px;
}

.labozi-slider-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #d7e3e7;
  background: #fff;
  color: #0f7682;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.labozi-slider-btn:hover {
  background: #0f7682;
  color: #fff;
}

.labozi-slider-window {
  overflow: hidden;
  width: 100%;
}

.labozi-slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.labozi-slide-item {
  flex: 0 0 20%;
  padding: 0 10px 0 0;
  box-sizing: border-box;
}

.labozi-product-card {
  background: #fff;
  border: 1px solid #d9e4e8;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
}

.labozi-product-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
}

.labozi-product-card-body {
  padding: 16px;
}

.labozi-product-card-body h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #14343a;
}

.labozi-product-card-body p {
  font-size: 15px;
  color: #65777d;
  line-height: 1.7;
  margin-bottom: 14px;
}

.labozi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 4px 18px;
  background: #0f7682;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .labozi-slide-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 575.98px) {
  .labozi-slide-item {
    flex: 0 0 100%;
  }

  .labozi-slider-head h2 {
    font-size: 22px;
  }
}
.category-action-desc{
  padding: 0 16px 16px;
}

.labozi-card-slider-sugg {
  width: 100%;
  position: relative;
  padding: 0 12px;
  margin-top: 50px;
}
.cr{
  text-align: left !important;
  padding: 0 12px !important;
}

/* --------------------Compare */
.labozi-compare-section{
  padding: 0 12px 70px;
}
.labozi-compare-table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  border: 1px solid #d8e3e7;
  border-radius: 4px;
  background: #ffffff;
}

.labozi-compare-table-main {
  width: 100%;
  min-width: 1200px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.labozi-compare-table-head th,
.labozi-compare-table-body th,
.labozi-compare-table-body td {
  border-right: 1px solid #dde7ea;
  border-bottom: 1px solid #dde7ea;
  padding: 8px;
  vertical-align: top;
  background: #ffffff;
  font-family: "Google Sans", sans-serif;
}

.labozi-compare-table-head th:last-child,
.labozi-compare-table-body td:last-child {
  border-right: 0;
}

.labozi-compare-head-specification {
  width: 220px;
  min-width: 220px;
  background: #eef6f8;
  color: #14343a;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.labozi-compare-head-product {
  width: 245px;
  min-width: 245px;
  text-align: center;
}

.labozi-compare-product-box {
  position: relative;
  padding-top: 6px;
}

.labozi-compare-product-image-wrap {
  width: 170px;
  height: 170px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
}

.labozi-compare-product-image {
  width: 100%;
  height: 100%;
  display: block;
}

.labozi-compare-product-name {
  font-size: 20px;
  line-height: 1.4;
  color: #16373d;
  margin: 0 0 14px;
  min-height: 56px;
  font-family: "Google Sans", sans-serif;
}

.labozi-compare-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 2px 18px;
  background: #0f7682;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: "Google Sans", sans-serif;
}

.labozi-compare-quote-btn:hover {
  background: #0a5b64;
  color: #ffffff;
}

.labozi-compare-remove-btn {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  border: 1px solid #d8e3e7;
  background: #ffffff;
  color: #c63b3b;
  border-radius: 4px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.labozi-compare-remove-btn:hover {
  background: #c63b3b;
  color: #ffffff;
}

.labozi-compare-spec-title {
  width: 220px;
  min-width: 220px;
  font-size: 15px;
  font-weight: 500;
  color: #14343a;
  background: #f7fbfc;
  text-align: left;
}

.labozi-compare-data-cell {
  font-size: 14px;
  line-height: 1.7;
  color: #5c6f75;
  background: #ffffff;
}

@media (max-width: 991.98px) {
  .labozi-compare-table-scroll {
    position: relative;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 80vh;
  }

  .labozi-compare-table-head th {
    position: sticky;
    top: 0;
    z-index: 4;
    background: #eef6f8;
  }

  .labozi-compare-table-body th {
    position: sticky;
    left: 0;
    z-index: 3;
    background: #f7fbfc;
  }

  .labozi-compare-table-head .labozi-compare-head-specification {
    left: 0;
    z-index: 6;
    position: sticky;
    background: #e6f1f4;
  }

  .labozi-compare-table-head .labozi-compare-head-product {
    background: #eef6f8;
  }

  .labozi-compare-table-main {
    min-width: 1120px;
  }
}

@media (max-width: 767.98px) {
  .labozi-compare-section-main {
    padding: 40px 0;
  }

  .labozi-compare-main-title {
    font-size: 28px;
  }

  .labozi-compare-head-specification,
  .labozi-compare-spec-title {
    width: 180px;
    min-width: 180px;
    font-size: 15px;
  }

  .labozi-compare-head-product {
    width: 220px;
    min-width: 220px;
  }

  .labozi-compare-product-image-wrap {
    height: 140px;
  }

  .labozi-compare-product-name {
    font-size: 17px;
    min-height: 48px;
  }

  .labozi-compare-data-cell {
    font-size: 14px;
  }

  .labozi-compare-quote-btn {
    width: 100%;
  }
}
/* --------------Contact Us */
.labozi-contactus-section{
  padding: 0 12px 70px;
}
.labozi-contactus-info-box,
.labozi-contactus-form-box,
.labozi-contactus-map-box {
  background: #ffffff;
  border: 1px solid #dbe6ea;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(15, 118, 130, 0.06);
}

.labozi-contactus-info-box {
  padding: 20px;
  height: 100%;
}

.labozi-contactus-tagline {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  background: #eaf6f8;
  color: #0f7682;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.labozi-contactus-subtitle,
.labozi-contactus-form-title,
.labozi-contactus-map-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
  color: #16373d;
  font-family: "Google Sans", sans-serif
}

.labozi-contactus-intro,
.labozi-contactus-form-text,
.labozi-contactus-form-note {
  font-size: 14px;
  line-height: 1.8;
  color: #66797f;
  margin-bottom: 0;
}

.labozi-contactus-card-wrap {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.labozi-contactus-card-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border: 1px solid #e1eaed;
  border-radius: 4px;
  background: #fbfdfe;
}

.labozi-contactus-card-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf6f8;
  color: #0f7682;
  border-radius: 4px;
  font-size: 18px;
}

.labozi-contactus-card-title {
  margin: 0 0 6px;
  font-size: 15px;
  color: #16373d;
  font-family: "Google Sans", sans-serif;
}

.labozi-contactus-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #66797f;
}

.labozi-contactus-link {
  color: #0f7682;
  text-decoration: none;
}

.labozi-contactus-link:hover {
  color: #0a5d66;
}

.labozi-contactus-right-wrap {
  display: grid;
  gap: 24px;
}

.labozi-contactus-form-box {
  padding: 26px;
}

.labozi-contactus-form-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #16373d;
  font-family: "Google Sans", sans-serif;
}

.labozi-contactus-form-control {
  width: 100%;
  min-height: 25px;
  padding: 8px 14px;
  border: 1px solid #d8e3e7;
  border-radius: 4px;
  background: #ffffff;
  color: #16373d;
  font-size: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.labozi-contactus-form-control:focus {
  border-color: #0f7682;
  box-shadow: 0 0 0 3px rgba(15, 118, 130, 0.10);
}

.labozi-contactus-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.labozi-contactus-form-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #0f7682 50%), linear-gradient(135deg, #0f7682 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.labozi-contactus-error-text {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #d43c3c;
  min-height: 18px;
}

.labozi-contactus-form-submit-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.labozi-contactus-submit-btn {
  min-height: 12px;
  padding: 8px 18px;
  border: 0;
  border-radius: 4px;
  background: #0f7682;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.labozi-contactus-submit-btn:hover {
  background: #0a5d66;
}

.labozi-contactus-map-box {
  padding: 26px;
}

.labozi-contactus-map-responsive {
  position: relative;
  overflow: hidden;
  padding-bottom: 45%;
  height: 0;
  border-radius: 4px;
  border: 1px solid #dbe6ea;
}

.labozi-contactus-map-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.labozi-contactus-form-control.labozi-contactus-invalid {
  border-color: #d43c3c;
  box-shadow: 0 0 0 3px rgba(212, 60, 60, 0.08);
}

.labozi-contactus-form-control.labozi-contactus-valid {
  border-color: #1f8a52;
}

@media (max-width: 991.98px) {
  .labozi-contactus-section-main {
    padding: 50px 0;
  }

  .labozi-contactus-main-title {
    font-size: 32px;
  }

  .labozi-contactus-subtitle,
  .labozi-contactus-form-title,
  .labozi-contactus-map-title {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .labozi-contactus-section-main {
    padding: 40px 0;
  }

  .labozi-contactus-main-title {
    font-size: 28px;
  }

  .labozi-contactus-info-box,
  .labozi-contactus-form-box,
  .labozi-contactus-map-box {
    padding: 20px;
  }

  .labozi-contactus-card-item {
    padding: 14px;
  }

  .labozi-contactus-form-submit-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .labozi-contactus-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .labozi-contactus-map-responsive {
    padding-bottom: 65%;
  }
}
/* -------------------------Error */
.labozi-error-section-main {
  padding: 0 12px 70px;
  /* padding: 60px 0;
  background: linear-gradient(180deg, #f8fbfc 0%, #eef6f8 100%); */
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
}

.labozi-error-wrapper {
  width: 100%;
}

.labozi-error-image-column,
.labozi-error-content-column {
  height: 100%;
}

.labozi-error-image-box,
.labozi-error-search-box,
.labozi-error-links-box {
  background: #ffffff;
  /* border: 1px solid #d9e4e8; */
  border-radius: 4px;
}

.labozi-error-image-box {
  position: relative;
  padding: 0 28px 0;
  overflow: hidden;
  min-height: 440px;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.labozi-error-image-number {
  font-size: 110px;
  line-height: 1;
  font-weight: 800;
  color: rgba(15, 118, 130, 0.08);
  user-select: none;
  display: flex;
  justify-content: center;
  font-family: "Rubik Doodle Shadow", system-ui;
}

.labozi-error-image-icon-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.labozi-error-image-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(15, 118, 130, 0.14) 0%, rgba(15, 118, 130, 0.03) 65%, rgba(15, 118, 130, 0) 100%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.labozi-error-main-image {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  z-index: 1;
}

.labozi-error-content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.labozi-error-tagline {
  display: inline-block;
  padding: 6px 12px;
  background: #eaf6f8;
  color: #0f7682;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

.labozi-error-main-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
  color: #16373d;
  font-weight: 700;
  text-align: center;
}

.labozi-error-main-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #66797f;
  max-width: 640px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.labozi-error-action-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.labozi-error-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  background: #0f7682;
  color: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.labozi-error-home-btn:hover {
  background: #0a5e67;
  color: #ffffff;
}

.labozi-error-search-box {
  padding: 22px;
}

.labozi-error-search-title,
.labozi-error-links-title {
  margin: 0 0 14px;
  font-size: 22px;
  color: #16373d;
  font-weight: 700;
}

.labozi-error-search-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.labozi-error-search-input {
  flex: 1 1 300px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d8e3e7;
  border-radius: 4px;
  font-size: 15px;
  color: #16373d;
  outline: none;
}

.labozi-error-search-input:focus {
  border-color: #0f7682;
  box-shadow: 0 0 0 3px rgba(15, 118, 130, 0.10);
}

.labozi-error-search-btn {
  min-width: 120px;
  min-height: 48px;
  padding: 12px 18px;
  border: none;
  border-radius: 4px;
  background: #16373d;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.labozi-error-search-btn:hover {
  background: #0f7682;
}

.labozi-error-links-box {
  padding: 22px;
}

.labozi-error-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.labozi-error-links-item {
  margin: 0;
}

.labozi-error-links-anchor {
  color: #0f7682;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.labozi-error-links-anchor:hover {
  color: #0a5e67;
  padding-left: 4px;
}

@media (max-width: 1199.98px) {
  .labozi-error-main-title {
    font-size: 36px;
  }
}

@media (max-width: 991.98px) {
  .labozi-error-section-main {
    min-height: auto;
    padding: 50px 0;
  }

  .labozi-error-image-box {
    min-height: 440px;
  }

  .labozi-error-main-title {
    font-size: 32px;
  }

  .labozi-error-image-number {
    font-size: 90px;
  }
}

@media (max-width: 767.98px) {
  .labozi-error-section-main {
    padding: 40px 0;
  }

  .labozi-error-image-box,
  .labozi-error-search-box,
  .labozi-error-links-box {
    padding: 18px;
  }

  .labozi-error-image-box {
    min-height: 340px;
  }

  .labozi-error-main-title {
    font-size: 26px;
  }

  .labozi-error-main-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .labozi-error-image-number {
    font-size: 68px;
    top: 14px;
    left: 16px;
  }

  .labozi-error-image-circle {
    width: 220px;
    height: 220px;
  }

  .labozi-error-search-group {
    flex-direction: column;
  }

  .labozi-error-search-btn,
  .labozi-error-home-btn {
    width: 100%;
  }
}
/* -----------FAQ */
.labozi-faq-section{
  padding: 0 12px 70px;
}
.labozi-faq-wrapper {
  width: 100%;
}

.labozi-faq-info-box,
.labozi-faq-item-card,
.labozi-faq-support-box {
  background: #ffffff;
  border: 1px solid #dbe6ea;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(15, 118, 130, 0.06);
}

.labozi-faq-info-box {
  padding: 26px;
  height: 100%;
}

.labozi-faq-tagline {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  background: #eaf6f8;
  color: #0f7682;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  font-family: "Google Sans", sans-serif;
}

.labozi-faq-subtitle {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.3;
  color: #16373d;
  font-family: "Google Sans", sans-serif;
}

.labozi-faq-intro-text,
.labozi-faq-support-text,
.labozi-faq-answer-text {
  font-size: 14px;
  line-height: 1.8;
  color: #66797f;
}

.labozi-faq-support-box {
  margin-top: 22px;
  padding: 20px;
  background: #fbfdfe;
}

.labozi-faq-support-title {
  margin: 0 0 10px;
  font-size: 22px;
  color: #16373d;
  font-family: "Google Sans", sans-serif;
}

.labozi-faq-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 8px 18px;
  border-radius: 4px;
  background: #0f7682;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.labozi-faq-support-btn:hover {
  background: #0a5d66;
  color: #ffffff;
}

.labozi-faq-accordion-wrap {
  display: grid;
  gap: 16px;
}

.labozi-faq-item-card {
  overflow: hidden;
}

.labozi-faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 15px;
  background: #ffffff;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.labozi-faq-question-text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
   font-family: "Google Sans", sans-serif;
}

.labozi-faq-icon-wrap {
  position: relative;
  width: 18px;
  min-width: 18px;
  height: 18px;
}

.labozi-faq-icon-wrap::before,
.labozi-faq-icon-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #0f7682;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.labozi-faq-icon-wrap::before {
  width: 16px;
  height: 2px;
}

.labozi-faq-icon-wrap::after {
  width: 2px;
  height: 16px;
}

.labozi-faq-item-card.active .labozi-faq-icon-wrap::after {
  opacity: 0;
}

.labozi-faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.labozi-faq-answer-content {
  padding: 0 15px 10px;
}

.labozi-faq-answer-text {
  margin: 0;
}

.labozi-faq-item-card.active .labozi-faq-question-btn {
  background: #fafdfe;
  color: #0b6b77;
}

@media (max-width: 991.98px) {
  .labozi-faq-section-main {
    padding: 50px 0;
  }

  .labozi-faq-main-title {
    font-size: 32px;
  }

  .labozi-faq-subtitle {
    font-size: 24px;
  }

  .labozi-faq-question-text {
    font-size: 17px;
  }
}

@media (max-width: 767.98px) {
  .labozi-faq-section-main {
    padding: 40px 0;
  }

  .labozi-faq-main-title {
    font-size: 28px;
  }

  .labozi-faq-info-box {
    padding: 20px;
  }

  .labozi-faq-support-box {
    padding: 16px;
  }

  .labozi-faq-question-btn {
    padding: 16px 18px;
  }

  .labozi-faq-answer-content {
    padding: 0 18px 18px;
  }

  .labozi-faq-question-text {
    font-size: 16px;
  }

  .labozi-faq-support-btn {
    width: 100%;
  }
}

/* -------------------Privacy Policy */
.labozi-privacypolicy-section{
  padding: 0 12px 70px;
}
.labozi-policy-wrapper {
    width: 100%;
}

.labozi-policy-sidebar-box,
.labozi-policy-content-box,
.labozi-policy-contact-box,
.labozi-policy-highlight-box {
    background: #ffffff;
    border: 1px solid #dbe6ea;
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(15, 118, 130, 0.05);
}

.labozi-policy-sidebar {
    position: sticky;
    top: 110px;
}

.labozi-policy-sidebar-box {
    padding: 24px 20px;
}

.labozi-policy-sidebar-title {
    margin: 0 0 18px;
    font-size: 22px;
    color: #16373d;
    font-family: "Google Sans", sans-serif;
}

.labozi-policy-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.labozi-policy-nav-list li {
    margin-bottom: 10px;
}

.labozi-policy-nav-list li:last-child {
    margin-bottom: 0;
}

.labozi-policy-nav-list a {
    display: block;
    padding: 8px 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #51656b;
    background: #f8fcfd;
    border: 1px solid #e4eef1;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Google Sans", sans-serif;
}

.labozi-policy-nav-list a:hover {
    color: #0f7682;
    border-color: #b8dce1;
    background: #eef8fa;
}

.labozi-policy-content-box {
    padding: 28px;
}

.labozi-policy-highlight-box {
    padding: 18px 20px;
    margin-bottom: 28px;
    background: #fafdfe;
    border-left: 4px solid #0f7682;
}

.labozi-policy-highlight-box p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.8;
    color: #54696f;
}

.labozi-policy-last-updated {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0f7682;
    font-family: "Google Sans", sans-serif;
}

.labozi-policy-section-block {
    margin-bottom: 32px;
}

.labozi-policy-section-block:last-child {
    margin-bottom: 0;
}

.labozi-policy-section-block h2 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.3;
    color: #16373d;
    font-family: "Google Sans", sans-serif;
}

.labozi-policy-section-block p,
.labozi-policy-section-block li {
    font-size: 15px;
    line-height: 1.9;
    color: #66797f;
}

.labozi-policy-section-block p {
    margin-bottom: 12px;
}

.labozi-policy-section-block ul {
    margin: 0 0 14px;
    padding-left: 12px;
  list-style: circle;
}

.labozi-policy-section-block ul li {
    margin-bottom: 8px;
}

.labozi-policy-contact-box {
    margin-top: 15px;
    padding: 20px;
    background: #fbfdfe;
}

.labozi-policy-contact-box p {
    margin-bottom: 10px;
}

.labozi-policy-contact-box p:last-child {
    margin-bottom: 0;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 1199.98px) {
    .labozi-policy-sidebar {
        top: 90px;
    }
}

@media (max-width: 991.98px) {
    .labozi-privacypolicy-section {
        padding: 50px 0;
    }

    .labozi-policy-main-title {
        font-size: 34px;
    }

    .labozi-policy-sidebar {
        position: static;
    }

    .labozi-policy-content-box {
        padding: 24px;
    }

    .labozi-policy-section-block h2 {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .labozi-privacypolicy-section {
        padding: 40px 0;
    }

    .labozi-policy-main-title {
        font-size: 28px;
    }

    .labozi-policy-sidebar-box,
    .labozi-policy-content-box,
    .labozi-policy-contact-box,
    .labozi-policy-highlight-box {
        border-radius: 3px;
    }

    .labozi-policy-sidebar-box {
        padding: 18px;
    }

    .labozi-policy-content-box {
        padding: 20px 18px;
    }

    .labozi-policy-highlight-box {
        padding: 16px;
        margin-bottom: 22px;
    }

    .labozi-policy-sidebar-title {
        font-size: 20px;
    }

    .labozi-policy-section-block {
        margin-bottom: 26px;
    }

    .labozi-policy-section-block h2 {
        font-size: 21px;
    }

    .labozi-policy-nav-list a,
    .labozi-policy-section-block p,
    .labozi-policy-section-block li {
        font-size: 14px;
    }

    .labozi-policy-contact-box {
        padding: 16px;
    }
}
/* ----------------Catalog */
@page {
    size: A4;
    margin: 0;
}

/* * {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Arial", sans-serif;
    background: #edf4f6;
    color: #18363b;
}

img {
    max-width: 100%;
    display: block;
} */

.labozi-catalog-section {
    padding: 40px 0 60px;
}

.labozi-catalog-main-title-wrap {
    text-align: center;
    margin-bottom: 0;
}

.labozi-catalog-book {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.labozi-catalog-page {
    width: 210mm;
    min-height: 297mm;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
    position: relative;
    overflow: hidden;
}

.labozi-catalog-page-inner {
    position: relative;
    width: 100%;
    min-height: 297mm;
    padding: 16mm;
}

/* COVER PAGE */
.labozi-catalog-cover-page {
    color: #555;
}

.labozi-catalog-cover-bg {
    position: absolute;
    inset: 0;
    background: url("../../assets/images/b1.jpg") center center / cover no-repeat;
    z-index: 1;
}

.labozi-catalog-cover-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(5, 41, 46, 0.92), rgba(10, 108, 119, 0.80)); */
    z-index: 2;
}

.labozi-catalog-topbar,
.labozi-catalog-cover-content,
.labozi-catalog-cover-footer {
    position: relative;
    z-index: 3;
}

.labozi-catalog-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28mm;
}

.labozi-catalog-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.labozi-catalog-logo-box {
    width: 70px;
    height: 70px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.labozi-catalog-brand-text h2 {
    font-size: 40px;
  line-height: 1;
  margin: 0 0 4px;
  font-weight: 700;
  color: #074b53;
  font-family: "Google Sans", sans-serif;
  background-color: #08343a26;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block
}

.labozi-catalog-brand-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.labozi-catalog-contact-mini {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    font-size: 13px;
}
.labozi-catalog-contact-mini span, .labozi-catalog-contact-item span{
  font-family: "Google Sans", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.labozi-catalog-contact-mini .mailcat::before, .labozi-catalog-contact-item .mailcat::before{
  content: '\F32F';
  font-family: 'Bootstrap-Icons';
  font-size: 18px;
  font-weight: 400;
  color: #0b6b77;
  margin-right: 5px;
}
.labozi-catalog-contact-mini .phcate::before, .labozi-catalog-contact-item .phcate::before{
  content: ' \F413';
  font-family: 'Bootstrap-Icons';
  font-size: 18px;
  font-weight: 400;
  color: #0b6b77;
  margin-right: 5px;
}
.labozi-catalog-cover-content {
   display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  min-height: 180mm;
  flex-direction: column;
}

.labozi-catalog-cover-left,
.labozi-catalog-cover-right {
    width: 100%;
}

.labozi-catalog-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.labozi-catalog-product-title {
    margin: 0 0 14px;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    font-family: "Google Sans", sans-serif;
}

.labozi-catalog-product-subtitle {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.8;
    max-width: 420px;
    opacity: 0.95;
}

.labozi-catalog-cover-contact {
   display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
  justify-content: end;
  margin-top: auto;
  top: 58px;
}

.labozi-catalog-contact-item {
    min-width: 180px;
    padding: 2px 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.labozi-catalog-contact-item strong {
    display: block;
    margin-bottom: 0px;
    font-size: 12px;
    color: #000 !important;
    font-family: "Google Sans", sans-serif; 
}

.labozi-catalog-contact-item span {
  font-size: 14px;
  font-family: "Google Sans", sans-serif;
  color: #0b6b77;
  font-weight: 500;
}

.labozi-catalog-product-image-card {
    padding: 20px;
    border-radius: 24px;
    /* background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18); */
}

.labozi-catalog-product-image-card img {
    width: 100%;
  max-height: 350px;
  object-fit: contain;
  max-width: 350px;
  margin: 0 auto;
  display: block;
}

.labozi-catalog-cover-footer {
    position: absolute;
    left: 16mm;
    right: 16mm;
    bottom: 14mm;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.labozi-catalog-cover-footer p {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-family: "Google Sans", sans-serif;
}

/* INNER PAGES */
.labozi-catalog-page-header {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 16mm;
    padding-bottom: 10px;
    border-bottom: 1px solid #d5e3e7;
}

.labozi-catalog-small-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.labozi-catalog-small-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.labozi-catalog-small-brand span {
    font-size: 22px;
    font-weight: 700;
    color: #0c6e79;
}

.labozi-catalog-page-number {
    font-size: 16px;
    font-weight: 700;
    color: #68868c;
}

.labozi-catalog-content-wrap {
    width: 100%;
}

.labozi-catalog-section-head {
    margin-bottom: 4px;
}

.spec-title-space {
    margin-top: 45px;
}

.applications-space {
    margin-top: 26px;
}

.labozi-catalog-section-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #0c6e79;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Google Sans", sans-serif;
}

.labozi-catalog-section-head h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    color: #18363b;
    font-family: "Google Sans", sans-serif;
}

.labozi-catalog-overview-text {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.9;
    color: #5d7378;
    text-align: left;
}

.labozi-catalog-table-wrap {
    margin-top: 12px;
}

.labozi-catalog-spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d8e6ea;
}

.labozi-catalog-spec-table th,
.labozi-catalog-spec-table td {
    padding: 12px 14px;
    border: 1px solid #d8e6ea;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
}

.labozi-catalog-spec-table th {
    width: 34%;
    background: #eef7f9;
    color: #17444b;
    font-weight: 600;
    font-family: "Google Sans", sans-serif;
}

.labozi-catalog-spec-table td {
    color: #5f767b;
    background: #ffffff;
}

.labozi-catalog-list-grid,
.labozi-catalog-application-list {
    margin: 0;
    padding-left: 20px;
}

.labozi-catalog-list-grid li,
.labozi-catalog-application-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.8;
    color: #5d7378;
}

.labozi-catalog-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14mm;
  display: block;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 36px;
  border-top: 1px solid #d5e3e7;
}

.labozi-catalog-footer-logo img {
    width: 100px;
    height: 50px;
    object-fit: contain;
}

.labozi-catalog-footer-details {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px; */
    font-size: 12px;
    color: #557075;
}
.labozi-catalog-list-gridid, .labozi-catalog-application-listst{
  padding: 0;
}
.labozi-catalog-list-gridid li, .labozi-catalog-application-listst li{
  font-size: 14px;
  margin-bottom: 15px;
}
.downlodbtn {
  max-width: 800px;
  width: 100%;
  margin-top: 30px;
}
.downlodbtn .downloadcatalog{
  background-color: #03889d;
  color: #fff;
  border-radius: 4px;
  margin-left: auto;
  display: block;
  font-size: 13px;
}
.downlodbtn .downloadcatalog:hover{
  border: 1px solid #03889d;
  border-color: #03889d;
}
/* SCREEN RESPONSIVE */
@media (max-width: 991px) {
    .labozi-catalog-section {
        padding: 30px 12px 50px;
    }

    .labozi-catalog-page {
        width: 100%;
        min-height: auto;
    }

    .labozi-catalog-page-inner {
        min-height: auto;
        padding: 28px 20px;
    }

    .labozi-catalog-topbar,
    .labozi-catalog-cover-content,
    .labozi-catalog-page-header,
    .labozi-catalog-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .labozi-catalog-cover-left,
    .labozi-catalog-cover-right {
        width: 100%;
    }

    .labozi-catalog-contact-mini {
        align-items: flex-start;
    }

    .labozi-catalog-product-title {
        font-size: 34px;
    }

    .labozi-catalog-section-head h2 {
        font-size: 26px;
    }

    .labozi-catalog-cover-footer,
    .labozi-catalog-footer {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 24px;
    }

    .labozi-catalog-footer-details {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .labozi-catalog-product-title {
        font-size: 28px;
    }

    .labozi-catalog-product-subtitle,
    .labozi-catalog-overview-text,
    .labozi-catalog-list-grid li,
    .labozi-catalog-application-list li {
        font-size: 14px;
    }

    .labozi-catalog-brand-text h2 {
        font-size: 24px;
    }

    .labozi-catalog-section-head h2 {
        font-size: 22px;
    }

    .labozi-catalog-spec-table th,
    .labozi-catalog-spec-table td {
        padding: 10px;
        font-size: 13px;
    }
}

/* PRINT */
@media print {
    /* html,
    body {
        margin: 0;
        padding: 0;
        background: #ffffff;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    } */

    .no-print {
        display: none !important;
    }

    .labozi-catalog-section {
        padding: 0;
    }

    .labozi-catalog-book {
        gap: 0;
    }

    .labozi-catalog-page {
        width: 210mm;
        min-height: 297mm;
        margin: 0;
        box-shadow: none;
        page-break-after: always;
        break-after: page;
    }

    .labozi-catalog-page:last-child {
        page-break-after: auto;
        break-after: auto;
    }

    .labozi-catalog-page-inner {
        min-height: 297mm;
    }
}
/* ---------------------search */
.labozi-search-section{
  padding: 0 12px 70px;
}
.spresult{
  color: #0b6b77;
}
/* -------------------Site map */
.labozi-sitemap-section{
  padding: 0 12px 70px;
}
.labozi-sitemap-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.labozi-sitemap-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #d9e7ea;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(9, 79, 88, 0.06);
}

.labozi-sitemap-main-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.labozi-sitemap-main-item {
    position: relative;
}

.labozi-sitemap-main-link {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 14px 22px;
    background: #ffffff;
    border: 1px solid #d7e5e9;
    border-radius: 14px;
    text-decoration: none;
    color: #16373d;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 22px rgba(15, 118, 130, 0.04);
}

.labozi-sitemap-main-link:hover {
    color: #0f7682;
    border-color: #b8dce1;
    background: #f8fdfe;
}

.labozi-sitemap-main-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, #0f7682, #1592a0);
    border-color: transparent;
}

.labozi-sitemap-category-item {
    padding-bottom: 6px;
}

.labozi-sitemap-branch-tree {
    position: relative;
    margin-top: 18px;
    margin-left: 28px;
    padding-left: 34px;
}

.labozi-sitemap-branch-tree::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
    background: #bddbe1;
}

.labozi-tree-root {
    margin: 0;
    padding: 0;
    list-style: none;
}

.labozi-tree-root li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 0;
}

.labozi-tree-root li:last-child {
    margin-bottom: 0;
}

.labozi-tree-root li::before {
    content: "";
    position: absolute;
    top: 24px;
    left: -24px;
    width: 24px;
    height: 2px;
    background: #bddbe1;
}

.labozi-tree-root li::after {
    content: "";
    position: absolute;
    top: -16px;
    left: -24px;
    width: 2px;
    height: 40px;
    background: #bddbe1;
}

.labozi-tree-root li:first-child::after {
    top: 0;
    height: 24px;
}

.labozi-tree-root li:last-child::after {
    height: 24px;
}

.labozi-tree-root li a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    background: #f9fcfd;
    border: 1px solid #dbe8ec;
    border-radius: 14px;
    text-decoration: none;
    color: #476066;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.labozi-tree-root li a:hover {
    color: #0f7682;
    border-color: #b8dce1;
    background: #eef8fa;
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .labozi-sitemap-section {
        padding: 50px 0;
    }

    .labozi-sitemap-main-title-wrap h1 {
        font-size: 32px;
    }

    .labozi-sitemap-card {
        padding: 24px;
        border-radius: 16px;
    }

    .labozi-sitemap-main-link {
        font-size: 17px;
    }

    .labozi-tree-root li a {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .labozi-sitemap-section {
        padding: 40px 0;
    }

    .labozi-sitemap-main-title-wrap h1 {
        font-size: 28px;
    }

    .labozi-sitemap-card {
        padding: 18px;
        border-radius: 14px;
    }

    .labozi-sitemap-main-list {
        gap: 16px;
    }

    .labozi-sitemap-main-link {
        width: 100%;
        min-height: 50px;
        padding: 12px 16px;
        font-size: 16px;
        border-radius: 12px;
    }

    .labozi-sitemap-branch-tree {
        margin-left: 12px;
        padding-left: 26px;
    }

    .labozi-sitemap-branch-tree::before {
        left: 7px;
    }

    .labozi-tree-root li::before {
        left: -18px;
        width: 18px;
    }

    .labozi-tree-root li::after {
        left: -18px;
    }

    .labozi-tree-root li a {
        min-height: 46px;
        padding: 11px 14px;
        font-size: 14px;
        border-radius: 12px;
    }
}