 body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  background: #ffffff;
  color: #111;
}
p, li { line-height: 1.5;}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #A61E22;
}

.management {
  padding: 120px 0;
}

.management-header {
  max-width: 500px;
  max-height: 100% !important;
  margin-bottom: 60px;
}

.management-header h2 {
  font-size: 38px;
  font-weight: 600;
}

.management-filter {
  margin-bottom: 50px;
}

.management-filter button {
  border: none;
  background: transparent;
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #E6C874;
  font-size: 17px;
}

.management-filter button.active {
 color: #E6C874;
}
.management-filter button:hover {
    /* border-bottom: 6px solid #0b2c4d; */
   padding-bottom: 1rem;
  color: #0b2c4d;
}
.management-grid {
  display: grid;
  gap: 70px;
}

.leader {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
  align-items: start;
}

.leader-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.leader {
  display: none;
}

.leader.adewale {
  display: grid;
}
.leader-summary {
   padding-right: 25px; padding-bottom: 2rem; padding-top: 2rem; height: 500px;
}
.leader-summary h3 {
      font-size: 28px !important;
    margin-bottom: 10px;
  color: #f7f7f7;
  margin-bottom: 5px;
  font-weight: 500;
 
}

.credentials {
      font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E6C874;
    display: block;
    margin-bottom: 30px;;
}

.position {
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0 20px;
}

.expertise span {
  display: inline-block;
  font-size: 13px;
  border: 1px solid #ddd;
  padding: 6px 10px;
  margin: 5px 5px 5px 0;
}

.linkedin {
  display: inline-block;
  margin: 15px 0;
  font-size: 20px;
  color: #0A66C2;
}

.bio-toggle {
  display: block;
  margin-top: 15px;
  border: none;
  background: none;
  color: #A61E22;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.leader-bio {
  display: block; /* show by default */
  margin-top: 20px;
  color: #fff;
  line-height: 1.7;
  font-weight: 300;
  font-size: 16px;
}
.leader-bio p{
  font-size: 16px; font-weight: 200;
}

.leader-bio.show {
  display: block;
}

@media (max-width: 992px) {
  .leader {
    grid-template-columns: 1fr;
  }

  .leader-photo img {
    height: 450px;
  }
}

.about-clients {
  padding: 120px 0;
  background: #f9f9f9;
}

.clients-header {
  max-width: 650px;
  margin-bottom: 70px;
}

.clients-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 10px 0 20px;
}

.clients-header p {
  color: #666;
  line-height: 1.7;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.client-grid span {
  display: flex;
  align-items: center;
  padding: 22px 25px;
  background: #ffffff;
  border: 1px solid #eee;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.35s ease;
  position: relative;
}

/* Subtle left accent line */
.client-grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #A61E22;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

/* Hover effect */
.client-grid span:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.client-grid span:hover::before {
  transform: scaleY(1);
}

.section-label{
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:2px;
  font-weight:600;
  color:#A61E22;
}

/* HERO */
.about-hero{
  color:#000;
  padding: 40px 0;
  width: 100%;
}

.about-hero h1{
  font-size:48px;
  font-weight:600;
  margin:20px 0;
}

.about-hero p{
  /* max-width:700px; */
  color:#292929;
  font-size:15px !important;
  line-height: 1.8 !important;
}

/* CONTENT GRID */
.about-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:10px;
  align-items:start;
}

.about-text h2{
  font-size:32px;
  margin-bottom:20px;
}

.about-text p{
  color:#444;
  margin-bottom:20px;
}

.about-card{
  border-left:4px solid #A61E22;
  padding:30px;
  background:#f9f9f9;
}
.vm-text {
  font-weight: 400 !important;
  line-height: 1.7 !important; 
  font-size: 16px;
}
.about-card h3{
  margin-bottom:15px;
  font-size:20px;
}

/* VALUES */
.values{
  background:#f5f5f5;
}

.values-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
  margin-top:60px;
}

.value-item{
  background:#fff;
  padding:35px;
  border:1px solid #eee;
  transition:0.3s ease;
}

.value-item:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.value-item h4{
  margin-bottom:15px;
  font-size:18px;
}

/* COMMITMENT */
.commitment{
  background:#0f0f0f;
  color:#fff;
}

.commitment h2{
  font-size:32px;
  margin-bottom:30px;
}

.commitment ul{
  list-style:none;
  padding:0;
}

.commitment li{
  margin-bottom:15px;
  font-size:16px;
  color:#ccc;
}

.commitment li::before{
  content:"— ";
  color:#A61E22;
  font-weight:bold;
}
.cm-li {
  padding: 20px;
} .cm-li li{
  padding: 4px; font-size: 16px;
}
.cm-li {
  list-style:none;
  padding:0;
}

.cm-li li{
  margin-bottom: 10px;
  font-size:16px;
  color: #555;
}

.cm-li li::before{
  content:"— ";
  color:#A61E22;
  font-weight:bold;
}
/* RESPONSIVE */
@media(max-width:992px){
  .about-grid{
    grid-template-columns:1fr;
  }

  .about-hero h1{
    font-size:36px;
  }
}
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

section{
  padding:120px 0;
}

/* STRATEGIC BLOCK */
.strategy{
  background:var(--light);
}

.strategy-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:40px;
  margin-top:60px;
}

.strategy-item{
  background:#fff;
  padding:40px;
  border-top:3px solid var(--primary);
  transition:.3s ease;
}

.strategy-item:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 45px rgba(0,0,0,0.08);
}

.strategy-item h4{
  margin-bottom:15px;
  font-size:18px;
}

/* COMMITMENT */
.commitment{
  background:#111;
  color:#fff;
  text-align:center;
}

.commitment h2{
  font-size:36px;
  margin-bottom:30px;
}

.commitment p{
  max-width:800px;
  margin:0 auto 40px;
  color:#ccc;
}

.commitment ul{
  list-style:none;
}

.commitment li{
  margin-bottom:15px;
  color:#ddd;
}

.commitment li::before{
  content:"— ";
  color:var(--primary);
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:992px){
  .two-col{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:36px;
  }
}
.mm-cards{
  display:none;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.mm{
  position:relative;
  height:380px;
  border-radius:20px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  cursor:pointer;
  transition:.4s;
   border-bottom: 10px solid rgba(0, 19, 71, 0.75);
}

.mm::before{
  content:"";
  position:absolute;
  inset:0;
 
  transition:.4s;
  height: 50px;
}

.mm-content{
  position:absolute;
  bottom:25px;
  left:25px;
  right:25px;
  color:white;
  z-index:2;
  background:  rgba(49, 0, 23, 0.75) ; border-bottom-left-radius: 20px;  
  border-bottom-right-radius: 20px; padding: 2rem; margin-bottom: 0; font-size: 20px;
  scroll-behavior: smooth;
}

.mm small{
  font-size:11px;
  letter-spacing:1px;
  opacity:.8;
}

.mm h3{
  margin-top:8px;
  font-size:20px;
  font-weight:700;
}

/* HOVER INFO BOX */
.hover-box{
  position:absolute;
  bottom:-100%;
  left:20px;
  right:0px;
  background:#E6C874;
  padding:18px;
  border-radius:15px;
  z-index:3;
  scroll-behavior: auto;
  transition:.4s;
}

.hover-box p{
  font-size: 15px; font-weight: 400; line-height: 1.5;
  margin-bottom:8px;
}

.hover-box a{
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  color:#0f172a;
}

.mm:hover .hover-box{
  bottom:20px;
}

.mm:hover{
  transform:translateY(-8px);
}
/* RESPONSIVE */
@media(max-width:992px){
  .mm-cards{
    grid-template-columns:1fr 1fr;
    display: grid;
    margin-top: -7rem;
  }
  .mm-cards{
  display:grid;}
}

@media(max-width:600px){
  .mm-cards{
    grid-template-columns:1fr;
  }

  .mm-section-top h2{
    font-size:28px;
  }
}

@media (min-height: 992px) {
  .about-hero {
    height: 50vh !important;  width: 100%; }
}