:root {
  /* Color Palette */
  --primary-color: #ccff00;
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --bg-dark: #0a0a0a;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
  /* background-color: var(--bg-dark); */
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100vw;
}

/* --- Navigation --- */
.header-container {
  /* background: #000; */
  padding: 10px;
  border-radius: 10px;
  margin: 10px;
}
.nav-links.nav-scroll,
.btn-outline.btn-scroll {
  background: #f2f2f2;
}
.nav-links.nav-scroll li a,
.btn-outline.btn-scroll {
  color: #040a33 !important;
}
.btn-outline.btn-scroll img {
  filter: brightness(0);
}
.app-header,
.app-header-contact {
  position: fixed;
  /* left: 10px; */
  /* width: 1331px; */
  width: 100%;
  z-index: 1000;
  padding: 0 40px;
  margin-top: -10px !important;
  transition: var(--transition-smooth);
}

.app-header-contact {
  /* margin-top: -30px !important; */
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  /* margin: 30px auto; */
}
.app-header .navbar {
  margin: 22px auto;
}
.logo {
  margin-left: -20px;
  margin-top: 10px;
}
.logo img {
  width: 120px;
  /* width: 120px; */
  height: 50px;
  /* height: 40px; */
  object-fit: contain;
}
.nav-links li img {
  display: none;
}
.app-header-blur {
  background: rgba(255, 255, 255, 0.63) !important;
  backdrop-filter: blur(14px) !important;
}
@media (max-width: 767px) {
  .logo {
    margin-left: -20px;
    margin-top: 20px;
  }
  .logo img {
    width: 120px;
    height: 36px;
    object-fit: contain;
  }
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff66;
  padding: 10px 15px;
  border-radius: 100px;
  border: 1px solid;
  height: 50px;
  /* max-width: 446px; */
  min-width: 320px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* margin-top: 30px; */
}

.nav-links li a {
  text-decoration: none;
  color: whitesmoke;
  font-size: 14px;
  font-weight: 400;
  transition: var(--transition-smooth);
  padding: 8px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

.navbar a.active {
  /* background: rgba(255, 255, 255, 0.1); */
  opacity: 1;
}

.dot-home {
  background: #c0ff00;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color);
}
.navbar a.active .dot {
  background: #c0ff00;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.navbar a.active .dot:hover {
  box-shadow: 0 0 10px var(--primary-color);
  width: 10px;
  height: 10px;
}
.nav-links li a:hover {
  opacity: 1;
}

.btn-outline {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: #ffffff66;
  padding: 10px 25px;
  /* border: 1px solid whitesmoke; */
  border: 1px solid;
  border-radius: 100px;
  text-decoration: none;
  color: whitesmoke;
  font-size: 12px;
  transition: var(--transition-smooth);
  height: 50px;
}
.btn-outline-contact {
  height: 50px;
  text-decoration: none;
  color: var(--text-white);
  /* border: 1px solid var(--glass-border); */
  padding: 10px 25px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background-color: #f2f2f2 !important;
}

.btn-outline-contact:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero-section {
  height: clamp(500px, 90vh, 1000px);
  padding-top: 14px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

@media (max-width: 991px) {
  .hero-section {
    height: 100vh;
    min-height: 500px;
    padding: 0;
    background-color: transparent;
  }
  .hero-container {
    border-radius: 0;
  }
}

.hero-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  /* background: url('../images/Screenshot\ 2026-03-18\ at\ 6.43.16\ AM\ 2.png')
    no-repeat center center/cover; */
  /* background-size: 100% 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Sub-overlay */
.hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #c0ff00;
  color: #040a33;
  text-decoration: none;
  padding: 10px 10px 10px 25px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-smooth);
  /* margin-top: 100px; */
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.4);
}

.btn-icon {
  width: 48px;
  height: 48px;
  background: #040a33;
  color: #c4ffd4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Global Utilities --- */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 100px;
}
.text-dark {
  color: #040a33;
}

/* Background overrides */
.shared-knowledge,
.product-selection,
.latest-projects {
  background-color: #ffffff;
  color: #040a33;
}
.our-process {
  background: #fff url('../images/Screenshot 2026-03-16 at 2.25.55 PM 1.png')
    no-repeat center bottom/95%;
  color: #040a33;
  padding: 100px 0;
  min-height: 1300px;
  position: relative;
  overflow: hidden;
  margin-top: -100px;
}

.process-heading {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 500;
  color: #040a33;
  margin-bottom: 150px;
  letter-spacing: -0.04em;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 1050px;
  margin: 0 auto;
}

.timeline-step {
  background: #fff;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  width: 380px;
  position: absolute;
  z-index: 2;
  transition: transform 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
}

.timeline-step.step-1 {
  top: 0;
  left: 0;
}

.timeline-step.step-2 {
  top: 250px;
  left: 22%;
}

.timeline-step.step-3 {
  top: 480px;
  left: 51%;
}

.timeline-step.step-4 {
  top: 740px;
  right: 0;
}

.step-lbl {
  color: #c0ff00;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-step h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #040a33;
  line-height: 1.2;
}

.timeline-step p {
  font-size: 0.9rem;
  color: #040a33;
  line-height: 1.6;
}

/* Connectors */
.process-connector {
  position: absolute;
  width: 2px;
  background: #000;
  z-index: 1;
}

.process-connector .line {
  width: 100%;
  height: 100%;
  background: #000;
}

.process-connector .dot-top,
.process-connector .dot-bottom {
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.process-connector .dot-top {
  top: 0;
}
.process-connector .dot-bottom {
  bottom: 0;
}

.connector-1 {
  top: 230px;
  left: 110px;
  height: 100px;
}

.connector-2 {
  top: 480px;
  left: calc(22% + 190px);
  height: 100px;
}

.connector-3 {
  top: 730px;
  left: calc(51% + 190px);
  height: 100px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .our-process {
    min-height: auto;
    padding: 60px 0;
    background-size: cover;
  }

  .process-timeline {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .timeline-step {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    max-width: 400px;
  }

  .process-connector {
    display: none;
  }

  .process-heading {
    font-size: 2.5rem;
    text-align: center;
  }
}

/* Shared Knowledge Grid */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(560px, 100%), 1fr));
  gap: 30px;
}
.knowledge-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f3f3f3;
}
.k-img {
  width: 150px;
  height: 100px;
  object-fit: cover;
}
.k-content {
  flex: 1;
}
.k-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #a0c800;
}
.k-content p {
  font-size: 0.95rem;
  color: #040a33;
}
.icon-btn-arrow {
  background: none;
  border: 1px solid #1a1a1a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition-smooth);
  padding: 2%;
}
.arrow-contact {
  width: 10px;
  height: 15px;
  margin-top: 3px;
}
.arrow {
  width: 20px;
  height: 20px;
  margin-left: -10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid;
  border-radius: 46px;
  padding: 12px;
}
.icon-btn-arrow:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* Product Selection */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.product-card {
  background: #f9f9f9;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}
.p-img {
  max-width: 100%;
  align-self: center;
  margin-top: 30px;
  border-radius: 12px;
}
.product-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.product-info p {
  color: #040a33;
}
.explore-cat {
  text-decoration: underline;
  color: #040a33;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
}

/* Latest Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.project-card {
  border-radius: 20px;
  overflow: hidden;
}
.proj-img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
}
.proj-info {
  padding: 10px 0;
}
.proj-info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.proj-info p {
  font-size: 0.9rem;
  color: #040a33;
  margin-bottom: 15px;
}
.view-project {
  color: #040a33;
  font-weight: 600;
  text-decoration: none;
}

/* Footer */
.app-footer {
  background-color: #f2f2f2;
  color: #040a33;
  padding-top: 80px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.footer-links {
  list-style: none;
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 2;
}
.footer-links a {
  color: #040a33;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.02em;
  /* font-family: "Avenir"; */
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.02em;

  color: #040a33;
  text-decoration: none;
  /* font-family: "Avenir"; */
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.social-icon img {
  width: 53px;
  height: 48px;
  background: #e5e5e5;
  border-radius: 100%;
  padding: 13px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  color: #040a33;
  font-size: 0.9rem;
}
.footer-legal {
  display: flex;
  gap: 30px;
}
.footer-legal a {
  color: #040a33;
  text-decoration: none;
}
.footer-big-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.text-sm {
  font-size: 0.9rem;
  color: #040a33;
}

/* --- Features Section --- */
.features-section {
  background-color: #ffffff;
  color: #040a33;
  padding: 80px 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 20px 0;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
}
.feature-icon {
  margin-bottom: 25px;
  /* margin-right: 345px; */
}
.feature-title {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 15px;
  /* margin-right: 163px; */
  color: #040a33;
  letter-spacing: -0.02em;
}
.feature-desc {
  color: #040a33;
  font-size: 0.95rem;
  line-height: 1.6;
  /* margin-right: 191px; */
}
.bg-white {
  background-color: #fff;
}
.pt-5 {
  padding-top: 50px;
}

/* STI Offering Section */
.sti-offering {
  background-color: #ffffff;
  padding: 80px 20px;
}
.offering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.offering-card {
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}
.chips-container {
  display: flex;
  gap: 15px;
  width: 100%;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.chip {
  background: #f2f2f2;
  padding: 6px 18px;
  border-radius: 17px;
  color: #040a33;
  font-weight: 800;
  font-style: Heavy;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: -5%;
  text-align: center;
  width: 30%;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offering-img {
  max-width: 100%;
  height: 300px;
  object-fit: contain;
  margin-bottom: 30px;
}
.offering-desc {
  text-align: center;
  color: #040a33;
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.6;
}
.btn-offering {
  height: 75px;
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  background: #b8ed17;
  border-width: 1.2px;
  border-color: #9ac31e;
  border-radius: 37.5px;
  padding: 10px 10px 10px 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: #040a33;
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
}
.btn-offering-text {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #040a33;
  position: absolute;
  right: 40%;
}
.btn-offering:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(204, 255, 0, 0.3);
}
.btn-offering-icon {
  background: #040a33;
  width: 65px;
  height: 65px;
  border-radius: 32.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Menu Base */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 9999;
  position: relative;
}
.hamburger-btn span {
  width: 25px;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-smooth);
}
.app-header-contact .hamburger-btn span {
  background-color: #040a33;
}
.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Fixes */
@media (max-width: 991px) {
  /* ── Hamburger: show, move to LEFT ── */
  .hamburger-btn {
    display: flex;
    position: absolute;
    left: 20px;
  }
  .nav-actions {
    display: none;
  }

  /* ── Navbar: center logo ── */
  .navbar {
    position: relative;
    justify-content: center;
  }
  .logo {
    margin-left: 0;
  }

  /* ── Slide-out menu: from LEFT, white bg, navy text, items at top ── */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    padding-top: 80px;
    padding-left: 30px;
    padding-right: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-100%);
    border-radius: 0;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    z-index: 999;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.12);
    min-width: unset;
    /* max-width: unset; */
    border: none;
    backdrop-filter: none;
  }
  .nav-links li a {
    color: #040a33;
    font-size: 16px;
    font-weight: 600;
    opacity: 1;
    padding: 10px 12px;
  }
  .nav-links.active-mobile {
    transform: translateX(0);
  }

  .app-header,
  .app-header-contact {
    padding: 0 20px;
  }

  .process-timeline {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 0;
  }
  .timeline-step.step-1,
  .timeline-step.step-2,
  .timeline-step.step-3 {
    transform: translateY(0);
  }
  .products-grid,
  .offering-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    flex-direction: column;
  }
}

/* --- New Sections from Figma --- */

/* Intro Text Section */
.new-intro-section {
  padding: 100px 20px 80px;
  background-color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.animated-stats-section {
  position: relative;
}
.new-intro-section::before,
.animated-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 95%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(204, 255, 0, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}
.intro-text-content::before,
.animated-stats-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgb(0 154 255 / 25%) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}
.intro-text-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: #040a33;
  letter-spacing: -0.03em;
}

.text-highlight {
  color: #a0c800;
}

/* Stats Section */
.new-stats-section {
  padding: 40px 20px 80px;
  background-color: #fff;
  position: relative;
}
.stats-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(22.3px);
  -webkit-backdrop-filter: blur(22.3px);
  border: 1px solid rgba(230, 230, 230, 0.8);
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Sub-glow effect per card */
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(204, 255, 0, 0.4) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -1;
  transform: translate(30%, 30%);
}

.stat-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  color: #040a33;
  margin-bottom: 20px;
  line-height: 1;
}

.stat-card p {
  font-family: var(--font-body);
  color: #040a33;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 90%;
}

/* Popular Systems Section */
.new-popular-systems {
  padding: 30px 20px;
  background-color: #fff;
  margin-top: 0;
  /* position: relative; */
}
.new-section-header {
  max-width: 1400px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new-section-header h2 {
  font-size: 60px;
  color: #040a33;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-left: 0;
  /* margin-top: 60px; */
}
.btn-explore-similar {
  background-color: #ccff00;
  color: #040a33;
  padding: 8px 8px 8px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition-smooth);
}
.btn-explore-similar .arrow-circle {
  width: 36px;
  height: 36px;
  background: #040a33;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccff00;
}
.btn-explore-similar:hover {
  transform: scale(1.05);
}

.systems-cards-grid {
  max-width: 1400px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.systems-cards-grid-title {
  font-size: 60px;
  color: #040a33;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-right: 0;
}
.system-card {
  border: 1px solid #eaeaea;
  border-radius: 9px;
  padding: 25px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 10px 0px #9999998a;
  cursor: pointer;
  justify-content: space-between;
}

.system-ideal-for {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.system-ideal-for span,
.system-ideal-for-badge {
  font-size: 9px;
  font-weight: 800;
  border-radius: 50px;
  padding: 5px 10px;
  background-color: #f2f2f2;
  height: 23px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.badge-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.training-facilities {
  font-size: 0.9rem;
  color: #040a33 !important;
  font-weight: 500;
  border: 1px solid #c0ff00;
  border-radius: 30px;
  padding: 14px;
  background-color: #c0ff0078 !important;
}
.system-ideal-icons {
  display: flex;
  gap: 8px;
}
.system-ideal-icons img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
}
.ideal {
  color: #040a33;
}
.card-color-indicator {
  display: flex;
  margin-right: -15px;
}
.color-blob {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}
.color-blob:first-child {
  margin-left: 0;
  width: 23px;
  height: 23px;
  border: black solid 1px;
}
.color-blob:nth-child(2) {
  width: 23px;
  height: 23px;
  border: black solid 1px;
}

.balls {
  width: 60%;
}
.system-image-placeholder {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.system-image-placeholder img {
  object-fit: contain !important;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.system-card-footer {
  background: #f2f2f2;
  border-radius: 7px;
  padding: 10px 10px 10px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  box-shadow: 0px 4px 10px 0px #9999998a;
  min-width: 100%;
  margin: 0 auto;
}
.system-card-footer h4 {
  font-size: 1.1rem;
  color: #040a33;
  font-weight: 600;
}
.system-arrow-btn,
.system-arrow-btn-pdf {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #040a33;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.system-arrow-btn:hover,
.system-arrow-btn-pdf:hover {
  background: #000;
  color: #fff;
}

/* Clients Section */
.new-clients-section {
  padding: 80px 20px 30px;
  background: #fff;
  text-align: center;
}
.new-clients-section h2 {
  font-family: var(--font-heading);
  font-size: 60px;
  color: #040a33;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.1;
}

.client-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.filter-btn {
  padding: 10px 20px;
  border: 2px solid #040a33;
  border-radius: 100px;
  background: transparent;
  color: #040a33;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.filter-btn.active {
  background: #ccff00;
  border-color: #ccff00;
}

.client-sub-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 20px;
}
.client-sub-filters[hidden] {
  display: none;
}
.sub-filter-btn {
  padding: 8px 16px;
  border: 1px solid #040a33;
  border-radius: 100px;
  background: transparent;
  color: #040a33;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.sub-filter-btn.active {
  background: #ccff00;
  border-color: #ccff00;
}

.clients-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  /* min-height: 500px; */
}
.client-logo-box {
  background: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 12px;
  padding: 20px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}
.client-logo-box img {
  /* max-width: 100%; */
  /* max-height: 100%; */
  object-fit: contain;
  width: 60px;
  height: 60px;
  margin: auto;
  /* filter: grayscale(100%); */
  transition: 0.1s ease;
}
.client-logo-box:hover img {
  filter: grayscale(0%);
}
.client-logo-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

/* Product Selection Section */
.new-product-selection {
  padding: 100px 20px;
  background-color: #fff;
}
.new-product-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.new-prod-card {
  background: #f2f2f2;
  border: 1px solid #f0f0f0;
  border-radius: 9px;
  padding: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.new-prod-card.large {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.new-prod-card.large .new-prod-info {
  width: 45%;
  margin-top: 180px;
}
.new-prod-card.large .new-prod-img {
  width: 75%;
  object-fit: contain;
  margin-bottom: 115px;
  margin-left: 80px;
  position: absolute;
  right: 0;
}

.new-prod-card.square {
  grid-column: span 1;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.new-prod-card.square .new-prod-info {
  width: 100%;
  margin-top: 30px;
}
.new-prod-card.square .new-prod-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  /* align-self: center; */
  margin-top: -50px;
  margin-left: 122px;
}

.new-prod-info {
  z-index: 2;
}
.new-prod-info h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: #040a33;
  margin-bottom: 15px;
}
.new-prod-info p {
  color: #040a33;
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
}
.explore-cat-new {
  font-weight: 600;
  color: #040a33;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 2px solid #040a33;
  padding-bottom: 2px;
}

/* Responsive updates for new sections */
@media (max-width: 991px) {
  .stats-grid-container {
    grid-template-columns: 1fr;
  }
  .systems-cards-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .new-product-grid {
    grid-template-columns: 1fr;
  }
  .new-prod-card.large {
    grid-column: span 1;
    flex-direction: column-reverse;
  }
  .new-prod-card.large .new-prod-info,
  .new-prod-card.large .new-prod-img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    padding: 30px;
  }
}

/* --- Contact Page Specific Styles --- */
.logo_contact {
  width: 120px !important;
  transform: scale(1.7);
  height: 100% !important;
}
.logo_contact_scroll {
  width: 120px !important;
  transform: scale(2.8);
  /* height: 100% !important; */
}
.light-mode {
  background-color: #ffffff;
  color: #040a33;
}
.light-mode .app-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}
.light-mode .nav-links {
  background: #f2f2f2;
  /* border: 1px solid #e1e1e1; */
}
.light-mode .nav-links a {
  /* color: #040a33; */
  color: #040a33;
}
.light-mode .hamburger-btn span {
  background-color: #040a33;
}
.light-mode .nav-links a.active {
  font-weight: 500;
}
.light-mode .btn-outline-contact {
  border-color: #040a33;
  color: #040a33;
}
.light-mode .btn-outline-contact:hover {
  background: #1a1a1a;
  color: #ccff00;
}

.contact-main {
  padding-top: 150px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 60px;
  height: 700px;
}

.contact-form-wrapper {
  background: #f5f5f5;
  width: 100%;
  border-radius: 12px;
  padding: 30px;

  /* width: 511px;
  height: 355px;
  top: 112px;
  left: 25px;
  border-radius: 12px;
  opacity: 1; */
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-form .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #040a33;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 18px 20px;
  background: #ebebeb;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #040a33;
  transition: var(--transition-smooth);
}
.contact-form .form-group textarea {
  width: 100%;
  padding: 18px 20px;
  background: #ebebeb;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #040a33;
  transition: var(--transition-smooth);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group select::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #040a33;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #040a33;
  background: #fff;
}

.contact-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  cursor: pointer;
}
.contact-icons {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: -40px;
}
.light-mode .email {
  text-decoration: underline;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--primary-color);
  color: #040a33;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 3px 3px 2px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 20px;
  position: relative;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(204, 255, 0, 0.4);
}

.contact-image-wrapper {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.contact-info-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background: transparent;
  padding: 40px 0;
  margin-bottom: 60px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.info-icon {
  width: 80px;
  height: 80px;
  background: #f6f6f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.info-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #040a33;
}

.info-item p {
  color: #040a33;
  line-height: 1.6;
  font-size: 12px;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-section {
    grid-template-columns: 1fr;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* --- Animated Stats Section (New) --- */
.animated-stats-section {
  position: relative;
  padding: 60px 20px 280px;
  background-color: #fff;
  margin-top: -10px;
  z-index: 5;
}

.stats-glow-bg {
  position: absolute;
  top: 50%;
  left: 24%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgb(0 154 255 / 25%) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}
.stats-glow-bg2 {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(204, 255, 0, 0.25) 0%,
    rgba(204, 255, 0, 0) 70%
  );
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}
.stats-animated-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat-glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(22.3px);
  -webkit-backdrop-filter: blur(22.3px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.2s ease;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.stat-glass-card h3 {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 600;
  color: #040a33;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.stat-glass-card p {
  color: #040a33;
  font-size: 1rem;
  line-height: 1.6;
}

/* Scroll Animation Logic */
.stat-glass-card {
  opacity: 0;
  transform: translateY(60px);
}
.animated-stats-section.revealed .stat-glass-card {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays */
.animated-stats-section.revealed .stat-glass-card:nth-child(1) {
  transition-delay: 0s;
}
.animated-stats-section.revealed .stat-glass-card:nth-child(2) {
  transition-delay: 0.15s;
}
.animated-stats-section.revealed .stat-glass-card:nth-child(3) {
  transition-delay: 0.3s;
}
.animated-stats-section.revealed .stat-glass-card:nth-child(4) {
  transition-delay: 0.45s;
}

/* Responsive Adjustment */
@media (max-width: 1200px) {
  .stats-animated-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .animated-stats-section {
    padding: 140px 0 60px;
  }
  .stat-glass-card {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .stats-animated-grid {
    grid-template-columns: 1fr;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 50px;
}

.arrow-btn {
  width: 34px;
  height: 34px;
  border: 1.5px solid #1b1f3b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1b1f3b;
  font-size: 16px;
  cursor: pointer;
  background: white;
  transition: 0.3s;
  padding-bottom: 0.2%;
}

.arrow-btn:hover {
  background: #f3f5f9;
}

.numbers {
  display: flex;
  align-items: center;
  gap: 16px;
}

.numbers span {
  font-size: 12px;
  color: #9aa0b1;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}

.numbers span.active {
  background: #f1f3f7;
  color: #1b1f3b;
  font-weight: 600;
}

.numbers span:hover:not(.active) {
  background: #f7f8fb;
}

.product-section {
  padding: 50px 20px;
  background: #fff;
  margin-top: 50px;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  /* margin-top: -100px; */
}

.product-image-box {
  border-radius: 8px;
  padding: 20px;
  /* min-height: 736px; */
  max-height: 600px;
  /* height: 90%; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f2f2;
}

.product-image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.product-content {
  /* margin-bottom: 125px; */
  margin-top: 50px;
}
.product-content h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #040a33;
}

.product-content .description,
.product-content .specification-text {
  font-size: 16px;
  color: #040a33;
  margin-bottom: 25px;
  max-width: 600px;
}

.product-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 500;
}
.color-section {
  margin-top: 100px;
}
.color-section h4 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
}

.color-options {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.color-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid #222;
}

.light-green {
  background: #c0ff00;
}

.olive-green {
  background: #314c64;
}

.action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quote-btn {
  background: #142742;
  color: #fff;
  min-width: 320px;
}

.quote-btn:hover {
  background: #0d1b31;
}

.whatsapp-btn {
  background: #c8ff00;
  color: #040a33;
  min-width: 215px;
  display: flex;
  justify-content: space-between;
  height: 50px;
}

.whatsapp-btn:hover {
  background: #b2e600;
}

/* --- Certification Section --- */
.certification-section {
  padding: 50px 20px 80px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.certification-section h2 {
  font-size: 42px;
  color: #16214a;
  margin-bottom: 30px;
  font-weight: 500;
}

.certification-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 80px;
}

.logo-box {
  width: 90px;
  height: 95px;
  color: #555;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.1;
  font-size: 18px;
}

.logo-box span {
  font-size: 10px;
  margin-top: 8px;
  font-weight: 600;
}

.skew {
  transform: skew(-10deg);
  width: 100px;
}

.circle-logo {
  width: 75px;
  height: 75px;
  /* border: 8px solid #999; */
  border-radius: 50%;
  color: #040a33;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 175px;
}

.doc-title {
  margin-top: 20px;
}

.documents-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.doc-card {
  width: 290px;
  border: 2px solid #e3e3e3;
  border-radius: 14px;
  padding: 28px 18px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background: #fff;
}

.pdf-icon {
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  color: #444;
}

.pdf-icon::before {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-left: 4px solid #444;
  border-bottom: 4px solid #444;
}

.doc-card h3 {
  text-align: center;
  font-size: 16px;
  color: #16214a;
  /* margin-bottom: 20px; */
  min-height: 60px;
}

.download-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f3f4f7;
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  color: #16214a;
  font-weight: 500;
  box-shadow: 1px 1px 1px 1px #cdcdcd;
}

/* .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
} */

/* --- Responsive --- */
@media (max-width: 992px) {
  .product-container {
    grid-template-columns: 1fr;
  }

  .product-content h1 {
    font-size: 38px;
  }

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

@media (max-width: 576px) {
  .product-content h1 {
    font-size: 30px;
  }

  .product-content h3,
  .color-section h4 {
    font-size: 22px;
  }

  .btn {
    width: 100%;
  }

  .doc-card {
    width: 100%;
  }
}

.img-1 {
  width: 49%;
  margin-top: 20px;
  height: 500px;
}

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

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #040a33;
  line-height: 1.5;
} */

.container,
.steps-container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Steps Section --- */
.steps-section {
  padding: 28px 0 20px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.step-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 2px solid #d7d7d7;
  background: #f8f8f8;
  color: #16214a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
}

.step-card.active .step-number {
  background: #ccff00;
  border-color: #040a33;
  color: #000;
}

.step-content h3 {
  font-size: 28px;
  font-weight: 500;
  color: #040a33;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: #1e1e1e;
  max-width: 1000px;
}

/* --- Specifications Section --- */
.specifications-section {
  padding: 30px 0 20px;
}

.section-title {
  font-size: 60px;
  font-weight: 500;
  color: #17214a;
  margin-bottom: 28px;
}

.spec-table {
  width: 100%;
}

.spec-head,
.spec-row,
.spec-row-odd {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  align-items: center;
  gap: 20px;
}

.spec-head {
  margin-bottom: 10px;
  padding: 0 14px;
  font-size: 28px;
  color: #040a33;
  font-weight: 500;
}

.spec-row {
  background: #f3f3f3;
  border-radius: 6px;
  padding: 14px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #040a33;
}
.spec-row-odd {
  border-radius: 6px;
  padding: 14px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #040a33;
}
.technical-description {
  margin-top: 50px;
}

.technical-description p {
  font-size: 16px;
  color: #17214a;
  max-width: 1180px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .step-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-content h3 {
    font-size: 22px;
  }

  .step-content p {
    font-size: 13px;
  }

  .section-title {
    font-size: 36px;
  }

  .spec-head {
    display: none;
  }

  .spec-row,
  .spec-row-odd {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .spec-row div::before,
  .spec-row-odd div::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
    color: #17214a;
  }
}

.xqv-board-members-section-wrap,
.xqv-story-highlight-section-wrap {
  width: 100%;
  background: #ffffff;
}

.xqv-board-members-section-wrap *,
.xqv-story-highlight-section-wrap * {
  box-sizing: border-box;
}

/* --- Section 1: Board Members --- */

.xqv-board-members-grid-shell {
  max-width: 96%;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 14px;
  row-gap: 14px;
  align-items: start;
}

.xqv-board-member-card {
  width: 100%;
}

.xqv-board-member-card--featured-left {
  grid-column: 1 / 2;
}

.xqv-board-member-card--featured-right {
  grid-column: 4 / 5;
}

.xqv-board-member-image-box {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  background: #f4f4f4;
  overflow: hidden;
}

.xqv-board-member-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xqv-board-member-info-box {
  padding-top: 8px;
}

.xqv-board-member-info-box--centered {
  text-align: left;
}

.xqv-board-member-name {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 500;
  color: #1c2551;
  letter-spacing: -0.2px;
}

.xqv-board-member-name--small {
  font-size: 13px;
  line-height: 1.15;
}

.xqv-board-member-role {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.2;
  color: #9a9a9a;
  font-weight: 400;
}

/* --- Section 2: Story Highlight --- */
.xqv-story-highlight-section-wrap {
  padding: 50px 0px 40px 0px;
}

.xqv-story-highlight-inner-shell {
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 46px;
  align-items: center;
}

.xqv-story-highlight-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.xqv-story-highlight-plus-mark {
  font-size: 164px;
  line-height: 0.8;
  font-weight: 700;
  color: #b8ed17;
  margin-bottom: 26px;
  transform: translateX(6px);
}
.xqv-story-highlight-copy-wrap h2 {
  font-size: 45px !important;
}
.xqv-story-highlight-copy-wrap p {
  margin: 0;
  /* max-width: 440px; */
  font-size: 20px;
  line-height: 1.02;
  color: #40486d;
  font-weight: 400;
  letter-spacing: -0.7px;
}

.xqv-story-highlight-image-side {
  width: 100%;
}

.xqv-story-highlight-image-box {
  width: 100%;
  background: #ececec;
  overflow: hidden;
}

.xqv-story-highlight-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(100%);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .xqv-board-members-grid-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .xqv-board-member-card--featured-left,
  .xqv-board-member-card--featured-right {
    grid-column: auto;
  }

  .xqv-story-highlight-inner-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .xqv-story-highlight-copy-wrap p {
    max-width: 100%;
    font-size: 21px;
  }
}

@media (max-width: 640px) {
  .xqv-board-members-section-wrap {
    padding: 16px;
  }

  .xqv-board-members-grid-shell {
    grid-template-columns: 1fr;
  }

  .xqv-story-highlight-section-wrap {
    padding: 32px 16px;
  }

  .xqv-story-highlight-plus-mark {
    font-size: 84px;
    margin-bottom: 18px;
  }

  .xqv-story-highlight-copy-wrap p {
    font-size: 18px;
    line-height: 1.15;
  }

  .xqv-board-member-name {
    font-size: 18px;
  }

  .xqv-board-member-name--small {
    font-size: 15px;
  }

  .xqv-board-member-role {
    font-size: 12px;
  }
}

.section-title-2 {
  color: #040a33;
  margin-left: 44px;
  margin-bottom: 19px;
  font-size: 40px;
  font-weight: 500;
}

.rzx9-sgs-content-block-wrap {
  width: 100%;
  background-color: #ffffff;
  margin-bottom: -100px;
}

.rzx9-sgs-content-block-wrap * {
  box-sizing: border-box;
}

.rzx9-sgs-content-block-container {
  padding: 50px 20px 24px 50px;
}

.rzx9-sgs-text-section {
  margin-bottom: 42px;
}

.rzx9-sgs-text-section:last-child {
  margin-bottom: 0;
}

.rzx9-sgs-main-heading {
  margin: 0 0 10px 0;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 500;
  color: #040a33111;
}

.rzx9-sgs-sub-heading {
  margin: 0 0 14px 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: #040a33111;
}

.rzx9-sgs-paragraph-text {
  margin: 0 10px 18px 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  color: #040a33;
}

.rzx9-sgs-specs-list {
  margin: 10px 0 18px 18px;
  padding: 0;
  max-width: 760px;
}

.rzx9-sgs-specs-list-item {
  margin: 0 0 14px 0;
  font-size: 12px;
  line-height: 1.4;
  color: #040a33111;
}

.rzx9-sgs-specs-list-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .rzx9-sgs-content-block-container {
    padding: 22px 16px;
  }

  .rzx9-sgs-main-heading {
    font-size: 20px;
  }

  .rzx9-sgs-sub-heading {
    font-size: 17px;
  }

  .rzx9-sgs-paragraph-text,
  .rzx9-sgs-specs-list-item {
    font-size: 13px;
    line-height: 1.6;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .rzx9-sgs-content-block-container {
    padding: 20px 14px;
  }

  .rzx9-sgs-text-section {
    margin-bottom: 34px;
  }

  .rzx9-sgs-main-heading {
    font-size: 18px;
  }

  .rzx9-sgs-sub-heading {
    font-size: 16px;
  }

  .rzx9-sgs-paragraph-text,
  .rzx9-sgs-specs-list-item {
    font-size: 12px;
    line-height: 1.6;
  }
}

.nav-actions {
  position: absolute;
  right: 30px;
  /* margin-top: 30px; */
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE DESIGN — ALL SCREEN SIZES
   ============================================================ */

/* Large Desktop (1400px+): constrain max widths */
@media (min-width: 1400px) {
  .section-container {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* Tablet Landscape / Small Desktop (1024px – 1199px) */
@media (max-width: 1199px) {
  .nav-links {
    min-width: 340px;
    padding: 10px 10px;
  }
  .nav-links li a {
    padding: 8px 8px;
    font-size: 13px;
  }
  .systems-cards-grid-title {
    margin-right: 0;
    font-size: 48px;
  }
  .new-popular-systems {
    margin-top: 0;
  }
  .new-section-header h2 {
    font-size: 48px;
  }
  .animated-stats-section {
    padding: 80px 20px 60px;
  }
}

/* Tablet Portrait (768px – 1023px) */
@media (max-width: 1023px) {
  /* Nav */
  .hamburger-btn {
    display: flex;
  }
  .nav-actions {
    display: none;
  }

  /* Hero */
  .hero-section {
    height: 100vh;
    min-height: 400px;
  }
  .hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
  .btn-primary {
    margin-top: 30px;
    font-size: 14px;
  }

  /* Layouts */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .offering-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .systems-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .new-product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .new-prod-card.large {
    grid-column: span 2;
  }
  .new-prod-card.square {
    grid-column: span 1;
  }
  .stats-animated-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-glass-card:nth-child(3),
  .stat-glass-card:nth-child(4) {
    transform: translateY(0);
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .knowledge-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  /* Sections */
  .animated-stats-section {
    padding: 60px 20px 50px;
  }
  .new-intro-section {
    padding: 80px 20px 50px;
  }
  .new-popular-systems {
    padding: 60px 20px;
    margin-top: 0 !important;
  }
  .new-clients-section {
    padding: 60px 20px;
  }
  .new-product-selection {
    padding: 60px 20px;
    margin-top: 0 !important;
  }
  .section-title {
    margin-top: 60px;
    font-size: 48px;
  }
  .new-clients-section h2 {
    font-size: 48px;
  }
  .process-heading {
    font-size: 48px;
  }
  .section-header {
    flex-wrap: wrap;
    gap: 15px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  /* Contact */
  .contact-grid {
    height: auto;
    grid-template-columns: 1fr;
  }
  .contact-image-wrapper {
    height: 300px;
  }
  .contact-info-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Process */
  .our-process {
    min-height: auto;
    padding: 60px 0;
    background-size: cover;
  }
  .process-timeline {
    height: auto;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .timeline-step {
    position: relative;
    top: auto !important;
    left: auto !important;
    width: 100%;
    max-width: 480px;
  }
  .process-connector {
    display: none;
  }
  .process-heading {
    font-size: 40px;
    margin-bottom: 50px;
  }
}

/* Mobile Landscape / Large Phone (576px – 767px) */
@media (max-width: 767px) {
  /* Global spacing */
  .section-container {
    padding: 0 20px;
  }

  /* Nav */
  .nav-links li a {
    font-size: 15px;
    padding: 10px 15px;
  }

  /* Hero */
  .hero-section {
    height: 100vh;
    min-height: 350px;
  }
  .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    margin-bottom: 15px;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    align-items: flex-start !important;
    text-align: left !important;
  }

  /* Systems & Products grids */
  .systems-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 0 20px;
  }
  .new-product-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .new-prod-card.large,
  .new-prod-card.square {
    grid-column: span 1;
  }
  .new-prod-card.large {
    flex-direction: column-reverse;
  }
  .new-prod-card.large .new-prod-info {
    width: 100%;
    margin-top: 20px;
  }
  .new-prod-card.large .new-prod-img {
    position: relative;
    width: 100%;
    margin: 0;
    margin-left: 0;
    margin-right: -80px;
    margin-top: -40px;
  }
  .new-prod-card.square .new-prod-img {
    margin-left: unset;
    width: auto;
    margin-right: -150px;
  }

  /* Section headers */
  .new-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin: 0 0 30px;
    padding: 0 10px;
  }
  .new-section-header h2 {
    font-size: 26px;
    margin-left: 0;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }
  .section-title {
    margin-top: 40px;
    font-size: 40px;
  }
  .new-section-header h2 {
    font-size: 40px;
  }
  .new-clients-section h2 {
    font-size: 40px;
  }
  .process-heading {
    font-size: 40px;
  }

  /* Stats */
  .stats-animated-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .stat-glass-card h3 {
    font-size: 36px;
  }
  .stat-glass-card {
    padding: 30px 20px;
  }
  .animated-stats-section {
    padding: 50px 15px 40px;
  }

  /* Clients grid */
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
  }

  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Knowledge / Blog */
  .knowledge-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .knowledge-item {
    gap: 12px;
  }
  .k-img {
    width: 100px;
    height: 70px;
  }

  /* STI Offering */
  .offering-card {
    padding: 25px 20px;
  }
  .btn-offering-text {
    right: 30%;
    font-size: 1rem;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 25px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-links {
    font-size: 1.4rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 20px;
  }
  .contact-image-wrapper {
    height: 250px;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .contact-info-section {
    grid-template-columns: 1fr;
  }

  /* Intro section */
  .new-intro-section {
    padding: 60px 20px 40px;
  }
  .intro-text-content {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  /* Process */
  .process-heading {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .timeline-step {
    padding: 20px 25px;
  }
  .timeline-step h3 {
    font-size: 1.2rem;
  }

  /* Filter buttons */
  .client-filters {
    gap: 10px;
  }
  .filter-btn {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  /* Pagination */
  .pagination .numbers {
    gap: 8px;
  }
}

/* Mobile Portrait (< 576px) */
@media (max-width: 575px) {
  /* Nav */
  .app-header,
  .app-header-contact {
    padding: 0 15px;
  }
  .navbar {
    margin: 20px auto;
  }

  /* Hero */
  .hero-section {
    height: 100vh;
    min-height: 280px;
    padding: 0;
  }
  .hero-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
    margin-bottom: 12px;
  }
  .hero-content {
    padding: 15px;
  }
  .btn-primary {
    font-size: 13px;
    padding: 8px 8px 8px 18px;
    margin-top: 20px;
    gap: 10px;
  }
  .btn-icon {
    width: 36px;
    height: 36px;
  }

  /* Section containers */
  .section-container {
    padding: 0 15px;
  }
  .section-title {
    margin-top: 30px;
    font-size: 32px;
  }

  /* Grids → single column */
  .features-grid,
  .offering-grid,
  .systems-cards-grid,
  .new-product-grid,
  .projects-grid,
  .knowledge-grid,
  .stats-animated-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .new-prod-card.large {
    grid-column: span 1;
  }

  /* Clients */
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 5px;
  }
  .client-logo-box {
    height: 75px;
    padding: 12px;
  }

  /* Stats */
  .stat-glass-card h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .stat-glass-card {
    padding: 25px 18px;
  }
  .animated-stats-section {
    padding: 40px 15px 30px;
  }

  /* New section headers */
  .new-section-header {
    padding: 0 5px;
    margin-bottom: 20px;
  }
  .new-section-header h2 {
    font-size: 32px;
  }
  .btn-explore-similar {
    font-size: 0.85rem;
    padding: 6px 6px 6px 16px;
    gap: 10px;
  }
  .btn-explore-similar .arrow-circle {
    width: 28px;
    height: 28px;
  }

  /* Popular Systems */
  .new-popular-systems {
    padding: 40px 12px;
    margin-top: 0 !important;
  }

  /* Intro */
  .new-intro-section {
    padding: 50px 15px 35px;
  }
  .intro-text-content {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  /* Clients section */
  .new-clients-section {
    padding: 50px 15px;
  }
  .new-clients-section h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  /* Filter wrapping */
  .client-filters {
    gap: 8px;
    padding: 0 5px;
  }
  .filter-btn {
    font-size: 0.75rem;
    padding: 7px 12px;
  }

  /* STI Offering */
  .sti-offering .section-title {
    font-size: 32px !important;
    margin-left: 0 !important;
  }
  .offering-card {
    padding: 20px 15px;
  }
  .chip {
    font-size: 12px;
    height: 28px;
    width: auto;
    padding: 5px 12px;
  }
  .chips-container {
    gap: 8px;
  }
  .offering-img {
    height: 200px;
  }
  .btn-offering {
    height: 60px;
    padding: 8px 8px 8px 20px;
    font-size: 1rem;
  }
  .btn-offering-text {
    font-size: 0.9rem;
    right: 25%;
  }
  .btn-offering-icon {
    width: 50px;
    height: 50px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 25px;
  }
  .footer-col {
    width: 100%;
  }
  .footer-links {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding-bottom: 20px;
  }
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer-big-image img:first-child {
    width: 70% !important;
  }

  /* Contact */
  .contact-main {
    padding-top: 100px;
  }
  .contact-grid {
    margin-bottom: 30px;
  }
  .contact-form-wrapper {
    padding: 20px 15px;
  }
  .btn-submit {
    font-size: 1rem;
    padding: 3px 3px 2px 20px;
  }
  .contact-info-section {
    padding: 20px 0;
    gap: 25px;
  }

  /* Product detail pages */
  .product-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-image-box {
    min-height: 300px;
  }
  .product-content h1 {
    font-size: 28px;
  }
  .action-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    min-width: unset;
  }
  .quote-btn,
  .whatsapp-btn {
    min-width: unset;
    width: 100%;
  }
  .documents-grid {
    flex-direction: column;
  }
  .doc-card {
    width: 100%;
  }

  /* Knowledge items */
  .k-img {
    width: 80px;
    height: 60px;
  }
  .knowledge-item {
    flex-wrap: wrap;
  }
  .k-content h3 {
    font-size: 1rem;
  }

  /* Process */
  .process-heading {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .timeline-step {
    padding: 18px 20px;
    max-width: 100%;
  }

  /* System card */
  .system-card {
    padding: 20px;
  }
  .system-card-footer h4 {
    font-size: 0.95rem;
  }
  .balls {
    width: 50%;
  }

  /* About page board */
  .xqv-board-members-grid-shell {
    grid-template-columns: 1fr 1fr;
  }
}

/* Very small screens (< 380px) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.3rem;
  }
  .new-clients-section h2 {
    font-size: 28px;
  }
  .stats-animated-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-btn {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
  .xqv-board-members-grid-shell {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MOBILE COMPREHENSIVE FIXES
   ============================================================ */

/* Tablet: fix our-process negative margin overlap */
@media (max-width: 1023px) {
  .our-process {
    margin-top: 0;
  }
  .sti-offering {
    padding: 60px 20px;
  }
  .features-section {
    padding: 50px 20px;
  }
  .section-title {
    margin-top: 0;
  }
}

/* Mobile: single-column layouts, proper padding, font scaling */
@media (max-width: 767px) {
  /* Hero: full screen */
  .hero-section {
    height: 100vh;
    min-height: 320px;
  }
  .btn-primary {
    margin-top: 20px;
  }

  /* All sections: consistent padding */
  .sti-offering {
    padding: 50px 16px;
  }
  .features-section {
    padding: 40px 16px;
  }
  .features-grid {
    gap: 24px;
  }
  .our-process {
    margin-top: 0;
    padding: 50px 16px;
  }

  /* Section titles */
  .section-title {
    font-size: 36px;
    margin-top: 0;
  }
  .new-section-header h2 {
    font-size: 36px;
  }

  /* Offering cards: stack properly */
  .offering-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .offering-card {
    padding: 24px 16px;
  }
  .chip {
    width: auto;
  }

  /* Product selection overlap fix */
  .new-product-selection {
    margin-top: 0 !important;
  }

  /* Clients section */
  .new-clients-section {
    padding: 50px 16px;
  }
  .client-filters {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Footer */
  .footer-top {
    gap: 30px;
    padding: 0 16px;
  }

  /* Shared knowledge */
  .shared-knowledge {
    padding: 50px 16px;
  }
  .knowledge-item {
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  /* Latest projects */
  .latest-projects,
  .our-work-section {
    padding: 50px 16px;
  }
}

/* Small mobile: tighten further */
@media (max-width: 575px) {
  /* Nav hamburger animation fix */
  .hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Section container */
  .section-container {
    padding: 0 16px;
  }

  /* Hero */
  .hero-section {
    height: 67vh;
    min-height: 280px;
    padding-top: 70px;
  }
  .hero-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  /* Typography */
  .section-title {
    font-size: 28px;
  }
  .new-section-header h2 {
    font-size: 28px;
  }

  /* Features */
  .feature-title {
    font-size: 1.4rem;
  }

  /* STI Offering title */
  .sti-offering .section-title {
    font-size: 28px !important;
  }

  /* Stats: 2-col on small screens */
  .stats-animated-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-glass-card {
    padding: 20px 16px;
  }
  .stat-glass-card h3 {
    font-size: 28px;
  }

  /* Product detail */
  .product-section {
    padding: 20px 16px;
  }

  /* Blog hero */
  .blog-hero-section .hero-content {
    padding: 15px;
    text-align: left;
  }

  /* Contact */
  .contact-main {
    padding-top: 80px;
  }
}

/* ============================================================
   MOBILE-ONLY TARGETED FIXES (≤ 991px)
   ============================================================ */

/* About page: hide green/image icons on mobile, stack text then image */
@media (max-width: 991px) {
  .xqv-story-highlight-plus-mark {
    display: none;
  }
  .xqv-story-highlight-inner-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* Ensure text always appears before image regardless of HTML order */
  .xqv-story-highlight-text-side {
    order: 1;
  }
  .xqv-story-highlight-image-side {
    order: 2;
  }
  .xqv-story-highlight-section-wrap {
    padding: 40px 16px;
  }
  .xqv-story-highlight-copy-wrap p {
    font-size: 20px;
    line-height: 1.4;
  }

  /* Equal section gaps on landing page */
  .features-section,
  .sti-offering,
  .new-intro-section,
  .new-popular-systems,
  .new-clients-section,
  .new-product-selection,
  .shared-knowledge,
  .latest-projects {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 0 !important;
  }
  .animated-stats-section {
    padding: 60px 16px;
    margin-top: 0;
  }
}

/* Very small mobile (≤ 575px) */
@media (max-width: 575px) {
  /* Equal compact gaps */
  .features-section,
  .sti-offering,
  .new-intro-section,
  .new-popular-systems,
  .new-clients-section,
  .new-product-selection,
  .shared-knowledge,
  .latest-projects {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .animated-stats-section {
    padding: 48px 16px;
  }

  /* Typography scale */
  .new-section-header h2,
  .section-title {
    font-size: 28px;
  }
  .feature-title {
    font-size: 1.3rem;
  }
  .stat-glass-card h3 {
    font-size: 26px;
  }
}

/* ============================================================
   MOBILE PRECISE FIXES
   ============================================================ */
@media (max-width: 991px) {
  /* ── Hero: truly full screen, no gaps ── */
  .hero-section {
    height: 100dvh !important;
    min-height: 500px !important;
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
  }
  .hero-container {
    border-radius: 0 !important;
    background-size: cover !important;
  }

  /* ── Navbar: smaller height, centered logo ── */
  .navbar {
    margin: 14px auto !important;
    position: relative;
    justify-content: center;
  }
  .hamburger-btn {
    position: absolute;
    left: 0;
  }
  .logo {
    margin: 10px auto;
    margin-bottom: 0px;
  }
  .nav-actions {
    display: none;
  }

  /* ── Nav slide menu: narrower, white bg, navy text, top-aligned ── */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    width: min(220px, 70vw) !important;
    height: 100vh !important;
    background: #ffffff !important;
    padding-top: 70px !important;
    padding-left: 20px !important;
    padding-right: 16px !important;
    transform: translateX(-100%) !important;
    border-radius: 0 !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15) !important;
    min-width: unset !important;
    max-width: unset !important;
    border: none !important;
    backdrop-filter: none !important;
  }
  .nav-links.active-mobile {
    transform: translateX(0) !important;
    /* background: #ffffff !important; */
    margin-top: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto !important;
    text-align: center !important;
    /* z-index: 8000; */
    background-color: #ffffff83 !important;
    backdrop-filter: blur(13.1px) !important;
  }
  .nav-links.active-mobile li {
    margin: 10px auto;
  }
  .nav-links.active-mobile li img {
    display: block;
    width: 100px;
    height: 40px;
    transform: scale(3.5) !important;
    object-fit: contain;
    position: absolute;
    top: 25px;
    left: 41%;
    transform: translate(-50%, -50%);
  }
  .nav-links.active-mobile li a {
    font-size: 18px !important;
  }
  .hamburger-btn.open {
    right: 0 !important;
    left: auto !important;
  }
  .hamburger-btn.open span {
    background-color: #040a33;
  }
  .nav-links li a {
    color: #040a33 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    padding: 10px 10px !important;
  }

  /* Hamburger bars: dark on white header pages */
  .app-header-contact .hamburger-btn span {
    background-color: #040a33;
  }

  /* ── Buttons: smaller, left-aligned on mobile ── */
  .btn-primary {
    margin-top: 20px !important;
    font-size: 13px !important;
    padding: 8px 8px 8px 18px !important;
    gap: 10px !important;
    align-self: flex-start;
  }
  .hero-cta {
    display: flex;
    justify-content: center;
  }
  .btn-icon {
    width: 36px !important;
    height: 36px !important;
  }
  .btn-offering {
    height: 52px !important;
    padding: 8px 8px 8px 16px !important;
    font-size: 0.95rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .btn-offering-text {
    position: static !important;
    right: auto !important;
    font-size: 0.9rem !important;
  }
  .btn-offering-icon {
    width: 42px !important;
    height: 42px !important;
    flex-shrink: 0;
  }

  /* ── Stats cards: 2-column vertical grid ── */
  .stats-animated-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  .stat-glass-card {
    min-width: unset !important;
    flex-shrink: unset !important;
    padding: 24px 20px !important;
  }

  /* ── Intro section: taller ── */
  .new-intro-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .intro-text-content {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
  }

  /* ── Header height: reduce navbar spacing on non-hero pages ── */
  .app-header-contact .navbar {
    margin: 12px auto !important;
  }
}

/* ── Additional small mobile tweaks ── */
@media (max-width: 575px) {
  .stat-glass-card {
    min-width: 175px !important;
  }
  .btn-explore-similar {
    font-size: 0.8rem;
    padding: 6px 6px 6px 14px;
  }
}

/* ============================================================
   CATALOG PAGE HEADER OVERLAP FIX + FILTER-CARDS GAP
   ============================================================ */

/* Desktop: reduce gap between title/filters and cards grid */
.app-header-contact ~ .new-clients-section {
  padding-bottom: 20px;
}
.new-clients-section + .new-popular-systems {
  padding-top: 0;
}

/* Mobile: push title below fixed header, tighten filter gap */
@media (max-width: 991px) {
  /* Clear fixed header on catalog pages */
  .app-header-contact ~ .new-clients-section {
    padding-top: 90px !important;
    padding-bottom: 16px !important;
    margin-top: 0 !important;
  }
  .app-header-contact ~ .new-clients-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .client-filters {
    margin-bottom: 12px;
    gap: 8px;
  }
  .new-clients-section + .new-popular-systems {
    padding-top: 12px !important;
    padding-bottom: 40px;
    margin-top: 0 !important;
  }

  /* Stats: single column on small mobile */
}
@media (max-width: 575px) {
  .stats-animated-grid {
    grid-template-columns: 1fr !important;
  }
  .app-header-contact ~ .new-clients-section h2 {
    font-size: 28px;
  }
}

/* ============================================================
   GLOBAL NAVY TEXT — no black anywhere
   ============================================================ */
body {
  color: #040a33;
}
p,
li,
span,
td,
th,
label,
input,
textarea,
select {
  color: inherit;
}
.proj-info p,
.feature-desc,
.offering-desc,
.k-content p,
.stat-glass-card p,
.timeline-step p,
.footer-links a,
.text-sm {
  color: #40486d;
}

/* Hero text always white across all pages */
.hero-title,
.hero-subtitle,
.hero-content h1,
.hero-content h2,
.hero-content p {
  color: #ffffff !important;
}

/* ============================================================
   PRODUCT DETAIL — MOBILE OPTIMISATION
   ============================================================ */
@media (max-width: 991px) {
  /* Nav slide menu starts from very top of page */
  .nav-links {
    top: 0 !important;
    padding-top: 70px !important;
  }

  /* Product hero section */
  .product-section {
    margin-top: 70px !important;
    padding: 20px 16px !important;
  }
  .product-container {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .product-image-box {
    min-height: 280px !important;
    padding: 16px !important;
  }
  .product-content {
    margin-top: 0 !important;
  }
  .product-content h1 {
    font-size: 26px !important;
    margin-bottom: 12px;
  }
  .product-content h3 {
    font-size: 18px !important;
  }
  .color-section {
    margin-top: 24px !important;
  }

  /* Action buttons: stacked, full-width, no emoji */
  .action-buttons {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .quote-btn {
    min-width: unset !important;
    width: 100% !important;
    font-size: 14px !important;
    padding: 12px 20px !important;
    justify-content: center !important;
  }
  .whatsapp-btn {
    min-width: unset !important;
    width: auto !important;
    align-self: flex-start !important;
    font-size: 13px !important;
    padding: 9px 16px !important;
    flex-direction: row-reverse !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    height: auto !important;
  }
  .whatsapp-btn .color-circle {
    margin-right: 0 !important;
    margin-left: 0 !important;
    flex-shrink: 0 !important;
    width: 28px !important;
    height: 28px !important;
  }

  /* Certification logos: 2-line layout */
  .certification-section {
    padding: 30px 16px 50px !important;
  }
  .certification-logos {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    max-width: 240px !important;
    margin-bottom: 40px !important;
  }
  .logo-box {
    width: 90px !important;
    height: 95px !important;
    font-size: 13px !important;
  }
  .logo-box img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .circle-logo {
    width: 90px !important;
    height: 90px !important;
    margin-left: 0 !important;
  }
  .circle-logo img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .skew {
    width: 100px !important;
  }

  /* Documents grid */
  .documents-grid {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .doc-card {
    width: 100% !important;
  }

  /* Specs and steps sections */
  .specifications-section,
  .steps-section {
    padding: 30px 16px !important;
  }
  .certification-section h2 {
    font-size: 28px !important;
  }

  /* Install images: stack vertically */
  #installSection {
    padding: 0 16px !important;
    margin-top: 24px !important;
  }
  #installSection > div > div {
    flex-direction: column !important;
  }
  #installSection img {
    width: 100% !important;
  }
}

/* ── Dynamic certification logos ── */
.cert-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-logo-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cert-logo-item img {
    width: 32px !important;
    height: 32px !important;
  }
}
.process-connector {
  position: absolute;
  width: 2px;
  background: #000;
  z-index: 1;
  display: block;
  margin-top: -5px;
}

.connector-1 {
  top: 215px;
  left: 190px;
  height: 35px;
  width: 270px;
  background: none;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  border-bottom-left-radius: 20px;
}

.connector-2 {
  top: 465px;
  left: calc(24% + 190px);
  height: 15px;
  width: 350px;
  background: none;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  border-bottom-left-radius: 20px;
}

.connector-3 {
  top: 695px;
  left: calc(51% + 190px);
  height: 45px;
  width: 300px;
  background: none;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  border-bottom-left-radius: 20px;
}

.process-connector .dot-top {
  top: -3px;
  left: -4px;
  width: 8px;
  height: 8px;
}

.process-connector .dot-bottom {
  bottom: -4px;
  right: -4px;
  left: auto;
  width: 8px;
  height: 8px;
}

.process-connector .line {
  display: none;
}

/* ─────────────────────────────────────────────────────────────
   Brand Partners section (homepage, above footer)
   ───────────────────────────────────────────────────────────── */
.brand-partners-section {
  background: #fff;
  padding: 50px 0;
  color: #040a33;
}
.brand-partners-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}
.brand-partners-title {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 500;
  color: #040a33;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  line-height: 1.05;
}
.brand-partners-sub {
  font-size: 16px;
  color: #555;
  max-width: 640px;
  line-height: 1.55;
  margin: 0;
}
.brand-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.brand-partner-group {
  background: #f8f9fc;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid #ececf3;
}
.brand-partner-group h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #040a33;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}
.brand-partner-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brand-partner-group li a {
  color: #040a33;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.brand-partner-group li a::before {
  content: '→';
  color: #ccff00;
  font-weight: 700;
  background: #040a33;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.brand-partner-group li a:hover {
  color: #2b4cd9;
}
@media (max-width: 767px) {
  .brand-partners-section {
    padding: 60px 0 50px;
  }
  .brand-partners-title {
    font-size: 36px;
  }
  .brand-partners-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .brand-partner-group {
    padding: 18px 16px;
  }
}

@media (max-width: 1023px) {
  .process-connector {
    display: none;
  }
}

/* ── Product detail: breadcrumb + tags ─────────────────────────── */
.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #5a6480;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.detail-breadcrumb .detail-category {
  color: #2b4cd9;
}
.detail-breadcrumb .detail-subcategory {
  padding: 3px 11px;
  background: rgba(204, 255, 0, 0.22);
  border-radius: 100px;
  font-size: 11px;
  color: #040a33;
  text-transform: none;
  letter-spacing: 0;
}
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 16px;
}
.detail-tags:empty {
  display: none;
}
.detail-tag {
  padding: 5px 13px;
  background: #040a33;
  color: #ccff00;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Product image carousel (multi-image gallery on detail page) ─── */
.product-image-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 696px; /* product-image-box is 736px minus its 20px padding × 2 */
  border-radius: 8px;
  overflow: hidden;
}
.product-image-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.product-image-carousel .carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.product-image-carousel .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #040a33;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  z-index: 2;
}
.product-image-carousel .carousel-arrow:hover {
  background: #ccff00;
  transform: translateY(-50%) scale(1.05);
}
.product-image-carousel .carousel-prev {
  left: 16px;
}
.product-image-carousel .carousel-next {
  right: 16px;
}
.product-image-carousel .carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.product-image-carousel .carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(4, 10, 51, 0.25);
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.product-image-carousel .carousel-dot.active {
  background: #040a33;
  border-color: #040a33;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .product-image-carousel {
    min-height: 280px;
  }
  .product-image-carousel .carousel-arrow {
    width: 38px;
    height: 38px;
  }
  .product-image-carousel .carousel-prev {
    left: 8px;
  }
  .product-image-carousel .carousel-next {
    right: 8px;
  }
}
/* blog details */
.blog-details {
  padding: 120px 0;
}

.article-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  color: #777;
}

.article-intro {
  /* max-width: 850px; */
  margin-bottom: 60px;
}

.article-intro p {
  font-size: 24px;
  line-height: 1.7;
}

.article-content {
  /* max-width: 850px; */

  margin: auto;
}

.article-content h2 {
  margin: 60px 0 20px;
  font-size: 40px;
}

.article-content p {
  line-height: 1.9;
  color: #555;
  margin-bottom: 24px;
}

.article-content ul {
  margin: 20px 80px;
}

.article-content ul li {
}

.article-image {
  margin: 60px 0;
}

.article-image img {
  width: 100%;
  border-radius: 24px;
}

blockquote {
  margin: 60px 0;
  padding: 40px;
  border-left: 4px solid #040a33;
  background: #f7f7f7;
  font-size: 28px;
  font-style: italic;
}

.related-articles {
  padding: 120px 0;
  background: #f8f8f8;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}
.projects-our-work {
  position: relative;
}
.work-popup {
  background-color: rgba(255, 255, 255, 0.61);
  padding: 20px 0;
  padding-top: 40px;
  backdrop-filter: blur(10px);
  /* position: absolute; */
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.work-popup-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  width: 60%;
}
.work-popup-content img {
  border-radius: 20px;
}

.work-popup-content .main-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.work-imgs {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  overflow-x: auto;
}
.work-imgs img {
  width: 250px;
  max-height: 250px;
  cursor: pointer;
  margin: 10px 0;
  opacity: 0.6;
  transition: 0.3s;
  object-fit: cover;
}
.work-imgs::-webkit-scrollbar {
  height: 8px;
}

.work-imgs::-webkit-scrollbar-thumb {
  background: #ccff00;
  border-radius: 10px;
}
.work-imgs img.active {
  opacity: 1;
  border: 3px solid #ccff00;
}
.close-work {
  position: absolute;
  right: 10%;
  top: 10%;
  cursor: pointer;
}
.arrow-left-work {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.arrow-right-work {
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
@media (max-width: 767px) {
  .work-imgs {
    gap: 10px;
  }
  .work-imgs img {
    width: 100px;
  }
  .blog-details {
    padding: 0 8px;
  }
  .arrow-right-work {
    right: 5%;
  }
}
