:root {
  --ndr-red: #f97316; /* screenshot ke close */
  --ndr-text: #5f5f5f;
  --ndr-dark: #2b2b2b;

  --ndr-white: #ffffff;
  --ndr-black: #0b0b0b;
  --ndr-overlay: rgba(0, 0, 0, 0.45); /* full hero subtle shade */
  --ndr-panel: rgba(0, 0, 0, 0.55); /* dark box behind text */

  --nd-red: #f97316; /* maroon/red tone */
  --nd-red-dark: #f97316;
  --nd-text: #5f5f5f;
  --nd-title: #a63a37;
  --nd-line: #d9d9d9;
  --nd-strip-h: 120px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Oswald", sans-serif;
}

/* container width similar */
.ndr-container {
  max-width: 1220px;
}

/* header spacing */
.ndr-header .navbar {
  min-height: 92px;
  /* padding-top: 18px;
  padding-bottom: 18px; */
}

/* logo size */
.ndr-logo {
  height: 80px;
  width: auto;
}

/* top menu typography */
.ndr-nav .nav-link {
  color: var(--ndr-text);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 10px 12px;
  position: relative;
}

/* active underline red */
.ndr-nav .nav-link.active {
  color: var(--ndr-dark);
}
.ndr-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -10px;
  height: 3px;
  background: var(--ndr-red);
  border-radius: 2px;
}

/* hover effect */
.ndr-nav .nav-link:hover {
  color: var(--ndr-dark);
}

/* client portal red text */
.ndr-client-portal {
  color: var(--ndr-red) !important;
}

/* contact us pill button */
.ndr-btn {
  background: var(--ndr-red);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  padding: 12px 22px;
  text-transform: uppercase;
  border: 2px solid var(--ndr-red);
}
.ndr-btn:hover {
  background: #f3f3f3;
  color: var(--ndr-red);
}

/* dropdown menu look */
.ndr-menu {
  border: 0;
  border-radius: 0;
  padding: 14px 0;
  min-width: 260px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  margin-top: 14px;
  position: relative;
}
.ndr-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ndr-red);
}

/* dropdown items */
.ndr-menu .dropdown-item {
  font-weight: 600;
  font-size: 13px;
  color: #6b6b6b;
  padding: 10px 24px;
}
.ndr-menu .dropdown-item:hover {
  background: #f3f3f3;
  color: var(--ndr-dark);
}

/* ........ */
.ndr-dropdown .nav-link:hover,
.ndr-dropdown .nav-link:focus,
.ndr-dropdown .nav-link:active {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* submenu */
.dropdown-submenu {
  position: relative;
}
.ndr-submenu {
  top: 0;
  left: 100%;
  margin-left: 0;
  margin-top: -14px; /* align with parent padding */
  border: 0;
  border-radius: 0;
  padding: 14px 0;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
}
.dropdown-submenu.show > .ndr-submenu {
  display: block;
}
.ndr-caret {
  font-size: 18px;
  line-height: 1;
  opacity: 0.7;
}

/* Mobile fixes */
@media (max-width: 991.98px) {
  .ndr-nav {
    padding-top: 12px;
  }
  .ndr-nav .nav-link.active::after {
    display: none;
  }
  .ndr-menu {
    margin-top: 6px;
    box-shadow: none;
    border-top: 3px solid var(--ndr-red);
  }
  .ndr-submenu {
    position: static;
    box-shadow: none;
    display: block; /* mobile me nested items visible */
    margin-top: 0;
    padding-top: 0;
  }
}

/* ================= HERO ================= */
.nd-hero {
  position: relative;
  height: 520px; /* screenshot-like */
  overflow: hidden;
  background: #111;
}

/* video full cover */
.nd-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.95) contrast(1.05);
}

/* overlay to darken */
.nd-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

/* content layer */
.nd-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 90px;
}

.nd-hero-title {
  margin: 0;
  color: #fff;
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 54px;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nd-hero-subtitle {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Icons row */
.nd-hero-links {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
}

.nd-hero-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.nd-hero-card:hover {
  transform: translateY(-3px);
}

.nd-circle {
  width: 78px;
  height: 78px;
  border-radius: 30px;
  /* corner-shape: squircle; */
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nd-circle img {
  padding: 5px;
  height: 60px;
  width: 60px;
}

.nd-circle i {
  font-size: 34px;
  color: var(--nd-red);
  transform: translateY(1px);
}

.nd-hero-label {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
  .nd-hero {
    height: 560px;
  }
  .nd-hero-content {
    padding-top: 60px;
  }
  .nd-hero-title {
    font-size: 40px;
  }
}

/* Floating chat button */
.nd-fab {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 0;
  background: var(--nd-red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(139, 27, 27, 0.35);
  display: grid;
  place-items: center;
}
.nd-fab i {
  font-size: 22px;
}
.nd-fab:hover {
  background: var(--nd-red-2);
}

/* ===== INTRO ===== */
.ndr-intro-section {
  padding: 60px 0 40px;
  background: #fff;
  text-align: center;
}

.ndr-intro-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}
.ndr-intro-title span {
  color: var(--nd-red);
}

.ndr-intro-text {
  /* max-width:850px; */
  margin: 0 auto 10px;
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.ndr-intro-sub {
  font-size: 18px;
  color: #777;
}

/* ===== INDUSTRY CARDS ===== */
.ndr-industries-section {
  padding: 40px 0 60px;
  background: #f5f5f5;
}

.ndr-industry-card {
  background: #fff;
  padding: 25px 18px 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  height: 100%;
  position: relative;
}

.ndr-industry-icon {
  width: 70px;
  height: 70px;
  border-radius: 30px;
  /* corner-shape: squircle; */
  background: var(--nd-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -55px auto 15px;
  box-shadow: 0 10px 25px rgba(163, 32, 32, 0.4);
}
.ndr-industry-icon img {
  height: 60px;
  width: 60px;
  padding: 5px;
}

/* .ndr-industry-icon i {
  font-size: 30px;
  color: #fff;
} */

.ndr-industry-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ndr-industry-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.ndr-industry-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ndr-industry-card:hover {
  transform: translateY(-5px);
}

/* ===== STATS ===== */
.ndr-stats-section {
  background: #eee;
  padding: 40px 0;
}

.ndr-stat-number {
  font-size: 46px;
  font-weight: 300;
  color: var(--ndr-dark);
}

.ndr-stat-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #555;
  margin-top: 5px;
}
/* ===== NDR BAND ===== */
.ndr-band {
  position: relative;
  background: #6d6d6d; /* base grey */
  overflow: hidden;
  min-height: 120px;
}
.ndr-band__overlay {
  position: absolute;
  inset: 0;
  /* image overlay vibe (aap apni image set kar sakte ho) */
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1600&q=60");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 0.55;
  pointer-events: none;
}
.ndr-band__inner {
  position: relative;
  z-index: 1;
  max-width: var(--ndr-max);
  padding: 28px 12px;
}
.ndr-band__text {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 22px;
  color: #fff;
  line-height: 1.25;
}

/* Button style similar vibe */
.ndr-btn {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 14px;
}
.ndr-btn--solid {
  background: var(--ndr-red);
  color: #fff;
  border: 1px solid var(--ndr-red);
}
.ndr-btn--solid:hover {
  filter: brightness(0.95);
  color: #fff;
}

/* ===== Doing it right ===== */
.ndr-doing {
  background: #f1f1f1; /* screenshot-like light grey */
}

.ndr-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 400;
  font-size: 44px;
  margin: 0;
  color: #222;
}
.ndr-title__it {
  color: var(--ndr-red);
}

/* Feature blocks */
.ndr-feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  align-items: start;
}

.ndr-feature__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ndr-red);
  font-size: 28px;
  transform: translateY(2px);
}

.ndr-feature__title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.4px;
  font-size: 16px;
  margin: 0 0 8px 0;
  color: #2a2a2a;
}

.ndr-feature__text {
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.75;
  max-width: 520px;
}

/* Reveal animation (JS adds .is-visible) */
.js-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .ndr-title {
    font-size: 38px;
  }
  .ndr-band__text {
    font-size: 20px;
  }
}
@media (max-width: 575.98px) {
  .ndr-title {
    font-size: 34px;
  }
  .ndr-feature__text {
    font-size: 16px;
  }
}

.ndr-testimonials {
  background: #ffffff;
  font-family:
    "Roboto",
    system-ui,
    -apple-system,
    Segoe UI,
    Arial,
    sans-serif;
}

/* Top awards */
.ndr-awards {
  padding-top: 6px;
}
.ndr-award-logo {
  height: 114px;
  width: auto;
  object-fit: contain;
  filter: none;
}
@media (max-width: 576px) {
  .ndr-award-logo {
    height: 58px;
  }
  .ndr-awards {
    justify-content: center !important;
  }
}

/* Big box */
.ndr-testimonials-box {
  background: var(--ndr-bg);
}

/* Heading styles */
.ndr-kicker {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #303030;
  font-size: 30px;
  line-height: 1.1;
}

.ndr-title {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #2b2b2b;
  font-size: 46px;
  line-height: 1.08;
  margin: 0;
  text-transform: uppercase;
}
.ndr-title span {
  color: var(--ndr-red);
}

.ndr-underline {
  width: 130px;
  height: 4px;
  background: var(--ndr-blue);
}

@media (max-width: 768px) {
  .ndr-kicker {
    font-size: 22px;
  }
  .ndr-title {
    font-size: 34px;
  }
}

/* Slider area */
.ndr-slider {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 12px 14px;
}

/* Avatar */
.ndr-avatar {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
}

.ndr-name {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  color: #111;
  font-size: 24px;
  line-height: 1.15;
}

.ndr-role {
  color: var(--ndr-muted);
  font-size: 16px;
  font-weight: 400;
  margin-top: 6px;
}

/* Quote */
.ndr-quote {
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  max-width: 560px;
}

/* Nav arrows */
.ndr-navs {
  position: absolute;
  top: 64%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #222;
  font-size: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
  opacity: 0.9;
}
.ndr-navs:hover {
  transform: translateY(-50%) scale(1.06);
  opacity: 1;
}
.ndr-prev {
  left: -6px;
}
.ndr-next {
  right: -6px;
}

@media (max-width: 576px) {
  .ndr-navs {
    top: 92%;
  }
  .ndr-prev {
    left: 6px;
  }
  .ndr-next {
    right: 6px;
  }
  .ndr-quote {
    max-width: 100%;
  }
}

/* Simple fade animation on slide change */
.ndr-fade {
  animation: ndrFade 0.25s ease-in-out;
}
@keyframes ndrFade {
  from {
    opacity: 0.3;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== Top banner (grey image strip) ====== */
.ndr-footer-cta {
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: center;
  background: #777;
  overflow: hidden;
}
.ndr-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  /* ✅ apni image yahan lagao (same feel ke liye grey office photo) */
  background: url("assets/footer-strip.jpg") center/cover no-repeat;
  filter: grayscale(100%);
  transform: scale(1.02);
}
.ndr-footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.ndr-footer-cta .container {
  position: relative;
  z-index: 2;
}
.ndr-footer-cta h5 {
  margin: 0;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 22px;
}
.ndr-footer-cta .btn-ndr {
  background: var(--ndr-red);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.ndr-footer-cta .btn-ndr:hover {
  background: var(--ndr-red-dark);
  color: #fff;
}

/* ====== Main footer white area ====== */
.ndr-footer {
  background: #fff;
  padding: 60px 0 40px;
}

.ndr-footer .ndr-title {
  color: var(--ndr-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 18px;
  margin-bottom: 12px;
}

.ndr-footer .ndr-divider {
  height: 1px;
  background: var(--ndr-border);
  width: 85%;
  margin: 0 0 14px 0;
}

.ndr-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ndr-footer li {
  padding: 9px 0;
  line-height: 1.2;
}

.ndr-footer a {
  color: var(--ndr-red);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.ndr-footer a:hover {
  color: var(--ndr-red-dark);
  text-decoration: underline;
}

.ndr-footer .contact-block h6 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  color: #222;
  margin: 4px 0 8px;
}
.ndr-footer .contact-block p {
  margin: 0 0 14px;
  color: var(--ndr-muted);
  font-size: 15px;
  line-height: 1.45;
}
.ndr-footer .contact-block .email {
  color: var(--ndr-red);
  font-weight: 600;
  text-decoration: none;
}
.ndr-footer .contact-block .email:hover {
  text-decoration: underline;
}

/* ====== Bottom bar (dark red strip) ====== */
.ndr-bottom {
  background-color: var(--ndr-red) !important;
  color: #fff;
  padding: 18px 0;
  font-size: 13px;
}
.ndr-bottom a {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
}
.ndr-bottom a:hover {
  opacity: 1;
  text-decoration: underline;
}

.ndr-social {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}
.ndr-social a {
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(252, 250, 250, 0.795);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
}
.ndr-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .ndr-footer .ndr-divider {
    width: 100%;
  }
  .ndr-social {
    justify-content: flex-start;
    margin-top: 12px;
  }
}

/* ===== Floating Chat Button ===== */
.ndr-chat-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff; /* same red tone */
  color: var(--nd-red);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px var(--nd-red);
  cursor: pointer;
  z-index: 9999;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.ndr-chat-btn i {
  font-size: 22px;
  line-height: 1;
}

/* Hover effect (same professional feel) */
.ndr-chat-btn:hover {
  color: var(--nd-red);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

/* Small pulse animation */
.ndr-chat-btn::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(161, 40, 42, 0.35);
  animation: chatPulse 2.2s infinite;
  z-index: -1;
}

@keyframes chatPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Mobile tweak */
@media (max-width: 576px) {
  .ndr-chat-btn {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}
