* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark-navy: #020b14;
  --teal-accent: #00b4d8;
  --teal-glow: #00f5d4;
  --light-bg: #ffffff;
  --light-card: #ffffff;
  --text-main: #05162a;
  --text-muted: #457b9d;
  --border-color: #d0e1fd;
  --steel: #8a9bb0;
  --font-display: "Raleway", sans-serif;
  --font-body: "Lato", sans-serif;
  --side-gap: clamp(18px, 3.2vw, 56px);
  --container-max: 1360px;
  --pg-primary: #36c3ca;
  --pg-primary-glow: rgba(54, 195, 202, 0.35);
  --pg-dark: #0a0e17;
  --pg-light: #ffffff;
  --pg-card-bg: rgba(255, 255, 255, 0.95);
  --pg-text-muted: #64748b;
  --pg-border-color: rgba(54, 195, 202, 0.3);
  --sonar-cyan: #36c3ca;
  --sonar-cyan-hover: #2da8af;
  --sonar-cyan-glow: rgba(54, 195, 202, 0.25);
  --sonar-dark: #0f172a;
  --sonar-slate: #1e293b;
  --sonar-border: #cbd5e1;
  --sonar-muted: #64748b;
  --cs-primary: #36c3ca;
  --cs-dark: #0a0e17;
  --cs-light: #ffffff;
  --cs-muted: #556270;
  --cs-bg-light: #f2f8fa;
  --gold-accent: #d4af37;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--light-bg);
  color: var(--text-main);
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.65;
  width: 100%;
  max-width: 100vw;
}

.h1,
.h2,
.h3,
.h4,
.text-large,
.text-medium,
.product-title,
.blog-title,
.why-title,
.footer-col-title,
.client-name {
  font-family: var(--font-display);
}

img {
  max-width: 100%;
  display: block;
}

section,
.navbar,
.au-wrap,
.wcu-wrap,
.tm-wrap,
.cta-wrap,
.footer-features,
.main-footer {
  width: 100%;
  padding-left: var(--side-gap);
  padding-right: var(--side-gap);
  box-sizing: border-box;
}

.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.bg-fx {
  position: relative;
  isolation: isolate;
}

.bg-fx::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: #fdfdfd;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(5, 22, 42, 0.05) 0px,
    rgba(5, 22, 42, 0.05) 1px,
    transparent 1px,
    transparent 5px,
    rgba(5, 22, 42, 0.028) 5px,
    rgba(5, 22, 42, 0.028) 6px,
    transparent 6px,
    transparent 9px
  );
}

.bg-fx > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  .bg-fx::before {
    background-image: repeating-linear-gradient(
      90deg,
      rgba(5, 22, 42, 0.05) 0px,
      rgba(5, 22, 42, 0.05) 1px,
      transparent 1px,
      transparent 4px,
      rgba(5, 22, 42, 0.028) 4px,
      rgba(5, 22, 42, 0.028) 5px,
      transparent 5px,
      transparent 7px
    );
  }
}

/* Navbar */
.navbar {
  background: #ffffff;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 20px rgba(5, 22, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eef2f9;
}

.logo-container {
  text-decoration: none;
  display: inline-block;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
}

.nav-menu {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #05162a;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  transition:
    color 0.25s ease,
    background 0.25s ease;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: #00829e;
  background: rgba(0, 180, 216, 0.09);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 16px;
  width: calc(100% - 32px);
  height: 2.5px;
  border-radius: 2px;
  background: #00b4d8;
}

.nav-link .chevron {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .chevron,
.nav-item.has-dropdown.open .chevron {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 340px;
  max-width: 90vw;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 18px 45px rgba(5, 22, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  z-index: 999;
}

.nav-item.has-dropdown:hover .dropdown-panel,
.nav-item.has-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-panel::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
}

.dropdown-scroll {
  max-height: 360px;
  overflow-y: auto;
  padding: 12px;
}

.dropdown-scroll::-webkit-scrollbar {
  width: 6px;
}
.dropdown-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.dropdown-scroll::-webkit-scrollbar-thumb {
  background: #c3ddf5;
  border-radius: 10px;
}
.dropdown-scroll::-webkit-scrollbar-thumb:hover {
  background: #00b4d8;
}

.dropdown-item {
  display: block;
  text-decoration: none;
  color: var(--text-main);
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition:
    background 0.2s ease,
    padding-left 0.2s ease;
}

.dropdown-item:hover {
  background: var(--light-bg);
  padding-left: 16px;
  color: #00829e;
}

.enquiry-btn-container {
  display: inline-block;
}

.enquiry-btn {
  background: var(--text-main);
  color: #ffffff;
  padding: 12px 22px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  letter-spacing: 0.2px;
  border-radius: 8px;
  border: 1.5px solid var(--text-main);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.2s ease;
}

.enquiry-btn i {
  color: #00f5d4;
  transition: transform 0.3s ease;
}

.enquiry-btn:hover {
  background: #00b4d8;
  border-color: #00b4d8;
  color: #020b14;
  transform: translateY(-2px);
}

.enquiry-btn:hover i {
  color: #020b14;
  transform: translateX(3px);
}

@media (max-width: 1150px) {
  .nav-menu {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    gap: 12px;
  }
  .navbar-right {
    gap: 14px;
  }
  .enquiry-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
  .enquiry-btn span.btn-label {
    display: none;
  }
  .logo-img {
    height: 42px;
  }
}

/* Hamburger + mobile sidebar (<=1150px, matches nav-menu breakpoint) */
.hamburger-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  background: #ffffff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-main);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hamburger-btn:hover {
  border-color: #00b4d8;
  background: rgba(0, 180, 216, 0.06);
}

.hamburger-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1150px) {
  .hamburger-btn {
    display: flex;
  }
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 11, 20, 0.55);
  backdrop-filter: blur(2px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.sidebar-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 84vw);
  background: #ffffff;
  z-index: 1999;
  box-shadow: -12px 0 40px rgba(5, 22, 42, 0.2);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  flex-direction: column;
  padding: 22px 22px 30px;
}

@media (max-width: 1150px) {
  .mobile-sidebar {
    display: flex;
  }
}

.mobile-sidebar.is-open {
  transform: translateX(0);
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef2f9;
}

.mobile-sidebar-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.mobile-sidebar-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  background: #ffffff;
  color: var(--text-main);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mobile-sidebar-close:hover {
  background: #00b4d8;
  border-color: #00b4d8;
  color: #fff;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  text-decoration: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: #00829e;
  background: rgba(0, 180, 216, 0.09);
}

.mobile-nav-item.has-mobile-dropdown .chevron {
  transition: transform 0.3s ease;
  font-size: 11px;
}
.mobile-nav-item.has-mobile-dropdown.open .chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  border-left: 2px solid rgba(0, 180, 216, 0.25);
  margin-left: 10px;
}

.mobile-nav-item.has-mobile-dropdown.open .mobile-dropdown-panel {
  max-height: 500px;
}

.mobile-dropdown-item {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 8px;
  border-radius: 6px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.mobile-dropdown-item:hover {
  color: #00829e;
  background: var(--light-bg);
}

.mobile-sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--text-main);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 22px;
  transition: background 0.3s ease;
}

.mobile-sidebar-cta:hover {
  background: #00b4d8;
  color: #020b14;
}

.mobile-sidebar-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #eef2f9;
  margin-top: auto;
}

.mobile-sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.mobile-sidebar-contact-item i {
  color: #00b4d8;
  width: 16px;
}

body.sidebar-open {
  overflow: hidden;
}

/* Hero slider */
.hero-section {
  position: relative;
  width: 100%;
  aspect-ratio: 2.3 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #020b14 0%, #05162a 100%);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide .hero-fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-caption {
  position: absolute;
  left: var(--side-gap);
  bottom: 64px;
  z-index: 5;
  color: #fff;
  max-width: 560px;
}

.hero-caption .hero-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 13px;
  color: #00f5d4;
  margin-bottom: 10px;
}

.hero-caption .h1 {
  font-size: clamp(22px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

@media (max-width: 700px) {
  .hero-section {
    aspect-ratio: 2.3 / 1;
    background: #ffffff;
  }
  .hero-slide .hero-fg {
    object-fit: contain;
    background: #ffffff;
  }
  .hero-caption {
    bottom: 10px;
    max-width: 90%;
  }
  .hero-caption .h1 {
    font-size: clamp(14px, 4vw, 20px);
  }
  .hero-caption .hero-eyebrow {
    font-size: 10px;
    margin-bottom: 4px;
  }
}

@media (max-width: 420px) {
  .hero-section {
    aspect-ratio: 1.6 / 1;
  }
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #00f5d4;
  transform: scale(1.3);
}

/* Shared section helpers */
.section {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header .subtitle {
  color: #00b4d8;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
  font-family: var(--font-display);
}

.section-header .text-large {
  color: var(--text-main);
  text-shadow: none;
}

.text-large {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
}
.text-medium {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
}

.btn-primary {
  background: #00b4d8;
  color: #020b14;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
  background: #00f5d4;
  transform: translateY(-2px);
}

/* Stats section */
.stats-section {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 20px;
  text-align: center;
  background-color: var(--light-bg);
  color: #333;
  font-family: var(--font-body);
}

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 55px;
  position: relative;
  width: 100%;
}

.stat-card-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-circle {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
  padding: 15px;
}

.stat-circle:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.card-1 .stat-circle,
.card-3 .stat-circle,
.card-5 .stat-circle {
  background: #36c3ca;
  color: #ffffff;
}
.card-2 .stat-circle,
.card-4 .stat-circle {
  background: #000000;
  color: #36c3ca;
}

.dashed-ring {
  position: absolute;
  top: -28px;
  left: -28px;
  right: -28px;
  bottom: -28px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.dashed-ring svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 2.2px;
  stroke-linecap: round;
  stroke-dasharray: 4.5 5.5;
}

.card-1 .dashed-ring svg,
.card-3 .dashed-ring svg,
.card-5 .dashed-ring svg {
  stroke: #36c3ca;
}
.card-2 .dashed-ring svg,
.card-4 .dashed-ring svg {
  stroke: #000000;
}

@keyframes smoothRotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.stat-card-wrapper:hover .dashed-ring {
  animation: smoothRotateClockwise 8s linear infinite;
}

.stat-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  fill: currentColor;
}
.stat-number {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.stat-label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 1150px) {
  .stats-container {
    justify-content: center;
    gap: 55px;
  }
}

@media (max-width: 480px) {
  .stat-circle {
    width: 168px;
    height: 168px;
  }
}

@media (max-width: 360px) {
  .stat-circle {
    width: 140px;
    height: 140px;
    padding: 10px;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .stat-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 700px) {
  .stats-section {
    padding-top: 40px;
  }
  .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 20px 20px;
    padding: 6px 10px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .stats-container::-webkit-scrollbar {
    display: none;
  }
  .stat-card-wrapper {
    flex-shrink: 0;
    scroll-snap-align: center;
    width: auto;
  }
  .stat-card-wrapper:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .stat-circle {
    width: 120px;
    height: 120px;
    padding: 8px;
  }
  .dashed-ring {
    top: -14px;
    left: -14px;
    right: -14px;
    bottom: -14px;
  }
  .stat-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
  }
  .stat-number {
    font-size: 1.15rem;
    margin-bottom: 2px;
  }
  .stat-label {
    font-size: 0.62rem;
    line-height: 1.25;
  }
}

/* About us section */
.au-wrap {
  width: 100%;
  padding-top: 90px;
  padding-bottom: 100px;
  background: var(--light-bg);
}

.au-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: block;
}

.au-inner::after {
  content: "";
  display: table;
  clear: both;
}

.au-image-container {
  width: 46%;
  height: 460px;
  position: relative;
  float: left;
  margin: 0 60px 20px 0;
}

.au-img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(5, 22, 42, 0.12);
  position: absolute;
}

.au-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.au-main-img {
  top: 0;
  left: 0;
  width: 66%;
  height: 360px;
  z-index: 1;
}

.au-sub-img-2 {
  bottom: 0;
  right: 15px;
  width: 52%;
  height: 190px;
  z-index: 3;
  border: 4px solid var(--light-bg);
}

.au-stats-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--teal-accent);
  color: #ffffff;
  padding: 16px 22px;
  border-radius: 12px;
  z-index: 4;
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
}

.au-stats-badge .au-stats-number {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  font-family: var(--font-display);
}

.au-stats-badge p {
  font-size: 10px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.au-eyebrow {
  color: #00b4d8;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
  font-family: var(--font-display);
}

.au-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 18px;
}

.au-text {
  font-size: clamp(14px, 1.05vw, 16.5px);
  color: var(--text-muted);
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.au-text p {
  margin-bottom: 14px;
}
.au-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 850px) {
  .au-inner {
    display: block;
  }
  .au-image-container {
    width: 100%;
    height: 360px;
    float: none;
    margin: 0 0 30px;
  }
  .au-text {
    text-align: left;
  }
  .au-main-img {
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
  }
  .au-sub-img-2 {
    bottom: 0;
    right: 0;
    left: auto;
    width: 48%;
    height: 150px;
    border-width: 4px;
  }
  .au-stats-badge {
    top: 14px;
    left: 14px;
    bottom: auto;
    padding: 10px 16px;
  }
  .au-stats-badge .au-stats-number {
    font-size: 19px;
  }
  .au-stats-badge p {
    font-size: 9px;
  }
}

@media (max-width: 700px) {
  .au-image-container {
    height: 330px;
  }
  .au-stats-badge {
    top: auto;
    bottom: 20px;
    left: 14px;
    padding: 12px 18px;
  }
  .au-stats-badge .au-stats-number {
    font-size: 20px;
  }
  .au-stats-badge p {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .au-image-container {
    height: 300px;
  }
  .au-main-img {
    height: 210px;
  }
  .au-sub-img-2 {
    height: 120px;
    width: 52%;
  }
}

/* Products gallery section */
.pg-products-section {
  width: 100%;
  padding-top: 90px;
  padding-bottom: 60px;
  font-family: var(--font-body);
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pg-bg-decor {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 8% 12%,
      rgba(54, 195, 202, 0.16) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 94% 8%,
      rgba(0, 90, 130, 0.2) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 92%,
      rgba(2, 11, 20, 0.1) 0%,
      transparent 48%
    ),
    radial-gradient(
      circle at 20% 85%,
      rgba(5, 22, 42, 0.07) 0%,
      transparent 40%
    ),
    linear-gradient(180deg, #f2f8fa 0%, #ffffff 55%, #ffffff 100%);
}

.pg-bg-decor::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(5, 22, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 22, 42, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    #000 0%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    #000 0%,
    transparent 75%
  );
}

.pg-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(54, 195, 202, 0.28);
  pointer-events: none;
}

.pg-bg-ring.r1 {
  width: 260px;
  height: 260px;
  top: -70px;
  right: 6%;
  border-color: rgba(0, 90, 130, 0.32);
}
.pg-bg-ring.r2 {
  width: 160px;
  height: 160px;
  bottom: 6%;
  left: 3%;
  border-color: rgba(0, 11, 20, 0.14);
}

@media (max-width: 700px) {
  .pg-bg-ring {
    display: none;
  }
}

.pg-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.pg-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.pg-section-header .h4 {
  color: var(--pg-primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 12px;
  font-weight: 800;
  font-family: var(--font-display);
}

.pg-section-header .h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--pg-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: var(--font-display);
}

.pg-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

@media (max-width: 968px) {
  .pg-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pg-mobile-nav {
  display: none;
}

@media (max-width: 650px) {
  .pg-products-section {
    padding-top: 60px;
  }
  .pg-section-header {
    margin-bottom: 40px;
  }
  .pg-products-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    overflow-x: auto;
    gap: 20px;
    padding: 4px 4px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pg-products-grid::-webkit-scrollbar {
    display: none;
  }
  .product-item {
    scroll-snap-align: center;
  }
  .pg-mobile-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 26px;
  }
  .pg-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--pg-dark);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(10, 14, 23, 0.18);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pg-nav-btn:hover {
    background: var(--pg-primary);
    color: var(--pg-dark);
  }
  .view-all-container {
    margin-top: 26px;
  }
}

.product-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--pg-light);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(10, 14, 23, 0.06);
  box-shadow: 0 14px 34px rgba(10, 14, 23, 0.07);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
}

.product-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pg-primary), #00b4d8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 55px -10px rgba(10, 14, 23, 0.22);
  border-color: rgba(54, 195, 202, 0.35);
}

.product-item:hover::before {
  transform: scaleX(1);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(160deg, #f4fbfc 0%, #e9f6f7 100%);
}

.product-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(54, 195, 202, 0.16) 0px,
    rgba(54, 195, 202, 0.16) 1px,
    transparent 1px,
    transparent 6px
  );
  -webkit-mask-image: radial-gradient(
    circle at 100% 0%,
    #000 0%,
    transparent 65%
  );
  mask-image: radial-gradient(circle at 100% 0%, #000 0%, transparent 65%);
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-item:hover .product-image-wrapper img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(10, 14, 23, 0.85);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
}

.product-detail-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
  text-align: left;
  border-top: 1px solid rgba(10, 14, 23, 0.06);
}

.product-detail-card .h3 {
  font-size: 18px;
  color: var(--pg-dark);
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.2px;
  font-family: var(--font-display);
}

.product-detail-card .description {
  font-size: 13.5px;
  color: var(--pg-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-specs span {
  font-size: 11.5px;
  font-weight: 700;
  color: #00829e;
  background: rgba(54, 195, 202, 0.1);
  border: 1px solid rgba(54, 195, 202, 0.25);
  padding: 5px 11px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-btn {
  background-color: var(--pg-dark);
  color: var(--pg-light);
  border: none;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-btn:hover {
  background-color: var(--pg-primary);
  color: var(--pg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--pg-primary-glow);
}

.card-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(10, 14, 23, 0.12);
  background: #fff;
  color: var(--pg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.card-icon-btn:hover {
  background: var(--pg-primary);
  border-color: var(--pg-primary);
  color: #fff;
  transform: translateY(-2px) rotate(8deg);
}

.view-all-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  position: relative;
  z-index: 5;
}

.view-all-btn {
  background-color: var(--pg-dark);
  color: var(--pg-light);
  padding: 16px 44px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 35px;
  text-decoration: none;
  border: 2px solid var(--pg-dark);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(10, 14, 23, 0.15);
  font-family: var(--font-display);
}

.view-all-btn:hover {
  background-color: var(--pg-primary);
  border-color: var(--pg-primary);
  color: var(--pg-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--pg-primary-glow);
}

/* Why us section: staggered layout + video background */
.wcu-wrap {
  position: relative;
  font-family: var(--font-body, sans-serif);
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #1a1a1a;
}

.wcu-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.wcu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(55, 51, 104, 0.247),
    rgba(54, 45, 105, 0.85)
  );
  z-index: 1;
}

.wcu-section {
  width: 100%;
  max-width: var(--container-max);
  position: relative;
  z-index: 2;
}

.wcu-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.wcu-section .section-header .subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #36c3ca;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.wcu-section .section-header .text-large {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  margin-top: 8px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.wcu-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1024/440;
  container-type: inline-size;
  container-name: wcu;
}

.wcu-glow {
  position: absolute;
  top: -10%;
  right: -6%;
  width: 30%;
  aspect-ratio: 1/1;
  background: radial-gradient(
    circle,
    rgba(54, 195, 202, 0.2),
    rgba(54, 195, 202, 0) 70%
  );
  pointer-events: none;
}
.wcu-glow.left {
  right: auto;
  left: -6%;
}

.wcu-card {
  position: absolute;
  width: 22.5%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1.6cqw 2.6cqw -1.1cqw rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(46px);
  animation: riseIn 0.65s cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
  padding-bottom: 30px;
}

.wcu-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 2.5cqw 4cqw -1cqw rgba(0, 0, 0, 0.4);
}

.wcu-card.tier-a {
  top: 18%;
  height: 68%;
}
.wcu-card.tier-b {
  top: 6%;
  height: 72%;
}

.wcu-card.c1 {
  left: 0.5%;
  animation-delay: 0.1s;
}
.wcu-card.c2 {
  left: 25.5%;
  animation-delay: 0.25s;
}
.wcu-card.c3 {
  left: 50.5%;
  animation-delay: 0.4s;
}
.wcu-card.c4 {
  left: 75.5%;
  animation-delay: 0.55s;
}

.t-header {
  height: 140px;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.wcu-card.c1 .t-header {
  background-color: #36c3ca;
}
.wcu-card.c2 .t-header {
  background-color: #383a45;
}
.wcu-card.c3 .t-header {
  background-color: #36c3ca;
}
.wcu-card.c4 .t-header {
  background-color: #383a45;
}

.wcu-card .t-avatar {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.2) 15%, transparent 16%),
    radial-gradient(rgba(255, 255, 255, 0.2) 15%, transparent 16%);
  background-size: 8px 8px;
  background-position:
    0 0,
    4px 4px;
}

.t-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-top-left-radius: 100% 70px;
}

.wcu-card.c1 .t-header::before,
.wcu-card.c3 .t-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: #269a9e;
  border-top-left-radius: 120% 100px;
  z-index: 0;
}

.wcu-card.c2 .t-header::before,
.wcu-card.c4 .t-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: #23252c;
  border-top-left-radius: 120% 100px;
  z-index: 0;
}

.t-quote-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}

.t-avatar-container {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 78px;
  background: #ffffff;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-avatar {
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #111;
  font-family: var(--font-display, sans-serif);
}

.wcu-body {
  padding: 25px 18px 20px;
  text-align: center;
}

.wcu-headline {
  font-size: clamp(11px, 1.3cqw, 14px);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 8px;
  font-family: var(--font-display, sans-serif);
}

.wcu-text {
  font-size: clamp(12px, 1.3cqw, 14px);
  line-height: 1.5;
  color: #555;
  font-weight: 500;
}

.wcu-underline {
  width: 0;
  height: 3px;
  background: #36c3ca;
  border-radius: 2px;
  margin: 0 auto 10px auto;
  animation: growLine 0.6s ease forwards;
  animation-delay: inherit;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes growLine {
  to {
    width: 35px;
  }
}

@media (max-width: 900px) {
  .wcu-canvas {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    container-type: normal;
  }
  .wcu-glow {
    display: none;
  }
  .wcu-card {
    position: static;
    width: 100%;
    height: auto;
    min-height: 240px;
  }
}

/* Testimonials section */
.tm-wrap {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  font-family: var(--font-body);
}

.testimonial-section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.slider-container {
  position: relative;
  overflow: visible;
  padding: 20px 0;
  margin: 0 35px;
}

.testimonial-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}

.tm-card {
  min-width: calc(33.333% - 20px);
  background-color: #f1f3f7;
  border-radius: 6px;
  padding: 40px 30px 35px 30px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.tm-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 90px;
  height: 90px;
  border: 8px solid rgba(210, 215, 222, 0.4);
  border-radius: 50%;
  pointer-events: none;
}

.tm-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  border: 8px solid rgba(210, 215, 222, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.bg-watermark {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 72px;
  font-weight: 800;
  color: rgba(215, 220, 228, 0.6);
  letter-spacing: 4px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.top-quote-icon {
  position: absolute;
  top: 25px;
  left: 30px;
  font-size: 42px;
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 700;
  z-index: 2;
  color: #36c3ca;
}

.profile-container {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: -65px;
  z-index: 4;
  position: relative;
}

.profile-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.message-bubble {
  width: 100%;
  border-radius: 32px;
  padding: 80px 25px 32px 25px;
  position: relative;
  z-index: 1;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.card-dark .message-bubble {
  background-color: #383a45;
  color: #ffffff;
}
.card-dark .message-bubble::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 18px 18px 0;
  border-style: solid;
  border-color: #383a45 transparent;
  display: block;
  width: 0;
}

.card-teal .message-bubble {
  background-color: #36c3ca;
  color: #ffffff;
}
.card-teal .message-bubble::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 18px 18px 0;
  border-style: solid;
  border-color: #36c3ca transparent;
  display: block;
  width: 0;
}

.message-bubble p {
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 400;
}

.mini-quote {
  font-size: 13px;
  font-weight: bold;
  margin: 0 2px;
  color: #36c3ca;
}
.card-teal .mini-quote {
  color: #ffffff;
  opacity: 0.9;
}

.author-details {
  margin-top: 30px;
  text-align: center;
  z-index: 2;
}
.author-details .h3 {
  font-size: 17px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.5px;
  font-family: var(--font-display);
}
.author-details span {
  font-size: 11.5px;
  font-weight: 600;
  color: #36c3ca;
  letter-spacing: 1px;
  display: block;
  margin-top: 2px;
}

.stars {
  color: #36c3ca;
  font-size: 11px;
  margin-top: 6px;
  letter-spacing: 2px;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease;
  z-index: 20;
}

.nav-btn:hover {
  background-color: #36c3ca;
  color: #fff;
}
.prev-btn {
  left: -25px;
}
.next-btn {
  right: -25px;
}

@media (max-width: 992px) {
  .tm-card {
    min-width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .tm-card {
    min-width: 100%;
  }
  .slider-container {
    margin: 0 15px;
  }
  .prev-btn {
    left: -15px;
  }
  .next-btn {
    right: -15px;
  }
}

/* Contact section */
.cta-wrap {
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
  background-color: #f8fafc;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-bg-decor {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 6% 8%,
      rgba(54, 195, 202, 0.16) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 96% 14%,
      rgba(0, 90, 130, 0.14) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 90% 95%,
      rgba(2, 11, 20, 0.08) 0%,
      transparent 46%
    ),
    radial-gradient(
      circle at 10% 92%,
      rgba(5, 22, 42, 0.05) 0%,
      transparent 38%
    );
}

.cta-bg-decor::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(5, 22, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 22, 42, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(
    ellipse 65% 55% at 50% 0%,
    #000 0%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 65% 55% at 50% 0%,
    #000 0%,
    transparent 75%
  );
}

.cta-wrap .section-header {
  margin-bottom: 50px;
}

.cta-inner {
  width: 100%;
  max-width: 1240px;
}

.contact-grid-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  background: var(--sonar-dark);
  border-radius: 36px;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid-wrapper::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(54, 195, 202, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.contact-info-panel {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  z-index: 2;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(54, 195, 202, 0.12);
  color: var(--sonar-cyan);
  border: 1px solid rgba(54, 195, 202, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.panel-header .h2 {
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.panel-header p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 35px;
}

.bento-cards-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bento-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 20px;
  border-radius: 18px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
  background: rgba(54, 195, 202, 0.08);
  border-color: rgba(54, 195, 202, 0.4);
  transform: translateY(-3px);
}

.bento-icon {
  width: 44px;
  height: 44px;
  background: var(--sonar-cyan);
  color: var(--sonar-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--sonar-cyan-glow);
}

.bento-label {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bento-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #f1f5f9;
}

.panel-footer-badge {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-cyan {
  color: var(--sonar-cyan);
}

.contact-form-panel {
  background: #ffffff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 36px;
  border-bottom-left-radius: 36px;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.05);
}

.form-panel-header {
  margin-bottom: 30px;
}

.form-panel-header .h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--sonar-dark);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.form-panel-header p {
  font-size: 14px;
  color: var(--sonar-muted);
}

.sonar-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.input-box {
  flex: 1;
  position: relative;
}

.input-box.full {
  width: 100%;
}

.input-box label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 13px;
  color: var(--sonar-muted);
  font-weight: 600;
  pointer-events: none;
  transition: all 0.2s ease-out;
  background-color: #ffffff;
  padding: 0 6px;
}

.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--sonar-dark);
  background-color: #f8fafc;
  transition: all 0.3s ease;
}

.input-box textarea {
  resize: none;
  height: 110px;
}

.input-box select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
  border-color: var(--sonar-cyan);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px var(--sonar-cyan-glow);
}

.input-box input:focus + label,
.input-box select:focus + label,
.input-box textarea:focus + label,
.input-box input:not(:placeholder-shown) + label,
.input-box select:not(:placeholder-shown) + label,
.input-box textarea:not(:placeholder-shown) + label {
  top: -9px;
  font-size: 11px;
  color: var(--sonar-cyan);
  font-weight: 700;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
  color: transparent;
}

.premium-submit-btn {
  background-color: var(--sonar-cyan);
  color: var(--sonar-dark);
  border: none;
  width: 100%;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px var(--sonar-cyan-glow);
  margin-top: 10px;
}

.btn-icon-wrap {
  width: 32px;
  height: 32px;
  background: rgba(15, 23, 42, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.premium-submit-btn:hover {
  background-color: var(--sonar-cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(54, 195, 202, 0.4);
}

.premium-submit-btn:hover .btn-icon-wrap {
  transform: translateX(4px);
}

.premium-submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .contact-grid-wrapper {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .contact-info-panel {
    padding: 40px;
  }
  .contact-form-panel {
    padding: 40px;
    border-radius: 0 0 24px 24px;
  }
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .contact-info-panel,
  .contact-form-panel {
    padding: 25px;
  }
  .bento-icon {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .panel-header .h2 {
    font-size: 24px;
  }
  .form-panel-header .h3 {
    font-size: 21px;
  }
}

@media (max-width: 400px) {
  .contact-info-panel,
  .contact-form-panel {
    padding: 18px;
  }
  .cta-wrap {
    padding: 60px 12px;
  }
}

/* Footer */
.footer-features {
  background: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid var(--border-color);
}

.footer-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-feature-item i {
  font-size: 34px;
  color: #00b4d8;
}
.footer-feature-title {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-main);
  font-family: var(--font-display);
}

.main-footer {
  background: linear-gradient(135deg, #020b14 0%, #05162a 100%);
  color: #ffffff;
  padding-top: 70px;
  padding-bottom: 30px;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col .footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 20px;
}
.footer-desc {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #00b4d8;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: "\f30b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: #00b4d8;
}
.footer-links a:hover {
  color: #00f5d4;
  padding-left: 5px;
}

.footer-links-scroll {
  max-height: 190px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: #00b4d8 rgba(255, 255, 255, 0.08);
}

.footer-links-scroll li {
  flex-shrink: 0;
}

.footer-links-scroll a {
  font-size: 15px;
}

.footer-links-scroll::-webkit-scrollbar {
  width: 6px;
}
.footer-links-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.footer-links-scroll::-webkit-scrollbar-thumb {
  background: #00b4d8;
  border-radius: 10px;
}
.footer-links-scroll::-webkit-scrollbar-thumb:hover {
  background: #00f5d4;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
  font-size: 16px;
}
.footer-contact-item i {
  color: #00b4d8;
  margin-top: 4px;
  width: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 14px;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}
.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
  color: #00f5d4;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .footer-features {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 22px;
    padding: 24px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .footer-features::-webkit-scrollbar {
    display: none;
  }
  .footer-feature-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 78px;
  }
  .footer-feature-item i {
    font-size: 22px;
  }
  .footer-feature-title {
    font-size: 11px;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .footer-feature-item {
    min-width: 68px;
  }
  .footer-feature-title {
    font-size: 10px;
  }
  .footer-feature-item i {
    font-size: 19px;
  }
}

/* Mobile responsive tweaks: smaller headings, tighter section spacing */
@media (max-width: 700px) {
  .text-large {
    font-size: clamp(1.4rem, 4.5vw, 1.8rem) !important;
  }
  .text-medium {
    font-size: clamp(1.1rem, 3.5vw, 1.5rem) !important;
  }
  .section-header .subtitle {
    font-size: 11px !important;
  }
  .pg-section-header .h2 {
    font-size: clamp(1.3rem, 4vw, 1.7rem) !important;
  }
  .wcu-section .section-header .text-large {
    font-size: clamp(1.3rem, 4vw, 1.7rem) !important;
  }
  .panel-header .h2 {
    font-size: clamp(20px, 4.5vw, 26px) !important;
  }
  .form-panel-header .h3 {
    font-size: 20px !important;
  }
  .footer-col-title {
    font-size: 17px !important;
  }

  .section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .au-wrap {
    padding-top: 50px !important;
    padding-bottom: 60px !important;
  }
  .pg-products-section {
    padding-top: 50px !important;
    padding-bottom: 40px !important;
  }
  .wcu-wrap {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .tm-wrap {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .cta-wrap {
    padding: 60px 16px !important;
  }
  .footer-features {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .main-footer {
    padding-top: 40px !important;
  }
  .section-header {
    margin-bottom: 35px !important;
  }
  .pg-section-header {
    margin-bottom: 35px !important;
  }
  .wcu-section .section-header {
    margin-bottom: 30px !important;
  }
}

/* Breadcrumb / hero banner section */
.breadcrumb-section {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.breadcrumb-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 9, 12, 0.65);
  z-index: 2;
}

.breadcrumb-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  padding: 0 20px;
}

.breadcrumb-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb-nav {
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-nav a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: var(--gold-accent);
}

.breadcrumb-nav span {
  margin: 0 8px;
  color: #cebcbc;
}

/* Blog cards slider (scoped to .blog-section only; no longer touches
   the global body element) */
.blog-section {
  padding: 90px 0 60px 0;
  background-color: #f3f3ee;
  position: relative;
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.slider-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 50px 0 90px 60px;
  margin-left: 0;
  cursor: grab;
  touch-action: none;
}

.slider-outer:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
  transition: none;
}

.slider-track.auto-scroll {
  animation: infiniteScroll 30s linear infinite;
}

.slider-track.paused {
  animation-play-state: paused !important;
}

.slider-track.dragging {
  animation-play-state: paused !important;
  pointer-events: none;
}

.slider-track .blog-card-wrapper {
  pointer-events: auto;
}

/* NOTE: this loop assumes 6 unique cards duplicated once (12 total) so the
   -330px*6 - 30px*6 offset lines up exactly with the start of the first
   duplicate set. If the number of blog cards changes, update this value
   (or the JS) to match, otherwise the loop will visibly jump/stutter. */
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-330px * 6 - 30px * 6));
  }
}

.blog-card-wrapper {
  perspective: 1200px;
  flex-shrink: 0;
}

.blog-card {
  width: 330px;
  height: 430px;
  background: #ffffff;
  padding: 22px;
  border-radius: 2px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.5s ease;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  z-index: 1;
  box-sizing: border-box;
  will-change: transform;
  transform-style: preserve-3d;
}

.blog-card-wrapper:hover .blog-card {
  transform: translateY(-35px) rotateX(2deg) rotateY(1deg);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(54, 195, 202, 0.3);
  z-index: 99;
}

.image-box {
  width: 330px;
  height: 185px;
  min-height: 185px;
  max-height: 185px;
  overflow: hidden;
  border-radius: 1px;
  margin: -22px -22px 18px -22px;
  flex-shrink: 0;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card-wrapper:hover .image-box img {
  transform: scale(1.05);
}

.blog-meta {
  font-size: 11.5px;
  color: #888888;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.blog-card-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
  min-height: 54px;
}

.blog-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 0 auto;
  height: 78px;
  margin-bottom: 12px;
}

.card-footer {
  margin-top: auto;
  flex-shrink: 0;
}

.read-more {
  font-size: 12.5px;
  color: #000000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #36c3ca;
}

.read-more span {
  transition: transform 0.3s ease;
}

.read-more:hover span {
  transform: translateX(4px);
}

.bottom-action {
  margin-top: 10px;
}

/* Product about-us section */
.prod-about-wrap {
  width: 100%;
  padding-top: 90px;
  padding-bottom: 100px;
  background: var(--light-bg);
}

.prod-about-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: block;
}

.prod-about-inner::after {
  content: "";
  display: table;
  clear: both;
}

.prod-about-image-container {
  width: 500px;
  position: relative;
  float: right;
  margin: 0 0 20px 60px;
  z-index: 2;
  background: transparent;
  padding: 0;
}

.prod-about-img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(5, 22, 42, 0.12);
  width: 500px;
  height: 500px;
  background: #e6f7fa;
}

.prod-about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-about-social-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(5, 22, 42, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.12);
}

.prod-about-share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main, #333);
  margin-right: 4px;
  font-family: var(--font-display, sans-serif);
  letter-spacing: 0.5px;
}

.prod-about-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.prod-about-share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.prod-about-whatsapp {
  background: #25d366;
}
.prod-about-facebook {
  background: #1877f2;
}
.prod-about-twitter {
  background: #000000;
}
.prod-about-mail {
  background: #ea4335;
}
.prod-about-linkedin {
  background: #0a66c2;
}

.prod-about-eyebrow {
  color: #00b4d8;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
  font-family: var(--font-display);
}

.prod-about-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 18px;
}

.prod-about-text {
  font-size: clamp(14px, 1.05vw, 16.5px);
  color: var(--text-muted);
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  margin-bottom: 30px;
}

.prod-about-text p {
  margin-bottom: 14px;
}
.prod-about-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 850px) {
  .prod-about-inner {
    display: block;
  }
  .prod-about-image-container {
    width: 100%;
    float: none;
    margin: 0 0 30px 0;
  }
  .prod-about-img-box {
    width: 100%;
    height: 360px;
  }
  .prod-about-text {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .prod-about-img-box {
    height: 280px;
  }
  .prod-about-social-share {
    padding: 8px 12px;
    gap: 6px;
    border-radius: 40px;
  }
  .prod-about-share-btn {
    width: 32px;
    height: 32px;
  }
  .prod-about-share-label {
    font-size: 11px;
  }
}

/* Custom slider products gallery */
.cs-gallery-section {
  width: 100%;
  padding: 90px 0 60px;
  font-family: var(--font-body, system-ui, sans-serif);
  background: var(--cs-bg-light);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cs-bg-effects {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 10% 15%,
      rgba(54, 195, 202, 0.15) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(0, 90, 130, 0.15) 0%,
      transparent 45%
    ),
    linear-gradient(180deg, #f2f8fa 0%, #ffffff 100%);
}

.cs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.cs-header-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.cs-subtitle {
  color: var(--cs-primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 12px;
  font-weight: 800;
  font-family: var(--font-display, inherit);
}

.cs-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--cs-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: var(--font-display, inherit);
}

.cs-slider-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.cs-slider-track-wrap {
  width: 100%;
  overflow: hidden;
  padding: 10px 4px 25px;
  margin: -10px -4px -25px;
}

.cs-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.cs-card-item {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cs-light);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(10, 14, 23, 0.06);
  box-shadow: 0 14px 34px rgba(10, 14, 23, 0.07);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
}

.cs-card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cs-primary), #00b4d8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.cs-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 55px -10px rgba(10, 14, 23, 0.22);
  border-color: rgba(54, 195, 202, 0.35);
}

.cs-card-item:hover::before {
  transform: scaleX(1);
}

.cs-img-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(160deg, #f4fbfc 0%, #e9f6f7 100%);
}

.cs-img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(54, 195, 202, 0.16) 0px,
    rgba(54, 195, 202, 0.16) 1px,
    transparent 1px,
    transparent 6px
  );
  -webkit-mask-image: radial-gradient(
    circle at 100% 0%,
    #000 0%,
    transparent 65%
  );
  mask-image: radial-gradient(circle at 100% 0%, #000 0%, transparent 65%);
}

.cs-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-card-item:hover .cs-img-container img {
  transform: scale(1.08);
}

.cs-content-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
  text-align: left;
  border-top: 1px solid rgba(10, 14, 23, 0.06);
}

.cs-card-title {
  font-size: 18px;
  color: var(--cs-dark);
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.2px;
  font-family: var(--font-display, inherit);
}

.cs-card-desc {
  font-size: 13.5px;
  color: var(--cs-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.cs-card-action {
  display: flex;
  align-items: center;
}

.cs-action-btn {
  background-color: var(--cs-dark);
  color: var(--cs-light);
  border: none;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cs-action-btn:hover {
  background-color: var(--cs-primary);
  color: var(--cs-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(54, 195, 202, 0.4);
}

.cs-slider-control {
  background: var(--cs-dark);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(10, 14, 23, 0.15);
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.cs-slider-control:hover {
  background: var(--cs-primary);
  color: var(--cs-dark);
  transform: scale(1.08);
}

.cs-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.cs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(10, 14, 23, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.cs-dot.active {
  background: var(--cs-primary);
  width: 28px;
  border-radius: 5px;
}

.cs-footer-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cs-view-all-btn {
  background-color: var(--cs-dark);
  color: var(--cs-light);
  padding: 16px 44px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 35px;
  text-decoration: none;
  border: 2px solid var(--cs-dark);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(10, 14, 23, 0.15);
  font-family: var(--font-display, inherit);
}

.cs-view-all-btn:hover {
  background-color: var(--cs-primary);
  border-color: var(--cs-primary);
  color: var(--cs-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(54, 195, 202, 0.4);
}

@media (max-width: 1024px) {
  .cs-card-item {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .cs-slider-control {
    display: none;
  }
  .cs-card-item {
    flex: 0 0 85%;
  }
  .cs-slider-track {
    gap: 16px;
  }
}

/* Marketplace page category buttons */
.cat-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px 20px;
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 150px;
  margin-top: 50px;
}

.cat-row {
  display: flex;
  gap: 14px;
  width: 100%;
}

.cat-top-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
}

.cat-small-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
}

@media (max-width: 1024px) {
  .cat-small-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cat-top-wrap,
  .cat-small-wrap {
    grid-template-columns: 1fr;
  }
}

.cat-btn {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  background-size: 200% 100%;
  background-position: left;
  transition:
    background-position 0.5s ease,
    color 0.4s ease,
    box-shadow 0.3s ease;
}

.cat-btn.top-btn {
  width: 100%;
  color: #ffffff;
  background-image: linear-gradient(
    90deg,
    #000000 0%,
    #000000 40%,
    #36c3ca 100%
  );
}
.cat-btn.top-btn:hover {
  background-position: right;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(54, 195, 202, 0.4);
}

.cat-btn.full {
  width: 100%;
  color: #ffffff;
  background-image: linear-gradient(
    90deg,
    #36c3ca 0%,
    #36c3ca 40%,
    #000000 100%
  );
}
.cat-btn.full:hover {
  background-position: right;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.cat-btn.small {
  width: 100%;
  color: #ffffff;
  background-image: linear-gradient(
    90deg,
    #000000 0%,
    #000000 40%,
    #36c3ca 100%
  );
}
.cat-btn.small:hover {
  background-position: right;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(54, 195, 202, 0.4);
}
