:root{
      --walsh-navy:#000038;
      --walsh-navy-2:#0b0b5e;
      --walsh-orange:#ff7a00;
      --ink:#111319;
      --muted:#6b7280;
      --bg:#f6f8ff;
      --card:#ffffff;
      --glass:rgba(255,255,255,.08);
      --radius:18px;
      --shadow:0 10px 30px rgba(0,0,0,.15);
      --shadow-soft:0 8px 20px rgba(0,0,0,.08);
    }
     :root{
    --wlsh-bg-top:#0a0f28;
    --wlsh-bg-bottom:#111736;
    --wlsh-card:#1a2040f2;
    --wlsh-card-stroke:#3b4269;
    --wlsh-text:#e7ebff;
    --wlsh-muted:#b7bfdc;
    --wlsh-shadow:0 12px 30px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.03);
    --wlsh-radius:18px;
    --wlsh-maxw:1180px;
  }

    *{box-sizing:border-box}
    html,body{
      height:100%;
    }
    body{
      margin:0;
      font-family:"Montserrat" !important;
      color:var(--ink);
      background:var(--bg);
      line-height:1.55;
    }
    a{
      color:var(--walsh-orange);
      text-decoration:none;
    }
    a:hover{text-decoration:underline}

    /* --- Hero --- */
    .hero{
      position:relative;
      isolation:isolate;
      height: 85vh;
      overflow:hidden;
      background:radial-gradient(100% 70% at 80% 0%, rgba(255,122,0,.08) 0%, rgba(255,122,0,0) 60%),
                 radial-gradient(120% 120% at -10% 20%, rgba(255,255,255,.2) 0%, rgba(255,255,255,0) 50%),
                 linear-gradient(180deg, var(--walsh-navy) 0%, #000020 100%);
      color:#fff;
    }
    .hero .wrap{
      max-width:1200px;
      margin-top:-9.5vw;
      padding:96px 20px 120px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:32px;
      align-items:center;
    }

    .hero h1{
      font-size:clamp(28px,4.5vw,56px);
      line-height:1.1;
      margin:0 0 14px
    }
    .hero p{
      color:#d5d8ff;
      margin:0 0 22px;
      font-size:clamp(16px,1.3vw,18px);
    }
    .hero .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-weight:600;
      padding:8px 14px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.22);
      background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);
    }
    .hero .cta{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:12px;
    }
    .btn{
      appearance:none;
      border:0;
      border-radius:14px;
      padding:12px 16px;
      font-weight:700;
      cursor:pointer;
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .btn-primary{
      background:var(--walsh-orange);
      color:#1a1a1a;
      box-shadow:0 10px 20px rgba(255,122,0,.3);
    }
    .btn-primary:hover{
      transform:translateY(-2px);
    }
    .btn-ghost{
      background:transparent;
      color:#fff;
      border:1px solid rgba(255,255,255,.25);
    }

    /* Hero Accent Graphic */
    .orb{
      width:min(520px,90%);height:520px;border-radius:50%;
      background:radial-gradient(60% 60% at 35% 35%, rgba(255,122,0,.9) 0%, rgba(255,122,0,.4) 30%, rgba(255,122,0,.08) 60%, transparent 70%),
                 radial-gradient(80% 80% at 70% 70%, rgba(255,255,255,.2), transparent 60%);
      filter:blur(8px) saturate(120%);
      box-shadow:0 60px 120px rgba(255,122,0,.25), inset 0 0 60px rgba(255,255,255,.2);
      border:1px solid rgba(255,255,255,.08);
      position:relative; margin:auto;
    }
    .orb::after{
      content:"";
      position:absolute;
      inset:-80px;
      border-radius:50%;
      background:conic-gradient(from 180deg, rgba(255,255,255,.2), rgba(255,122,0,.18), rgba(255,255,255,.1), rgba(255,122,0,.18));
      mask:radial-gradient(circle at center, black 56%, transparent 58%);
      filter:blur(10px);
    }

    /* --- Section Shell --- */
    section{padding:84px 20px}
    .wrap{
      max-width:1200px;
      margin:auto}
    .section-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:28px}
    .eyebrow{letter-spacing:.18em;text-transform:uppercase;color:var(--muted);font-weight:700;font-size:12px}
    h2{font-size:clamp(24px,3vw,36px);margin:8px 0 12px;color:var(--walsh-navy)}
    .lead{color:#3b3f55;max-width:70ch}
/* -------------------- */
/* ✅ Responsive Queries */
/* -------------------- */

/* XL - Large Desktops */
@media (max-width: 1200px) {
  .hero .wrap {
    grid-template-columns: 1fr 1fr;
    padding: 80px 20px 100px;
  }
  .hero .tag{
    margin-bottom: 15px;
  }
}

/* LG - Laptops / Tablets Landscape */
@media (max-width: 992px) {
  .hero {
    height: auto;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
    margin-top: 0;
    text-align: center;
  }
  .hero .cta {
    justify-content: center;
  }
  .orb {
    height: 400px;
    width: 400px;
  }
  .hero .tag{
    margin-bottom: 20px;
  }
}

/* MD - Tablets Portrait */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  .orb {
    height: 200px;
        width: 200px;
        margin-top: 1vw;
  }
  .hero .tag{
    margin-bottom: 15px;
  }
}

/* SM - Mobile Phones */
@media (max-width: 576px) {
  .hero {
    padding: 60px 15px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero .cta {
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .orb {
  height: 150px;
        width: 150px;
        margin-top: 7vw;
  }
} 
    /* --- Leader Blocks --- */
    /* Section Base */
.leadership-team {
  background: #f5f7fb;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Titles */
.section-subtitle {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #555;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-title {
  font-size: 2rem;
  color: #0c1637;
  margin-bottom: 10px;
}
.section-intro {
  color: #444;
  max-width: 700px;
  margin-bottom: 50px;
}

/* Leader Card */
.leader-card {
  background: #fff;
  display: flex;
  align-items: stretch;
      height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.leader-card.reverse {
  flex-direction: row-reverse;
}
.light-bg{
  background: linear-gradient(180deg, #ffffff, #eef1ff) !important;
    border: 1px solid #eef1ff;
    padding: 16px 18px;
    border-radius: 14px;
}
/* Image */
.leader-img {
  flex: 1;
  position: relative;
}
.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000038;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Content */
.leader-content {
  flex: 1.2;
  padding: 30px;
}
.leader-content h5 {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.leader-content h3 {
  font-size: 1.5rem;
  color: #0c1637;
  margin-bottom: 5px;
}
.position {
  color: #ff6600;
  font-weight: 600;
  margin-bottom: 15px;
}
blockquote {
  font-size: .9rem;
  color: #222;
  line-height: 1.6;
  margin: 15px 0;
}
.tags {
  margin: 15px 0;
}
.tags span {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #a8b5eeff;
  color: #000038;
  font-size: .8rem;
  padding: 5px 10px;
  margin: 3px;
  border-radius: 12px;
}
.quote {
  font-style: italic;
  margin-top: 10px;
  font-size: .9rem;
  color: #333;
}
.quote-author {
  font-size: 0.9rem;
  color: #555;
}
/* ======================
   Responsive Breakpoints
   ====================== */

/* XL Screens (1200px and below) */
@media (max-width: 1200px) {
  .leader-card,
  .leader-card.reverse {
    height: 70vh;
  }
  .leader-content {
    padding: 25px;
  }
}

/* LG Screens (992px and below) */
@media (max-width: 992px) {
  .leader-card,
  .leader-card.reverse {
    height: auto;
    flex-direction: column;
  }
  .leader-img {
    height: 320px;
  }
  .leader-content {
    padding: 20px;
    text-align: center;
  }
  .leader-content h3 {
    font-size: 1.4rem;
  }
  .position {
    font-size: 1rem;
  }
}

/* MD Screens (768px and below) */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
  .section-intro {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .leader-img {
    height: 280px;
  }
  blockquote {
    font-size: 0.95rem;
  }
  .tags span {
    font-size: 0.9rem;
    padding: 4px 8px;
  }
}

/* SM Screens (576px and below) */
@media (max-width: 576px) {
  .leader-card,
  .leader-card.reverse {
    margin-bottom: 30px;
  }
  .leader-img {
    height: 220px;
  }
  .leader-content {
    padding: 16px;
  }
  .leader-content h3 {
    font-size: 1.5rem;
  }
  .position {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  blockquote {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .tags span {
    font-size: 0.8rem;
  }
  .quote-author {
    font-size: 0.8rem;
  }
}

    /* --- Philosophy (Closing) --- */
     .wlsh-section{
    margin:0;
    font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:var(--wlsh-text);
    background:
      radial-gradient(900px 500px at 15% -10%, rgba(232, 9, 57, 0.51), transparent 60%),
      radial-gradient(700px 400px at 85% 0%, rgba(255, 59, 59, 0.23), transparent 60%),
      linear-gradient(180deg, var(--wlsh-bg-top), var(--wlsh-bg-bottom));
   height:88vh;
    letter-spacing:.2px;
  }

  .wlsh-wrap{
    max-width:var(--wlsh-maxw);
    margin:0 auto;
    padding:64px 20px 96px;
    position:relative;
  }

  /* sparkles */
  .wlsh-sparkle{position:absolute; width:4px; height:4px; background:#ff4d4d; border-radius:50%; filter:drop-shadow(0 0 3px rgba(255,77,77,.9)); opacity:.95;}
  .wlsh-s1{top:95px; left:58%;}
  .wlsh-s2{top:140px; left:63%; width:3px; height:3px; opacity:.7;}
  .wlsh-s3{top:210px; left:52%; width:2px; height:2px; opacity:.8;}
  .wlsh-s4{top:180px; left:68%; width:2px; height:2px; opacity:.8;}

  .wlsh-eyebrow{
    font-size:.78rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#aab2d8;
    margin-bottom:10px;
    font-weight:700;
  }

  .wlsh-title{
    margin:0 0 18px;
    font-size:2.3rem;
    line-height:1.2;
    font-weight:800;
  }

  .wlsh-lead{
    max-width:680px;
    color:var(--wlsh-muted);
    line-height:1.65;
    font-size:1rem;
    margin-bottom:28px;
  }

  .wlsh-grid{
    display:grid;
    grid-template-columns: 1.2fr .85fr;
    gap:26px;
    align-items:start;
  }

  .wlsh-card{
    background:var(--wlsh-card);
    border:1px solid var(--wlsh-card-stroke);
    border-radius:var(--wlsh-radius);
    box-shadow:var(--wlsh-shadow);
    backdrop-filter: blur(6px);
    padding:22px 24px;
  }
    .wlsh-cardt{
    background:var(--wlsh-card);
    border:1px solid var(--wlsh-card-stroke);
    border-radius:var(--wlsh-radius);
    box-shadow:var(--wlsh-shadow);
    backdrop-filter: blur(6px);
    padding:22px 24px;
    margin-top: -11vw;
  }


  /* bullets */
  .wlsh-bullets{
    display:flex; 
    flex-direction:column; 
    gap:14px;
  }
  .wlsh-item{
    display:flex; 
    gap:12px; 
    align-items:flex-start;
  }
  .wlsh-dot{
    width:8px; 
    height:8px; 
    border-radius:50%; 
    background:#9bb2ff; 
    margin-top:8px; 
    box-shadow:0 0 0 3px rgba(155,178,255,.18); 
    flex:0 0 8px;
  }
  .wlsh-item b{
    font-weight:800;
  }
  .wlsh-item p{
    margin:0; 
    color: white; 
    line-height:1.6;
  }

  /* right card */
  .wlsh-card h3{margin:2px 0 8px; font-size:1.05rem; letter-spacing:.02em;}
  .wlsh-card small{
    display:block; 
    color:var(--wlsh-muted); 
    line-height:1.6; 
    margin-bottom:10px;
  }
    .wlsh-cardt h3{margin:2px 0 8px; font-size:1.05rem; letter-spacing:.02em;}
  .wlsh-cardt small{
    display:block; 
    color:var(--wlsh-muted); 
    line-height:1.6; 
    margin-bottom:10px;
  }
  .wlsh-card a{color:#dbe4ff; text-decoration:none; border-bottom:1px solid rgba(219,228,255,.35); padding-bottom:2px;}
  .wlsh-card a:hover{color:#ffffff; border-bottom-color:#ffffff;}

    .wlsh-cardt a{color:#dbe4ff; text-decoration:none; border-bottom:1px solid rgba(219,228,255,.35); padding-bottom:2px;}
  .wlsh-cardt a:hover{color:#ffffff; border-bottom-color:#ffffff;}

  @media (max-width:980px){.wlsh-grid{grid-template-columns:1fr; gap:18px;}}
  @media (max-width:540px){
    .wlsh-title{font-size:1.9rem}
    .wlsh-lead{font-size:.98rem}
    .wlsh-wrap{padding-top:48px;}
  }
  /* ======================
   Responsive Breakpoints
   ====================== */

/* XL Screens (1200px and below) */
@media (max-width: 1200px) {
  .wlsh-title { font-size: 2rem; }
  .wlsh-lead { font-size: 0.95rem; }
  .wlsh-grid { gap: 20px; }
}

/* LG Screens (992px and below) */
@media (max-width: 992px) {
  .wlsh-section { height: auto; padding: 60px 0; }
  .wlsh-grid { grid-template-columns: 1fr; }
  .wlsh-title { font-size: 1.9rem; text-align: center; }
  .wlsh-lead { text-align: center; margin-left: auto; margin-right: auto; }
  .wlsh-card { padding: 20px; }
    .wlsh-cardt { margin-top: 3vw; }
    .wlsh-eyebrow{text-align: center; margin-bottom: 15px;}
}

/* MD Screens (768px and below) */
@media (max-width: 768px) {
  .wlsh-title { font-size: 1.6rem; }
  .wlsh-lead { font-size: 0.9rem; }
  .wlsh-grid { gap: 16px; }
  .wlsh-card h3 { font-size: 1rem; }
      .wlsh-cardt { margin-top: 3vw; }

}

/* SM Screens (576px and below) */
@media (max-width: 576px) {
  .wlsh-wrap { padding: 48px 16px 72px; }
  .wlsh-title { font-size: 1.4rem; }
  .wlsh-lead { font-size: 0.85rem; line-height: 1.5; }
  .wlsh-card { padding: 16px; }
  .wlsh-bullets { gap: 10px; }
  .wlsh-item p { font-size: 0.9rem; line-height: 1.4; }
  .wlsh-card h3 { font-size: 0.95rem; }
      .wlsh-cardt { margin-top: 3vw; }

}