/* ==========================================
   ND SLIDER BASE
========================================== */
section {
  padding: 0px 0px;
}

.nd-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.nd-carousel,
.nd-carousel-inner,
.nd-carousel-item {
  height: 100vh;
  min-height: 720px;
}

.nd-carousel-item {
  position: relative;
}

.nd-carousel .carousel-item {
  transition: none;
}

.nd-carousel .carousel-item-next,
.nd-carousel .carousel-item-prev,
.nd-carousel .carousel-item-start,
.nd-carousel .carousel-item-end,
.nd-carousel .active.carousel-item-start,
.nd-carousel .active.carousel-item-end {
  transform: none !important;
}

/* ==========================================
   IMAGE
========================================== */

.nd-slide-img {
  width: 100%;
  height: 100vh;
  min-height: 720px;
  object-fit: cover;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

/* ==========================================
   LEFT DARK GRADIENT OVERLAY
========================================== */

.nd-carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.78) 35%,
      rgba(0, 0, 0, 0.55) 55%,
      rgba(0, 0, 0, 0.25) 75%,
      transparent 100%);
  z-index: 1;
}

/* ==========================================
   TEXT CONTENT
========================================== */


.nd-text-wrapper {
  position: absolute;
  top: 45%;
  /* Was 50% */
  left: max(var(--site-container-gutter), calc((100% - var(--site-container-content-max)) / 2));
  transform: translateY(-45%);
  max-width: 720px;
  /* Increased for better wrap balance */
  z-index: 2;
  color: #ffffff;
}

/* ==========================================
   HEADING CONSISTENCY
========================================== */

.nd-title {
  font-size: 40px;
  /* Lock strong consistent size */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  max-width: 800px;
  color: white;
  /* Controls wrapping */
}

/* ==========================================
   PARAGRAPH REFINEMENT
========================================== */

.nd-desc {
  font-size: 15px;
  /* Slightly larger for balance */
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 42px;
  max-width: 650px;
}

/* ==========================================
   BUTTONS
========================================== */

.nd-btn-group {
  display: flex;
  gap: 20px;
}

.nd-btn {
  padding: 14px 28px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  min-width: 196px;
  /* border-radius: 6px; */
  transition: all 0.3s ease;
  display: inline-block;
}

.nd-btn.nd-btn-outline {
  cursor: pointer;
  border-radius: 0px;
  letter-spacing: 0px;
}

.nd-consultation-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  z-index: 1050;
}

.nd-consultation-modal.is-open {
  display: flex;
}

.nd-consultation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 18, 0.66);
  backdrop-filter: blur(6px);
}

.nd-consultation-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.45fr) minmax(520px, 0.55fr);
  width: min(1404px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  z-index: 1;
  scrollbar-width: none;
}

.nd-consultation-visual {
  position: relative;
  min-height: 646px;
  overflow: hidden;
}

.nd-consultation-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.nd-consultation-visual>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nd-consultation-visual-overlay {
  position: absolute;
  inset: auto 30px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  gap: 24px;
  color: #ffffff;
  z-index: 1;
}

.nd-consultation-logo {
  width: 190px;
  max-width: 48%;
}

.nd-consultation-follow {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nd-consultation-follow div {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nd-consultation-follow span {
  text-decoration: underline;
  font-size: 12px;
}

.nd-consultation-follow a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nd-consultation-follow a:hover,
.nd-consultation-follow a:focus-visible {
  color: #e1251b;
  transform: translateY(-2px);
}

.nd-consultation-card.contact-us-form-card {
  width: 100%;
  padding: 36px 64px 30px;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}

.nd-consultation-close {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111722;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.nd-consultation-close:hover {
  background: transparent;
  color: #e1251b !important;
}

.nd-consultation-card .contact-us-copy h1 {
  padding-right: 20px;
}

.nd-consultation-card .contact-us-form {
  gap: 14px;
}

.nd-consultation-card .contact-us-form input,
.nd-consultation-card .contact-us-form select,
.nd-consultation-card .contact-us-form textarea {
  border-radius: 3px;
  padding: 10px 11px;
}

.nd-consultation-card .contact-us-form textarea {
  min-height: 80px;
}

.nd-consultation-card .contact-us-bottom-left {
  gap: 40px;
}

body.nd-consultation-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .nd-consultation-dialog {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
  }

  .nd-consultation-visual {
    min-height: 260px;
  }

  .nd-consultation-card.contact-us-form-card {
    padding: 30px 34px 32px;
  }

  .nd-consultation-close {
    color: #ffffff;
  }
}

@media (max-width: 640px) {
  .nd-consultation-modal {
    padding: 14px;
  }

  .nd-consultation-dialog {
    max-height: calc(100vh - 28px);
    border-radius: 18px;
  }

  .nd-consultation-visual {
    min-height: 180px;
  }

  .nd-consultation-visual-overlay {
    inset: auto 18px 18px;
  }

  .nd-consultation-logo {
    width: 145px;
  }

  .nd-consultation-follow {
    display: none;
  }

  .nd-consultation-card.contact-us-form-card {
    padding: 24px 18px 26px;
  }

  .nd-consultation-close {
    top: 10px;
    right: 12px;
    color: #ffffff;
  }

  .nd-consultation-card .contact-us-copy h1 {
    padding-right: 0;
  }
}

.nd-btn-primary {
  background: #3a3a3a;
  color: #ffffff;
}

.nd-btn-primary:hover {
  background: #ff3434;
  color: white;
  transition: all 0.7s ease;

}

.nd-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: #ffffff;
  background: transparent;
}

.nd-btn-outline:hover {
  /* background: #ffffff;
  color: #000000 !important; */
  color: #ffffff;
  background: #e1251b;
}

/* ==========================================
   DOT STYLE INDICATORS
========================================== */

.nd-indicators {
  bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.nd-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  border-radius: 50%;
  opacity: 1;
  margin: 0;
}

.nd-indicators .active {
  background-color: #ffffff;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {

  .nd-title {
    font-size: 40px;
  }

  .nd-desc {
    font-size: 14px;
  }

  .nd-text-wrapper {
    left: 6%;
    max-width: 90%;
  }

}

@media (max-width: 576px) {

  .nd-carousel,
  .nd-carousel-inner,
  .nd-carousel-item,
  .nd-slide-img {
    height: 80vh;
    min-height: 0;
  }

  .nd-title {
    font-size: 28px;
  }

  .nd-btn-group {
    flex-direction: column;
    gap: 15px;
  }

}




/* ==========================================
   SECTION BASE
========================================== */

.nd-services-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.nd-services-showcase {
  width: min(100%, calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2)));
  max-width: calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2));
  margin: 0 auto;
  padding-left: var(--site-container-gutter);
  padding-right: var(--site-container-gutter);
  box-sizing: border-box;
}

.nd-services-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.nd-services-container-v2 {
  width: min(100%, calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2)));
  max-width: calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2));
  margin: 0 auto;
  padding-left: var(--site-container-gutter);
  padding-right: var(--site-container-gutter);
  box-sizing: border-box;
}

.nd-services-header-v2 {
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 42px;
}

.nd-services-desc-block-v2 {
  max-width: 500px;
}

.nd-services-link-v2 {
  color: #e1251b;
  gap: 8px;
}

.nd-services-link-v2:hover,
.nd-services-link-v2:focus,
.nd-services-link-v2:active {
  color: #e1251b;
}

.nd-services-link-v2 .nd-arrow-line {
  background: #e1251b;
}

.nd-services-link-v2 .nd-arrow-head {
  border-top-color: #e1251b;
  border-right-color: #e1251b;
}

.nd-services-panel {
  display: grid;
grid-template-columns: minmax(360px, 0.8fr) minmax(450px, 1.1fr);  align-items: stretch;
  min-height: 445px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  overflow: hidden;
}

.nd-services-list {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
}

.nd-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 61px;
  padding: 9px 28px;
  border-bottom: 1px solid #ececec;
  text-decoration: none;
  color: #1d1d1d;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nd-service-row:last-child {
  border-bottom: 0;
}

.nd-service-row-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.nd-service-row-left img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 28px;
}

.nd-service-icon-accent {
  filter: brightness(0) saturate(100%);
  transition: filter 0.25s ease;
}

.nd-service-row-left span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.nd-service-row-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nd-service-row.is-active {
  background: #ffffff;
  color: #1d1d1d;
}

.nd-service-row:hover,
.nd-service-row.is-active:hover {
  background: #eef3fb;
  color: #e1251b;
}

.nd-service-row .nd-service-row-arrow .nd-arrow-line {
  width: 14px;
  height: 1.5px;
  background: currentColor;
  transition: width 0.25s ease;
}

.nd-service-row .nd-service-row-arrow .nd-arrow-head {
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: -6px;
}

.nd-service-row:hover .nd-service-row-arrow .nd-arrow-line,
.nd-service-row.is-active:hover .nd-service-row-arrow .nd-arrow-line {
  width: 26px;
}

.nd-service-row:hover .nd-service-icon-accent,
.nd-service-row.is-active:hover .nd-service-icon-accent {
  filter: brightness(0) saturate(100%) invert(19%) sepia(94%) saturate(4164%) hue-rotate(353deg) brightness(94%) contrast(94%);
}

.nd-services-preview {
  position: relative;
  z-index: 1;
}

.nd-services-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 445px;
  object-fit: cover;
}

.nd-services-preview-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(50%, 236px);
  padding: 16px 14px 14px;
  background: rgba(35, 35, 35, 0.96);
  color: #ffffff;
}

.nd-services-preview-card p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nd-services-preview-card a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #e1251b;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.nd-services-preview-card a span {
  align-items: center;
  color: #e1251b;
  font-size: 22px;
  font-weight: 400;
  margin: 0px 0px 2px 0px;
}

@media (max-width: 992px) {
  .nd-services-header-v2 {
    flex-direction: column;
    gap: 24px;
  }

  .nd-services-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nd-services-preview img {
    min-height: 360px;
    object-position: center;
  }
}

@media (max-width: 576px) {
  .nd-services-section {
    padding: 52px 0;
  }

  .nd-service-row {
    min-height: 68px;
    padding: 16px 18px;
  }

  .nd-service-row-left span {
    font-size: 12px;
  }

  .nd-services-preview img {
    min-height: 300px;
  }

  .nd-services-preview-card {
    width: 100%;
    position: static;
  }
}

.nd-services-container {
  width: min(100%, calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2)));
  max-width: calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2));
  margin: 0 auto;
  padding-left: var(--site-container-gutter);
  padding-right: var(--site-container-gutter);
  box-sizing: border-box;
}

/* ==========================================
   HEADER
========================================== */

.nd-services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 60px;
}

.nd-services-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: #8a8a8a;
  display: block;
  margin-bottom: 0px;
}

.nd-services-title {
  font-size: 35px;
  font-weight: 700;
  color: #111;
}

.nd-services-title span {
  font-size: 35px;
  color: #e1251b;
}

.nd-services-desc-block p {
  max-width: 600px;
  font-size: 14px;
  line-height: 1.3;
  color: #161616;
  margin-bottom: 14px;
}

.nd-services-link,
.nd-products-link,
.nd-blog-link,
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e1251b;
  font-weight: 400;
  font-size: 13px !important;
  text-decoration: none;
  --nd-shared-arrow-color: #e1251b;
  --nd-shared-arrow-width: 18px;
  --nd-shared-arrow-width-hover: 30px;
}

.nd-services-link:hover,
.nd-services-link:focus,
.nd-services-link:active,
.nd-products-link:hover,
.nd-products-link:focus,
.nd-products-link:active,
.nd-blog-link:hover,
.nd-blog-link:focus,
.nd-blog-link:active,
.about-link:hover,
.about-link:focus,
.about-link:active {
  color: #e1251b;
}

.nd-arrow-expand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nd-arrow-line {
  width: var(--nd-shared-arrow-width, 18px);
  height: 1.5px;
  background: var(--nd-shared-arrow-color, currentColor);
  transition: width 0.25s ease, background-color 0.25s ease;
}

.nd-arrow-head {
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--nd-shared-arrow-color, currentColor);
  border-right: 1.5px solid var(--nd-shared-arrow-color, currentColor);
  transform: rotate(45deg);
  margin-left: -6px;
  transition: border-color 0.25s ease;
}

.nd-services-link:hover .nd-arrow-line,
.nd-services-link:focus .nd-arrow-line,
.nd-products-link:hover .nd-arrow-line,
.nd-products-link:focus .nd-arrow-line,
.nd-product-sub-arrow:hover .nd-arrow-line,
.nd-product-sub-arrow:focus .nd-arrow-line,
.nd-blog-link:hover .nd-arrow-line,
.nd-blog-link:focus .nd-arrow-line,
.about-link:hover .nd-arrow-line,
.about-link:focus .nd-arrow-line {
  width: var(--nd-shared-arrow-width-hover, 30px);
}

/* ==========================================
   GRID
========================================== */

.nd-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ==========================================
   CARD
========================================== */

.nd-service-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* .nd-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
} */

/* default state */
.nd-service-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.35s ease;
}

.nd-service-icon {
  width: 60px;
  height: 60px;
  /* border: 2px solid #111; */
  /* border-radius: 8px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-weight: 600; */
  margin-bottom: 12px;
}

.nd-service-icon img {
  width: 100%;
  height: 100%;
  max-width: 58px;
  display: block;
}

.nd-service-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px !important;
  color: #111;
  line-height: 2.0;
}

.nd-service-content {
  flex: 1;
}

.nd-service-image {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.nd-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* hover state */
.nd-service-card:hover .nd-service-header {
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.nd-service-card:hover .nd-service-text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  display: none;
}

.nd-service-card:hover .nd-service-image {
  opacity: 1;
  max-height: 220px;
}

.nd-service-card:hover .nd-read-more {
  display: none;
}

.nd-read-more {
  font-size: 12px;
  font-weight: 500;
  color: #e1251b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  /* margin-top: 22px; */
  justify-content: end;
  width: 100%;
  text-align: right;
}

.nd-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.nd-read-more:hover {
  color: #e1251b;
}

/* hover trigger */
.nd-read-more:hover .nd-arrow {
  /* transform: translateX(8px); */
  animation: arrowMove 0.6s ease forwards;
}


/* motion physics */
@keyframes arrowMove {

  0% {
    transform: translateX(0) rotate(0deg);
  }

  30% {
    transform: translateX(-2px) rotate(-10deg);
  }

  100% {
    transform: translateX(7px) rotate(0deg);
  }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1200px) {
  .nd-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nd-services-header {
    flex-direction: column;
  }

  .nd-services-grid {
    grid-template-columns: 1fr;
  }

}


.about-glance-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
}


/* =========================
   TOP CONTENT
========================= */

.about-top {
  width: min(100%, calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2)));
  max-width: calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2));
  margin: 0 auto 30px;
  padding-left: var(--site-container-gutter);
  padding-right: var(--site-container-gutter);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.about-left {
  flex: 1;
}

.about-small {
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: #222;
}

.about-heading {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
}

.about-heading span {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  color: #e1251b;
}

.about-right {
  flex: 1;
}

.about-right p {
  max-width: 600px;
  font-size: 14px;
  line-height: 1.3;
  color: #161616;
  margin-bottom: 14px;
}

.about-link {
  font-size: 13px;
}

/* =========================
   IMAGE BLOCK
========================= */

.about-image-wrapper {
  width: min(100%, calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2)));
  max-width: calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2));
  margin: 0 auto;
  padding-left: var(--site-container-gutter);
  padding-right: var(--site-container-gutter);
  box-sizing: border-box;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.about-glance-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 34px 28px;
  text-align: center;
  /* background: linear-gradient(180deg, rgba(2, 11, 26, 0.34), rgba(2, 11, 26, 0.42)); */
  color: #fff;
}

.about-glance-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.about-glance-overlay-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.about-glance-overlay-stat {
  position: relative;
  min-height: 170px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.about-glance-overlay-stat + .about-glance-overlay-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.about-glance-overlay-stat strong {
  display: inline-block;
  color: #26e4fb;
  font-size: clamp(54px, 4vw, 84px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.about-glance-overlay-stat strong::after {
  content: "";
  display: block;
  width: 112px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #26e4fb;
}

.about-glance-overlay-stat span {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(16px, 1.15vw, 24px);
  line-height: 1.34;
  max-width: 220px;
}

/* Play button */
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
}

/* =========================
   FLOATING STATS
========================= */

.about-stats {
  width: min(100%, calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2)));
  max-width: calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2));
  margin: -80px auto 0;
  /* THIS creates floating effect */
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
  z-index: 5;
  padding: 0 var(--site-container-gutter);
  box-sizing: border-box;
}

.stat-card {
  position: relative;
  padding: 25px 25px;
  border-radius: 12px;
  text-align: center;
  color: #fff;

  /* Glass background */
  background: rgba(0, 136, 255, 0.65);

  /* Blur effect */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  /* Soft border highlight */
  border: 1px solid rgba(255, 255, 255, 0.25);

  /* Depth */
  /* box-shadow:
    0 25px 40px rgba(0,0,0,0.25),
    inset 0 1px 1px rgba(255,255,255,0.25); */

  transition: 0.4s ease;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  /* background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.15) 0%,
    rgba(255,255,255,0.05) 40%,
    rgba(0,0,0,0.15) 100%
  ); */
  pointer-events: none;
}

/* .stat-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 35px 60px rgba(0,0,0,0.35),
    inset 0 1px 1px rgba(255,255,255,0.3);
} */




.stat-card h3 {
  font-size: 44px;
  margin-bottom: 14px;
  color: white;
  font-weight: 700;
}

.stat-card p {
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  .about-top {
    flex-direction: column;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-heading {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}



/* ==============================
   SECTION BASE
============================== */

/* ==============================
   HEADER
============================== */

.nd-products-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}

.nd-products-left .nd-small {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.nd-products-left h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 0px !important;
}

.nd-products-left h2 span {
  font-size: 35px;
  color: #e1251b;
}

.nd-products-left p {
  color: #666;
  font-size: 14px;
}

.nd-view-all {
  padding: 8px 20px;
  border: 1px solid #111;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
  transition: 0.3s ease;
}

.nd-view-all:hover {
  background: #111;
  color: #fff;
}

/* ==============================
   GRID
============================== */

/* .nd-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
} */

/* ==============================
   CARD
============================== */

/* .nd-product-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.nd-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
} */

/* Content */
/* .nd-product-content {
    flex: 1;
}

.nd-product-icon {
    width: 50px;
    margin-bottom: 15px;
}

.nd-product-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.nd-product-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
} */

/* .nd-read-link {
    color: #1e63ff;
    font-weight: 500;
    text-decoration: none;
} */

/* Image */
/* .nd-product-image {
    flex: 1;
}

.nd-product-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
} */

.products-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.products-col {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* card base */
.nd-product-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 1px 2px 10px 2px #00000026;
  overflow: hidden;
  /* transition: 0.35s ease; */
}

/* .nd-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.16);
} */

.nd-product-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nd-product-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 12px;
}

.nd-product-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.nd-product-content p {
  font-size: 14px;
  line-height: 1.3;
  color: #6f6f6f;
  margin: 0 0 14px 0;
}

.nd-product-image {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.nd-product-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* read link */
.nd-read-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #1565ff;
  text-decoration: none;
}

.nd-read-link:hover {
  color: #1565ff;
}

.nd-read-arrow {
  display: flex;
  align-items: center;
}

.nd-read-line {
  width: 24px;
  height: 2px;
  background: #1565ff;
  transition: width 0.3s ease;
}

.nd-read-head {
  width: 8px;
  height: 8px;
  border-top: 2px solid #1565ff;
  border-right: 2px solid #1565ff;
  transform: rotate(45deg);
  margin-left: -6px;
}

.nd-read-link:hover .nd-read-line {
  width: 38px;
}

/* vertical card */
.card-vertical {
  display: flex;
  flex-direction: column;
}

.card-vertical .nd-product-content {
  margin-bottom: 14px;
}

.card-vertical .nd-product-image img {
  height: 140px;
}

/* horizontal cards */
.card-horizontal {
  display: flex;
  gap: 16px;
  align-items: center;
}

.card-horizontal .nd-product-image {
  width: 46%;
  flex-shrink: 0;
}

.card-horizontal .nd-product-content {
  width: 54%;
}

.card-horizontal .nd-product-image img {
  height: 100%;
  min-height: 150px;
}

/* specific heights */
.medium-card .nd-product-image img {
  min-height: 160px;
}

.small-card .nd-product-image img {
  /* min-height: 130px; */
  height: 100%;
  min-height: 150px;
}

.top-card .nd-product-image img {
  min-height: 180px;
}

/* tall card */
.card-tall {
  display: flex;
  flex-direction: column;
}

.card-tall .nd-product-content {
  margin-bottom: 14px;
}

.card-tall .nd-product-image img {
  height: 290px;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 992px) {

  .nd-products-grid {
    grid-template-columns: 1fr;
  }

  .nd-product-card {
    flex-direction: column;
    text-align: center;
  }

  .nd-products-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .products-wrapper {
    grid-template-columns: 1fr;
  }

  .card-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-horizontal .nd-product-image,
  .card-horizontal .nd-product-content {
    width: 100%;
  }
}


/* ==============================
   SECTION BASE
============================== */

.nd-client-section {
  background: #ffffff;
  padding: 0px 0 40px;
}

/* ==============================
OUR CERTIFICATES
============================== */

.nd-certificates-container {
  padding-bottom: 56px;
}

.nd-certificates-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 36px;
}

.nd-certificates-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #f03d32;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nd-certificates-kicker::before {
  content: '';
  width: 2px;
  height: 16px;
  background: #f03d32;
  display: inline-block;
}

.nd-certificates-heading {
  margin: 0;
  color: #1f2533;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nd-certificates-right p {
  max-width: 420px;
  margin-right: 50px;
  font-size: 18px;
  line-height: 1.45;
  color: #4b5261;
}

.nd-certificates-underline {
  display: block;
  width: 68px;
  height: 4px;
  margin-top: 24px;
  border-radius: 99px;
  background: #f03d32;
}

.nd-certificates-marquee {
  display: grid;
  grid-template-columns: 41px minmax(0, 1fr) 39px;
  align-items: center;
  gap: 14px;
  --nd-certificate-gap: 21px;
  --nd-certificate-card-width: calc((100% - (var(--nd-certificate-gap) * 2)) / 3);
}

.nd-certificates-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nd-certificates-viewport::-webkit-scrollbar {
  display: none;
}

.nd-certificates-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--nd-certificate-card-width);
  gap: var(--nd-certificate-gap);
  transition: transform 0.35s ease;
  will-change: transform;
}

.nd-certificate-card {
  width: auto;
  min-width: 0;
  min-height: 326px;
  padding: 0;
  border: 1px solid rgba(31, 37, 51, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 252, 0.98) 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* box-shadow: 0 24px 50px rgba(17, 24, 39, 0.08); */
  position: relative;
}

.nd-certificate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  border-radius: 999px;
  /* background: linear-gradient(90deg, rgba(240, 61, 50, 0), rgba(240, 61, 50, 0.72), rgba(240, 61, 50, 0)); */
}

.nd-certificate-visual {
  min-height: 188px;
  padding: 26px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nd-certificate-visual img {
  display: block;
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.nd-certificate-meta {
  margin-top: auto;
  padding: 22px 22px 26px;
  border-top: 1px solid rgba(31, 37, 51, 0.08);
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(248, 248, 250, 0.95));
}

.nd-certificate-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: rgba(240, 61, 50, 0.08);
  color: #f03d32;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.nd-certificate-meta h4 {
  margin: 0;
  color: #1f2533;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.nd-certificate-line {
  width: 42px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 99px;
  background: #f03d32;
}

.nd-certificates-arrow {
  width: 34px;
  height: 34px;
  padding: 0;
  box-sizing: border-box;
  flex-shrink: 0;
  border: 1px solid #161616;
  border-radius: 50%;
  background: #fff;
  color: #161616;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(20, 39, 68, 0.12);
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nd-certificates-arrow i {
  font-size: 13px;
  line-height: 1;
  color: inherit;
}

.nd-certificates-arrow:hover,
.nd-certificates-arrow:focus {
  background: #e1251b;
  border-color: #e1251b;
  color: #fff !important;
}

.nd-certificates-arrow:disabled {
  background: #fff;
  border-color: #d5dbe4;
  color: #9aa3af;
  opacity: 0.45;
  cursor: default;
}

.nd-certificates-arrow:disabled:hover,
.nd-certificates-arrow:disabled:focus {
  background: #fff;
  border-color: #d5dbe4;
  color: #9aa3af !important;
}

.nd-certificates-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.nd-certificates-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #d6d9df;
  transition: transform 0.25s ease, background-color 0.25s ease, width 0.25s ease;
}

.nd-certificates-dots span.is-active {
  width: 19px;
  background: #f03d32;
}

/* ==============================
   OUR VALUES
============================== */

.nd-values-wrapper {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.18fr);
  align-items: stretch;
  background: #E4EDF3;
  overflow: hidden;
}

.nd-values-media {
  min-height: 630px;
}

.nd-values-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nd-values-content {
  padding: 40px 60px 40px;
}

.nd-value-kicker {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #8a8a8a;
}

.nd-values-content-addition__head {
  max-width: 430px;
  margin-bottom: 34px;
}

.nd-values-content h2 {
  max-width: 430px;
  margin: 0 0 34px;
  color: #111;
  font-size: 35px;
  line-height: 1.12;
  font-weight: 600;
}

.nd-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 70px;
}

.nd-value-item {
  position: relative;
}

.nd-value-check {
  display: block;
  width: 15px;
  height: 15px;
  margin-bottom: 8px;
  object-fit: contain;
}

.nd-value-item h4 {
  margin: 0 0 8px 0px !important;
  color: #111;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

.nd-value-item p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .nd-values-wrapper {
    grid-template-columns: 1fr;
  }

  .nd-values-media {
    min-height: 420px;
  }

  .nd-values-content {
    padding: 36px 32px;
  }
}

@media (max-width: 767px) {
  .nd-values-wrapper {
    width: 100%;
  }

  .nd-values-content {
    padding: 28px 20px 30px;
  }

  .nd-values-content h2 {
    max-width: 100%;
    font-size: 24px;
    margin-bottom: 24px;
  }

  .nd-values-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .nd-values-media {
    min-height: 300px;
  }
}



/* =========================
   BLOG SECTION
========================= */

.nd-blog-section {
  padding: 40px 0 80px;
  background: #ffffff;
}

.nd-blog-container {
  width: min(100%, calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2)));
  max-width: calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2));
  margin: 0 auto;
  padding-left: var(--site-container-gutter);
  padding-right: var(--site-container-gutter);
  box-sizing: border-box;
}

/* =========================
   HEADER
========================= */

.nd-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 32px;
}

.nd-blog-header-v2 {
  align-items: flex-start;
  gap: 48px;
}

.nd-blog-title-block {
  flex: 1 1 0;
  min-width: 0;
}

.nd-blog-subtitle {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #8a8a8a;
  display: block;
}

.nd-blog-title {
  margin: 0;
  max-width: none;
  font-size: 35px;
  font-weight: 700;
  color: #111;
}

.nd-blog-desc-block {
  max-width: 430px;
}

.nd-blog-desc-block p {
  margin: 0;
  color: #161616;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.nd-blog-link {
  font-size: 13px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: color 0.3s ease;
}

.nd-blog-link:hover {
  color: #e1251b;
}

/* =========================
   GRID
========================= */

.nd-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

/* =========================
   CARD
========================= */

.nd-blog-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #dfe3ed;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

.nd-blog-card:hover {
  transform: translateY(-4px);
  border-color: #cfd6e3;
  box-shadow: 0 14px 34px rgba(32, 45, 73, 0.08);
}

/* Image */

.nd-blog-image {
  overflow: hidden;
}

.nd-blog-image img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

/* Content */

.nd-blog-content {
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nd-blog-category {
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #161616;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.nd-blog-content h4 {
  padding: 0 12px;
  margin: 0 0 10px !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #161616;
}

.nd-blog-content p {
  padding: 0 12px;
  margin: 0 0 12px;
  font-size: 13px;
  color: #8a8a8a;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Author */

.nd-blog-author {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
  margin-top: auto;
  padding: 10px 12px;
  border-top: 1px solid #D2D5E5;
  background: #ffffff;
}

.nd-author-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8b38c, #6a8d73);
  flex: 0 0 28px;
  position: relative;
}

.nd-author-img::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

.nd-blog-author strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
  color: #161616;
}

.nd-blog-author span {
  display: block;
  font-size: 12px;
  color: #161616;
  line-height: 1.3;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .nd-certificates-marquee {
    --nd-certificate-card-width: calc((100% - var(--nd-certificate-gap)) / 2);
  }

  .nd-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nd-blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nd-blog-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .nd-certificates-marquee {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    --nd-certificate-gap: 12px;
    --nd-certificate-card-width: 100%;
  }

  .nd-certificates-arrow {
    width: 35px;
    height: 35px;
  }

  .nd-blog-grid {
    grid-template-columns: 1fr;
  }

  .nd-blog-title h2 {
    font-size: 32px;
  }

  .nd-blog-title p {
    max-width: none;
  }
}



.nd-products-section {
  /* padding: 4px 0 18px; */
  background: #ffffff;
}

.nd-products-shell {
  /* width: min(94%, 1500px); */
  margin: 0 auto;
}

.nd-products-hero {
  position: relative;
  min-height: 510px;
  padding: 46px 0 18px;
  border-radius: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nd-products-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease;
}

.nd-products-hero-bg--base {
  z-index: 0;
}

.nd-products-hero-bg--overlay {
  z-index: 0;
  opacity: 0;
}

.nd-products-hero-bg--overlay.is-visible {
  opacity: 1;
}

.nd-products-copy,
.nd-products-cards {
  position: relative;
  z-index: 1;
}

.nd-products-copy-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.nd-products-cards-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.nd-products-copy {
  max-width: 430px;
  color: #ffffff;
  margin-left: 0;
}

.nd-products-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #f03d32;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nd-products-kicker::before {
  content: '';
  width: 2px;
  height: 16px;
  background: #f03d32;
  display: inline-block;
}

.nd-products-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 0.98;
  font-weight: 800;
  color: #ffffff;
  max-width: 560px;
  letter-spacing: -0.04em;
}

.nd-products-underline {
  display: block;
  width: 68px;
  height: 4px;
  margin: 24px 0 22px;
  border-radius: 99px;
  background: #f03d32;
}

.nd-products-copy p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
}

.nd-products-link {
  color: #e1251b;
  font-size: 13px;
}

.nd-products-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  align-items: end;
  margin-top: 50px;
  padding: 0 0 35px;
}

.nd-product-glass-card {
  min-height: 150px;
  padding: 9px 10px 9px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(90, 73, 62, 0.28) 0%, rgba(54, 43, 37, 0.48) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 34px rgba(23, 14, 10, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #f7f2ed;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nd-product-glass-card:hover {
  background: #ffffff;
  color: #161616;
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

.nd-product-glass-card.is-featured {
  background: #ffffff;
  color: #161616;
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

.nd-product-glass-top {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
  flex-wrap: nowrap;
}

.nd-product-glass-top img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 15px;
}

.nd-product-glass-top h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff8f2;
  letter-spacing: 0;
  white-space: nowrap;
  margin-bottom: 0 !important;
}

.nd-product-glass-card h5 {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  min-height: 22px;
  color: #fffaf5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.nd-product-sub-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  text-decoration: none;
  color: currentColor;
  padding: 5px;
}

.nd-product-sub-arrow .nd-arrow-line {
  width: 12px;
  height: 1.5px;
  background: currentColor;
}

.nd-product-sub-arrow .nd-arrow-head {
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--nd-shared-arrow-color, currentColor);
  border-right: 1.5px solid var(--nd-shared-arrow-color, currentColor);
  transform: rotate(45deg);
  margin-left: -6px;
  transition: border-color 0.25s ease;
}

.nd-product-glass-card p {
  margin: 0 0 0px;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(255, 244, 236, 0.88);
  /* color: #8a8a8a; */
  opacity: 1;
  min-height: 40px;
}

.nd-product-glass-card:hover p {
  opacity: 0.72;
}

.nd-product-glass-card.is-featured h4,
.nd-product-glass-card.is-featured h5,
.nd-product-glass-card:hover h4,
.nd-product-glass-card:hover h5 {
  color: #161616;
}

.nd-product-glass-card.is-featured p,
.nd-product-glass-card:hover p {
  /* color: rgba(21, 21, 21, 0.88); */
  color: #000000 !important;
  opacity: 1;
}

.nd-product-glass-card.is-featured a,
.nd-product-glass-card:hover a {
  color: #161616;
}

@media (max-width: 992px) {
  .nd-certificates-header {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }

  .nd-certificates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nd-certificates-marquee {
    --nd-certificate-card-width: calc((100% - 20px) / 2);
  }

  .nd-certificate-card {
    width: auto;
  }

  .nd-products-hero {
    min-height: auto;
    padding: 28px 18px 18px;
  }

  .nd-products-copy {
    max-width: 100%;
    margin-left: 0;
  }

  .nd-products-copy h2 {
    font-size: 34px;
  }

  .nd-products-copy p {
    font-size: 15px;
  }

  .nd-products-cards {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

@media (max-width: 576px) {
  .nd-certificates-marquee {
    --nd-certificate-card-width: 100%;
  }

  .nd-certificate-card {
    width: auto;
  }
}

.nd-founder-section {
  padding: 100px 0 100px;
  background: #0f172a;
  /* Deep dark background */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Vibrant mesh blobs to match reference */
.nd-founder-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: -200px;
  left: -300px;
  filter: blur(60px);
  opacity: 0.6;
  z-index: -1;
}

.nd-founder-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  filter: blur(60px);
  opacity: 0.5;
  z-index: -1;
}

.nd-founder-blob-accent {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  opacity: 0.3;
  z-index: -1;
}

.nd-founder-shell {
  width: min(95%, 1240px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nd-founder-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  padding: 0;
}

.nd-founder-left {
  padding-top: 0;
}

.nd-founder-kicker {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 700;
  color: #a78bfa;
  /* Light purple kicker */
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nd-founder-left h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.nd-founder-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  background: rgba(255, 255, 255, 0.05);
  /* High transparency */
  backdrop-filter: blur(30px);
  /* Strong blur */
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  /* Large rounded corners from reference */
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.nd-founder-copy {
  padding: 60px 50px;
}

.nd-founder-quote-mark {
  margin-bottom: 12px;
}

.nd-founder-quote-mark img {
  display: block;
  width: 42px;
  height: auto;
}

.nd-founder-copy p {
  margin: 0 0 50px;
  max-width: none;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  letter-spacing: 0.01em;
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
}

.nd-founder-meta h4 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2 !important;
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.nd-founder-meta span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nd-founder-meta a {
  color: inherit;
  text-decoration: underline;
}

.nd-founder-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .nd-founder-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 16px 32px;
  }

  .nd-founder-left {
    padding-top: 0;
  }

  .nd-founder-left h2 {
    max-width: none;
  }

  .nd-founder-card {
    grid-template-columns: 1fr;
  }

  .nd-founder-image img {
    min-height: 280px;
  }
}

/* Responsive polish for Homepage */
.nd-slider,
.nd-slider *,
.nd-services-section,
.nd-services-section *,
.nd-products-section,
.nd-products-section *,
.nd-founder-section,
.nd-founder-section *,
.about-glance-section,
.about-glance-section *,
.nd-client-section,
.nd-client-section *,
.nd-blog-section,
.nd-blog-section * {
  box-sizing: border-box;
}

@media (max-width: 1199px) {

  .nd-carousel,
  .nd-carousel-inner,
  .nd-carousel-item,
  .nd-slide-img {
    min-height: 640px;
  }

  .nd-services-panel {
    grid-template-columns: 1fr;
  }

  .nd-services-preview img {
    height: 420px;
  }

  .about-stats {
    margin-top: -40px;
    gap: 18px;
    padding: 0 var(--site-container-gutter);
  }
}

@media (max-width: 991px) {

  .nd-carousel,
  .nd-carousel-inner,
  .nd-carousel-item,
  .nd-slide-img {
    height: 78vh;
    min-height: 560px;
  }

  .nd-text-wrapper {
    top: 50%;
    left: var(--site-container-gutter);
    transform: translateY(-50%);
    max-width: min(90%, 620px);
  }

  .nd-title {
    font-size: 34px;
  }

  .nd-services-container,
  .nd-blog-container,
  .nd-certificates-wrapper,
  .about-top,
  .about-image-wrapper,
  .about-stats {
    width: min(100%, calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2)));
    max-width: calc(var(--site-container-content-max) + (var(--site-container-gutter) * 2));
  }

  .nd-services-header,
  .nd-services-header-v2,
  .nd-blog-header,
  .nd-blog-header-v2,
  .about-top,
  .nd-certificates-header {
    flex-direction: column;
    gap: 18px;
  }

  .nd-services-desc-block,
  .nd-services-desc-block-v2,
  .nd-blog-desc-block,
  .nd-certificates-right p {
    max-width: 100%;
  }

  .nd-products-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 0 22px;
  }

  .nd-values-wrapper {
    grid-template-columns: 1fr;
  }

  .nd-values-media {
    min-height: 360px;
  }

  .nd-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {

  .nd-carousel,
  .nd-carousel-inner,
  .nd-carousel-item,
  .nd-slide-img {
    height: 72vh;
    min-height: 500px;
  }

  .nd-carousel-item::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 0.25) 100%);
  }

  .nd-title {
    font-size: 28px;
  }

  .nd-desc {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 26px;
  }

  .nd-btn-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nd-btn {
    padding: 12px 20px;
  }

  .nd-consultation-card .contact-us-grid,
  .nd-consultation-card .contact-us-radio-grid {
    grid-template-columns: 1fr;
  }

  .nd-consultation-card .contact-us-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nd-consultation-card .contact-us-bottom-left,
  .nd-consultation-card .contact-us-submit-wrap,
  .nd-consultation-card .contact-us-submit {
    width: 100%;
  }

  .nd-services-section,
  .about-glance-section,
  .nd-blog-section {
    padding: 42px 0;
  }

  .nd-services-title,
  .about-heading,
  .about-heading span,
  .nd-products-copy h2,
  .nd-founder-left h2,
  .nd-certificates-heading,
  .nd-values-content h2,
  .nd-blog-title {
    font-size: 28px;
  }

  .nd-services-panel {
    gap: 18px;
  }

  .nd-service-row {
    padding: 16px 14px;
  }

  .nd-services-preview img {
    height: 280px;
  }

  .nd-services-preview-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .about-stats {
    margin-top: 18px;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .video-play {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .nd-products-hero {
    padding: 32px 16px 18px;
  }

  .nd-products-cards,
  .nd-values-grid,
  .nd-blog-grid {
    grid-template-columns: 1fr;
  }

  .nd-product-glass-top h4 {
    white-space: normal;
  }

  .nd-founder-grid {
    padding: 28px 12px;
  }

  .nd-founder-meta h4 {
    margin-bottom: 6px;
    font-size: 22px;
  }

  .nd-founder-copy p {
    margin-bottom: 24px;
  }

  .nd-values-content {
    padding: 28px 18px;
  }
}

@media (max-width: 480px) {

  .nd-carousel,
  .nd-carousel-inner,
  .nd-carousel-item,
  .nd-slide-img {
    height: 76vh;
    min-height: 460px;
  }

  .nd-text-wrapper {
    left: var(--site-container-gutter-mobile);
    max-width: calc(100% - (var(--site-container-gutter-mobile) * 2));
  }

  /* .nd-title {
    font-size: 24px;
  } */

  .nd-services-container,
  .nd-blog-container,
  .nd-certificates-wrapper,
  .about-top,
  .about-image-wrapper,
  .about-stats {
    width: min(100%, calc(var(--site-container-content-max) + (var(--site-container-gutter-mobile) * 2)));
    max-width: calc(var(--site-container-content-max) + (var(--site-container-gutter-mobile) * 2));
  }

  .nd-services-showcase,
  .nd-services-container-v2,
  .nd-services-container,
  .nd-blog-container,
  .about-top,
  .about-image-wrapper {
    padding-left: var(--site-container-gutter-mobile);
    padding-right: var(--site-container-gutter-mobile);
  }

  .about-stats {
    padding: 0 var(--site-container-gutter-mobile);
  }

  .nd-consultation-card .contact-us-form .g-recaptcha {
    max-width: 100%;
    transform: scale(0.88);
    transform-origin: left top;
  }

  .nd-consultation-card .contact-us-bottom-left {
    gap: 12px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-card h3 {
    font-size: 34px;
  }
}

@media (max-width: 991px) {

  .nd-services-desc-block p,
  .nd-services-desc-block-v2 p,
  .about-right p,
  .nd-products-copy p,
  .nd-founder-copy p,
  .nd-certificates-right p,
  .nd-values-content p,
  .nd-blog-desc-block p {
    font-size: 13px;
  }

  .nd-blog-content p,
  .nd-services-preview-card p {
    font-size: 12px;
  }

  .nd-services-title,
  .about-heading,
  .about-heading span,
  .nd-products-copy h2,
  .nd-founder-left h2,
  .nd-certificates-heading,
  .nd-values-content h2,
  .nd-blog-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {

  .nd-services-desc-block p,
  .nd-services-desc-block-v2 p,
  .about-right p,
  .nd-products-copy p,
  .nd-founder-copy p,
  .nd-certificates-right p,
  .nd-values-content p,
  .nd-blog-desc-block p {
    font-size: 12px;
  }

  .nd-blog-content p,
  .nd-services-preview-card p {
    font-size: 11px;
  }

  .nd-services-title,
  .about-heading,
  .about-heading span,
  .nd-products-copy h2,
  .nd-founder-left h2,
  .nd-certificates-heading,
  .nd-values-content h2,
  .nd-blog-title {
    font-size: 28px;
  }
}

@media (max-width: 991px) {

  .nd-service-card h3,
  .nd-product-content h4,
  .nd-blog-content h4,
  .nd-product-glass-top h4,
  .nd-product-glass-card h5,
  .nd-founder-meta h4 {
    font-size: 16px;
  }

  .stat-card p,
  .nd-product-glass-card p,
  .nd-product-content p,
  .nd-blog-content p,
  .nd-services-preview-card p {
    font-size: 12px;
  }

  .nd-read-more,
  .nd-blog-author strong,
  .nd-blog-author span {
    font-size: 12px;
  }
}

@media (max-width: 767px) {

  .nd-service-card h3,
  .nd-product-content h4,
  .nd-blog-content h4,
  .nd-product-glass-top h4,
  .nd-product-glass-card h5,
  .nd-founder-meta h4 {
    font-size: 15px;
  }

  .stat-card p,
  .nd-product-glass-card p,
  .nd-product-content p,
  .nd-blog-content p,
  .nd-services-preview-card p {
    font-size: 11px;
  }

  .nd-read-more,
  .nd-blog-author strong,
  .nd-blog-author span {
    font-size: 11px;
  }
}

/* Homepage typography normalization: align responsive type with inner pages */
.nd-services-title,
.about-heading,
.about-heading span,
.nd-products-copy h2,
.nd-founder-left h2,
.nd-certificates-heading,
.nd-values-content h2,
.nd-blog-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.nd-services-subtitle,
.about-small,
.nd-products-kicker,
.nd-founder-kicker,
.nd-certificates-kicker,
.nd-value-kicker,
.nd-blog-subtitle {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.nd-services-desc-block p,
.nd-services-desc-block-v2 p,
.about-right p,
.nd-products-copy p,
.nd-founder-copy p,
.nd-certificates-right p,
.nd-values-content p,
.nd-blog-desc-block p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.nd-service-row-left span,
.nd-product-glass-top h4,
.nd-blog-content h4,
.nd-founder-meta h4,
.nd-value-item h4 {
  font-weight: 500;
  letter-spacing: 0;
}

.nd-product-glass-card p,
.nd-blog-content p,
.nd-services-preview-card p,
.nd-blog-author strong,
.nd-blog-author span {
  font-weight: 400;
  letter-spacing: 0;
}

@media (max-width: 991px) {

  .nd-services-title,
  .about-heading,
  .about-heading span,
  .nd-products-copy h2,
  .nd-founder-left h2,
  .nd-certificates-heading,
  .nd-values-content h2,
  .nd-blog-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.14;
  }

  .nd-services-desc-block p,
  .nd-services-desc-block-v2 p,
  .about-right p,
  .nd-products-copy p,
  .nd-founder-copy p,
  .nd-certificates-right p,
  .nd-values-content p,
  .nd-blog-desc-block p {
    font-size: 13px;
    line-height: 1.35;
  }
}

@media (max-width: 767px) {
  .nd-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .nd-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .nd-services-title,
  .about-heading,
  .about-heading span,
  .nd-products-copy h2,
  .nd-founder-left h2,
  .nd-certificates-heading,
  .nd-values-content h2,
  .nd-blog-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.12;
  }

  .nd-services-subtitle,
  .about-small,
  .nd-products-kicker,
  .nd-founder-kicker,
  .nd-certificates-kicker,
  .nd-value-kicker,
  .nd-blog-subtitle {
    font-size: 12px;
    font-weight: 600;
  }

  .nd-services-desc-block p,
  .nd-services-desc-block-v2 p,
  .about-right p,
  .nd-products-copy p,
  .nd-founder-copy p,
  .nd-certificates-right p,
  .nd-values-content p,
  .nd-blog-desc-block p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
  }

  .nd-service-row-left span,
  .nd-product-glass-top h4,
  .nd-blog-content h4,
  .nd-founder-meta h4,
  .nd-value-item h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
  }

  .nd-product-glass-card p,
  .nd-blog-content p,
  .nd-services-preview-card p,
  .nd-blog-author strong,
  .nd-blog-author span {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
  }
}

@media (max-width: 1024px) {
  .about-glance-section {
    padding: 18px 0 36px;
  }

  .about-top {
    display: none;
  }

  .about-image-wrapper {
    padding: 0;
    border-radius: 28px;
    overflow: hidden;
    min-height: 0;
    background: #031521 url('../images/glance2.png') center center / cover no-repeat;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16), inset 0 0 0 1px rgba(38, 228, 251, 0.08);
  }

  .about-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    z-index: 0;
  }

  .about-glance-overlay {
    position: relative;
    inset: auto;
    z-index: 1;
    justify-content: flex-start;
    align-items: stretch;
    gap: 22px;
    padding: 28px 20px 20px;
  }

  .about-glance-overlay h3 {
    margin-top: 10px;
    margin-bottom: 6px;
    font-size: clamp(30px, 4vw, 42px);
    letter-spacing: -0.04em;
    text-align: center;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  .about-glance-overlay-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .about-glance-overlay-stat {
    min-height: 176px;
    padding: 20px 16px 18px;
    border: 1px solid rgba(38, 228, 251, 0.5);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(6, 30, 48, 0.82), rgba(3, 18, 32, 0.94));
    box-shadow: inset 0 0 0 1px rgba(38, 228, 251, 0.08), 0 0 18px rgba(0, 172, 255, 0.08);
    justify-content: center;
  }

  .about-glance-overlay-stat + .about-glance-overlay-stat::before {
    display: none;
  }

  .about-glance-overlay-stat:nth-child(5) {
    grid-column: 1 / -1;
  }

  .about-glance-overlay-stat strong {
    font-size: clamp(44px, 5.4vw, 58px);
  }

  .about-glance-overlay-stat strong::after {
    width: 82px;
    height: 3px;
    margin-top: 10px;
  }

  .about-glance-overlay-stat span {
    margin-top: 12px;
    max-width: none;
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 1.32;
  }
}

@media (max-width: 767px) {
  .about-glance-section {
    padding: 12px 0 30px;
  }

  .about-image-wrapper {
    border-radius: 22px;
  }

  .about-glance-overlay {
    gap: 16px;
    padding: 18px 14px 16px;
  }

  .about-glance-overlay h3 {
    margin-top: 8px;
    margin-bottom: 2px;
    font-size: clamp(24px, 6vw, 30px);
  }

  .about-glance-overlay-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-glance-overlay-stat {
    min-height: 122px;
    padding: 16px 14px 14px;
    border-radius: 12px;
  }

  .about-glance-overlay-stat:nth-child(5) {
    grid-column: auto;
  }

  .about-glance-overlay-stat strong {
    font-size: clamp(38px, 8vw, 46px);
  }

  .about-glance-overlay-stat strong::after {
    width: 56px;
    height: 3px;
    margin-top: 8px;
  }

  .about-glance-overlay-stat span {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.35;
  }
}
