
    /* ───── RESET ───── */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0;}
.subnav-toggle{display: none;}
    body {
     font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      background: #fff;
      color: #1a1a2e;
    }


    /* ───── STICKY SUB-NAV ───── */
    .services-subnav {
      position: sticky;
      top: 0;               /* change this to match your main navbar height e.g. top: 70px */
      z-index: 100;
      background: #ffffff;
      border-bottom: 3px solid #e8c444;
      display: flex;
      justify-content: flex-start;
      align-items: stretch;
      box-shadow: 0 2px 8px rgba(26, 58, 107, 0.07);
    }
/* Dynamic effect when scrolling */
.services-subnav.scrolled{
  top: 70px;
  left: 0;
  margin-bottom: 2rem;
  font-size: 20px;
  z-index: 105;
    width:100%;
    background:#ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display:flex;
    justify-content:center;   /* horizontal center */
    align-items:center;       /* vertical center */
    padding:18px 20px;
    box-shadow:0 2px 8px rgba(26, 58, 107, 0.07);
    transition:all 0.3s ease; /* smooth dynamic effect */
    background:#fff;
    padding:8px 20px;
    box-shadow:0 4px 12px rgba(0,0,0,0.2);
}

/* Optional link styling */
.services-subnav a{
    color:#1a3a6b;
    text-decoration:none;
    margin:0 15px;
    font-weight:600;
    transition:0.3s;
}

.services-subnav.scrolled a{
    color:#0b2c4d;
}

.services-subnav a:hover{
    color:#e8c444;
}
    .services-subnav a {
      display: flex;
      align-items: center;
      gap: 1px;
      padding: 20px 16px;
      font-size: 15px;
      line-height: 24px;
      font-weight: 600;
      letter-spacing: .06em;
      margin-left: 3rem;
      text-transform:capitalize;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: rgb(45, 93, 167);
      text-decoration: none;
      position: relative;
      transition: color .2s, background .2s;
      white-space: nowrap;
    }

    .services-subnav a i {
      font-size: 17px;
      opacity: .65;
      transition: opacity .2s;
    }

    /* gold active indicator */
    .services-subnav a::after {
      content: '';
      position: absolute;
      bottom: -5.5px;
      left: 0;
      right: 0;
      height: 3px;
      background: #0b2c4d;
      transform: scaleX(0);
      transition: transform .25s ease;
    }

    /* .services-subnav a:hover {
      color: #e8c444;
    } */

    .services-subnav a:hover i {
      opacity: 1;
    }

    .services-subnav a.active::after {
      transform: scaleX(1);
    }

    .services-subnav a.active i {
      opacity: 1;
    }

    /* vertical dividers between links */
    .subnav-divider {
      width: 1px;
      background: #dde4ef;
      margin: 12px 0;
      flex-shrink: 0;
    }

  /* ───── PAGE CONTENT ───── */
.services-content {
  padding: 0 32px 100px;
}
@media (max-width:768px){

  .service-section#svc-audit,
  .service-section#svc-consulting{
      border-radius:0;
  }

}
/* ───── EACH SERVICE SECTION ───── */
.service-section{
   padding:64px 48px;
   border-bottom:1px solid #eef0f5;
   width:100%;
   margin:0 auto;
   scroll-margin-top:128px;
}
.service-section h2 {
  font-size: 26px;
  color: #1a3a6b;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.section-intro p,
.section-lead {
  font-size: 16px;
  color: #4a5a70;
  line-height: 1.8;
  font-style: normal;
  margin-bottom: 28px;
}

/* ───── SERVICE CARDS GRID ───── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* FIX: was 350px which broke mobile */
  gap: 18px;
  width: 100%;
}

.service-card {
  background: #fff;
  border: 0.1px solid #cfd8ea;
  border-radius: 10px;
  padding: 22px 20px;
  width: 100%; /* FIX: ensure card never overflows */
}

.service-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #1a3a6b;
  margin-bottom: 14px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  font-size: 15.5px;
  color: #3a4a60;
  position: relative;
  padding-left: 20px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.service-card ul li::before {
  content: "◆";
  color: #caa74e;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 0;
}

/* ───── SECTION-SPECIFIC STYLES ───── */
#svc-audit {
  background: #0b2c4d;
  border-radius: 10px;
}

#svc-audit h2 {
  color: #fff;
}

#svc-audit p {
  color: #ccc;
  font-weight: 400;
  line-height: 1.8;
}

#svc-consulting {
  background: #f7f7f7;
  border-radius: 10px;
}

    /* ───── RESPONSIVE ───── */
    @media (max-width: 992px) {
       .service-section {
        body{ margin: 0;}
      padding: 24px 28px;
      width: 100%; margin-left: -0.4rem !important;
      
      }
 .service-section .service-cards, .service-card {
  width: 100% !important;
}
@media (max-width:768px){

    .subnav-toggle{
        display:block !important;
    }

    .services-subnav{

        position:static;
        top:10%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:stretch;
        max-height:0;
        overflow:hidden;
        font-size: 18px;
        transition:max-height 0.3s ease;
        border-bottom:none;
        padding:12px;
    }
#svc-audit{ border-radius: 0; margin: 0;} #svc-tax{width: 100%;}
    .services-subnav.active{
        max-height:500px;

        border-bottom:3px solid #e8c444;
    }

    .services-subnav a{
        width:100%;

        padding:15px 20px;

        border-bottom:1px solid #eee;

        margin:0;
    }

    .subnav-divider{
        display:none;
    }

}
      .services-subnav a {
        padding: 16px 20px;
        font-size: 15.5px;
      }
      .service-cards, .service-cards {width: 100%;}
      .section-intro {
        grid-template-columns: 1fr;
      }

      .services-content {
        padding: 0;
      }
    }

/* =========================
   MOBILE DROPDOWN BUTTON
========================= */

/* .subnav-toggle{
    display:none;
  position:sticky;
    top:70px;
    z-index:110;
    background:#1a3a6b;
    color:white;
    padding:14px 20px;
    font-weight:bold;
    cursor:pointer;
} */

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width:768px){

    .subnav-toggle{
        display:block !important;
    }

    .services-subnav{

        top:120px;

        left:0;

        width:100%;

        background:#fff;

        flex-direction:column;

        align-items:flex-start;

        gap:0;

        padding:0;

        max-height:0;

        overflow:hidden;

        transition:max-height 0.3s ease;

        border-bottom:none;
    }

    /* OPEN DROPDOWN */
    .services-subnav.active{
        max-height:400px;

        border-bottom:3px solid #e8c444;
    }

    .services-subnav a{
        width:100%;

        padding:15px 20px;

        border-bottom:1px solid #eee;
    }

}
