/* Fonts */
:root {
  --default-font: "Lufga", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Lufga", sans-serif;
  --nav-font: "Lufga", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  --dark-background: #040408;
  --default-color: #4C4D48;
  --heading-color: #000000;
  --titel-color: #0E0F0C;
  --accent-color: #1A6B5A;
  --surface-color: #972121;
  --contrast-color: #ffffff;
   --nvcq-green-dark: #1a3a2a;
            --nvcq-green-mid: #2d5a3d;
            --nvcq-green-btn: #1e4530;
            --nvcq-green-active: #1a3a2a;
            --nvcq-green-light: #e8f2ec;
            --nvcq-green-border: #4a8c5c;
            --nvcq-text-dark: #1a1a1a;
            --nvcq-text-muted: #6b7280;
            --nvcq-border-color: #e2e8e4;
            --nvcq-bg-page: #f0f2ef;
            --nvcq-bg-white: #ffffff;
            --nvcq-red-error: #b91c1c;
            --nvcq-red-border: #ef4444;
            --nvcq-transition: 0.22s cubic-bezier(.4, 0, .2, 1);
   --green-dark  : #1a2e1a;
      --green-mid   : #2d4a2d;
      --green-pale  : #eef3e8;
      --green-hover : #dde8cc;
      --accent      : #4a7c3f;
      --text        : #1a1a1a;
      --muted       : #5a6352;
      --border      : #d4dbc8;
      --badge-bg    : #b8e05a;
      --badge-text  : #1a3a05;
      --white       : #ffffff;
}


:root {
  --nav-color: #222222;
  --nav-hover-color: #1A6B5A;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #222222;
  --nav-dropdown-hover-color: #1A6B5A;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/* Regular */
@font-face {
  font-family: "Lufga";
  src: url("../fonts/lufga/LufgaRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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

a:active,
a:hover {
  outline: 0;
  text-decoration: none;
  color: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Scroll Top */
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}


/* Container */
@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1390px !important;
  }
}


section {
  padding: 80px 0;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  section {
    padding: 60px 0;

  }
}

.section-header {
  margin-bottom: 40px;
}

.section-header .sub {
  color: var(--accent-color);
  font-size: 13px;
}

.section-header .title-desc {
  font-size: 18px;
  font-weight: 400;
}

.section-header h2 {
  font-size: 55px;
  font-weight: 800;
}

@media (max-width: 991.98px) {

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 42px;
  }
}

@media (max-width: 767.98px) {

  .section-header {
    margin-bottom: 20px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .section-header .title-desc {
    font-size: 16px;
    font-weight: 400;
  }
}

.title-white {
  color: var(--contrast-color);
}

.title-dark {
  color: var(--heading-color);
}

.title-accent {
  color: var(--accent-color);
}

/* BUTTON */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  color: var(--accent-color);
  border-radius: 40px;
  font-size: 18px;
  text-decoration: none;
  border: 1px solid var(--accent-color);
  cursor: pointer;
  height: fit-content;

  /* smooth animation */
  transition: all 0.3s ease;
}

/* Arrow circle */
.hero-btn .arrow {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* animation */
  transition: all 0.3s ease;
}

/* 🔥 Hover Effect */
.hero-btn:hover {
  background: var(--nav-hover-color);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

/* Arrow moves right */
.hero-btn:hover .arrow {
  transform: translateX(6px);
  background-color: var(--background-color);
  color: var(--nav-hover-color);
}

/* Optional: subtle click effect */
.hero-btn:active {
  transform: scale(0.97);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 100px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 45px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/* .scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
} */

.button-Quote {
  border: 1px solid var(--accent-color);
  padding: 13px 24px;
  border-radius: 6px;
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Hover effect */
.button-Quote:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color) !important;
  transform: translateY(-4px);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    font-weight: 700;

  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-hover-color);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* ACTIVE MENU FIX */
.navmenu .current-menu-item > a,
.navmenu .current_page_item > a,
.navmenu .current-menu-parent > a,
.navmenu .current_page_parent > a {
  color: var(--nav-hover-color);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* ===== FOOTER BASE ===== */
.site-footer {
  background: #050505;
  color: #8a8a8a;
  padding: 70px 0 0;
  border-top: 1px solid #111;
  font-family: 'Inter', sans-serif;
}

/* ===== MAIN GRID ===== */
.footer-main {
  position: relative;
}

/* 🔥 VERTICAL DIVIDER (IMPORTANT) */
.footer-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 33.33%;
  width: 1px;
  height: 100%;
  background: #111;
}

/* LEFT */
.footer-left {
  padding-right: 60px;
}

/* RIGHT */
.footer-right {
  padding-left: 60px;
}

/* ===== LOGO ===== */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}



/* TAGLINE */
.footer-tagline {
  font-size: 16px;
  line-height: 1.6;
  color: #6f6f6f;
  max-width: 250px;
  margin-bottom: 30px;
}

/* ===== SOCIAL ===== */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 12px;
  transition: 0.3s;
}

.social-icons a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* ===== NAV ===== */
.footer-nav-title {
  font-size: 20px;
  font-weight: 700;
  color: #B2D9D0;
  margin-bottom: 14px;
}

.footer-nav-list li {
  margin-bottom: 8px;
}

.footer-nav-list a {
  font-size: 16px;
  color: #ffffff91;
  text-decoration: none;
  transition: 0.2s;
}

.footer-nav-list a:hover {
  color: #fff;
}

/* ===== BOTTOM BAR ===== */
.footer-bottom {
  border-top: 1px solid #111;
  margin-top: 60px;
  padding: 14px 0;
}

.footer-bottom-text {
  font-size: 10.5px;
  color: #5c5c5c;
}

/* BADGES */
.footer-bottom-badges {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-bottom-badges span {
  font-size: 10px;
  color: #666;
}

.footer-bottom-badges span:hover {
  color: var(--nav-hover-color);
}

.badge-dot {
  color: #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

  .footer-main::after {
    display: none;
  }

  .footer-left,
  .footer-right {
    padding: 0;
  }

  .footer-left {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {

  .footer-nav-title {
    margin-top: 20px;
  }

  .footer-bottom-badges {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .footer-bottom {
    margin-top: 20px;

  }
}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-section {
  background: var(--background-color);
  min-height: calc(100vh - 100px);
}

.hero-left {
  align-items: center;
  padding: 60px;
}

.hero-subtitle {
  font-size: 16px;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 25px;
  display: inline-block;
}

.hero-title {
  font-size: 69px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--titel-color);
  text-transform: uppercase;
}

.hero-title span {
  color: var(--accent-color);
}

.hero-desc {
  margin: 30px 0;
  font-size: 20px;
  line-height: 1.7;
  color: var(--default-color);
}

.hero-right {
  position: relative;
  background: var(--background-color);
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VERTICAL TEXT */
.hero-vertical {
  position: absolute;
  top: 50%;
  transform: rotate(90deg) translateY(-50%);
  z-index: 99;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent-color);
}

/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 40px;
  display: flex;
  gap: 8px;
}

.hero-dots span {
  width: 6px;
  height: 6px;
  background: var(--nav-color);
  border-radius: 50%;
}

.hero-dots span.active {
  width: 20px;
  border-radius: 10px;
  background: var(--accent-color);
}


.certificate-slider {
  margin-top: 45px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Fade edges */
.certificate-slider::before,
.certificate-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.certificate-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--background-color), transparent);
}

.certificate-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--background-color), transparent);
}

.certificate-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.certificate-slider:hover .certificate-track {
  animation-play-state: paused;
}

.certificate-item img {
  height: 50px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: 0.3s;
}

.certified-section .certificate-item img {
  height: 100%;
}

.certified-section .certificate-slider {
  margin-top: 0;
}

.certificate-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* =========================================
   🟣 1399px (Large Desktop)
========================================= */
@media (max-width: 1399px) {}


/* =========================================
   🔵  1299px (Small Desktop)
========================================= */
@media (max-width: 1299px) {
  .hero-section .row {
    display: flex;
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    max-width: 100%;
  }

  .hero-right {
    order: 1;
  }

  /* LEFT goes below */
  .hero-left {
    order: 2;
  }

  .hero-left {
    padding: 60px;
  }

}


/* =========================================
   🔷 ≤1199px (Tablet Landscape / Small Laptop)
========================================= */
@media (max-width: 1199.98px) {}


/* =========================================
   🟡 ≤991px (Tablet Portrait)
========================================= */
@media (max-width: 991.98px) {
  .hero-left {
    padding: 55px 30px;

  }

  .hero-right img {
    height: calc(100vh - 100px);
  }
}


/* =========================================
   🟠 ≤767px (Mobile Large)
========================================= */
@media (max-width: 767.98px) {
  .hero-inner {
    margin: auto;
    text-align: center;
  }

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

  .hero-subtitle {
    margin-bottom: 15px;
  }

  .hero-desc {
    font-size: 16px;
    margin: 18px 0;
  }

  .hero-vertical {
    display: none;
  }

  .hero-dots {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =========================================
   🔴 ≤575px (Small Mobile)
========================================= */
@media (max-width: 575.98px) {}



/*--------------------------------------------------------------
# counter Section
--------------------------------------------------------------*/
.counter-section {
  background: var(--dark-background);
}

.counter {
  font-size: 50px;
  font-weight: 800;
  color: var(--contrast-color);
}

.counter::after {
  content: "+";
}

.counter-box:last-child .counter::after {
  content: "%";
}

.label {
  color: var(--accent-color);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 10px;
}

.counter-box span {
  display: block;
  font-size: 20px;
  color: var(--default-color);
  margin-top: 5px;
}


/* =========================================
   🟡 ≤991px (Tablet Portrait)
========================================= */
@media (max-width: 991.98px) {
  .counter {
    font-size: 40px;
  }

  .label {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
  }

  .counter-box span {
    display: block;
    font-size: 16px;
    color: var(--default-color);
    margin-top: 5px;
  }

}

/* =========================================
   🟠 ≤767px (Mobile Large)
========================================= */
@media (max-width: 767.98px) {

  .counter-box {
    margin-bottom: 30px;
  }

  .counter-box:last-child {
    margin-bottom: 0;
  }

  .counter-box:nth-child(3) {
    margin-bottom: 0;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}

.about-heading span {
  color: var(--accent-color);
}

.about-content p {
  color: var(--default-color);
  line-height: 1.7;
  font-size: 20px;
  margin-bottom: 10px;
}

.about-section .hero-btn {
  margin-top: 20px;
}

/* IMAGE */
.about-section img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
}


/* =========================================
   🟠 ≤767px (Mobile Large)
========================================= */
@media (max-width: 767.98px) {


  .about-heading {
    font-size: 30px;
    margin-bottom: 15px;
  }

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

  .about-section .hero-btn {
    margin-top: 10px;
  }

}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section {
  background: var(--dark-background);
  color: var(--contrast-color);
}

.service-card {
  position: relative;
  padding: 30px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  height: stretch;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid var(--accent-color);
}

.service-card img {
  width: 100px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-weight: 600;
  font-size: 34px;
}

.service-card p {
  font-size: 18px;
  opacity: 0.8;
}


.green {
  background: #0f6b4c;
}

.purple {
  background: #cfc3e6;
  color: #000;
}

.blue {
  background: #bcd3e1;
  color: #000;
}

.beige {
  background: #e8dfb5;
  color: #000;
}

.light {
  background: #e5cfcf;
  color: #000;
}

.large {
  min-height: 260px;
}

.small {
  min-height: 180px;
}

.full {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: row;
  justify-content: flex-start;

  gap: 20px;
}


.service-card .hero-btn {
  width: fit-content;
  color: var(--heading-color);
  background-color: #F2F2EE;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding: 0 22px;
  transition: max-height 0.35s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;

  pointer-events: none;
}

.service-card .hero-btn .arrow {
  background-color: var(--dark-background);
}


.service-card:hover .hero-btn {
  max-height: 60px;
  opacity: 1;
  margin-top: 16px;
  pointer-events: auto;
  padding: 12px 22px;
}

/* =========================================
   🟡 ≤991px (Tablet Portrait)
========================================= */
@media (max-width: 991.98px) {
  .full {
    display: flex;
    align-items: start;
    gap: 0px;
    flex-direction: column;
    justify-content: flex-start;

  }

  .service-card h3 {
    font-weight: 600;
    font-size: 26px;
  }

  .service-card p {
    font-size: 20px;
    opacity: 0.8;
  }
}


/* =========================================
   🟠 ≤767px (Mobile Large)
========================================= */
@media (max-width: 767.98px) {

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    font-size: 16px;
    opacity: 0.8;
  }
}


/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.universe-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  border-bottom: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
}

.u-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.u-number {
  font-size: 22px;
  color: var(--accent-color);
}

.u-left h4 {
  font-size: 34px;
  font-weight: 600;
  margin: 0;
}

.u-left p {
  font-size: 22px;
  color: var(--default-color);
  margin: 5px 0 0;
}

.u-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

.u-right img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.universe-item:hover img,
.universe-item.active img {
  transform: scale(1.50);
}

.universe-item .arrow {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.arrow i {
  transform: rotate(-45deg);
}


.universe-item:hover .arrow,
.universe-item.active .arrow {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.universe-right .universe-item {
  transition: all 0.4s ease;
}

.universe-right:hover .universe-item {
  opacity: 0.2;
}

.universe-right:hover .universe-item:hover {
  opacity: 1;
}

.universe-right:hover .universe-item:not(:hover) {
  filter: grayscale(20%);
}


/* =========================================
   🟡 ≤991px (Tablet Portrait)
========================================= */
@media (max-width: 991.98px) {
  .universe-item {
    border-left: none;
    padding: 20px 0px;
  }

  .u-left h4 {
    font-size: 26px;
  }

  .u-left p {
    font-size: 20px;
  }
}


/* =========================================
   🟠 ≤767px (Mobile Large)
========================================= */
@media (max-width: 767.98px) {
  .u-left h4 {
    font-size: 24px;
  }

  .u-left p {
    font-size: 16px;
  }

}


/*--------------------------------------------------------------
# Global Presentation
--------------------------------------------------------------*/
/* SECTION */
.global-map-section {
  background: var(--accent-color);
}

.highcharts-a11y-proxy-element {
  display: none !important;
}

.highcharts-exporting-group {
  display: none !important;
}

#map-wrap {
  flex: 1 1 300px;
  min-width: 0;
  position: relative
}

#map-container {
  width: 100%;
  height: clamp(220px, 40vw, 420px)
}

#flag-card {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 9px 14px;
  display: none;
  align-items: center;
  gap: 9px;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15)
}

#flag-card img {
  width: 36px;
  height: 24px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #ddd;
  display: block;
  flex-shrink: 0
}

#flag-card span {
  font-size: 13px;
  font-weight: 700;
  color: #1A6B5A;
  white-space: nowrap
}

@media(max-width:600px) {
  .map-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1rem
  }

  .map-title {
    max-width: 100%
  }
}



/*--------------------------------------------------------------
# Why Choose
--------------------------------------------------------------*/

.why-item {
  font-size: 40px;
  font-weight: 800;
  color: #c8c8c8;
  padding: 6px 0;
  cursor: pointer;
  transition: color 0.3s ease, font-size 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  user-select: none;
  margin-left: -50px;
}

.why-item .item-icon {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.why-item .item-icon img {
  width: 30px;
  height: 30px;
}

.why-item.active {
  font-size: 40px;
  color: var(--nav-hover-color);
  padding-left: 50px;
}

.why-item.active .item-icon {
  opacity: 1;
  transform: translateX(0);
}

.why-image-box {
  margin-left: auto;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.why-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.25s ease;
  display: block;
}


/* =========================================
   🟡 ≤1199px (Tablet Portrait)
========================================= */
@media (max-width: 1199.98px) {
  .why-item {
    font-size: 36px;
  }

  .why-item.active {
    font-size: 36px;
  }

}

/* =========================================
   🟡 ≤991px (Tablet Portrait)
========================================= */
@media (max-width: 991.98px) {

  .why-item {
    font-size: 30px;
    margin-left: -40px;
  }

  .why-item.active {
    font-size: 30px;
  }

}

/* =========================================
   🟠 ≤767px (Mobile Large)
========================================= */
@media (max-width: 767.98px) {

  .why-item {
    font-size: 20px;
    margin-left: -30px;
  }

  .why-item.active {
    font-size: 20px;
    padding-left: 38px;
  }
}


/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.about-header {
  background: #2468531A;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 16px;
  color: var(--default-font);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--default-font);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent-color);
  font-weight: bold;
}

.breadcrumb span {
  margin: 0 6px;
}

/* Divider line */
.about-line {
  width: 100%;
  height: 1px;
  background: var(--accent-color);
  margin-bottom: 30px;
  opacity: 0.4;
}


/* -------------------------------------------------------------- 
# About Us 
--------------------------------------------------------------*/
.about-us-section {
  margin-bottom: 70px;
}

/* IMAGE WRAPPER */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 80%;
  height: 600px;
  object-fit: cover;
}

/* 🔥 CARD */
.about-card {
  position: absolute;
  bottom: -70px;
  right: 0;
  width: 420px;
  height: 460px;
  padding: 30px;
  overflow: hidden;
  color: #fff;
  background-image: url("../img/general/card.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: end;

}

/* TITLE */
.about-card h5 {
  font-size: 26px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 20px;
  line-height: 1.4;
}

/* LIST */
.card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.card-list li {
  font-size: 18px;
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
}

.card-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 13px;
}

/* 🔥 BUTTON EXACT */
.about-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #000;
  padding: 8px 8px 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  gap: 12px;
  width: max-content;
}

/* INNER ICON CIRCLE */
.btn-icon {
  width: 34px;
  height: 34px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about-right p {
  font-size: 20px;
  line-height: 1.9;
  color: var(--heading-color);
  margin-bottom: 22px;
}

/* CHECK LIST */
.about-check {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.about-check li {
  font-size: 20px;
  margin-bottom: 14px;
  padding-left: 40px;
  position: relative;
}

.about-check li::before {
  content: "✔✔";
  position: absolute;
  left: 0;
  color: var(--heading-color);
  font-weight: bold;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .about-image-wrapper img {
    width: 100%;
  }

}

@media (max-width: 991px) {

  .about-us-section {
    margin-bottom: 0;
  }

  .about-right p {
    font-size: 16px;
  }

  .about-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

@media (max-width: 576px) {

  .about-card {
    padding: 22px;
  }

  .about-card h5 {
    font-size: 22px;
  }

}


/* --------------------------------------------------------------
# Mission & Vision
--------------------------------------------------------------*/
/* LEFT IMAGE */
.mission-img img {
  width: 100%;
  object-fit: cover;
}

.mission-box {
  display: flex;
  flex-direction: column;
  height: 500px;
  justify-content: space-between;
}

/* ICON */
.mission-box .icon {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

/* TITLE */
.mission-box h4 {
  font-size: 34px;
  font-weight: 800;
  color: var(--heading-color);
}

/* TEXT */
.mission-box p {
  font-size: 20px;
  line-height: 1.7;
  color: #9b9b9b;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 1199px) {
  .mission-box {
    height: 440px;
    justify-content: start;
  }

}

/* Tablet */
@media (max-width: 991px) {

  .mission-box {
    text-align: center;
    align-items: center;
    height: fit-content;
  }

  .mission-box p {
    margin: auto;
  }

  .mission-box h4 {
    font-size: 26px;
  }
}


@media (max-width: 767.98px) {
  .mission-box h4 {
    font-size: 24px;
  }

  .mission-box p {
    font-size: 16px;
  }
}


/* --------------------------------------------------------------
# FAQ 
 --------------------------------------------------------------*/
/* Grid background pattern */
.faq-section {
  background-color: #c8d5c5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 46px 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-inner {
  width: 100%;
  max-width: 800px;
  margin: auto;
}



/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.accordion-item {
  background: var(--background-color);
  border: none;
  border-radius: 6px !important;
  overflow: hidden;
  box-shadow: none;
}

.accordion-button {
  background: var(--background-color) !important;
  color: #222 !important;
  font-size: 18px;
  font-weight: 800;
  padding: 16px 20px;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  transition: background 0.2s;
}

.accordion-button:not(.collapsed) {
  background: var(--background-color) !important;
  color: var(--nav-hover-color) !important;
  font-weight: 800;
}

.accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23555' stroke-width='1.5' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23555' stroke-width='1.5' d='M2 11l6-6 6 6'/%3E%3C/svg%3E");
}

.accordion-body {
  font-size: 18px;
  font-weight: 400;
  color: #555;
  padding: 0 20px 18px;
  line-height: 1.65;
}

.accordion-collapse {
  border-top: 1px solid var(--background-color);
}

/* Hover effect */
.accordion-button:hover {
  background: var(--background-color) !important;
}


/* --------------------------------------------------------------
# blog 
 --------------------------------------------------------------*/
/* Dark green heading card */
.blog-heading-card {
  background-color: var(--accent-color);
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100%;
  min-height: 370px;
  width: 240px;
  min-width: 180px;
  flex-shrink: 0;
}

.blog-heading-card .section-header {
  margin-bottom: 0px;
}

/* Light green blog cards */
.blog-card {
  background-color: #dde9e3;
  padding: 28px 26px 24px;
  height: 100%;
  flex: 1 1 0;
  min-width: 0;
}

.blog-card h3 {
  font-size: 34px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 18px;
  color: #333;
  line-height: 1.65;
  margin-bottom: 0;
}



/* Cards wrapper */
.cards-wrapper {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  flex-grow: 1;
}

/* Section outer flex */
.blog-inner {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: stretch;
}

/* ── Responsive ── */

/* Tablet: stack heading on top, 2-col cards */
@media (max-width: 991.98px) {
  .blog-inner {
    flex-direction: column;
  }

  .blog-card h3 {
    font-size: 26px;
  }

  .blog-heading-card {
    width: 100%;
    min-width: unset;
    min-height: 130px;
    padding: 28px 24px;

  }

  .blog-heading-card h2 {
    font-size: 2rem;
  }

  .cards-wrapper {
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog-card {
    flex: 1 1 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }
}

/* Mobile: single column */
@media (max-width: 575.98px) {
  .blog-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
}


/* --------------------------------------------------------------
    # contact form 
    -------------------------------------------------------------*/
.contact-form {
  background-color: var(--dark-background);
}

.contact-wrapper {
  border-radius: 16px;
  padding: 56px 48px;
  display: flex;
  gap: 64px;
  align-items: center;
}

.left-panel {
  flex: 0 0 360px;
}

.left-panel h1 {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
}

.divider-line {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, #444, transparent);
  margin-bottom: 36px;
  margin-left: 2px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.icon-wrap {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-wrap svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-color);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-label {
  font-size: 15px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

.contact-value {
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 600;
}

.contact-value:hover {
  color: var(--accent-color);
}

.divider-v {
  width: 1px;
  background: #222;
  align-self: stretch;
  flex-shrink: 0;
}

.right-panel {
  flex: 1;
}

.form-card {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 36px 40px 40px;
}

.form-card-title {
  color: var(--contrast-color);
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.form-card-sub {
  color: #888;
  font-size: 16px;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-label {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.row-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field-group {
  display: flex;
  flex-direction: column;
}

.full-field {
  margin-bottom: 14px;
}

.form-control {
  background: #fff;
  border: none;
  border-radius: 6px;
  color: #111;
  font-size: 0.84rem;
  padding: 10px 13px;
  width: 100%;
  outline: none;
  transition: box-shadow 0.2s;
  font-family: inherit;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

textarea.form-control {
  resize: none;
  height: 96px;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.btn-wrap {
  background-color: var(--background-color);
  color: var(--heading-color);

}

.btn-wrap .arrow {
  background-color: var(--dark-background);
  color: var(--contrast-color);
}


@media (max-width: 1199px) {
  .contact-wrapper {
    flex-direction: column;
  }
}


@media (max-width: 991px) {
  .contact-wrapper{
    padding: 0px;
    gap: 0px;
  }
}

@media (max-width : 767px) {
  .row-fields{
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------
# Products
-------------------------------------------------------------- */
.product-card {
  background: #2468531A;
  border-radius: 15px;
  padding: 15px;
  transition: 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}

.product-card:hover .product-info h3 {
  color: var(--accent-color);
}

.product-card:hover .image-container .img-hover { opacity: 1; }
/* IMAGE */
.product-card .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.product-card .image-container img {
  width: 100%;
  height: 300px;
  object-fit: fill;
  display: block;
  transition: 0.4s ease;
}
.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.image-container:hover .img-default { opacity: 0; }


/* SEARCH */
.search-wrap { position: relative; }
.search-wrap i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}
.search-wrap input {
  padding: 8px 10px 8px 30px;
  border-radius: 20px;
  border: 1px solid #ccc;
  width: 220px;
}

/* FILTER */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 6px 14px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 6px;
}
.filter-btn.active {
  background: #246853;
  color: #fff;
  border-color: #246853;
}

/* TEXT */
.product-info {
  text-align: center;
  padding: 10px;
}

/* ANIMATION */
.col-product {
  transition: all 0.4s ease;
}
.col-product.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  position: absolute;
}
.col-product.show {
  opacity: 1;
  transform: scale(1);
}

/* NO RESULT */
#noResults {
  display: none;
  text-align: center;
  padding: 20px;
}
#noResults.show { display: block; }


/* trigger demo */
.sidebar-trigger{
  padding:12px 22px;
  background:var(--nav-dropdown-hover-color);
  color:#fff;
  border:0;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
}

/* overlay */
.product-drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.38);
  opacity:0;
  visibility:hidden;
  transition:.45s ease;
  z-index:9998;
}

.product-drawer-overlay.show{
  opacity:1;
  visibility:visible;
}

/* sidebar */
.product-drawer{
  position:fixed;
  top:0;
  right:0;
  width:100%;
  max-width:378px;
  height:100vh;
  background:var(--nav-hover-color);
  z-index:9999;
  overflow-y:auto;
  transform:translateX(100%);
  transition:transform .55s cubic-bezier(.22,.61,.36,1);
}

.product-drawer.show{
  transform:translateX(0);
}

/* custom scroll */
.product-drawer::-webkit-scrollbar{
  width:5px;
}
.product-drawer::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.35);
}

/* close */
.drawer-close{
  width:24px;
  height:24px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.45);
  background:transparent;
  position:absolute;
  top:10px;
  left:10px;
  cursor:pointer;
  z-index:3;
}

.drawer-close span{
  position:absolute;
  width:10px;
  height:1px;
  background:#fff;
  top:11px;
  left:6px;
}

.drawer-close span:first-child{
  transform:rotate(45deg);
}

.drawer-close span:last-child{
  transform:rotate(-45deg);
}

/* top image box */
.drawer-top{
 
  background:var(--nav-hover-color);
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.drawer-top img{
  width:auto;
  object-fit:contain;
  animation:floaty 3s ease-in-out infinite;
}

.drawer-dots{
  position:absolute;
  left:14px;
  bottom:10px;
  color:#fff;
  letter-spacing:3px;
  font-size:16px;
  font-weight:700;
}

/* content */
.drawer-body{
  padding:10px 12px 14px;
}

.drawer-heading{
  color:#fff;
  font-size:14px;
  font-weight:700;
  margin:10px 0 10px;
  letter-spacing:.2px;
}

.drawer-sub{
  color:#dbe9e3;
  font-size:10px;
  margin:0 0 8px;
}

.drawer-title{
  color:#fff;
  font-size:17px;
  line-height:1.32;
  font-weight:400;
  margin:0 0 16px;
}

/* accordion */
.drawer-accordion{
  display:flex;
  flex-direction:column;
  gap:9px;
}

.drawer-item{
  background-color: wheat;
  overflow:hidden;
}

.drawer-btn{
  width:100%;
  border:0;
  background:transparent;
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-align:left;
  padding:14px 16px;
  cursor:pointer;
}

.drawer-btn span{
  color:var(--text);
  font-size:15px;
  line-height:1.2;
}

.drawer-btn small{
  font-size:9px;
  margin-left:4px;
}

.drawer-btn i{
  font-style:normal;
  color:#222;
  font-size:24px;
  line-height:1;
  transition:.35s ease;
}

/* content animation */
.drawer-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s ease;
}

.drawer-inner{
  padding:0 16px 16px;
  color:var(--text);
  font-size:13px;
  line-height:1.6;
}

.drawer-item.active .drawer-content{
  max-height:250px;
}

.drawer-item.active .drawer-btn i{
  transform:rotate(45deg);
}

/* mobile full width */
@media (max-width:575px){

  .product-drawer{
    max-width:100%;
  }

  .drawer-top{
    margin:32px 14px 0;
    height:128px;
  }

  .drawer-title{
    font-size:15px;
  }

  .drawer-btn span{
    font-size:14px;
  }
}

/* tablet */
@media (min-width:576px) and (max-width:991px){
  .product-drawer{
    max-width:340px;
  }
}

/* desktop */
@media (min-width:1400px){
  .product-drawer{
    max-width:400px;
  }
}

/* image float */
@keyframes floaty{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}


/* --------------------------------------------------------------
# Get Quetation
-------------------------------------------------------------- */ 
   /* ─── Page Shell ─── */
    .nvcq-page-wrap {
      background: var(--nvcq-bg-page);
      min-height: 100vh;
      padding: 0 0 60px;
    }

    /* ─── Page Header ─── */
    .nvcq-page-header {
      text-align: center;
      padding: 48px 20px 36px;
      animation: nvcqFadeDown 0.55s ease both;
    }
    .nvcq-badge-free {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--nvcq-bg-white);
      border: 1px solid var(--nvcq-border-color);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: 12.5px;
      color: var(--nvcq-text-dark);
      font-weight: 500;
      margin-bottom: 18px;
    }
    .nvcq-badge-free svg { color: var(--nvcq-green-mid); }
    .nvcq-page-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 5vw, 44px);
      font-weight: 700;
      color: var(--nvcq-text-dark);
      line-height: 1.15;
      margin-bottom: 12px;
    }
    .nvcq-page-title em {
      font-style: italic;
      color: var(--nvcq-green-mid);
    }
    .nvcq-page-subtitle {
      font-size: 15px;
      color: var(--nvcq-text-muted);
      max-width: 460px;
      margin: 0 auto 20px;
      line-height: 1.6;
    }
    .nvcq-trust-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 22px;
      margin-bottom: 8px;
    }
    .nvcq-trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: var(--nvcq-text-muted);
      font-weight: 500;
    }
    .nvcq-trust-item svg { color: var(--nvcq-green-mid); flex-shrink: 0; }

    /* ─── Card ─── */
    .nvcq-form-card {
      background: var(--nvcq-bg-white);
      border-radius: 20px;
      box-shadow: 0 4px 32px rgba(0,0,0,0.08);
      max-width: 740px;
      margin: 0 auto;
      padding: 40px 44px 36px;
      animation: nvcqFadeUp 0.5s ease 0.1s both;
    }
    @media (max-width: 600px) {
      .nvcq-form-card { padding: 26px 18px 24px; }
      .nvcq-page-header { padding: 32px 16px 24px; }
    }

    /* ─── Stepper ─── */
    .nvcq-stepper {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      margin-bottom: 36px;
    }
    .nvcq-step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1;
      position: relative;
      z-index: 1;
    }
    .nvcq-step-icon {
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 2px solid var(--nvcq-border-color);
      display: flex; align-items: center; justify-content: center;
      background: var(--nvcq-bg-white);
      transition: all var(--nvcq-transition);
      position: relative; z-index: 2;
    }
    .nvcq-step-item.nvcq-active .nvcq-step-icon {
      border-color: var(--nvcq-green-mid);
    }
    .nvcq-step-item.nvcq-completed .nvcq-step-icon {
      border-color: var(--nvcq-green-mid);
      background: var(--nvcq-green-mid);
    }
    .nvcq-step-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--nvcq-text-muted);
      margin-top: 7px;
      text-align: center;
      line-height: 1.35;
      transition: color var(--nvcq-transition);
    }
    .nvcq-step-item.nvcq-active .nvcq-step-label,
    .nvcq-step-item.nvcq-completed .nvcq-step-label { color: var(--nvcq-green-mid); }
    .nvcq-step-line {
      flex: 1; height: 2px;
      background: var(--nvcq-border-color);
      margin-top: 20px;
      transition: background var(--nvcq-transition);
    }
    .nvcq-step-line.nvcq-completed { background: var(--nvcq-green-mid); }

    /* ─── Step Pages ─── */
    .nvcq-step-page { display: none; }
    .nvcq-step-page.nvcq-active { display: block; animation: nvcqFadeUp 0.3s ease both; }

    /* ─── Typography inside card ─── */
    .nvcq-section-title {
      font-size: 21px; font-weight: 700;
      color: var(--nvcq-text-dark); margin-bottom: 2px;
    }
    .nvcq-section-sub {
      font-size: 13px; color: var(--nvcq-text-muted); margin-bottom: 28px;
    }
    .nvcq-field-label {
      font-size: 13.5px; font-weight: 600;
      color: var(--nvcq-text-dark);
      margin-bottom: 8px;
      display: flex; align-items: center; gap: 4px;
    }
    .nvcq-req { color: var(--nvcq-red-error); }
    .nvcq-opt { color: var(--nvcq-text-muted); font-weight: 400; font-size: 12px; }

    /* ─── Inputs ─── */
    .nvcq-field-group { margin-bottom: 18px; }
    .nvcq-form-input {
      width: 100%;
      border: 1.5px solid var(--nvcq-border-color);
      border-radius: 9px;
      padding: 10px 14px;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      color: var(--nvcq-text-dark);
      background: var(--nvcq-bg-white);
      outline: none;
      transition: border-color var(--nvcq-transition), box-shadow var(--nvcq-transition);
      appearance: none;
      box-sizing: border-box;
    }
    .nvcq-form-input::placeholder { color: #b0b8be; }
    .nvcq-form-input:hover { border-color: #b0bdb5; }
    .nvcq-form-input:focus {
      border-color: var(--nvcq-green-mid);
      box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
    }
    .nvcq-form-input.nvcq-error { border-color: var(--nvcq-red-border); }
    .nvcq-form-input.nvcq-error:focus { box-shadow: 0 0 0 3px rgba(231,76,60,0.12); }

    select.nvcq-form-input {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 38px;
      cursor: pointer;
    }
    textarea.nvcq-form-input { resize: vertical; min-height: 115px; }

    /* ─── Error messages ─── */
    .nvcq-error-msg {
      font-size: 12px; color: var(--nvcq-red-error);
      margin-top: 5px; display: none;
      animation: nvcqFadeIn 0.2s ease;
    }
    .nvcq-error-msg.nvcq-show { display: block; }

    /* ─── Two-col grid ─── */
    .nvcq-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    @media (max-width: 500px) { .nvcq-two-col { grid-template-columns: 1fr; } }

    /* ─── Category Buttons ─── */
    .nvcq-category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 9px;
      margin-bottom: 4px;
    }
    @media (max-width: 500px) { .nvcq-category-grid { grid-template-columns: repeat(2, 1fr); } }
    .nvcq-category-btn {
      padding: 10px 12px;
      border: 1.5px solid var(--nvcq-border-color);
      border-radius: 9px;
      background: var(--nvcq-bg-white);
      font-size: 13px; font-family: 'DM Sans', sans-serif;
      font-weight: 500; color: var(--nvcq-text-dark);
      cursor: pointer; text-align: left;
      transition: all var(--nvcq-transition);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .nvcq-category-btn:hover {
      border-color: var(--nvcq-green-border);
      background: var(--nvcq-green-light);
      transform: translateY(-1px);
    }
    .nvcq-category-btn.nvcq-selected {
      border-color: var(--nvcq-green-mid);
      background: var(--nvcq-green-light);
      color: var(--nvcq-green-dark);
      font-weight: 600;
    }
    .nvcq-category-btn.nvcq-error-state { border-color: var(--nvcq-red-border); }

    /* ─── Dosage Chips ─── */
    .nvcq-dosage-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
    .nvcq-chip {
      padding: 7px 18px;
      border: 1.5px solid var(--nvcq-border-color);
      border-radius: 22px;
      background: var(--nvcq-bg-white);
      font-size: 13px; font-family: 'DM Sans', sans-serif;
      font-weight: 500; color: var(--nvcq-text-dark);
      cursor: pointer; transition: all var(--nvcq-transition);
    }
    .nvcq-chip:hover {
      border-color: var(--nvcq-green-border);
      background: var(--nvcq-green-light);
      transform: translateY(-1px);
    }
    .nvcq-chip.nvcq-selected {
      border-color: var(--nvcq-green-mid);
      background: var(--nvcq-green-dark);
      color: #fff;
    }
    .nvcq-chip.nvcq-error-state { border-color: var(--nvcq-red-border); }

    /* ─── Service Cards ─── */
    .nvcq-service-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    }
    @media (max-width: 500px) { .nvcq-service-grid { grid-template-columns: 1fr; } }
    .nvcq-service-card {
      border: 1.5px solid var(--nvcq-border-color);
      border-radius: 11px; padding: 14px 15px;
      cursor: pointer; display: flex; align-items: flex-start; gap: 12px;
      transition: all var(--nvcq-transition);
      position: relative; background: var(--nvcq-bg-white);
    }
    .nvcq-service-card:hover {
      border-color: var(--nvcq-green-border);
      background: #f7fbf8;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(45,90,61,0.08);
    }
    .nvcq-service-card.nvcq-selected {
      border-color: var(--nvcq-green-mid);
      background: var(--nvcq-green-light);
    }
    .nvcq-service-icon {
      width: 36px; height: 36px; border-radius: 8px;
      background: var(--nvcq-green-light);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      transition: background var(--nvcq-transition);
    }
    .nvcq-service-card.nvcq-selected .nvcq-service-icon { background: var(--nvcq-green-mid); }
    .nvcq-service-card.nvcq-selected .nvcq-service-icon svg { color: #fff !important; }
    .nvcq-service-info { flex: 1; }
    .nvcq-service-name { font-size: 13.5px; font-weight: 600; color: var(--nvcq-text-dark); margin-bottom: 2px; }
    .nvcq-service-desc { font-size: 12px; color: var(--nvcq-text-muted); line-height: 1.45; }
    .nvcq-service-check {
      width: 19px; height: 19px; border-radius: 50%;
      border: 1.5px solid var(--nvcq-border-color);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: all var(--nvcq-transition); margin-top: 1px;
    }
    .nvcq-service-card.nvcq-selected .nvcq-service-check {
      background: var(--nvcq-green-mid); border-color: var(--nvcq-green-mid);
    }

    /* ─── Review Table ─── */
    .nvcq-review-table {
      width: 100%; border-radius: 11px;
      overflow: hidden; border: 1px solid var(--nvcq-border-color);
    }
    .nvcq-review-row {
      display: grid; grid-template-columns: 145px 1fr;
      border-bottom: 1px solid var(--nvcq-border-color);
    }
    .nvcq-review-row:last-child { border-bottom: none; }
    .nvcq-review-row:nth-child(odd) { background: var(--nvcq-green-light); }
    .nvcq-review-row:nth-child(even) { background: var(--nvcq-bg-white); }
    .nvcq-review-key { font-size: 13px; font-weight: 600; color: var(--nvcq-text-muted); padding: 11px 15px; }
    .nvcq-review-val { font-size: 13px; font-weight: 500; color: var(--nvcq-text-dark); padding: 11px 15px; }

    .nvcq-disclaimer {
      background: #f8f9fa; border: 1px solid var(--nvcq-border-color);
      border-radius: 9px; padding: 13px 15px;
      font-size: 12.5px; color: var(--nvcq-text-muted); line-height: 1.5; margin-top: 16px;
    }

    /* ─── Buttons ─── */
    .nvcq-btn-nav-row {
      display: flex; justify-content: space-between; align-items: center;
      margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--nvcq-border-color);
    }
    .nvcq-btn-back {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 10px 22px; border: 1.5px solid var(--nvcq-border-color);
      border-radius: 26px; background: var(--nvcq-bg-white);
      font-size: 14px; font-family: 'DM Sans', sans-serif;
      font-weight: 500; color: var(--nvcq-text-dark); cursor: pointer;
      transition: all var(--nvcq-transition);
    }
    .nvcq-btn-back:hover { border-color: #b0bdb5; background: #f8f9fa; transform: translateX(-2px); }
    .nvcq-btn-continue, .nvcq-btn-submit {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 28px; border: none; border-radius: 26px;
      background: var(--nvcq-green-btn); color: #fff;
      font-size: 14.5px; font-family: 'DM Sans', sans-serif;
      font-weight: 600; cursor: pointer;
      transition: all var(--nvcq-transition);
      box-shadow: 0 2px 10px rgba(30,69,48,0.2);
    }
    .nvcq-btn-continue:hover { background: var(--nvcq-green-active); transform: translateX(2px); box-shadow: 0 4px 18px rgba(30,69,48,0.28); }
    .nvcq-btn-submit:hover   { background: var(--nvcq-green-active); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(30,69,48,0.28); }
    .nvcq-btn-submit:active, .nvcq-btn-continue:active { transform: scale(0.97); }

    .nvcq-btn-secondary {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 10px 22px; border: 1.5px solid var(--nvcq-border-color);
      border-radius: 26px; background: var(--nvcq-bg-white);
      font-size: 14px; font-family: 'DM Sans', sans-serif;
      font-weight: 500; color: var(--nvcq-text-dark); cursor: pointer;
      transition: all var(--nvcq-transition); text-decoration: none;
    }
    .nvcq-btn-secondary:hover { background: #f8f9fa; border-color: #b0bdb5; }

    /* ─── Success Screen ─── */
    .nvcq-success-wrap { text-align: center; padding: 44px 20px; animation: nvcqFadeUp 0.4s ease both; }
    .nvcq-success-icon-circle {
      width: 70px; height: 70px; border-radius: 50%;
      border: 2px solid var(--nvcq-green-border);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px; background: var(--nvcq-green-light);
      animation: nvcqPopIn 0.4s cubic-bezier(.175,.885,.32,1.275) 0.1s both;
    }
    .nvcq-success-title { font-size: 22px; font-weight: 700; color: var(--nvcq-text-dark); margin-bottom: 10px; }
    .nvcq-success-desc  { font-size: 14px; color: var(--nvcq-text-muted); max-width: 360px; margin: 0 auto 30px; line-height: 1.65; }
    .nvcq-success-desc strong { color: var(--nvcq-text-dark); }
    .nvcq-success-btns  { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

    /* ─── Animations ─── */
    @keyframes nvcqFadeUp   { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
    @keyframes nvcqFadeDown { from { opacity:0; transform:translateY(-10px);} to { opacity:1; transform:translateY(0); } }
    @keyframes nvcqFadeIn   { from { opacity:0; } to { opacity:1; } }
    @keyframes nvcqPopIn    { from { opacity:0; transform:scale(0.6); } to { opacity:1; transform:scale(1); } }







  /* ───────────────────────────────────────────
       GALLERY — MAIN IMAGE
    ─────────────────────────────────────────── */
    .gallery-wrap {
      position: sticky;
      top: 24px;
    }

    .gallery-main {
      background  : var(--green-pale);
      border-radius: 20px;
      overflow    : hidden;
      display     : flex;
      align-items : center;
      justify-content: center;
    }

  

    

    /* ───────────────────────────────────────────
       GALLERY — THUMBNAILS
    ─────────────────────────────────────────── */
    .gallery-thumbs {
      display              : grid;
      grid-template-columns: repeat(4, 1fr);
      gap                  : 10px;
      margin-top           : 12px;
    }

    .gallery-thumbs img {
      width        : 100%;
      aspect-ratio : 1;
      object-fit   : cover;
      border-radius: 10px;
      border       : 2px solid transparent;
      display      : block;
  
    }

    .gallery-thumbs img:hover  { opacity: 1; border-color: var(--green-mid); }
    .gallery-thumbs img.active { opacity: 1; border-color: var(--green-dark); }

    /* ───────────────────────────────────────────
       PRODUCT INFO COLUMN
    ─────────────────────────────────────────── */
    .product-info-col {
      padding-left: 8px;
    }

    /* Badge */
    .product-badge {
      display      : inline-block;
      border       : 1.5px solid var(--text);
      border-radius: 100px;
      padding      : 4px 14px;
      font-size    : 11px;
      font-weight  : 600;
      letter-spacing: .4px;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

   
    
    /* Category tag */
    .product-category {
      font-size    : 13px;
      color        : var(--accent);
      font-weight  : 500;
      margin-bottom: 14px;
      letter-spacing: .2px;
    }

    /* Description */
    .product-desc {
      font-size    : 14.5px;
      line-height  : 1.75;
      color        : var(--muted);
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
    }

    /* ───────────────────────────────────────────
       FORMAT SELECTOR
    ─────────────────────────────────────────── */
    .format-label {
      font-size    : 11px;
      font-weight  : 700;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      color        : var(--muted);
      margin-bottom: 10px;
    }

    .formats {
      display  : flex;
      flex-wrap: wrap;
      gap      : 8px;
      margin-bottom: 28px;
    }

    .formats button {
      background   : var(--white);
      color        : var(--text);
      border       : 1.5px solid var(--border);
      border-radius: 100px;
      padding      : 7px 18px;
      font-size    : 13px;
      font-weight  : 500;
      font-family  : 'DM Sans', sans-serif;
      cursor       : pointer;
      transition   : all .2s;
      line-height  : 1.4;
    }
    .formats button:hover  { border-color: var(--green-dark); background: var(--green-pale); }
    .formats button.active { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }

   
    /* ───────────────────────────────────────────
       TRUST BADGES (below CTA)
    ─────────────────────────────────────────── */
    .trust-badges {
      display        : flex;
      justify-content: center;
      flex-wrap      : wrap;
      gap            : 8px 14px;
      margin-top     : 18px;
      padding-top    : 18px;
      border-top     : 1px solid var(--border);
    }
    .trust-badge {
      font-size  : 11px;
      font-weight: 600;
      color      : var(--muted);
      display    : flex;
      align-items: center;
      gap        : 5px;
    }
    .trust-badge svg { opacity: .65; }

    /* ───────────────────────────────────────────
       ACCORDION
    ─────────────────────────────────────────── */
    .product-accordion {
      border-top : 1px solid var(--border);
      margin-top : 26px;
    }

    .acc-item { border-bottom: 1px solid var(--border); }

    .acc-toggle {
      width          : 100%;
      background     : none;
      border         : none;
      display        : flex;
      align-items    : center;
      justify-content: space-between;
      padding        : 16px 0;
      font-size      : 14px;
      font-weight    : 600;
      font-family    : 'DM Sans', sans-serif;
      color          : var(--text);
      cursor         : pointer;
      text-align     : left;
      letter-spacing : .1px;
    }
    .acc-toggle:hover { color: var(--accent); }

    .acc-icon {
      width          : 22px;
      height         : 22px;
      border-radius  : 50%;
      border         : 1.5px solid var(--border);
      display        : flex;
      align-items    : center;
      justify-content: center;
      font-size      : 16px;
      line-height    : 1;
      color          : var(--muted);
      flex-shrink    : 0;
      transition     : transform .3s, background .2s, border-color .2s;
    }
    .acc-toggle.open .acc-icon {
      transform   : rotate(45deg);
      background  : var(--green-dark);
      border-color: var(--green-dark);
      color       : #fff;
    }

    .acc-body {
      max-height : 0;
      overflow   : hidden;
      transition : max-height .38s ease;
    }
    .acc-body.open { max-height: 500px; }

    .acc-body-inner {
      padding-bottom: 18px;
      font-size     : 13.5px;
      color         : var(--muted);
      line-height   : 1.8;
    }
    .acc-body-inner ul { padding-left: 16px; margin: 0; }
    .acc-body-inner ul li { margin-bottom: 7px; }
    .acc-body-inner p  { margin: 0; }

   










 