/* -----------------------------------
   DESIGN SYSTEM VARIABLES
----------------------------------- */
:root {
  --primary-orange: #FB850B;
  --orange-hover: #D77009;
  --dark-navy: #04224A;
  --navy-hover: #021734;
  --text-muted: rgba(255, 255, 255, 0.88);
  --white: #FFFFFF;
  --font-heading: 'Geist', sans-serif;
  --font-body: 'Inter Tight', sans-serif;
  --font-main: var(--font-body);
  --border-line: #E5E7EB;

  /* GLOBAL TYPOGRAPHY SCALE - DESKTOP */
  --fs-section-title: clamp(2.3rem, 3.6vw, 3.6rem);
  --fs-section-body: 18px;
  --fs-hero-title: var(--fs-section-title);
  --fs-hero-body: var(--fs-section-body);
  --fs-card-title: 22px;
  --fs-card-body: 15px;
  --fs-stat-number: 52px;
  --fs-stat-label: 15px;
  --fs-badge: 14px;
  --inline-tag-size: 44px;
}

/* -----------------------------------
   RESET & GLOBAL BASE
----------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: #FFFFFF;
  color: #04224A;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.about-title,
.categories-title,
.services-title,
.process-title,
.process-card-title,
.service-card-title,
.category-name,
.brands-title,
.stat-number {
  font-family: var(--font-heading);
}

.container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* -----------------------------------
   HEADER / NAVBAR STYLES
----------------------------------- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  padding: 24px 0;
  box-shadow: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* When the mobile menu drawer is open, add the solid white background */
.navbar.active,
body.menu-open .navbar {
  background-color: #FFFFFF !important;
  box-shadow: 0 1px 0 var(--border-line);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Hide the logo when the mobile drawer is active */
.navbar.active .logo,
body.menu-open .logo {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.logo img {
  height: 68px;
  /* height: 62px; */
  width: auto;
  display: block;
  margin-left: -10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

/* Desktop links: White text for the dark hero background */
.nav-links a {
  font-family: var(--font-main);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0.9;
  position: relative;
  padding-bottom: 6px;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FB850B;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-navy-flat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  background-color: #04224A;
  border: 1px solid #06326E;
  border-radius: 2px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.btn-navy-flat:hover {
  background-color: #021734;
  border-color: #084393;
}

.btn-orange-solid-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  background-color: #FB850B;
  border: none;
  border-radius: 2px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.btn-orange-solid-hero:hover {
  background-color: var(--orange-hover);
}

/* -----------------------------------
   HERO SECTION STYLES
----------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.22) 100%), 
              url('../img/image1.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 70px;
  color: var(--white);
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(4, 34, 74, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 7px 18px 7px 12px;
  border-radius: 50px;
  border: 1px solid transparent;
  background-image: linear-gradient(rgba(4, 34, 74, 0.37), rgba(4, 34, 74, 0.37)), 
                    linear-gradient(90deg, #FB850B 0%, #04224A 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #FFFFFF;
  font-size: var(--fs-badge);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.badge-dot {
  width: 9px;
  height: 9px;
  background-color: #FB850B;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-size: var(--fs-hero-title);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 850px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-body {
  font-size: var(--fs-hero-body);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 630px;
}

/* -----------------------------------
   HERO BUTTONS WRAPPER
----------------------------------- */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

/* -----------------------------------
   CONTINUOUS PAGE GRID WRAPPER
----------------------------------- */
.page-grid-wrapper {
  position: relative;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  background-color: #FFFFFF;
}

.page-grid-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 1px;
  background-color: var(--border-line);
  z-index: 10;
  pointer-events: none;
}

.page-grid-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 1px;
  background-color: var(--border-line);
  z-index: 10;
  pointer-events: none;
}

.page-grid-wrapper .container {
  padding-left: 63px;
  padding-right: 63px;
}

/* -----------------------------------
   BRANDS SECTION STYLES
----------------------------------- */
.brands-section {
  position: relative;
  padding: 44px 0;
}

.brands-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25px;
  right: 25px;
  height: 1px;
  background-color: var(--border-line);
}

.brands-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #8892B0;
  margin-bottom: 38px;
  text-transform: uppercase;
}

.brands-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 150px;
  animation: slideRight 22s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  flex-shrink: 0;
}

.brand-item img {
  max-height: 100%;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-item img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* -----------------------------------
   ABOUT SECTION
----------------------------------- */
.about-section {
  position: relative;
  padding: 110px 0;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25px;
  right: 25px;
  height: 1px;
  background-color: var(--border-line);
}

.about-header-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}

.about-main-info {
  max-width: 820px;
}

.orange-dot-badge {
  background: transparent !important;
  color: #04224A !important;
  border: none !important;
  margin-bottom: 28px;
  background-image: none !important;
  padding: 6px 0 !important;
}

.about-title {
  font-size: var(--fs-section-title);
  font-weight: 700;
  line-height: 1.12;
  color: #04224A;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  width: 100%;
}

.brand-inline-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--inline-tag-size);
  height: var(--inline-tag-size);
  background-color: #04224A;
  border-radius: 4px;
  vertical-align: middle;
  margin: 0 4px;
  overflow: hidden;
}

.brand-inline-tag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlight-orange {
  color: #FB850B;
}

.about-description {
  font-size: var(--fs-section-body);
  line-height: 1.6;
  color: #4B5563;
  max-width: 760px;
}

.about-action {
  margin-bottom: 8px;
  flex-shrink: 0;
}

.about-section .container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}

.stats-grid-wrapper {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background-color: transparent;
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
}

.stat-card {
  background-color: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 2px;
  background-image: linear-gradient(#FFFFFF, #FFFFFF), linear-gradient(180deg, #FB850B, #04224A);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  margin-left: -1px;
  padding: 32px 24px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:first-child {
  margin-left: 0;
}

.stat-icon {
  margin-bottom: 24px;
}

.stat-number {
  font-size: var(--fs-stat-number);
  font-weight: 800;
  color: #04224A;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.stat-number .plus {
  color: #FB850B;
  font-weight: 700;
  margin-left: 2px;
}

.stat-label {
  font-size: var(--fs-stat-label);
  font-weight: 500;
  color: #6B7280;
}

/* -----------------------------------
   CATEGORIES SECTION STYLES
----------------------------------- */
.categories-section {
  position: relative;
  padding: 80px 0;
}

/* -----------------------------------
   SERVICES SECTION STYLES
----------------------------------- */
.services-section {
  position: relative;
  padding: 100px 0 80px 0;
  background-color: #FFFFFF;
}

.services-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 54px;
}

.centered-badge {
  margin-left: auto;
  margin-right: auto;
}

.services-title {
  font-size: var(--fs-section-title);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark-navy);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-align: center;
}

.services-description {
  font-size: var(--fs-section-body);
  line-height: 1.6;
  color: #4B5563;
  max-width: 720px;
  text-align: center;
  margin-bottom: 32px;
}

.services-cta {
  display: flex;
  justify-content: center;
}

/* CARDS WRAPPER & GRID */
.services-cards-wrapper {
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
  container-type: inline-size;
  scroll-snap-type: x mandatory;
}

.services-cards-wrapper::-webkit-scrollbar {
  display: none;
}

.services-cards-grid {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 0;
  background-color: transparent;
}

.service-card {
  width: calc((100cqw + 6px) / 4);
  aspect-ratio: 1 / 0.78;
  box-sizing: border-box;
  padding: 24px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 2px;
  background-image: linear-gradient(#FFFFFF, #FFFFFF), linear-gradient(180deg, #FB850B, #04224A);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  margin-left: -2px;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-card:first-child {
  margin-left: 0;
}

.service-card:hover {
  background-image: linear-gradient(#FAFAFA, #FAFAFA), linear-gradient(180deg, #FB850B, #04224A);
}

.service-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: #FB850B;
}

.service-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #04224A;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.service-card-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #4B5563;
}

/* NAV CONTROLS */
.services-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.services-nav-btn {
  width: 44px;
  height: 44px;
  background-color: #FFFFFF;
  border: 1px solid #04224A;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.services-nav-btn svg {
  stroke: #04224A;
  transition: stroke 0.2s ease;
}

.services-nav-btn:hover:not(:disabled) {
  background-color: #04224A;
}

.services-nav-btn:hover:not(:disabled) svg {
  stroke: #FFFFFF;
}

.services-nav-btn:disabled,
.services-nav-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  border-color: #CBD5E1;
  background-color: #F8FAFC;
}

.services-nav-btn:disabled svg,
.services-nav-btn.disabled svg {
  stroke: #94A3B8;
}

/* -----------------------------------
   PROCESS / HOW IT WORKS SECTION
----------------------------------- */
.process-section {
  padding: 100px 0 90px 0;
  position: relative;
  background-color: #FFFFFF;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;
  right: 25px;
  height: 1px;
  background-color: var(--border-line);
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25px;
  right: 25px;
  height: 1px;
  background-color: var(--border-line);
}

.process-container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}

.process-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-title {
  font-size: var(--fs-section-title);
  font-weight: 700;
  color: #04224A;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.process-description {
  font-size: var(--fs-section-body);
  line-height: 1.6;
  color: #4B5563;
  max-width: 680px;
  margin-bottom: 32px;
}

.process-cta {
  display: flex;
  justify-content: center;
}

/* CARDS WRAPPER & GRID */
.process-cards-wrapper {
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
  overflow-x: auto;
  scrollbar-width: none;
  container-type: inline-size;
}

.process-cards-wrapper::-webkit-scrollbar {
  display: none;
}

.process-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  gap: 0;
}

.process-card {
  padding: 36px 28px 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 250px;
  box-sizing: border-box;
}

/* Card Themes */
.process-card-dark {
  background-color: #04224A;
  color: #FFFFFF;
}

.process-card-dark .process-number {
  color: #FFFFFF;
}

.process-card-dark .process-card-title {
  color: #FFFFFF;
}

.process-card-dark .process-card-text {
  color: #D1D5DB;
}

.process-card-light {
  background-color: #F3F4F6;
  color: #04224A;
}

.process-card-light .process-number {
  color: #FB850B;
}

.process-card-light .process-card-title {
  color: #04224A;
}

.process-card-light .process-card-text {
  color: #4B5563;
}

.process-number {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  letter-spacing: -0.02em;
}

.process-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.process-card-text {
  font-size: 14px;
  line-height: 1.55;
}

.process-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.process-nav-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.process-nav-controls .process-dots {
  display: flex;
  margin-top: 0;
}

.process-nav-btn {
  width: 44px;
  height: 44px;
  background-color: #FFFFFF;
  border: 1px solid #04224A;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.process-nav-btn svg {
  stroke: #04224A;
  transition: stroke 0.2s ease;
}

.process-nav-btn:hover:not(:disabled) {
  background-color: #04224A;
}

.process-nav-btn:hover:not(:disabled) svg {
  stroke: #FFFFFF;
}

.process-nav-btn:disabled,
.process-nav-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.process-nav-btn:disabled svg,
.process-nav-btn.disabled svg {
  stroke: #94A3B8;
}

.process-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E5E7EB;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-dot.active {
  background-color: #FB850B;
  width: 24px;
  border-radius: 4px;
}

.categories-header-container {
  max-width: 1520px;
  margin: 0 auto 60px auto;
  padding: 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.categories-title {
  font-size: var(--fs-section-title);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark-navy);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.categories-description {
  font-size: var(--fs-section-body);
  line-height: 1.6;
  color: #4B5563;
  max-width: 780px;
}

.categories-grid-wrapper {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
  /* border-bottom: 1px solid var(--border-line); */
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #FAFAFA;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-top: 1px solid var(--border-line);
  position: relative;
}

.category-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
  background-color: #FAFAFA;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 280px;
}

.category-card:nth-child(3n) {
  border-right: none;
}

.category-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.category-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-orange);
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.category-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-navy);
  background-color: transparent;
  padding: 6px 14px;
  border-radius: 20px;
  border: 2px solid transparent;
  background-image: linear-gradient(#FAFAFA, #FAFAFA), linear-gradient(135deg, var(--primary-orange), var(--dark-navy));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  white-space: nowrap;
}

.category-content {
  margin-bottom: 24px;
}

.category-name {
  font-size: var(--fs-card-title);
  font-weight: 700;
  color: var(--dark-navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.category-text {
  font-size: var(--fs-card-body);
  line-height: 1.55;
  color: #6B7280;
}

.btn-category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  background-color: var(--dark-navy);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-category-link svg {
  stroke: #FFFFFF;
  transition: transform 0.2s ease;
}

.btn-category-link:hover {
  background-color: var(--primary-orange);
}

.btn-category-link:hover svg {
  transform: translateX(4px);
}

/* -----------------------------------
   MOBILE TOGGLE ICON (Dynamic Color Switch)
----------------------------------- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 102;
  position: relative;
}

.mobile-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: #FFFFFF; /* White color when the drawer is closed */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Changes the icon color to navy blue when the navigation drawer is open */
.navbar.active .mobile-toggle span,
body.menu-open .mobile-toggle span,
.mobile-toggle.active span {
  background-color: #04224A !important;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* -----------------------------------
   TESTIMONIALS SECTION
----------------------------------- */
.testimonials-section {
  padding: 110px 0;
  position: relative;
  background-color: #FFFFFF;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;
  right: 25px;
  height: 1px;
  background-color: var(--border-line);
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25px;
  right: 25px;
  height: 1px;
  background-color: var(--border-line);
}

.testimonials-container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-title {
  font-size: var(--fs-section-title);
  font-weight: 700;
  color: #04224A;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.testimonials-description {
  font-size: var(--fs-section-body);
  line-height: 1.6;
  color: #4B5563;
  max-width: 680px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
  background-color: var(--border-line);
  gap: 1px;
  overflow: hidden;
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
}

.testimonials-right-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
}

.testimonial-card {
  background-color: #F8FAFC;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.testimonial-card-small {
  padding: 40px;
  gap: 28px;
}

.testimonial-quote-wrapper {
  display: flex;
  align-items: center;
}

.testimonial-quote-icon {
  display: block;
}

.testimonial-text {
  color: #04224A;
  font-family: var(--font-body);
  line-height: 1.45;
  font-weight: 500;
}

.testimonial-text-large {
  font-size: clamp(1.2rem, 1.75vw, 1.75rem);
  letter-spacing: -0.02em;
}

.testimonial-text-small {
  font-size: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #E2E8F0;
}

.testimonial-card-small .testimonial-avatar {
  width: 44px;
  height: 44px;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author-name {
  font-size: 15px;
  font-weight: 700;
  color: #04224A;
  margin: 0;
}

.testimonial-author-role {
  font-size: 13px;
  color: #4B5563;
  margin: 0;
}

/* -----------------------------------
   CTA SECTION
----------------------------------- */
.cta-section {
  position: relative;
  margin: 0 25px;
  padding: 110px 40px;
  background: linear-gradient(180deg, rgba(4, 18, 38, 0.88) 0%, rgba(4, 18, 38, 0.94) 100%), 
              url('assets/images/imagecta.png') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
  border-left: 1px solid var(--border-line);
  border-right: 1px solid var(--border-line);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #FB850B;
  z-index: 5;
}

.cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 840px;
  margin-bottom: 24px;
}

.cta-description {
  font-size: var(--fs-section-body);
  line-height: 1.6;
  color: #CBD5E1;
  max-width: 680px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .cta-section {
    margin: 0 24px;
    padding: 80px 30px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    margin: 0 16px;
    padding: 60px 20px;
  }
  .cta-title {
    font-size: 28px;
    line-height: 1.25;
  }
  .cta-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

/* -----------------------------------
   FOOTER SECTION STYLES
----------------------------------- */
.footer-section {
  position: relative;
  background-color: #03142c;
  padding-top: 80px;
  padding-bottom: 40px;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 80px;
}

.footer-section .container {
  padding-left: 63px;
  padding-right: 63px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer-brand-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  font-weight: 400;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  word-break: break-all;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-orange);
  transform: translateX(2px);
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 60px 0 30px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
  margin: 0;
}

.footer-meta {
  margin: 0;
}

/* Responsive Footer overrides */
@media (max-width: 1024px) {
  .footer-section {
    margin-top: 60px;
  }
  .footer-section .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding-top: 60px;
    padding-bottom: 30px;
    margin-top: 40px;
  }
  .footer-section .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .footer-brand {
    gap: 16px;
  }
  
  .footer-brand-desc {
    max-width: 100%;
  }
  
  .footer-col-title {
    margin-bottom: 16px;
  }
  
  .footer-divider {
    margin: 40px 0 24px 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }
}

/* -----------------------------------
   RESPONSIVE MEDIA QUERIES
----------------------------------- */
@media (max-width: 992px) {
  .navbar { 
    padding: 20px 0;
  }
  
  .navbar.active,
  body.menu-open .navbar {
    background: #FFFFFF !important;
  }

  .mobile-toggle { 
    display: flex;
  }

  /* Slide-down mobile drawer menu */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 28px 36px 28px;
    gap: 16px;
    border-bottom: 1px solid var(--border-line);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .nav-menu.active { 
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
  }

  /* Inside the mobile drawer dropdown: Navy blue text */
  .nav-links a {
    color: var(--dark-navy);
    font-weight: 600;
    font-size: 16px;
    opacity: 1;
  }

  .nav-actions {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border-line);
  }

  .nav-actions .btn-navy-flat,
  .nav-actions .btn-orange-solid-hero {
    flex: 1;
    width: 100%;
    padding: 0 12px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 14px;
    height: 48px;
  }

  .about-header-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    gap: 16px;
  }

  .stat-card {
    margin-left: 0 !important;
  }
}

@media (max-width: 1024px) {
  :root {
    --fs-section-title: clamp(2.0rem, 3.2vw, 2.7rem);
    --fs-section-body: 17px;
    --fs-hero-title: var(--fs-section-title);
    --fs-hero-body: var(--fs-section-body);
    --fs-card-title: 20px;
    --fs-card-body: 14px;
    --fs-stat-number: 42px;
    --fs-stat-label: 14px;
    --fs-badge: 13px;
    --inline-tag-size: 38px;
  }

  .page-grid-wrapper::before,
  .page-grid-wrapper::after,
  .brands-section::after,
  .about-section::after {
    display: none !important;
  }
  .categories-grid-wrapper {
    border-bottom: none !important;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-card:nth-child(3n) {
    border-right: 1px solid var(--border-line);
  }
  .category-card:nth-child(2n) {
    border-right: none;
  }

  .service-card {
    width: calc((100cqw + 2px) / 2);
    aspect-ratio: 1 / 0.85;
    padding: 24px 20px 18px 20px;
    margin-left: -2px !important;
    margin-top: 0 !important;
  }
  .service-card:first-child {
    margin-left: 0 !important;
  }

  .services-section {
    padding: 80px 0 60px 0;
  }

  .services-container {
    padding: 0 30px;
  }

  .services-cards-wrapper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .process-container {
    padding: 0 30px;
  }

  .process-cards-wrapper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .process-cards-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100%;
  }

  .process-cards-grid::-webkit-scrollbar {
    display: none;
  }

  .process-card {
    min-width: 280px;
    flex: 0 0 33.3333%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 28px 22px;
  }

  .process-nav-controls {
    display: flex;
  }

  .testimonials-grid {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 1px solid var(--border-line) !important;
    border-radius: 4px;
  }
}

@media (max-width: 768px) {
  .page-grid-wrapper .container { 
    padding-left: 20px; 
    padding-right: 20px;
  }
  .stats-grid { 
    width: 100%; 
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stat-card { 
    margin-left: 0 !important;
    margin-top: -2px;
  }
  .stat-card:first-child {
    margin-top: 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-orange-split, 
  .btn-navy-flat {
    width: 100%;
    justify-content: center;
  }

  .services-container {
    padding: 0 20px;
  }

  .services-header {
    margin-bottom: 36px;
  }

  .services-description {
    margin-bottom: 24px;
  }

  .service-card {
    width: calc((100cqw + 2px) / 2);
    aspect-ratio: auto;
    min-height: 240px;
    padding: 22px 18px;
  }

  .process-container {
    padding: 0 20px;
  }

  .process-cards-wrapper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .process-header {
    margin-bottom: 36px;
  }

  .process-description {
    margin-bottom: 24px;
  }

  .process-card {
    min-width: 250px;
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  :root {
    --fs-section-title: clamp(1.6rem, 5.5vw, 2.0rem);
    --fs-section-body: 15px;
    --fs-hero-title: var(--fs-section-title);
    --fs-hero-body: var(--fs-section-body);
    --fs-card-title: 18px;
    --fs-card-body: 14px;
    --fs-stat-number: 36px;
    --fs-stat-label: 13px;
    --fs-badge: 12px;
    --inline-tag-size: 32px;
  }

  .categories-grid { 
    grid-template-columns: 1fr;
  }
  .category-card:not(:last-child) {
    border-bottom: 1px solid var(--border-line);
  }
  .brands-track {
    gap: 80px;
  }

  .services-section {
    padding: 50px 0 40px 0;
  }

  .services-container {
    padding: 0 16px;
  }

  .services-cards-wrapper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    scroll-snap-type: x mandatory;
  }

  .service-card {
    width: 100cqw;
    aspect-ratio: auto;
    padding: 24px 20px 22px 20px;
    margin-left: 0 !important;
    margin-top: 0 !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .service-icon {
    margin-bottom: 14px;
  }

  .service-card-title {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .service-card-text {
    font-size: 14px;
    line-height: 1.55;
  }

  .services-nav-controls {
    margin-top: 20px;
    justify-content: center;
  }

  .process-section {
    padding: 50px 0 40px 0;
  }

  .process-container {
    padding: 0 16px;
  }

  .process-cards-wrapper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .process-card {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 26px 20px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* Testimonials Tablet & Mobile styles */
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-container {
    padding: 0 24px;
  }
  
  .testimonials-header {
    margin-bottom: 40px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    border-radius: 2px;
  }
  
  .testimonial-card {
    padding: 36px 24px;
    gap: 30px;
  }
  
  .testimonial-card-small {
    padding: 32px 24px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 0;
  }
  
  .testimonials-container {
    padding: 0 16px;
  }
}



/* ----------------------------------------------------------------------------------------------------- */
