/* ============================================================
   0. GLOBAL RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  --navbar-h: 72px;
}

body {
  background-color: #fffdfd;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: var(--navbar-h);
  /* Pushes content down so the fixed navbar doesn't cover it.
     Uses the JS-synced variable instead of a hard-coded value so
     it always matches the navbar's real height at any breakpoint. */
}

@media (max-width: 960px) {
  body {
    padding-top: var(--navbar-h);
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   1. NAVBAR
   ============================================================ */
.navbar {
  background-color: #000000;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  gap: 20px;
  flex-wrap: wrap;

  /* CHANGED FROM STICKY TO FIXED */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 960px) {
  .navbar {
    display: flex !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    min-height: 72px;
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #000000;
    z-index: 10000;
  }

  .ns-sidebar {
    top: 0;
    padding-top: 8px;
  }

  .nav-left-group {
    display: flex !important;
    align-items: center;
    flex: 1;
  }

  .logo-container {
    height: 42px;
  }

  .navbar .nav-links {
    display: none !important;
    position: static !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    padding: 0 !important;
  }
}

/* Hamburger toggle – hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-left-group {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.logo-container {
  display: block;
  height: 50px;
}

.logo-container img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.close-indicator {
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  cursor: default;
  user-select: none;
  align-self: flex-start;
  margin-top: 5px;
}

/* Nav links wrapper alignment */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
  /* REQUIRED: For dropdown anchoring */
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 10px 0;
  /* Expanded hover trigger surface area */
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #3ca9df;
}

.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #ffffff;
  display: inline-block;
}

.nav-links li a:hover .caret {
  border-top-color: #3ca9df;
}


/* ════════════════════════════════════════════════════════════
   EXACT IMAGE MATCH: TWO-TIER MEGA DROPDOWN SYSTEM
════════════════════════════════════════════════════════════ */

/* Simple Dropdown Fallback (e.g., Technology link) */
.simple-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000000;
  min-width: 180px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.simple-dropdown li a {
  padding: 12px 18px;
  font-size: 14px;
  display: block;
}

.simple-dropdown li a:hover {
  background-color: #1f80ac;
  color: #ffffff;
}

/* TIER 1: Brand Sidebar (Airmasters, Navco, ACE Flow column) */
.dropdown-tier-1 {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000000;
  min-width: 160px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 2000;
}

/* Hovering trigger display logic */
.has-dropdown:hover .dropdown-tier-1,
.has-dropdown:hover .simple-dropdown {
  display: block;
}

.dropdown-tier-1 li {
  width: 100%;
  position: relative;
}

/* Brand Links Layout styling */
.dropdown-tier-1 li a.brand-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
}

/* Custom side pointing arrow symbol styling for brands column */
.sub-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid rgba(255, 255, 255, 0.6);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* IMAGE MATCH: Sky blue active/highlight color tint */
.dropdown-tier-1 li.active-brand>a.brand-link,
.dropdown-tier-1 li.has-submenu:hover>a.brand-link {
  background-color: #1f80ac;
  /* Exact blue profile matching image_a0715d.jpg */
  color: #ffffff;
}

.dropdown-tier-1 li.active-brand .sub-caret,
.dropdown-tier-1 li.has-submenu:hover .sub-caret {
  border-left-color: #ffffff;
}

/* TIER 2: Secondary Flyout Menu (Products Panel Side Grid) */
.dropdown-tier-2 {
  position: absolute;
  top: 0;
  left: 100%;
  /* Opens precisely flush to the right edge */
  background-color: #000000;
  min-width: 280px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 2001;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown-tier-2 li a {
  display: block;
  padding: 10px 22px;
  color: #d1d5db;
  /* Clean grey text */
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-tier-2 li a:hover {
  background-color: #111827;
  /* Gentle row accent dark grey highlight on sub-links */
  color: #ffffff;
}

/* Show flyout columns when active/hover states trigger */
.dropdown-tier-1 li.has-submenu:hover .dropdown-tier-2 {
  display: block;
}

/* Persistent view execution for first highlighted brand panel configuration */
.dropdown-tier-1 li.active-brand .dropdown-tier-2 {
  display: block;
}

.dropdown-tier-1:hover li.active-brand:not(:hover) .dropdown-tier-2 {
  display: none;
}

.dropdown-tier-1:hover li.active-brand:not(:hover)>a.brand-link {
  background-color: transparent;
}


/* ════════════════════════════════════════════════════════════
   LANGUAGE SELECTOR
════════════════════════════════════════════════════════════ */
.lang-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}

.lang-select {
  background-color: #000000;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 9px 34px 9px 14px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='white'><polygon points='0,0 100,0 50,60'/></svg>");
  background-repeat: no-repeat;
  background-size: 11px;
  background-position: calc(100% - 12px) 58%;
  cursor: pointer;
  min-width: 170px;
}

.lang-select:focus {
  outline: none;
  border-color: #3ca9df;
}

.powered-by {
  color: #555555;
  font-size: 11px;
  padding-left: 4px;
}


/* ── Mobile Accordion Handling Fallback ─────────────────── */


/* ── Hero wrapper ─────────────────────────────────────────── */
.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-background-canvas {
  --bg-color: #1f80ac;
  position: absolute;
  inset: 0;
  background: linear-gradient(128deg, rgba(0, 0, 0, 1) 5%, var(--bg-color) 100%);
  z-index: 1;
}

.hero-aura-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 0% 50%, rgba(0, 0, 0, 0.85) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-slides-window {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 75vh;
  min-height: 640px;
  z-index: 3;
  box-sizing: border-box;
}

/* ── ACE FLOW text — NEVER MOVES, always visible ─────────── */
.slide-layer-background-text {
  display: block;
  position: absolute;
  top: 2%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.slide-layer-background-text span {
  font-size: clamp(60px, 18vw, 20vh);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  line-height: 1;
}

.gradient-text-light {
  background: linear-gradient(to right, #ffffff 0%, #bcdcef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-blue {
  margin-left: clamp(8px, 2vw, 28px);
  background: linear-gradient(to right, #4a9bc2 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ════════════════════════════════════════════════════════════
   FOREGROUND PANEL LAYER
════════════════════════════════════════════════════════════ */
.slide-layer-foreground-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease-in, visibility 0s linear 0.55s;
}

.slide-layer-foreground-content.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.38s ease-out, visibility 0s linear 0s;
}

/* ══════════════════════════════════════════════════════════
   CHILDREN BASE & RESET STATES (No Transitions here)
══════════════════════════════════════════════════════════ */
.slide-layer-foreground-content .content-left {
  position: absolute;
  left: 8.5%;
  bottom: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(-30px);
}

.slide-layer-foreground-content .product-center-display {
  position: absolute;
  left: 47.5%;
  bottom: 70px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 60%;
  opacity: 0;
  transform: translateX(-50%) translateY(-80px);
}

.slide-layer-foreground-content .content-right {
  position: absolute;
  left: 64.5%;
  bottom: 30%;
  max-width: 360px;
  opacity: 0;
  transform: translateY(-30px);
}

/* PREPARING STATE: Jab slide background me ho tab transition 0s taaki instant snap ho */
.slide-layer-foreground-content.preparing .content-left,
.slide-layer-foreground-content.preparing .product-center-display,
.slide-layer-foreground-content.preparing .content-right {
  transition: none !important;
}

/* ══════════════════════════════════════════════════════════
   CHILDREN ACTIVE — ULTRA SLOW MOTION DROPDOWN (3.5s)
══════════════════════════════════════════════════════════ */

/* LEFT: Content panel */
.slide-layer-foreground-content.active .content-left {
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 3.00s cubic-bezier(0.05, 1, 0.1, 1) 0ms,
    opacity 2.00s ease-out 0ms;
}

/* CENTER: Main Product Image - Deep Slow Motion Drop */
.slide-layer-foreground-content.active .product-center-display {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition:
    transform 3.50s cubic-bezier(0.05, 1, 0.1, 1) 150ms,
    opacity 2.50s ease-out 150ms;
}

/* RIGHT: Speech Bubble */
.slide-layer-foreground-content.active .content-right {
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 3.00s cubic-bezier(0.05, 1, 0.1, 1) 350ms,
    opacity 2.00s ease-out 350ms;
}

/* ── Product image (unchanged) ───────────────────────────── */
.product-center-display img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
}

/* ── Left content typography (unchanged) ─────────────────── */
.product-title {
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 22px 0;
  white-space: nowrap;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 12px 22px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s;
  white-space: nowrap;
}

.btn-read-more:hover {
  background-color: #e6e6e6;
}

/* ── Speech bubble (unchanged) ───────────────────────────── */
.speech-bubble-tooltip {
  position: relative;
  background-color: rgba(28, 40, 49, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 18px 22px;
  color: #a2b7c4;
  font-size: 13px;
  line-height: 1.65;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.speech-bubble-tooltip::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 28px;
  border-width: 8px 8px 8px 0;
  border-style: solid;
  border-color: transparent rgba(28, 40, 49, 0.9) transparent transparent;
}

/* ── Nav dots + arrows (unchanged) ───────────────────────── */
.slider-controls-navigation {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.nav-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.25s, transform 0.25s;
}

.nav-dot.active {
  background-color: #ffffff;
  transform: scale(1.2);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.slide-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.slide-arrow.prev {
  left: 18px;
}

.slide-arrow.next {
  right: 18px;
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-slides-window {
    height: auto;
    min-height: 0;
    padding: 70px 20px 100px;
  }

  .slide-layer-background-text {
    position: relative;
    top: auto;
    margin-bottom: 20px;
  }

  .slide-layer-foreground-content {
    position: relative;
    inset: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 20px 40px;
  }

  .slide-layer-foreground-content.active {
    display: flex;
  }

  .slide-layer-foreground-content .content-left,
  .slide-layer-foreground-content .product-center-display,
  .slide-layer-foreground-content .content-right {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
    height: auto;
    max-width: 100%;
    width: 100%;
  }

  .content-left {
    align-items: center;
    text-align: center;
  }

  .content-right {
    max-width: 100%;
  }

  .product-title {
    white-space: normal;
    text-align: center;
  }

  .product-center-display {
    justify-content: center;
  }

  .product-center-display img {
    max-height: 45vh;
  }

  .speech-bubble-tooltip::before {
    display: none;
  }

  .slide-arrow {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .slide-layer-background-text span {
    font-size: clamp(44px, 14vw, 80px);
    letter-spacing: -1px;
  }

  .gradient-text-blue {
    margin-left: 6px;
  }

  .product-center-display img {
    max-height: 36vh;
  }

  .slider-controls-navigation {
    bottom: 14px;
  }
}

/* ============================================================
   3. STATS SECTION
   ============================================================ */
.stats-section {
  width: 100%;
  padding: 0 40px;
  background: linear-gradient(to right,
      #031018 0%, #09334c 25%, #1b6287 50%, #0a3752 75%, #031019 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.stats-wrapper {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 28px 20px;
}

.stat-img-icon {
  width: 52px;
  height: auto;
  margin-right: 18px;
  flex-shrink: 0;
  object-fit: contain;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* ============================================================
   4. FEATURES SECTION
   ============================================================ */
.features-section {
  width: 100%;
  background-color: #ffffff;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  background: transparent;
  border: none;
  padding: 10px 0;
}

.feature-img-icon {
  width: 52px;
  height: auto;
  margin-right: 18px;
  flex-shrink: 0;
  object-fit: contain;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  color: #1a74a5;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.feature-description {
  font-size: 0.92rem;
  color: #333333;
  line-height: 1.65;
  font-weight: 400;
}

/* ============================================================
   5. WHY US SECTION
   ============================================================ */
.ace-flow-uniq-section {
  background: linear-gradient(115deg, #01152a 0%, #01152a 18%, #1478a6 50%, #4e9bb8 82%, #14587b 100%);
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  line-height: 1.6;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
  gap: 4rem;
}

.ace-flow-uniq-content-wrap {
  flex: 0 1 550px;
  width: 100%;
}

.ace-flow-uniq-small-tag {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.ace-flow-uniq-title {
  font-size: clamp(24px, 3vw, 35px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.ace-flow-uniq-intro {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.ace-flow-uniq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ace-flow-uniq-item {
  border-left: 2px solid rgba(255, 255, 255, 0.35);
  padding-left: 1.5rem;
}

.ace-flow-uniq-item-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: 0.2px;
}

.ace-flow-uniq-item-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.ace-flow-uniq-img-wrap {
  flex: 0 1 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ace-flow-uniq-product-img {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES (1440px, 1920px & Mobile)
   ============================================================ */

@media (min-width: 1440px) {
  .ace-flow-uniq-section {
    gap: 6rem;
    padding: 4rem 6rem;
  }

  .ace-flow-uniq-content-wrap {
    flex: 0 1 620px;
  }

  .ace-flow-uniq-img-wrap {
    flex: 0 1 480px;
  }
}

@media (min-width: 1920px) {
  .ace-flow-uniq-section {
    gap: 8rem;
    padding: 5rem 10rem;
  }

  .ace-flow-uniq-content-wrap {
    flex: 0 1 680px;
  }

  .ace-flow-uniq-img-wrap {
    flex: 0 1 520px;
  }

  .ace-flow-uniq-product-img {
    max-height: 550px;
  }
}

@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }

  .ace-flow-uniq-section {
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 3rem;
  }

  .ace-flow-uniq-content-wrap,
  .ace-flow-uniq-img-wrap {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }

  .features-section {
    padding: 40px 20px;
  }
}


/* ============================================================
   6. PARTNERS SLIDER
   ============================================================ */
.partners-section {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 0 50px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners-main-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: #1a2238;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.5px;
}

.partners-subtitle {
  font-size: 15px;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
  color: #555;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}

.slider-track {
  display: flex;
  width: calc(180px * 72);
  animation: continuousScroll 90s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

.logo-slide {
  width: 180px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  flex-shrink: 0;
}

.logo-slide img {
  max-width: 95%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-slide img:hover {
  transform: scale(1.05);
}

@keyframes continuousScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-180px * 36));
  }
}

/* ============================================================
   7. FOOTER
   ============================================================ */
.footer-wrapper {
  background-color: #000000;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.footer-wrapper::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 161, 228, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 20px;
  position: relative;
  z-index: 2;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr;
  gap: 50px;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.footer-desc-col .footer-logo-box {
  height: 45px;
  margin-bottom: 30px;
}

.footer-desc-col .footer-logo-box img {
  height: 100%;
  width: auto;
}

.footer-desc-text {
  color: #cccccc;
  font-size: 13px;
  line-height: 1.7;
  max-width: 420px;
  text-align: justify;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 14px;
}

.footer-links-list li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links-list li a:hover {
  color: #3ca9df;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.5;
}

.footer-contact-item i {
  color: #ffffff;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-numbers {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #333333;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s ease;
}

.social-icon-btn:hover {
  border-color: #3ca9df;
  color: #3ca9df;
  background-color: rgba(60, 169, 223, 0.05);
}

.social-icon-btn[aria-label="X (Twitter)"]:hover {
  border-color: #3ca9df;
  color: #3ca9df;
  background-color: rgba(60, 169, 223, 0.05);
}

.footer-watermark-container {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  user-select: none;
  overflow: hidden;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-watermark-text {
  font-size: clamp(40px, 9.5vw, 180px);
  font-weight: 900;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.9;
  background: radial-gradient(circle farthest-corner at center center, #fff 0%, #4d4d4d 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: normal;
  display: inline-block;
  max-width: 100%;
}

.footer-copyright-strip {
  border-top: 1px solid #111111;
  background-color: #050505;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #aaaaaa;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copyright-strip a {
  color: #aaaaaa;
  text-decoration: none;
}

.footer-copyright-strip a:hover {
  color: #ffffff;
}

.strip-dash {
  width: 12px;
  height: 3px;
  background-color: #ffffff;
  flex-shrink: 0;
}


/* ============================================================
   7. ULTRA-WIDE OPTIMIZATIONS (1440px & 1920px Displays)
   ============================================================ */

@media (min-width: 1440px) {
  .ace-flow-uniq-section {
    gap: 6rem;
    padding: 4rem 6rem;
  }

  .ace-flow-uniq-content-wrap {
    flex: 0 1 620px;
  }

  .ace-flow-uniq-img-wrap {
    flex: 0 1 480px;
  }

  .footer-watermark-text {
    font-size: clamp(120px, 9vw, 150px);
  }
}

@media (min-width: 1920px) {
  .ace-flow-uniq-section {
    gap: 8rem;
    padding: 5rem 10rem;
  }

  .ace-flow-uniq-content-wrap {
    flex: 0 1 680px;
  }

  .ace-flow-uniq-img-wrap {
    flex: 0 1 520px;
  }

  .ace-flow-uniq-product-img {
    max-height: 550px;
  }

  .footer-watermark-text {
    font-size: 170px;
  }
}


/* ============================================================
   8. MOBILE & TABLET MEDIA QUERIES (Responsive Stacking)
   ============================================================ */

@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }

  .ace-flow-uniq-section {
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 3rem;
  }

  .ace-flow-uniq-content-wrap,
  .ace-flow-uniq-img-wrap {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-desc-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }

  .features-section {
    padding: 40px 20px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-desc-col {
    grid-column: span 1;
  }

  .footer-container {
    padding: 40px 20px 20px;
  }

  .footer-copyright-strip {
    padding: 15px 20px;
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   MOBILE SIDEBAR NAVIGATION — single source of truth
   NOTE: .navbar padding/min-height are NOT re-declared below to
   avoid the exact cascade conflicts that caused the navbar/hero
   gap. Anything about navbar sizing lives ONLY in section 1 and
   the fine-tuning breakpoints further down — never both.
   ============================================================ */

@media (max-width: 960px) {

  .nav-toggle {
    display: none;
    z-index: 9000;
  }

  body.nav-open-overlay {
    overflow: hidden;
  }

  body.nav-open-overlay::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9997;
  }

  .nav-links {
    display: none !important;
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 86vw;
    height: 100vh;
    background-color: #000000;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 110px 0 40px 0 !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: left 0.4s cubic-bezier(0.25, 0.9, 0.3, 1);
    z-index: 9999;
  }

  .nav-links.open {
    left: 0;
    display: flex !important;
  }

  .nav-links::-webkit-scrollbar {
    width: 0;
  }

  .sidebar-close-btn {
    position: fixed;
    top: 24px;
    left: 24px;
    width: 52px;
    height: 52px;
    background-color: #178ab0;
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(23, 138, 176, 0.45);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  body.nav-open-overlay .sidebar-close-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open-overlay .floating-container {
    display: none;
  }

  .nav-links li {
    width: 100%;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-links>li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    width: 100%;
    padding: 18px 28px;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
  }

  .nav-links>li>a::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2.5px solid #ffffff;
    border-right: 2.5px solid #ffffff;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .has-dropdown.accordion-open>a::before {
    transform: rotate(135deg);
  }

  .nav-links>li>a .caret {
    display: none;
  }

  .has-dropdown.mega-dropdown-trigger>a {
    position: relative;
  }

  .has-dropdown.mega-dropdown-trigger>a::after {
    content: '+';
    position: absolute;
    right: 28px;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
  }

  .has-dropdown.mega-dropdown-trigger.accordion-open>a::after {
    content: '\2013';
  }

  .dropdown-tier-1 {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    background-color: #000000;
    box-shadow: none;
    transition: max-height 0.4s ease;
  }

  .has-dropdown.accordion-open>.dropdown-tier-1 {
    max-height: 3000px;
  }

  .dropdown-tier-1 li.has-submenu {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dropdown-tier-1 li a.brand-link {
    padding: 14px 28px 14px 56px;
    font-size: 16px;
    font-weight: 600;
    color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dropdown-tier-1 li.active-brand>a.brand-link {
    background-color: transparent !important;
  }

  .has-submenu.accordion-open>a.brand-link {
    color: #178ab0;
  }

  .sub-caret {
    transition: transform 0.3s ease;
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .has-submenu.accordion-open>a.brand-link .sub-caret {
    transform: rotate(90deg);
    border-left-color: #178ab0;
  }

  .dropdown-tier-2 {
    position: static !important;
    display: block !important;
    left: auto;
    top: auto;
    border-left: none;
    background-color: #0a0a0a;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .has-submenu.accordion-open>.dropdown-tier-2 {
    max-height: 240px;
    overflow-y: auto;
  }

  .dropdown-tier-2::-webkit-scrollbar {
    width: 3px;
  }

  .dropdown-tier-2::-webkit-scrollbar-thumb {
    background: rgba(23, 138, 176, 0.4);
    border-radius: 3px;
  }

  .dropdown-tier-2 li a {
    padding: 11px 28px 11px 70px;
    font-size: 13.5px;
    font-weight: 400;
    color: #999999;
  }

  .dropdown-tier-2 li a:hover {
    color: #ffffff;
  }

  .lang-wrapper {
    display: none;
  }
}

@media (min-width: 961px) {
  .nav-toggle {
    display: none;
  }

  .sidebar-close-btn {
    display: none;
  }
}

/* ============================================================
   SIDEBAR COMPONENT — fixed left drawer
   ============================================================ */
.ns-hamburger {
  position: fixed !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 20002 !important;
  width: 46px;
  height: 46px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transform: translateZ(0);
}

@media (max-width: 960px) {
  .ns-hamburger {
    display: flex;
    top: 14px;
    right: 14px;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    display: none !important;
  }
}

.ns-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ns-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ns-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.ns-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ns-hamburger.is-open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ns-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  z-index: 19997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ns-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.ns-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: min(340px, 88vw);
  max-width: 88vw;
  height: 100vh;
  max-height: 100vh;
  background: #000000;
  z-index: 20000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.9, 0.3, 1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.ns-sidebar.is-open {
  transform: translateX(0);
}

.ns-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.ns-sidebar-logo {
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.ns-sidebar-logo span {
  color: #3ca9df;
}

.ns-sidebar-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.ns-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #178ab0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(23, 138, 176, 0.4);
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.ns-close-btn:hover {
  background: #1291bc;
}

.ns-close-btn svg {
  width: 16px;
  height: 16px;
}

.ns-sidebar-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px;
}

.ns-sidebar-body::-webkit-scrollbar {
  width: 5px;
}

.ns-sidebar-body::-webkit-scrollbar-track {
  background: transparent;
}

.ns-sidebar-body::-webkit-scrollbar-thumb {
  background: rgba(60, 169, 223, 0.4);
  border-radius: 4px;
}

.ns-nav-list {
  list-style: none;
}

.ns-nav-list>li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ns-nav-list>li:last-child {
  border-bottom: none;
}

.ns-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 17px 24px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.ns-link:hover {
  color: #3ca9df;
}

.ns-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.ns-toggle-plus {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}

.ns-toggle-plus::before,
.ns-toggle-plus::after {
  content: '';
  position: absolute;
  background: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
}

.ns-toggle-plus::before {
  width: 14px;
  height: 2px;
}

.ns-toggle-plus::after {
  width: 2px;
  height: 14px;
}

.ns-dropdown.is-open>.ns-toggle .ns-toggle-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.ns-dropdown.is-open>.ns-toggle .ns-toggle-plus::before {
  background: #3ca9df;
}

.ns-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #050505;
}

.ns-dropdown.is-open>.ns-panel {
  grid-template-rows: 1fr;
}

.ns-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.ns-panel-list {
  list-style: none;
}

.ns-panel-list>li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ns-sub-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 24px 14px 44px;
  background: none;
  border: none;
  color: #d9dde1;
  font-size: 14.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}

.ns-sub-dropdown.is-open>.ns-sub-toggle {
  color: #3ca9df;
}

.ns-sub-caret {
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-left: 5px solid rgba(255, 255, 255, 0.55);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: transform 0.3s ease, border-left-color 0.3s ease;
}

.ns-sub-dropdown.is-open>.ns-sub-toggle .ns-sub-caret {
  transform: rotate(90deg);
  border-left-color: #3ca9df;
}

.ns-sub-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #101317;
}

.ns-sub-dropdown.is-open>.ns-sub-panel {
  grid-template-rows: 1fr;
}

.ns-sub-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.ns-sub-panel-list {
  list-style: none;
}

.ns-sub-panel-list li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px 12px 44px;
  color: #c7ced4;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1px;
  transition: color 0.2s ease, background 0.2s ease;
}

.ns-sub-panel-list li a::before {
  content: '';
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #3ca9df;
  opacity: 0.7;
}

.ns-sub-panel-list li a:hover {
  color: #ffffff;
  background: rgba(60, 169, 223, 0.12);
}

.ns-sub-panel-list li:not(:last-child) a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ns-sidebar-foot {
  padding: 16px 24px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.ns-lang-label {
  font-size: 11px;
  color: #555555;
  margin-bottom: 6px;
}

.ns-lang-select {
  width: 100%;
  background: #000000;
  color: #ffffff;
  border: 1px solid #333333;
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 13px;
  font-family: inherit;
}

@media (prefers-reduced-motion: reduce) {

  .ns-panel,
  .ns-sub-panel,
  .ns-sidebar,
  .ns-overlay {
    transition: none;
  }
}

/* ============================================================
   8. PRODUCTS CAROUSEL SECTION
   ============================================================ */
.products-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 64px 0 72px;
  overflow: hidden;
}

.products-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 24px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: #1a7abf;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.products-swiper {
  width: 100%;
  overflow: visible !important;
}

.swiper-wrapper {
  align-items: stretch;
}

.product-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(160deg, #1e6e9f 0%, #1a6494 45%, #124870 100%);
  height: 320px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 32px rgba(0, 0, 0, 0.28);
}

.product-name {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  z-index: 2;
}

.product-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 46px 16px 16px;
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateY(18px);
  z-index: 20;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #1a3a55;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
  outline: none;
}

.swiper-btn:hover {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.swiper-btn-prev {
  left: 12px;
}

.swiper-btn-next {
  right: 12px;
}

/* ============================================================
   9. RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 1280px) {
  .navbar {
    padding: 10px 28px;
  }

  .nav-links {
    gap: 18px;
  }

  .ace-flow-uniq-section {
    padding: 3rem 3rem;
    gap: 3rem;
  }

  .footer-container {
    padding: 50px 28px 20px;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links li a {
    font-size: 14px;
  }

  .lang-select {
    min-width: 150px;
    font-size: 13px;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 36px;
  }

  .footer-columns {
    grid-template-columns: 1fr 0.7fr 1fr;
    gap: 36px;
  }
}

/* ── 960px: tablet landscape ────────────────────────────── */
@media (max-width: 960px) {

  .nav-left-group {
    flex: 1;
  }

  /* Hero – stack vertically */
  .hero-slides-window {
    height: auto;
    min-height: 0;
    padding: 70px 20px 100px;
  }

  .slide-layer-background-text {
    position: relative;
    top: auto;
    margin-bottom: 20px;
  }

  .slide-layer-foreground-content {
    position: relative;
    inset: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 20px 40px;
  }

  .slide-layer-foreground-content.active {
    display: flex;
  }

  .content-left,
  .content-right,
  .product-center-display {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    height: auto;
    max-width: 100%;
    width: 100%;
  }

  .content-left {
    align-items: center;
    text-align: center;
  }

  .content-right {
    max-width: 100%;
  }

  .product-title {
    white-space: normal;
    text-align: center;
  }

  .product-center-display {
    justify-content: center;
  }

  .product-center-display img {
    max-height: 45vh;
  }

  .speech-bubble-tooltip::before {
    display: none;
  }

  .slide-arrow {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  /* Stats */
  .stats-section {
    padding: 0 24px;
    min-height: auto;
  }

  .stats-wrapper {
    justify-content: center;
    gap: 10px;
  }

  .stat-item {
    padding: 22px 16px;
  }

  /* Features */
  .features-section {
    padding: 48px 24px;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
    row-gap: 28px;
  }

  /* Why Us */
  .ace-flow-uniq-section {
    flex-direction: column;
    padding: 3rem 2.5rem;
    gap: 2.5rem;
    min-height: auto;
  }

  .ace-flow-uniq-content-wrap {
    max-width: 100%;
  }

  .ace-flow-uniq-img-wrap {
    padding-top: 0;
    width: 100%;
    justify-content: center;
  }

  .ace-flow-uniq-product-img {
    max-height: 350px;
  }

  /* Products carousel */
  .product-card {
    height: 280px;
  }

  /* Footer */
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-desc-col {
    grid-column: 1 / -1;
  }

  .footer-desc-text {
    max-width: 100%;
  }

  .footer-container {
    padding: 48px 24px 20px;
  }
}

/* ── 680px: large phone / small tablet portrait ─────────── */
@media (max-width: 680px) {

  /* Hero */
  .slide-layer-background-text span {
    font-size: clamp(44px, 14vw, 80px);
    letter-spacing: -1px;
  }

  .gradient-text-blue {
    margin-left: 6px;
  }

  .product-center-display img {
    max-height: 36vh;
  }

  .slider-controls-navigation {
    bottom: 14px;
  }

  /* Stats – single column */
  .stats-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 0;
  }

  .stat-item {
    padding: 18px 0;
    width: 100%;
    max-width: 280px;
  }

  /* Features – single column */
  .features-section {
    padding: 40px 20px;
  }

  .features-container {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  /* Why Us */
  .ace-flow-uniq-section {
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }

  .ace-flow-uniq-title {
    font-size: clamp(22px, 5.5vw, 30px);
  }

  .ace-flow-uniq-item-title {
    font-size: 1.1rem;
  }

  .ace-flow-uniq-product-img {
    max-height: 280px;
  }

  /* Partners */
  .partners-section {
    padding: 44px 0 36px;
  }

  .partners-main-title {
    font-size: clamp(20px, 5vw, 28px);
  }

  /* Products carousel */
  .product-card {
    height: 250px;
  }

  .products-section {
    padding: 48px 0 56px;
  }

  /* Footer */
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-desc-col {
    grid-column: auto;
  }

  .footer-title {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .footer-container {
    padding: 44px 20px 16px;
  }

  .footer-copyright-strip {
    padding: 14px 20px;
    font-size: 11px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .strip-dash {
    display: none;
  }
}

/* ── 420px: small phones ─────────────────────────────────── */
@media (max-width: 420px) {
  .logo-container {
    height: 40px;
  }

  .slide-layer-background-text span {
    font-size: clamp(36px, 12vw, 60px);
  }

  .product-title {
    font-size: clamp(18px, 5vw, 24px);
  }

  .btn-read-more {
    font-size: 13px;
    padding: 10px 18px;
  }

  .speech-bubble-tooltip {
    font-size: 12px;
    padding: 14px 16px;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .stat-img-icon {
    width: 42px;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-img-icon {
    width: 42px;
    margin-right: 14px;
  }

  .ace-flow-uniq-section {
    padding: 2rem 1.2rem;
  }

  .ace-flow-uniq-title {
    font-size: clamp(20px, 6vw, 26px);
  }

  .ace-flow-uniq-item-title {
    font-size: 1rem;
  }

  .ace-flow-uniq-product-img {
    max-height: 240px;
  }

  .product-card {
    height: 220px;
  }

  .product-name {
    font-size: 11.5px;
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .swiper-btn {
    width: 32px;
    height: 32px;
  }

  .swiper-btn-prev {
    left: 6px;
  }

  .swiper-btn-next {
    right: 6px;
  }

  .partners-subtitle {
    font-size: 13px;
  }

  .logo-slide {
    width: 140px;
    height: 90px;
  }

  .logo-slide img {
    max-height: 48px;
  }

  .footer-watermark-text {
    font-size: clamp(48px, 13vw, 100px);
  }

  .social-icon-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

/* ── 320px: very small phones ────────────────────────────── */
@media (max-width: 320px) {
  .logo-container {
    height: 34px;
  }

  .slide-layer-background-text span {
    font-size: clamp(30px, 11vw, 50px);
  }

  .product-title {
    font-size: 17px;
  }

  .ace-flow-uniq-section {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .feature-title {
    font-size: 0.95rem;
  }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .slider-track {
    animation: none;
  }

  .product-card,
  .product-img {
    transition: none;
  }

  .hero-slide {
    transition: none;
  }

  .nav-dot {
    transition: none;
  }
}

.hot-prod-uniq-section,
.hot-prod-uniq-section * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hot-prod-uniq-section {
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.25rem, 8vw, 6rem);
  width: 100%;
}

.hot-prod-uniq-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 1.5rem;
}

.hot-prod-uniq-main-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
}

.hot-prod-uniq-top-desc {
  color: #000000;
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 540px;
}

.hot-prod-uniq-columns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 4rem;
}

.hot-prod-uniq-left-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hot-prod-uniq-video-box {
  width: 100%;
  height: clamp(220px, 48vw, 514px);
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.hot-prod-uniq-video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.hot-prod-uniq-video-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  text-align: center;
}

.hot-prod-uniq-video-text-card {
  background-color: #f3f4f6;
  border-radius: 8px;
  padding: 1.0rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.hot-prod-uniq-video-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.6rem;
  transition: color 0.25s ease;
}

.hot-prod-uniq-video-desc {
  color: #4b5563;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 400;
  transition: color 0.25s ease;
}

.hot-prod-uniq-video-text-card:hover {
  background-color: #257fa4;
}

.hot-prod-uniq-video-text-card:hover .hot-prod-uniq-video-title {
  color: #ffffff;
}

.hot-prod-uniq-video-text-card:hover .hot-prod-uniq-video-desc {
  color: rgba(255, 255, 255, 0.9);
}

.hot-prod-uniq-right-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.hot-prod-uniq-tab {
  background-color: #f3f4f6;
  border-radius: 8px;
  padding: 1.0rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.hot-prod-uniq-tab-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  transition: color 0.25s ease;
}

.hot-prod-uniq-tab-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #4b5563;
  font-weight: 400;
  transition: color 0.25s ease;
}

.hot-prod-uniq-tab:hover {
  background-color: #257fa4;
}

.hot-prod-uniq-tab:hover .hot-prod-uniq-tab-title {
  color: #ffffff;
}

.hot-prod-uniq-tab:hover .hot-prod-uniq-tab-desc {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
  .hot-prod-uniq-section {
    padding: 3rem 2rem;
  }

  .hot-prod-uniq-header-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .hot-prod-uniq-columns-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hot-prod-uniq-main-title {
    font-size: 2rem;
  }
}

.connect-banner-uniq-container {
  width: 100%;
  min-height: 140px;
  padding: 2rem 5rem;
  background: linear-gradient(90deg, #1d6e93 0%, #103c53 18%, #000000 55%, #000000 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.connect-banner-uniq-text-left {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.2px;
}

.connect-banner-uniq-text-right {
  color: #ffffff;
  font-size: clamp(1.55rem, 4.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .connect-banner-uniq-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    justify-content: center;
    padding: 2.5rem 2rem;
  }

  .connect-banner-uniq-text-left {
    font-size: 1.8rem;
  }

  .connect-banner-uniq-text-right {
    font-size: 1.9rem;
  }
}

.gt-contact-section {
  background-color: #000000;
  width: 100%;
  padding: clamp(2.25rem, 7vw, 5rem) clamp(1.25rem, 8vw, 6rem);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gt-contact-section *,
.gt-contact-section *::before,
.gt-contact-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.gt-contact-container {
  width: 100%;
  max-width: 1320px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: flex-start;
}

.gt-contact-info-col {
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.gt-contact-subtitle {
  color: #21739c;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
}

.gt-contact-title {
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.75rem;
  letter-spacing: -0.5px;
}

.gt-contact-desc {
  color: #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.gt-contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}

.gt-contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.4;
}

.gt-contact-detail-item.gt-align-top {
  align-items: flex-start;
}

.gt-contact-detail-item.gt-numbers-highlight {
  font-size: 1rem;
  font-weight: 700;
  padding-left: 0.1rem;
  margin-bottom: 0.25rem;
}

.gt-contact-detail-item svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
  flex-shrink: 0;
}

.gt-contact-detail-item svg.gt-pin-icon {
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
}

.gt-contact-detail-item span {
  max-width: 420px;
}

.gt-contact-socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.gt-social-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.gt-social-link svg {
  width: 20px;
  height: 20px;
}

.gt-social-link:hover {
  color: #21739c;
  transform: translateY(-2px);
}

.gt-contact-form-col {
  width: 100%;
}

.gt-actual-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.gt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  width: 100%;
}

.gt-form-row.single-width {
  grid-template-columns: 1fr;
}

.gt-input-wrap {
  width: 100%;
}

.gt-actual-form input[type="text"],
.gt-actual-form input[type="email"],
.gt-actual-form input[type="tel"],
.gt-actual-form select,
.gt-actual-form textarea {
  width: 100%;
  background-color: transparent;
  border: 1px solid #374151;
  border-radius: 6px;
  padding: 0.95rem 1.1rem;
  color: #6b6a6a;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.gt-actual-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) 50%;
  background-size: 20px;
  padding-right: 2.5rem;
}

.gt-actual-form textarea {
  resize: vertical;
  min-height: 140px;
}

.gt-actual-form input:focus,
.gt-actual-form select:focus,
.gt-actual-form textarea:focus {
  border-color: #21739c;
}

.gt-actual-form ::placeholder {
  color: #9ca3af;
  opacity: 1;
  font-weight: 500;
}

.gt-recaptcha-mock-box {
  background-color: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  width: 100%;
  max-width: 302px;
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.75rem 0 0.95rem;
  margin-top: 0.25rem;
}

.gt-re-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gt-re-checkbox {
  width: 28px;
  height: 28px;
  border: 2px solid #c1c1c1;
  background-color: #ffffff;
  border-radius: 2px;
  cursor: pointer;
}

.gt-re-label {
  font-size: 0.88rem;
  color: #000000;
  font-weight: 400;
  user-select: none;
}

.gt-re-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}

.gt-re-right img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.gt-re-privacy-text {
  font-size: 0.52rem;
  color: #555555;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.gt-submit-action-row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 0.5rem;
}

.gt-btn-submit {
  background: #000000;
  border: 1px solid #374151;
  border-radius: 4px;
  padding: 1rem 2rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gt-btn-submit:hover {
  border-color: #3387b1;
  box-shadow: 0 0 10px rgba(60, 169, 223, 0.4);
}

.gt-btn-submit::before {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 85px;
  height: 45px;
  background: radial-gradient(circle, rgba(33, 115, 156, 0.95) 0%, rgba(33, 115, 156, 0) 75%);
  filter: blur(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  pointer-events: none;
}

.gt-btn-txt {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease;
}

.gt-btn-submit:hover {
  background: linear-gradient(180deg, #21739c 0%, #154c68 100%);
}

.gt-btn-submit:hover::before {
  opacity: 0;
  transform: scale(1.5);
}

.gt-btn-submit:hover .gt-btn-txt {
  transform: scale(1.02);
}

.gt-btn-submit:focus-visible {
  outline: 2px solid #21739c;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .gt-contact-section {
    padding: 4rem 2.5rem;
  }

  .gt-contact-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .gt-contact-info-col {
    align-items: center;
    text-align: center;
  }

  .gt-contact-desc {
    max-width: 100%;
  }

  .gt-contact-detail-item {
    justify-content: center;
  }

  .gt-contact-socials {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .gt-contact-section {
    padding: 3rem 1.25rem;
  }

  .gt-contact-title {
    font-size: 2.25rem;
  }

  .gt-form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .gt-recaptcha-mock-box {
    width: 100%;
  }

  .gt-btn-submit {
    width: 100%;
  }
}

.vid-gallery-uniq-section {
  background-color: #ffffff;
  width: 100%;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.25rem, 8vw, 6rem);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.vid-gallery-uniq-section *,
.vid-gallery-uniq-section *::before,
.vid-gallery-uniq-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.vid-gallery-uniq-bg-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 88%, rgba(56, 189, 248, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 95%, rgba(14, 116, 144, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, transparent 60%, rgba(56, 189, 248, 0.03) 100%);
}

.vid-gallery-uniq-grid {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem;
  row-gap: 2.2rem;
  position: relative;
  z-index: 1;
}

.vid-gallery-uniq-card {
  width: 100%;
  aspect-ratio: 16 / 12.4;
  background-color: #000000;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vid-gallery-uniq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.vid-gallery-uniq-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .vid-gallery-uniq-section {
    padding: 3rem 3rem;
  }

  .vid-gallery-uniq-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    row-gap: 1.8rem;
  }
}

@media (max-width: 640px) {
  .vid-gallery-uniq-section {
    padding: 2rem 1.25rem;
  }

  .vid-gallery-uniq-grid {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
}

/* --- Base Styles (Kept from your original) --- */
.gt-gallery-section {
  width: 100%;
  background-color: #ffffff;
  padding: 3.5rem 1.5rem;
  box-sizing: border-box;
  text-align: center;
}

.gt-gallery-section *,
.gt-gallery-section *::before,
.gt-gallery-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.gt-gallery-top-meta {
  font-size: 0.72rem;
  color: #888888;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 0.25rem;
}

.gt-gallery-main-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0b6393;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
}

.gt-decor-dot {
  width: 12px;
  height: 12px;
  background-color: #0b6393;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  opacity: 0.85;
}

/* --- Responsive Grid Layout Fix --- */
.gt-gallery-grid {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Enforces 4 columns everywhere */
  gap: 1.25rem;
}

.gt-gallery-card {
  width: 100%;
  aspect-ratio: 362 / 513;
  background-color: #f8f9fa;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 2px;
}

.gt-img-overflow-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.gt-gallery-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gt-gallery-card:hover .gt-gallery-thumbnail {
  transform: scale(1.06);
}

/* --- Lightbox System --- */
.gt-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.gt-lightbox-overlay.gt-active-view {
  display: flex;
}

.gt-lightbox-stage {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gt-lightbox-stage img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.gt-lightbox-counter-badge {
  color: #cccccc;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.75rem;
  letter-spacing: 0.5px;
}

.gt-lightbox-close,
.gt-lightbox-nav {
  position: absolute;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.75;
  outline: none;
}

.gt-lightbox-close:hover,
.gt-lightbox-nav:hover {
  color: #0b6393;
  opacity: 1;
}

.gt-lightbox-close {
  top: 25px;
  right: 35px;
  font-size: 2.5rem;
  line-height: 1;
  z-index: 100001;
}

.gt-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  padding: 1.5rem;
  z-index: 100000;
}

.gt-nav-left {
  left: 20px;
}

.gt-nav-right {
  right: 20px;
}

/* --- Mobile Media Queries (Maintains Row Layout) --- */
@media (max-width: 768px) {
  .gt-gallery-grid {
    gap: 0.5rem;
    /* Reduces spacing on small screens so they fit comfortably */
    padding: 0;
  }

  .gt-lightbox-nav {
    padding: 0.75rem;
    font-size: 2rem;
  }

  .gt-nav-left {
    left: 5px;
  }

  .gt-nav-right {
    right: 5px;
  }

  .gt-lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 2rem;
  }
}

.app-slider-section {
  width: 100%;
  padding: 80px 0 64px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(20, 100, 155, 0.18) 0%, transparent 70%),
    #070e14;
}

.app-slider-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 24px;
}

.app-slider-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.app-slider-title-accent {
  background: linear-gradient(90deg, #38bdf8 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-slider-subtitle {
  margin: 14px auto 0;
  font-size: clamp(13px, 1.5vw, 15.5px);
  color: rgba(255, 255, 255, 0.42);
  max-width: 520px;
  line-height: 1.65;
}

.app-slider-viewport-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 64px;
}

.app-slider-track-wrap {
  width: 100%;
  overflow: hidden;
  padding: 28px 0 36px;
}

.app-slider-track {
  display: flex;
  align-items: stretch;
  will-change: transform;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.app-slider-track.is-transitioning {
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.35, 1);
}

.app-slider-card {
  flex: 0 0 35%;
  margin: 0 1%;
  background: rgba(14, 28, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  transform: scale(0.82);
  display: flex;
  flex-direction: column;
  height: 480px;
  max-height: 480px;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease,
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease;
  cursor: pointer;
}

.app-slider-card.is-active-center {
  opacity: 1;
  transform: scale(1.06);
  background: rgba(20, 38, 52, 0.98);
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.10),
    0 32px 64px rgba(0, 0, 0, 0.70),
    0 0 60px rgba(56, 189, 248, 0.06);
  z-index: 2;
}

.app-card-img-box {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background: #000;
  position: relative;
}

.app-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.app-slider-card.is-active-center .app-card-img-box img {
  transform: scale(1.05);
}

.app-card-img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(20, 38, 52, 0.65) 100%);
  pointer-events: none;
}

.app-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
}

.app-card-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(56, 189, 248, 0.10);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #38bdf8;
  width: fit-content;
  flex-shrink: 0;
}

.app-card-title {
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  flex-shrink: 0;
}

.app-card-divider {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, transparent);
  border-radius: 2px;
  flex-shrink: 0;
  transition: width 0.5s ease;
}

.app-slider-card.is-active-center .app-card-divider {
  width: 52px;
}

.app-card-desc-wrap {
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.app-card-desc {
  font-size: clamp(12px, 1.05vw, 13.5px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.72em * 4);
  flex-shrink: 0;
  transition: color 0.5s ease;
}

.app-slider-card.is-active-center .app-card-desc {
  color: rgba(255, 255, 255, 0.80);
}

.app-card-desc-extra {
  display: none;
}

.app-card-desc-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(14, 28, 38, 0.95));
  pointer-events: none;
}

.app-slider-card.is-active-center .app-card-desc-fade {
  background: linear-gradient(to bottom, transparent, rgba(20, 38, 52, 0.98));
}

.app-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #38bdf8;
  transition: color 0.2s ease, gap 0.2s ease;
  outline: none;
}

.app-slider-card:hover .app-card-read-more {
  color: #7dd3fc;
  gap: 8px;
}

.app-card-read-more svg {
  transition: transform 0.2s ease;
}

.app-slider-card:hover .app-card-read-more svg {
  transform: translateX(3px);
}

.app-card-index {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(56, 189, 248, 0.30);
  letter-spacing: 0.10em;
  margin-top: auto;
  padding-top: 10px;
  flex-shrink: 0;
}

.app-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.70);
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  outline: none;
  padding: 0;
}

.app-slider-arrow:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.40);
  color: #38bdf8;
  transform: translateY(-50%) scale(1.08);
}

.app-slider-arrow:active {
  transform: translateY(-50%) scale(0.93);
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.app-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding: 0 24px;
}

.app-dot {
  width: 20px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease, box-shadow 0.3s ease;
}

.app-dot.is-active-dot {
  width: 36px;
  background: #38bdf8;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.50);
}

.app-slider-counter {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.25);
}

.app-slider-counter span {
  color: rgba(255, 255, 255, 0.65);
}

.app-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: rgba(4, 11, 18, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.app-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.app-modal-box {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  background: #0f1f2c;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.80), 0 0 0 1px rgba(56, 189, 248, 0.08);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.app-modal-overlay.is-open .app-modal-box {
  transform: translateY(0) scale(1);
}

.app-modal-img {
  width: 100%;
  height: 240px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.app-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-modal-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, #0f1f2c 100%);
}

.app-modal-content {
  padding: 24px 28px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.3) transparent;
}

.app-modal-content::-webkit-scrollbar {
  width: 4px;
}

.app-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.app-modal-content::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.30);
  border-radius: 4px;
}

.app-modal-badge {
  display: inline-flex;
  background: rgba(56, 189, 248, 0.10);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 12px;
}

.app-modal-title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.app-modal-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, transparent);
  border-radius: 2px;
  margin-bottom: 18px;
}

.app-modal-desc {
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

.app-modal-desc p {
  margin-bottom: 14px;
}

.app-modal-desc p:last-child {
  margin-bottom: 0;
}

.app-modal-desc .app-card-desc,
.app-modal-desc .app-card-desc-extra {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  max-height: none;
  color: rgba(255, 255, 255, 0.72);
}

.app-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  outline: none;
  line-height: 1;
  padding: 0;
}

.app-modal-close:hover {
  background: rgba(56, 189, 248, 0.20);
  border-color: rgba(56, 189, 248, 0.40);
  color: #fff;
}

@media (max-width: 380px) {
  .app-modal-overlay {
    padding: 10px;
  }

  .app-modal-box {
    max-height: 90vh;
    border-radius: 14px;
  }

  .app-modal-img {
    height: 90px;
  }

  .app-modal-content {
    padding: 14px 16px 20px;
  }

  .app-modal-badge {
    padding: 2px 8px;
    font-size: 9px;
    margin-bottom: 6px;
  }

  .app-modal-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .app-modal-divider {
    margin-bottom: 10px;
    width: 35px;
  }

  .app-modal-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .app-modal-desc p {
    margin-bottom: 8px;
  }

  .app-modal-close {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .app-modal-content input,
  .app-modal-content select,
  .app-modal-content textarea {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-bottom: 10px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 1280px) {
  .app-slider-viewport-container {
    padding: 0 56px;
  }

  .app-slider-card {
    height: 510px;
    max-height: 510px;
  }
}

@media (max-width: 1024px) {
  .app-slider-viewport-container {
    padding: 0 52px;
  }

  .app-slider-card {
    flex: 0 0 46%;
    margin: 0 2%;
    height: 500px;
    max-height: 500px;
  }

  .app-slider-card.is-active-center {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .app-slider-section {
    padding: 60px 0 48px;
  }

  .app-slider-header {
    margin-bottom: 40px;
  }

  .app-slider-viewport-container {
    padding: 0 46px;
  }

  .app-slider-card {
    flex: 0 0 82%;
    margin: 0 4%;
    height: 490px;
    max-height: 490px;
  }

  .app-slider-card.is-active-center {
    transform: scale(1.0);
  }

  .app-card-body {
    padding: 18px 18px 20px;
  }

  .app-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .arrow-left {
    left: 4px;
  }

  .arrow-right {
    right: 4px;
  }

  .app-modal-img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .app-slider-viewport-container {
    padding: 0 38px;
  }

  .app-slider-card {
    flex: 0 0 90%;
    margin: 0 2%;
    height: 470px;
    max-height: 470px;
  }

  .app-card-img-box {
    height: 170px;
  }

  .app-slider-dots {
    gap: 6px;
    margin-top: 26px;
  }

  .app-modal-content {
    padding: 18px 20px 26px;
  }

  .app-modal-img {
    height: 150px;
  }
}

@media (max-width: 360px) {
  .app-slider-card {
    flex: 0 0 92%;
    margin: 0 1.5%;
    height: 450px;
    max-height: 450px;
  }

  .app-card-title {
    font-size: 14px;
  }

  .app-card-body {
    padding: 14px 14px 16px;
  }

  .app-card-img-box {
    height: 155px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .app-slider-track.is-transitioning,
  .app-slider-card,
  .app-card-img-box img,
  .app-modal-overlay,
  .app-modal-box {
    transition: none;
  }

  .app-slider-eyebrow::before {
    animation: none;
  }
}

.product-section {
  padding: 60px 40px;
  background: #ffffff;
}

.section-label {
  text-align: center;
  color: #1a7fc1;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.swiper-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 50px;
}

.swiper-track {
  display: flex;
  gap: 16px;
  padding: 4px 0 16px;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.card {
  flex: 0 0 calc(25% - 12px);
  background: #1a7fc1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #1a7fc1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
}

.card-placeholder i {
  font-size: 44px;
  color: rgba(255, 255, 255, 0.3);
}

.card-label {
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 13px 10px;
  letter-spacing: 0.3px;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  background: rgba(15, 23, 30, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  margin-left: 5px;
  margin-right: 5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  padding: 0;
}

.nav-btn::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2.8px solid rgba(220, 225, 230, 0.9);
  border-right: 2.8px solid rgba(220, 225, 230, 0.9);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.nav-prev {
  left: -4px;
}

.nav-prev::after {
  transform: rotate(-135deg);
  margin-right: -3px;
}

.nav-next {
  right: -4px;
}

.nav-next::after {
  transform: rotate(45deg);
  margin-left: -3px;
}

.nav-btn:hover {
  background: rgba(20, 32, 42, 0.95);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-60%) scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-btn:hover::after {
  border-color: #ffffff;
}

.nav-next:hover::after {
  transform: rotate(45deg) translate(1px, -1px);
}

.nav-prev:hover::after {
  transform: rotate(-135deg) translate(-1px, 1px);
}

.nav-btn:active {
  transform: translateY(-60%) scale(0.96);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.swiper-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}

.dot.active {
  background: #1a7fc1;
  transform: scale(1.35);
}

@media (max-width: 900px) {
  .card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 560px) {
  .card {
    flex: 0 0 100%;
  }

  .section-title {
    font-size: 24px;
  }

  .product-section {
    padding: 40px 16px;
  }

  .swiper-wrapper {
    padding: 0 36px;
  }
}

[data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="up"] {
  transform: translateY(48px);
}

[data-reveal="down"] {
  transform: translateY(-48px);
}

[data-reveal="left"] {
  transform: translateX(-56px);
}

[data-reveal="right"] {
  transform: translateX(56px);
}

[data-reveal="zoom"] {
  transform: scale(0.88);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

[data-reveal-index="0"] {
  transition-delay: 0ms;
}

[data-reveal-index="1"] {
  transition-delay: 90ms;
}

[data-reveal-index="2"] {
  transition-delay: 180ms;
}

[data-reveal-index="3"] {
  transition-delay: 270ms;
}

[data-reveal-index="4"] {
  transition-delay: 360ms;
}

[data-reveal-index="5"] {
  transition-delay: 450ms;
}

[data-reveal-index="6"] {
  transition-delay: 540ms;
}

[data-reveal-index="7"] {
  transition-delay: 630ms;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 680px) {
  [data-reveal="up"] {
    transform: translateY(28px);
  }

  [data-reveal="down"] {
    transform: translateY(-28px);
  }

  [data-reveal="left"] {
    transform: translateX(-32px);
  }

  [data-reveal="right"] {
    transform: translateX(32px);
  }

  [data-reveal="zoom"] {
    transform: scale(0.92);
  }
}

.hero-background-canvas {
  transition: transform 0.1s linear;
}

.faq-section {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.faq-title {
  text-align: center;
  font-size: clamp(24px, 4.5vw, 38px);
  font-weight: 800;
  color: #111111;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
}

.faq-header {
  width: 100%;
  background-color: #2384b1;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  cursor: pointer;
  outline: none;
  text-align: left;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.faq-header:hover {
  background-color: #1e739b;
}

.faq-question {
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.4;
  padding-right: 20px;
}

.faq-icon {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  user-select: none;
  line-height: 1;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 16px 20px 24px 20px;
  color: #222222;
  font-size: 14.5px;
  line-height: 1.6;
  background-color: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-header {
  background-color: #2384b1;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 0 20px;
    margin: 40px auto;
  }

  .faq-title {
    font-size: 30px;
  }

  .faq-question {
    font-size: 14px;
  }
}

.product-showcase-section {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  color: #333333;
}

.product-gallery-wrapper {
  float: left;
  width: 35%;
  margin-right: 45px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-text-flow {
  display: block;
}

.clear-layout-break {
  clear: both;
  display: block;
}

.main-display-box {
  width: 100%;
  height: clamp(220px, 40vw, 380px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.main-display-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease-in-out;
}

.thumbnail-grid-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  margin-bottom: 25px;
}

.thumb-item {
  width: 65px;
  height: 65px;
  border: 1px solid #dcdcdc;
  padding: 4px;
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumb-item.active {
  border-color: #0284c7;
}

.share-links-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: auto;
  vertical-align: middle;
}

.share-lbl {
  font-size: 13px;
  font-weight: bold;
  color: #333333;
}

.share-social-icons {
  display: flex;
  gap: 5px;
}

.s-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.s-icon:hover {
  opacity: 0.85;
}

.si-fb {
  background-color: #1877F2;
}

.si-tw {
  background-color: #000000;
}

.si-wa {
  background-color: #25D366;
}

.si-in {
  background-color: #0A66C2;
}

.si-tg {
  background-color: #24A1DE;
}

.si-mail {
  background-color: #EA4335;
}

.sub-category-tag {
  color: #0284c7;
  font-size: 13px;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.main-bold-title {
  font-size: 21px;
  line-height: 1.35;
  font-weight: bold;
  color: #111111;
  margin: 0 0 14px 0;
}

.secondary-title {
  font-size: 18px;
  font-weight: normal;
  color: #444444;
  line-height: 1.4;
  margin: 0 0 16px 0;
}

.editorial-body-desc p {
  font-size: 13px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 14px;
  text-align: justify;
}

.product-bottom-narrative {
  padding-top: 15px;
  width: 100%;
}

.bottom-paragraphs-flow p {
  font-size: 12.5px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .product-gallery-wrapper {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
    align-items: center;
  }

  .thumbnail-grid-row {
    justify-content: center;
  }

  .share-links-strip {
    justify-content: center;
  }
}

.button-container {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.gradient-btn {
  padding: 16px 28px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  border: 1px solid #111827;
  border-radius: 6px;
  cursor: pointer;
  font-family: sans-serif;
  background: linear-gradient(135deg, #000000 20%, #1e3a8a 50%, #1d4ed8 80%, #000000 100%);
  background-size: 300% 100%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.2s ease;
}

.gradient-btn:hover {
  background-position: 70% 50%;
}

.gradient-btn:active {
  transform: scale(0.98);
}

.breadcrumb-container {
  width: 100%;
  min-height: clamp(160px, 32vw, 260px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 max(20px, 10%) 0 max(16px, 8%);
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(ellipse at bottom right, #005580 0%, #011120 45%, #000000 80%);
}

.breadcrumb-title {
  color: #ffffff;
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.breadcrumb-links {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}

.breadcrumb-item.link {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb-item.link:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #ffffff;
  margin: 0 5px 0 7px;
  font-weight: 300;
}

.breadcrumb-item.active {
  color: #ffffff;
}

.floating-container {
  position: fixed;
  bottom: 30px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: clamp(44px, 12vw, 55px);
  height: clamp(44px, 12vw, 55px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
  text-decoration: none;
  border: none;
}

.float-btn:hover {
  transform: scale(1.08);
}

.message-btn {
  background-color: #f43f5e;
}

.message-btn:hover {
  background-color: #e11d48;
}

.whatsapp-btn {
  background-color: #25D366;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  background-color: #1ebd58;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.brochure-sidebar-btn {
  position: fixed;
  right: 0;
  top: 35%;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right bottom;
  background-color: #f43f5e;
  color: white;
  padding: 12px 24px;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: -2px -4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: background-color 0.2s;
}

.brochure-sidebar-btn:hover {
  background-color: #e11d48;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background-color: #032135;
  width: 90%;
  max-width: 600px;
  padding: 30px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row .form-group {
  min-width: 140px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-input,
.form-select,
.form-textarea {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px;
  color: white;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #0088cc;
}

.form-textarea {
  resize: none;
  height: 100px;
  margin-bottom: 15px;
}

.submit-btn {
  background: linear-gradient(135deg, #000000 40%, #1b88d0 100%);
  color: white;
  border: 1px solid #111827;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0b69b0 0%, #1991d1 100%);
}

.marketplace-section {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

.marketplace-title {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 800;
  color: #212529;
  margin: 0 0 35px 0;
  text-align: center;
}

.marketplace-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marketplace-row {
  width: 100%;
}

.marketplace-row.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .marketplace-row.split-row {
    grid-template-columns: 1fr;
  }
}

.marketplace-row.city-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .marketplace-row.city-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .marketplace-row.city-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 375px) {
  .marketplace-row.city-row {
    grid-template-columns: 1fr;
  }
}

.market-btn {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid #000000;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  outline: none;
  box-sizing: border-box;
  background-size: 100% 100%;
  transition: background 0.4s ease-in-out;
}

.marketplace-row.split-row .market-btn {
  background: linear-gradient(115deg, #000000 0%, #000000 70%, #0c435c 85%, #18678c 100%);
}

.marketplace-row.split-row .market-btn:hover {
  background: linear-gradient(115deg, #000000 0%, #000000 40%, #10506e 65%, #1c759e 100%);
}

.marketplace-row:not(.split-row):not(.city-row) .market-btn {
  background: linear-gradient(115deg, #000000 0%, #000000 70%, #1a1c5c 85%, #2b2e8c 100%);
}

.marketplace-row:not(.split-row):not(.city-row) .market-btn:hover {
  background: linear-gradient(115deg, #000000 0%, #000000 40%, #22246e 65%, #35389e 100%);
}

.market-btn.city-btn {
  width: 100%;
  height: 100%;
  max-width: none;
  background: linear-gradient(115deg, #000000 0%, #000000 70%, #103a3c 85%, #1c5c5f 100%);
}

.market-btn.city-btn:hover {
  background: linear-gradient(115deg, #000000 0%, #000000 40%, #144a4d 65%, #24767a 100%);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.footer-desc-text,
.gt-contact-desc,
.editorial-body-desc p,
.bottom-paragraphs-flow p,
.hot-prod-uniq-top-desc,
.app-card-desc,
.app-modal-desc,
.faq-content,
.gt-contact-detail-item span {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

@media (min-width: 1921px) {

  .hero-slides-window,
  .footer-container,
  .gt-contact-container,
  .vid-gallery-uniq-grid,
  .gt-gallery-grid {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1600px) {
  .app-slider-viewport-container {
    padding: 0 60px;
  }
}

@media (max-width: 1400px) {
  .footer-container {
    padding: 56px 32px 20px;
  }

  .gt-contact-section {
    padding: clamp(2.25rem, 6vw, 4.5rem) clamp(1.25rem, 6vw, 5rem);
  }
}

@media (max-width: 1200px) {
  .products-header {
    padding: 0 20px;
  }

  .hot-prod-uniq-section {
    padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 6vw, 4.5rem);
  }

  .vid-gallery-uniq-section {
    padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 6vw, 4.5rem);
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 11px 22px;
  }

  .gt-contact-container {
    gap: 3rem;
  }

  .footer-columns {
    gap: 30px;
  }

  .product-showcase-section {
    padding: 0 16px;
  }
}

@media (max-width: 820px) {
  .ace-flow-uniq-section {
    padding: 2.75rem 2rem;
  }

  .hot-prod-uniq-section {
    padding: clamp(1.75rem, 5vw, 3rem) 1.5rem;
  }

  .vid-gallery-uniq-section {
    padding: clamp(1.75rem, 5vw, 3rem) 1.5rem;
  }

  .gt-contact-section {
    padding: clamp(2rem, 6vw, 3rem) 1.5rem;
  }

  .marketplace-title {
    margin-bottom: 26px;
  }
}

@media (max-width: 768px) {
  .products-header {
    margin-bottom: 28px;
  }

  .stats-section {
    padding: 0 20px;
  }

  .thumb-item {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    padding: 40px 18px 16px;
  }

  .marketplace-section {
    padding: 32px 16px;
  }

  .connect-banner-uniq-container {
    padding: 2rem 1.25rem;
  }

  .gt-recaptcha-mock-box {
    padding: 0 0.6rem 0 0.8rem;
  }

  .app-slider-viewport-container {
    padding: 0 34px;
  }

  .products-swiper,
  .swiper-wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 480px) {
  .ns-hamburger {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .ns-sidebar {
    width: min(300px, 92vw);
  }

  .ns-link,
  .ns-toggle {
    padding: 15px 18px;
    font-size: 15px;
  }

  .ns-sub-toggle {
    padding: 13px 18px 13px 32px;
    font-size: 13px;
  }

  .ns-sub-panel-list li a {
    padding: 11px 18px 11px 32px;
    font-size: 12.5px;
  }

  .stat-item {
    max-width: 100%;
  }

  .thumb-item {
    width: 52px;
    height: 52px;
  }

  .main-bold-title {
    font-size: 19px;
  }

  .secondary-title {
    font-size: 16px;
  }

  .gt-btn-submit,
  .submit-btn {
    width: 100%;
  }
}

@media (max-width: 412px) {
  .products-header {
    padding: 0 16px;
  }

  .marketplace-title {
    font-size: clamp(20px, 6vw, 28px);
  }

  .faq-question {
    font-size: 13.5px;
  }
}

@media (max-width: 390px) {
  .app-slider-viewport-container {
    padding: 0 30px;
  }

  .gt-btn-submit {
    padding: 0.9rem 1.5rem;
  }

  .breadcrumb-container {
    padding: 0 16px;
  }
}

@media (max-width: 375px) {
  .hot-prod-uniq-video-title {
    font-size: 1.1rem;
  }

  .hot-prod-uniq-tab-title {
    font-size: 1.05rem;
  }

  .footer-title {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .lang-select {
    min-width: 0;
  }

  .thumb-item {
    width: 48px;
    height: 48px;
  }

  .s-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 320px) {
  .ns-hamburger {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .ns-sidebar {
    width: min(280px, 94vw);
  }

  .ns-sidebar-head {
    padding: 16px 16px;
  }

  .ns-sidebar-foot {
    padding: 14px 16px 18px;
  }

  .footer-container {
    padding: 36px 14px 14px;
  }

  .marketplace-title {
    font-size: 20px;
  }

  .faq-question {
    font-size: 12.5px;
  }

  .gt-btn-submit {
    padding: 0.85rem 1.25rem;
    min-width: 0;
    width: 100%;
  }

  .connect-banner-uniq-text-left,
  .connect-banner-uniq-text-right {
    letter-spacing: 0;
  }
}

@media (max-height: 480px) and (orientation: landscape) {
  .hero-slides-window {
    min-height: 0;
    padding: 50px 20px 60px;
  }

  .breadcrumb-container {
    min-height: 180px;
  }
}

/* Container reset */
.editorial-body-desc table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-size: 14px !important;
  margin: 1.5rem 0 !important;
  background-color: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

/* Header Row - Teal Background */
.editorial-body-desc table thead tr,
.editorial-body-desc table tr:first-child th {
  background-color: #1a80a4 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  text-align: left !important;
}

.editorial-body-desc table th {
  padding: 12px 14px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.editorial-body-desc table th:last-child {
  border-right: none !important;
}

/* Base Body Cell Styling */
.editorial-body-desc table td {
  padding: 12px 14px !important;
  color: #374151 !important;
  border-right: 1px solid #e5e7eb !important;
  border-bottom: 1px solid #e5e7eb !important;
}

.editorial-body-desc table td:last-child {
  border-right: none !important;
}

/* Row 1 Highlight - Pink Background */
.editorial-body-desc table tbody tr:first-child,
.editorial-body-desc table tbody tr:first-child td {
  background-color: #f4245c !important;
  color: #ffffff !important;
  font-weight: 500 !important;
}

/* Link in Pink Row */
.editorial-body-desc table tbody tr:first-child td a {
  color: #a5f3fc !important; /* Soft cyan link */
  text-decoration: underline !important;
  font-weight: 600 !important;
}

.editorial-body-desc table tbody tr:first-child td a:hover {
  color: #ffffff !important;
}

/* Alternating Row Colors (Even Rows) */
.editorial-body-desc table tbody tr:nth-child(even) td {
  background-color: #e5e7eb !important; /* Soft Gray */
}

/* Alternating Row Colors (Odd Rows, except 1st) */
.editorial-body-desc table tbody tr:nth-child(odd):not(:first-child) td {
  background-color: #ffffff !important; /* White */
}

/* Standard Link Styling */
.editorial-body-desc table tbody tr:not(:first-child) td a {
  color: #0066cc !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.editorial-body-desc table tbody tr:not(:first-child) td a:hover {
  text-decoration: underline !important;
}

/* Row Hover Effect */
.editorial-body-desc table tbody tr:hover:not(:first-child) td {
  background-color: #d1d5db !important;
}

/* ===== Horizontal Scroll Wrapper ===== */
.editorial-body-desc .table-container {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  border-radius: 0.125rem !important;
}

/* Ensure table doesn't shrink columns - forces scroll instead of squeeze */
.editorial-body-desc .table-container table {
  min-width: 700px !important; /* adjust based on your 6 columns */
}

/* Custom scrollbar - visible at the bottom (Chrome/Safari/Edge) */
.editorial-body-desc .table-container::-webkit-scrollbar {
  height: 10px !important;
}

.editorial-body-desc .table-container::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
  border-radius: 5px !important;
}

.editorial-body-desc .table-container::-webkit-scrollbar-thumb {
  background: #b0b0b0 !important;
  border-radius: 5px !important;
}

.editorial-body-desc .table-container::-webkit-scrollbar-thumb:hover {
  background: #909090 !important;
}

/* Firefox scrollbar styling */
.editorial-body-desc .table-container {
  scrollbar-width: thin !important;
  scrollbar-color: #b0b0b0 #f1f1f1 !important;
}

/* ------- TECHNOLOGY SECTION-------- */
.amx-techsec-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  box-sizing: border-box;
}

.amx-techsec-wrap * {
  box-sizing: border-box;
}

.amx-techsec-eyebrow {
  display: block;
  text-align: center;
  color: #0d6efd;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 0.35rem;
}

.amx-techsec-title {
  display: block;
  text-align: center;
  color: #1a1a2e;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.amx-techsec-banner {
  border: 1px solid #d9dde3;
  border-radius: 4px;
  padding: 0.85rem 1.25rem;
  margin: 1.75rem 0;
}

.amx-techsec-banner-text {
  color: #0d6efd;
  font-weight: 600;
  font-size: 1rem;
}

.amx-techsec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.amx-techsec-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(160deg, #2f6f8f 0%, #0d2a3d 100%);
  aspect-ratio: 5 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amx-techsec-card-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 0.75rem;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  background: rgba(0, 0, 0, 0.15);
}

.amx-techsec-card-img {
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
}

@media (max-width: 820px) {
  .amx-techsec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .amx-techsec-grid {
    grid-template-columns: 1fr;
  }
  .amx-techsec-title {
    font-size: 1.3rem;
  }
}

/* ------BLOG SECTION------ */
.amx-blogsec-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  box-sizing: border-box;
}

.amx-blogsec-wrap * {
  box-sizing: border-box;
}

.amx-blogsec-title {
  display: block;
  text-align: center;
  color: #1a1a2e;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1.75rem;
}

.amx-blogsec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.amx-blogsec-card {
  border: 1px solid #d9dde3;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.amx-blogsec-media {
  background-color: #14577a;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.amx-blogsec-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amx-blogsec-media.amx-blogsec-media--contain img {
  width: auto;
  height: auto;
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.amx-blogsec-body {
  padding: 1.1rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.amx-blogsec-heading {
  color: #1a1a2e;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.6rem;
}

.amx-blogsec-desc {
  color: #4b4b4b;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 0 1rem;
  flex: 1;
}

.amx-blogsec-readmore {
  color: #2b3fae;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.amx-blogsec-readmore:hover {
  text-decoration: underline;
}

.amx-blogsec-readmore-arrow {
  font-size: 1rem;
}

@media (max-width: 900px) {
  .amx-blogsec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .amx-blogsec-grid {
    grid-template-columns: 1fr;
  }
  .amx-blogsec-title {
    font-size: 1.4rem;
  }
}