: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,.45);     /* full hero subtle shade */
  --ndr-panel: rgba(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;


}
.ndr-hero-bg{
position: relative;
  min-height: 420px;
  width: 100%;
  /* background-image: url("./assets/Support Process/MANAGED\ CYBERSECURITY.png") !important; replace */
  background-image: url("./assets/Support Process/1cyber-security-network-.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ---------- INTRO / CTA ---------- */
.ndr-cyber-intro{
  padding: 70px 0 50px;
  background: #fff; 
}

.ndr-intro-text{
  color: #777;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.ndr-link-red{
  color: var(--ndr-red);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
}

.ndr-link-red:hover{
  text-decoration: underline;
}

/* CTA button like screenshot */
.ndr-btn-red{
  background: var(--ndr-red);
  color: #fff;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  border: 0;
}

.ndr-btn-red:hover{
  background: #7f2222;
  color: #fff;
}

/* ---------- LOGOS STRIP ---------- */
.ndr-logos-strip{
  background: #f3f3f3;
  padding: 34px 34px;
  border-top: 1px solid #e6e6e6;
}

.ndrs-logo{
  max-width: 140px;
  width: 100%;
  height: auto;
  opacity: .9;
  filter: grayscale(15%);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px){
  .ndr-hero-overlay{
    left: 5%;
    right: 5%;
    max-width: none;
  }
  .ndr-hero-title{ font-size: 40px; }
  .ndr-hero-subtitle{ font-size: 16px; }
  .ndr-intro-text{ font-size: 18px; }
}

@media (max-width: 576px){
  .ndr-hero-bg{ min-height: 340px; }
  .ndr-hero-title{ font-size: 32px; }
  .ndr-btn-red{
    width: 100%;
    white-space: normal;
    line-height: 1.3;
  }
}

/* ===== Multilayer Security Section ===== */
.multilayer-sec {
  background: #fff;
}

/* Title like screenshot (bold, condensed feel) */
.ml-title {
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  font-size: 30px;
  color: var(--ndr-dark);
}

/* Blue line under heading */
.ml-underline {
  width: 50%;
  max-width: 720px;
  height: 4px;
  background: var(--ndr-text);
}

/* Diagram sizing like screenshot */
.ml-diagram-wrap {
  display: flex;
  justify-content: center;
}

.ml-diagram {
  max-width: 360px;
}

/* Right content */
.ml-content {
  padding-top: 6px;
}

.ml-item {
  margin-bottom: 28px;
}

.ml-h {
  color: var(--nd-red);            /* red headings */
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ml-p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  max-width: 620px;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .ml-title {
    font-size: 28px;
  }

  .ml-underline {
    width: 90%;
  }

  .ml-diagram {
    max-width: 320px;
    margin-bottom: 10px;
  }

  .ml-p {
    max-width: 100%;
  }
}
:root{
      --brand-red:#9b2d2d;
      --text:#2d2d2d;
      --muted:#6b6b6b;
    }

    /* Section spacing like screenshot */
    .solutions-sec{
      padding: 80px 0 60px;
      background: #fff;
    }

    .solutions-sec .sec-title{
      font-weight: 800;
      letter-spacing: .5px;
      text-transform: uppercase;
      font-size: clamp(22px, 2.4vw, 34px);
      color: var(--text);
      text-align: center;
      margin-bottom: 14px;
    }

    .solutions-sec .sec-desc{
      max-width: 980px;
      margin: 0 auto 50px;
      text-align: center;
      color: var(--muted);
      line-height: 1.9;
      font-size: 16px;
    }

    /* IMPORTANT: center main rakhna (not full width) */
    .solutions-wrap{
      max-width: 980px;           /* center width */
      margin: 0 auto;             /* center align */
    }

    .solution-block{
      margin-bottom: 34px;
    }

    .solution-head{
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 12px;
    }

    .solution-icon{
      width: 34px;
      min-width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      color: var(--brand-red);
      font-size: 20px;
    }

    .solution-title{
      margin: 0;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: .3px;
      text-transform: uppercase;
      color: var(--text);
    }

    .solution-list{
      margin: 0;
      padding-left: 58px; /* bullets ka start screenshot jaisa */
    }

    .solution-list li{
      color: var(--muted);
      margin: 8px 0;
      line-height: 1.7;
      font-size: 15px;
    }

    ::marker {
      color: var(--nd-red);
    }

    .footnote{
      max-width: 980px;
      margin: 10px auto 0;
      text-align: center;
      color: var(--nd-red);
      font-size: 12px;
    }

    /* Responsive small screens */
    @media (max-width: 575.98px){
      .solution-list{ padding-left: 44px; }
      .solution-title{ font-size: 18px; }
    }

    

  /* Wrapper */
  .cyber-insurance-wrap {
    background: #fff;
  }

  /* Partner strip */
  .partner-strip {
    background: #f1f1f1;
    padding: 26px 0;
  }

  .partner-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }

  .partner-logos img {
    height: 40px;
    width: auto;
    opacity: 0.9;
    filter: grayscale(10%);
  }

  /* Main image */
  .insurance-img {
    max-width: 360px;
    width: 100%;
    height: auto;
  }

  /* Typography */
  .insurance-title {
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #222;
    line-height: 1.08;
    font-size: 44px;
    margin-bottom: 18px;
  }

  .insurance-text {
    color: #666;
    font-size: 18px;
    line-height: 1.75;
    max-width: 720px;
    margin: 0;
  }

  .insurance-link {
    color: #b12a2a; /* red-ish like screenshot */
    text-decoration: none;
  }
  .insurance-link:hover {
    text-decoration: underline;
  }

  /* Button */
  .insurance-btn {
    background: var(--nd-red);
    color: #fff;
    border: 0;
    padding: 12px 26px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  .insurance-btn:hover {
    background: #f3f3f3;
    color: var(--nd-red);
  }

  /* Responsive */
  @media (max-width: 991.98px) {
    .partner-logos {
      justify-content: center;
    }
    .insurance-title {
      font-size: 34px;
      text-align: center;
    }
    .insurance-text {
      text-align: center;
      margin: 0 auto;
    }
    .insurance-btn {
      display: inline-block;
      margin: 0 auto;
    }
    .col-lg-7 {
      text-align: center;
    }
  }

  @media (max-width: 575.98px) {
    .insurance-title {
      font-size: 28px;
    }
    .partner-logos img {
      height: 30px;
    }
  }
