@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Oswald:wght@300;400;500;600&display=swap');
: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;

 
  --nd-dark:#2f3438;
  --panel-bg:#f5f5f5;
  --card-shadow: 0 8px 18px rgba(0,0,0,.10);
  --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 */
}
:root{
  --nd-border: #cfd6df;
  --nd-shadow: 0 1px 0 rgba(0,0,0,.02), 0 2px 8px rgba(0,0,0,.06);
  --nd-head: #6f7e8f;
  --nd-bg: #f3f5f7;
  --nd-white: #fff;

  --nd-blue: #2aa7ff;
  --nd-blue2: #2f57ff;
  --nd-purple: #6a4cff;
  --nd-badge-blue: #0b4e9b;
  --nd-badge-purple: #7a2ecb;
  --nd-badge-gray: #7e8896;
}
.ndr-hero-cyber .ndr-hero-bg {
  background-image: url("./assets/Support Process/our-team.png") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* ===== Leadership Section (NetworkDr style) ===== */
.nd-leadership {
  background: #ffffff;
}

.nd-team-intro {
  font-size: 20px;
  line-height: 1.9;
  color: #6f6f6f;
  font-weight: 400;
  margin-top: 10px;
}

/* Title */
.nd-leadership-title {
  font-size: 44px;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--nd-red);
  text-transform: uppercase;
}

.nd-title-underline {
  width: 120px;
  height: 6px;
  background: var(--nd-dark); /* deep red like screenshot */
}

/* Person Card */
.nd-person-imgWrap {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f1f1;
}

.nd-person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%); /* screenshot vibe */
}

/* Name */
.nd-person-name {
  font-size: 34px;
  font-weight: 900;
  color: #000;
  margin: 0;
}

/* Role */
.nd-person-role {
  font-size: 14px;
  color: #000;
  font-weight: 700;
  letter-spacing: 6px; /* spaced letters */
  text-transform: uppercase;
  margin-top: 6px;
}

.nd-person-role-2line {
  letter-spacing: 4px;
}

/* Responsive */
@media (max-width: 576px) {
  .nd-team-intro {
    font-size: 17px;
    line-height: 1.8;
  }
  .nd-leadership-title {
    font-size: 34px;
  }
  .nd-person-imgWrap {
    width: 210px;
    height: 210px;
  }
  .nd-person-name {
    font-size: 30px;
  }
}

/* ===== Reveal Animation (JS will toggle) ===== */
.nd-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.nd-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nd-leadership {
  background: #fff;
}

.nd-leadership-title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* .nd-title-underline {
  width: 120px;
  height: 6px;
  background: #a12a2a;
  margin-top: 10px;
} */

/* Card */
.nd-person {
  text-align: center;
  padding: 10px;
}

/* Link reset */
.nd-person-link {
  text-decoration: none;
  color: inherit;
}

/* Image */
.nd-person-imgWrap {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.nd-person-imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.4s ease;
}

/* Hover zoom */
.nd-person-link:hover img {
  transform: scale(1.05);
}

/* Name */
.nd-person-name {
  font-size: 32px;
  font-weight: 900;
  margin-top: 20px;
}

/* Role */
.nd-person-role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 12px;
}

/* Description */
.nd-person-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Button */
.nd-btn-profile {
  display: inline-block;
  background: var(--nd-red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.nd-btn-profile:hover {
  background: var(--ndr-dark);
}

/* Reveal animation */
.nd-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}

.nd-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== OUR TEAM (NetworkDR style) ===== */
.nd-team{
  background:#fff;
  padding-top:70px !important;
  padding-bottom:70px !important;
}

/* Heading */
.nd-team__title{
  margin:0;
  font-family: "Oswald", Arial, sans-serif; /* closest look */
  font-weight:700;
  letter-spacing:2px;
  font-size:54px;
  line-height:1.05;
  color:var(--nd-red);
  text-transform:uppercase;
}

/* Small red line under heading */
.nd-team__divider{
  display:inline-block;
  width:46px;
  height:6px;
  background:var(--nd-dark); /* maroon/red tone */
  border-radius:2px;
  margin-top:18px;
}

/* Member card link */
.nd-member{
  text-decoration:none;
  display:block;
  text-align:center;
  padding:10px 4px;
}

/* Round avatar */
.nd-member__avatar{
  width:120px;
  height:120px;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto 14px;
  background:#eee;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
  transition: transform .18s ease, box-shadow .18s ease;
}

.nd-member__avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Name (red) */
.nd-member__name{
  margin:0;
  font-family: "Oswald", Arial, sans-serif;
  font-weight:600;
  font-size:22px;
  letter-spacing:1px;
  color:var(--nd-red);
  text-transform:capitalize;
}

/* Role (grey, uppercase-ish) */
.nd-member__role{
  margin:6px 0 0;
  font-family: Arial, sans-serif;
  font-size:12px;
  line-height:1.35;
  color:#8b8b8b;
  letter-spacing:1.3px;
  text-transform:uppercase;
}

/* Hover effect (subtle like site) */
.nd-member:hover .nd-member__avatar{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.nd-member:focus-visible{
  outline: none;
}
.nd-member:focus-visible .nd-member__avatar{
  box-shadow: 0 0 0 4px rgba(155,44,43,.18), 0 10px 22px rgba(0,0,0,.10);
}

/* Responsive tuning */
@media (max-width: 991.98px){
  .nd-team__title{ font-size:44px; }
  .nd-member__avatar{ width:110px; height:110px; }
}
@media (max-width: 575.98px){
  .nd-team__title{ font-size:36px; letter-spacing:1.5px; }
  .nd-member__avatar{ width:100px; height:100px; }
}
