:root {
  --nd-dark: #222;
  --nd-muted: #666;
  --nd-blue: #1f5fbf;
  --nd-bg: #f6f6f6;
}
: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-line: #d9d9d9;
  --nd-strip-h: 120px;
}
.ndr-hero-bg {
  position: relative;
  min-height: 420px;
  width: 100%;
  background-image: url("./assets/Support Process/bulb.jpg") !important; /* replace */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ===== SECTIONS ===== */
.nd-section {
  padding: 70px 0;
  background: #fff;
}

.nd-industry {
  background: var(--nd-bg);
}

.nd-section__head {
  max-width: 980px;
  margin: 0 auto;
}

.nd-kicker {
  font-size: 34px;
  font-weight: 600;
  color: #333;
  margin: 0 0 6px;
}

.nd-title-red {
  font-size: 46px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--nd-red-dark);
  letter-spacing: 0.5px;
}

.nd-lead {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* ===== NUMBER FEATURES ===== */
.nd-feature {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 58px;
}

.nd-feature__num {
  font-size: 88px;
  line-height: 0.9;
  font-weight: 800;
  color: rgba(250, 124, 21, 0.705);
  letter-spacing: -2px;
  margin-top: -8px;
}

.nd-feature__title {
  margin: 6px 0 10px;
  font-size: 22px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #222;
  font-weight: 800;
}

.nd-feature__text {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== BODY COPY ===== */
.nd-bodycopy {
  background: #fff;
}

.nd-bodycopy__wrap {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  color: #666;
  font-size: 18px;
  line-height: 2.1;
}

.nd-btn-red {
  background: var(--nd-red);
  border: 1px solid var(--nd-red);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 14px;
}
.nd-btn-red:hover {
  background: var(--nd-line);
  border-color: var(--nd-red-dark);
  color: var(--nd-red);
}

/* ===== TESTIMONIALS ===== */
.nd-testimonials {
  background: var(--nd-bg);
}

.nd-eyebrow {
  font-size: 26px;
  letter-spacing: 1px;
  color: #333;
  font-weight: 500;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.nd-title-line {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.15;
}

.nd-title-black {
  color: #222;
}
.nd-title-red {
  color: #f97316;
}

.nd-blue-underline {
  width: 170px;
  height: 4px;
  background: var(--nd-dark);
  margin: 14px auto 0;
}

.nd-carousel {
  margin-top: 46px;
  position: relative;
  padding: 10px 0;
}

.nd-testimonial-card {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: center;
  padding: 10px 0 30px;
}

.nd-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  background: #ddd;
}
.nd-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nd-client-name {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}
.nd-client-role {
  text-align: center;
  color: #999;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.nd-quote {
  margin: 0;
  color: #222;
  font-size: 14px;
  line-height: 1.85;
  max-width: 540px;
}

.nd-control {
  width: auto;
  opacity: 1;
}

.nd-control.carousel-control-prev {
  left: calc(50% - 520px);
}
.nd-control.carousel-control-next {
  right: calc(50% - 520px);
}

.nd-arrow {
  color: #111;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 6px;
}

@media (max-width: 992px) {
  .nd-hero {
    height: 360px;
  }
  .nd-hero__title {
    font-size: 36px;
  }
  .nd-testimonial-card {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .nd-quote {
    margin: 0 auto;
  }
  .nd-control.carousel-control-prev {
    left: 12px;
  }
  .nd-control.carousel-control-next {
    right: 12px;
  }
}

@media (max-width: 576px) {
  .nd-hero__overlay {
    padding: 20px;
  }
  .nd-hero__title {
    font-size: 30px;
  }
  .nd-title-line {
    font-size: 28px;
  }
  .nd-feature {
    grid-template-columns: 76px 1fr;
    margin-bottom: 38px;
  }
  .nd-feature__num {
    font-size: 70px;
  }
}
/* healthcare-specific styles */

/* Optional: close to site typography */
body {
  color: var(--nd-text);
  line-height: 1.85;
  background: #fff;
}

/* keep content like screenshot (not too wide) */
.nd-narrow {
  max-width: 980px;
}

/* ===== RED HISTORY SECTION ===== */
.nd-history-block {
  background: var(--nd-red);
  color: #fff;
  padding: 70px 0;
}

.nd-history-title {
  font-size: clamp(34px, 3.2vw, 56px);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0 0 18px;
}

.nd-history-block p {
  font-size: 18px;
  margin: 0;
  opacity: 0.98;
}

/* ===== MAIN CONTENT ===== */
.nd-content {
  background: #fff;
}

.nd-h2 {
  font-size: clamp(30px, 2.2vw, 44px);
  font-weight: 700;
  color: var(--ndr-dark);
  margin-bottom: 8px;
}

.nd-content p {
  font-size: 18px;
  margin-bottom: 18px;
}

.nd-link {
  color: var(--ndr-red);
  text-decoration: underline;
  font-weight: 600;
}
.nd-link:hover {
  color: #7f1414;
}
/* it for it section */
/* ====== Base ====== */
.itpeople-wrap {
  background: #f6f6f6;
}

.itpeople-title {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #111;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1.15;
}

.itpeople-subtitle {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #111;
  font-size: 22px;
}
.itpeople-list {
  padding-left: 20px;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}
.itpeople-list li {
  margin-bottom: 6px;
}

/* ====== CTA Box ====== */
.itpeople-cta {
  background: var(--nd-red);
  padding: 60px 20px;
  text-align: center;
}
.itpeople-cta-title {
  color: #fff;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.4px;
}
.itpeople-cta-text {
  color: #fff;
  font-size: 16px;
  opacity: 0.95;
}
.itpeople-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--nd-red);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 2px solid #fff;
}
.itpeople-cta-btn:hover {
  background: transparent;
  color: #fff;
}

/* ====== Contact + Form ====== */
.itpeople-contact-title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 34px;
  line-height: 1.05;
  color: var(--nd-red);
}

.itpeople-form-title {
  font-weight: 800;
  color: var(--nd-red);
  font-size: 22px;
}
.itpeople-form-accent {
  color: var(--nd-red);
}
.itpeople-form-sub {
  color: #777;
  font-size: 14px;
}

/* Sticky only in right column */
.itpeople-sticky {
  position: sticky;
  top: 90px; /* header height ke hisab se adjust kar lena */
}

/* Form card */
.itpeople-formcard {
  background: #fff;
  border-radius: 6px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.itpeople-formcard .form-label {
  color: #777;
  font-size: 15px;
  margin-bottom: 8px;
}

.itpeople-formcard .form-control,
.itpeople-formcard .form-select {
  border-radius: 0;
  border: 1px solid #bdbdbd;
  padding: 12px 12px;
  font-size: 15px;
}

.itpeople-submit {
  border: 0;
  background: var(--nd-red); /* screenshot jaisa blue */
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 4px;
}

/* Bottom big line */
.itpeople-bigline {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 34px;
  line-height: 1.1;
  color: #111;
}

/* ====== Responsive ====== */
@media (max-width: 991px) {
  .itpeople-title {
    font-size: 32px;
  }
  .itpeople-subtitle {
    font-size: 22px;
  }
  .itpeople-cta-title {
    font-size: 32px;
  }
  .itpeople-contact-title {
    font-size: 32px;
  }
  .itpeople-bigline {
    font-size: 30px;
  }

  /* Mobile pe sticky off (better UX) */
  .itpeople-sticky {
    position: static;
    top: auto;
  }
}
