*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =====HERO SECTION ===== */
.it-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #041424 0%, #063970 50%, #0b1a2b 100%);
  color: #eaf2ff;
  padding: 120px 0;
}

.it-hero::before {
  content: "BluveIT";
  position: absolute;
  bottom: 5%;
  right: 5%;
  font-size: 14vw;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, rgba(79,225,208,0.2), rgba(6,57,112,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.15;
  z-index: 0;
}

.it-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6%;
}

.it-hero-content {
  flex: 1;
}

.it-hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
  margin-top: 4rem;
  letter-spacing: 1.5px;
}

.it-hero-content p {
  font-size: 1.1rem;
  max-width: 580px;
  line-height: 1.6;
  color: #c9d8ff;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: linear-gradient(90deg, #4fe1d0, #3b82f6);
  color: #fff;
}

.btn.ghost {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  margin-left: 18px;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Graphic zone */
.it-hero-graphic {
  flex: 1;
  position: relative;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(79,225,208,0.15) 1px, transparent 0);
  background-size: 40px 40px;
  animation: gridMove 18s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

.audit-icons {
  position: relative;
  width: 100%;
  height: 400px;
}

.audit-icons .icon {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(79,225,208,0.25);
  animation: floaty 8s ease-in-out infinite;
}

.icon-server { top: 10%; left: 25%; background-image: url('https://cdn-icons-png.flaticon.com/512/1048/1048953.png'); background-size: 60%; background-position: center; background-repeat: no-repeat; }
.icon-shield { top: 50%; right: 10%; animation-delay: 1s; background-image: url('https://cdn-icons-png.flaticon.com/512/942/942799.png'); background-size: 60%; background-position: center; background-repeat: no-repeat; }
.icon-brain { bottom: 10%; left: 15%; animation-delay: 2s; background-image: url('https://cdn-icons-png.flaticon.com/512/3063/3063822.png'); background-size: 60%; background-position: center; background-repeat: no-repeat; }
.icon-check { top: 70%; right: 35%; animation-delay: 3s; background-image: url('https://cdn-icons-png.flaticon.com/512/845/845646.png'); background-size: 60%; background-position: center; background-repeat: no-repeat; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 900px) {
  .it-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .it-hero-content p {
    margin: 0 auto 30px;
  }
  .audit-icons {
    height: 300px;
  }
}

/* ====== IT AUDIT METRICS STRIP ====== */
.it-audit-metrics {
  background: linear-gradient(90deg, rgba(6,57,112,0.9), rgba(11,26,43,0.95));
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.metrics-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.metric h3 {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #4fe1d0, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  animation: glowPulse 3s ease-in-out infinite;
}

.metric p {
  font-size: 1rem;
  color: #d0e4ff;
  letter-spacing: 0.3px;
}

@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 6px rgba(79,225,208,0.3); }
  50% { text-shadow: 0 0 16px rgba(79,225,208,0.6); }
}

@media (max-width: 768px){
  .metric h3 { font-size: 2rem; }
  .metric p { font-size: 0.9rem; }
}

/* === ICON ANIMATION === */
.tabs .tab svg {
  margin-right: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.tabs .tab:hover svg,
.tabs .tab.active svg {
  animation: iconPulse 1.6s infinite ease-in-out;
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(79, 225, 208, 0.6));
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 6px rgba(79, 225, 208, 0.5));
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px rgba(79, 225, 208, 0.9));
  }
}


/* === AI Governance + Automation Layer SECTION ONE === */
.ai-gov-section {
  background: radial-gradient(800px at 50% 20%, #0e5ab4 0%, transparent 60%),
              linear-gradient(180deg, #0b1220 0%, #0b1a2b 100%);
  color: #e6f1ff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.ai-gov-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.ai-gov-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  background: linear-gradient(90deg, #4fe1d0, #84b9ff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.ai-gov-left .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 560px;
  color: #d6e6ff;
}

.ai-gov-points {
  margin-top: 32px;
  list-style: none;
  padding: 0;
}

.ai-gov-points li {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.pulse-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 12px;
  background: #4fe1d0;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0px 0 rgba(79,225,208,0.6); }
  50% { box-shadow: 0 0 10px 4px rgba(79,225,208,0.3); }
}

/* RIGHT SIDE */
.ai-illustration {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.ai-core {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #4fe1d0 0%, #0e5ab4 70%);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(79,225,208,0.6);
}

.gear {
  position: absolute;
  border: 2px solid rgba(79,225,208,0.4);
  border-radius: 50%;
  animation: rotateGear 12s linear infinite;
}

.gear1 {
  width: 220px;
  height: 220px;
  animation-duration: 14s;
}

.gear2 {
  width: 300px;
  height: 300px;
  animation-duration: 20s;
  animation-direction: reverse;
  border-color: rgba(14,90,180,0.5);
}

@keyframes rotateGear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.scanline {
  position: absolute;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4fe1d0, transparent);
  animation: scanSweep 5s linear infinite;
}

@keyframes scanSweep {
  from { transform: translateY(-160px); }
  to { transform: translateY(160px); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .ai-gov-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ai-gov-left .lead {
    margin: 0 auto;
  }
}

/* ===================== SECTION TWO ===================== */
.audit-tabs {
  width: 100%;
  padding: 80px 10%;
  text-align: center;
}

.audit-tabs-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #d6e6ff;
  letter-spacing: 1.5px;
}

.audit-tabs-header p {
  max-width: 700px;
  margin: 10px auto 40px;
  color: rgba(255,255,255,.6);
  font-size: 1.1rem;
}

.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab {
  position: relative;
  background: none;
  border: none;
  font-size: 1rem;
  padding: 10px 20px;
  color: #4fe1d0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.tab img {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  transition: transform 0.3s;
}

.tab:hover img {
  transform: scale(1.15);
}

.tab.active {
  color: #1f6b3a;
}

.tab-underline {
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 120px;
  background: linear-gradient(90deg, #063970, #4FE1D0);
  border-radius: 3px;
  transition: all 0.4s ease;
}

.tab-content {
  display: none;
  animation: fadeIn 0.6s ease;
  max-width: 800px;
  margin: 0 auto;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 1.8rem;
  color: #dfe9ff;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}

.tab-content p {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@media(max-width:768px) {
  .tabs { gap: 15px; }
  .tab img { width: 22px; height: 22px; }
  .tab-content h3 { font-size: 1.5rem; }
}




/* ========== SECTION THREE  ========== */
    .iac-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 56px;
    color: aliceblue;
    background: radial-gradient(1200px 600px at 20% -10%, #0e5ab4 0%, transparent 50%), radial-gradient(1000px 500px at 100% 0%, #0a3970 0%, transparent 60%), linear-gradient(180deg, var(--primary), #082f59);
}
.iac-hero .grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
}
@media (max-width:980px) {
    .iac-hero .grid {
        grid-template-columns: 1fr;
    }
}

.copy .badge {
  padding: 10px 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.copy h1 {
  letter-spacing: 2px;
  padding: 1rem 0;
}
.iac-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 0;
}
.iac-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    font-weight: 700;
    margin-top: 1rem;
}
.iac-spot {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(180deg,#7cd2ff,#58e0ae);
    color: #0b1220;
    font-weight: 800;
    font-size: 0.8rem;
}

/* ===================== SECTION FOUR ===================== */
.audit-standards-strip{
  width:min(1100px, 90%);
  margin:0 auto;
  padding:24px 0;
  background:#0b141f;
  overflow:hidden;
  position:relative;
}

.audit-standards-track{
  display:flex;
  gap:50px;
  white-space:nowrap;
  animation:auditMarq 28s linear infinite;
}

.audit-standards-track span{
  color:rgba(255,255,255,.6);
  font-size:.9rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.audit-standards-strip-wrapper{
  width:100%;
  background:#0b141f;
  padding:0 0 24px;    /* only bottom padding */
}

.audit-standards-strip{
  width:min(1100px,90%);
  margin:0 auto;
  overflow:hidden;
  position:relative;
}

#it-audit-governance-v3{
  margin-top:0 !important;
  padding-top:40px; /* adjust if needed */
}


@keyframes auditMarq{
  from{ transform:translateX(0); }
  to  { transform:translateX(-50%); }
}

.itgov3{
  position:relative;
  padding:120px 0 160px;
  color:#dfe9ff;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(14,80,160,.25), transparent 60%),
    radial-gradient(1200px 700px at 100% 0%, rgba(0,220,190,.14), transparent 60%),
    linear-gradient(180deg,#08131d 0%,#0a1a28 65%,#0b1d2e 100%);
  overflow:hidden;
} 

/* METRICS STRIP  */
.itgov3-metrics{
  display:flex;
  justify-content:center;
  gap:70px;
  margin-bottom:70px;
  text-align:center;
  margin-top: 4rem;
}
.itgov3-metrics strong{
  font-size:2.2rem;
  font-weight:800;
  color:#fff;
}
.itgov3-metrics span{
  font-size:.9rem;
  opacity:.7;
  letter-spacing:2px !important;
  margin-left: .2rem;
}

.itgov3-inner{
  display:flex;
  align-items:center;
  gap:70px;
  width:min(1250px,90%);
  margin-inline:auto;
}

/* GEOMETRIC BLOCK CLUSTER */
.itgov3-blocks{
  flex:1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  min-height:420px;
  position:relative;
}
.itgov3-blocks .blk{
  aspect-ratio: 1/0.65;
  border-radius:14px;
  background:linear-gradient(135deg,#32e0c4,#2b8be1);
  filter:drop-shadow(0 18px 40px rgba(0,0,0,.45));
  opacity:.85;
  transform:translateZ(0);
}

/* --- 4–BLOCK GLASS CLUSTER (replaces old 9–grid) --- */

.itgov3-blocks.glass4{
  flex:1;
  position:relative;
  min-height:480px;
}

/* shape & size */
.itgov3-blocks.glass4 .blk{
  position:absolute;
  width:200px;
  height:140px;
  border-radius:16px; /* S2 */
  backdrop-filter: blur(18px) saturate(180%);
  background:linear-gradient(145deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,.05) 100%);
  border:1px solid rgba(255,255,255,.24);
  box-shadow:
    0 18px 45px rgba(0,0,0,.45),
    inset 0 0 24px rgba(255,255,255,.25);
  animation: pulseGlass 4.8s ease-in-out infinite alternate;
  transform:translateZ(0);
}

/* breathing pulse */
@keyframes pulseGlass{
  0%{ transform:scale(1) translateZ(0); opacity:.9; }
  100%{ transform:scale(1.04) translateZ(0); opacity:1; }
}

/* --- STAGGER POSITIONS (desktop) --- */
.itgov3-blocks.glass4 .b-a{ top:4%;    left:14%; }
.itgov3-blocks.glass4 .b-b{ top:32%;   right:10%; }
.itgov3-blocks.glass4 .b-c{ bottom:22%; left:6%; }
.itgov3-blocks.glass4 .b-d{ bottom:-4%; right:18%; }

/* --- RESPONSIVE LAYOUT --- */
@media(max-width:1000px){
  .itgov3-inner{flex-direction:column;}
  .itgov3-blocks.glass4{min-height:380px; order:2;}
  .itgov3-copy{order:1; text-align:center;}
}

@media(max-width:700px){
  .itgov3-blocks.glass4 .blk{
    width:160px;
    height:110px;
  }
}

@media(max-width:480px){
  .itgov3-blocks.glass4{
    min-height:360px;
  }
  .itgov3-blocks.glass4 .b-a{ top:2%; left:50%; transform:translateX(-50%); }
  .itgov3-blocks.glass4 .b-b{ top:32%; left:50%; transform:translateX(-50%); }
  .itgov3-blocks.glass4 .b-c{ top:62%; left:50%; transform:translateX(-50%); }
  .itgov3-blocks.glass4 .b-d{ top:82%; left:50%; transform:translateX(-50%); }
}


/* ========= BLUVEIT CTA SECTION ============= */
.itgov3-copy{
  flex:1;
  max-width:560px;
}
.itgov3-copy h2{
  font-size:clamp(1.9rem,2.5vw + 1rem,3.4rem);
  font-weight:800;
  line-height:1.25;
  margin:0 0 22px;
  letter-spacing: 1.5px;
}
.itgov3-copy ul{
  list-style:none;
  margin:0 0 26px;
  padding:0;
}
.itgov3-copy li{
  margin-bottom:14px;
  font-size:1.05rem;
  line-height:1.55;
  color:#b9c8e6;
  letter-spacing: 2px;
}
.itgov3-copy .closing{
  font-size:1rem;
  opacity:.7;
}

/* === Vertical glowing divider between left + right === */
.itgov3-inner{
  position:relative;
}
.itgov3-inner::after{
  content:"";
  position:absolute;
  left:53%;
  top:0;
  bottom:0;
  width:4px;
  transform:translateX(-50%);
  background:linear-gradient(to bottom, transparent,#32e0c4,transparent);
  opacity:.55;
  filter:blur(2px);
  pointer-events:none;
}

/* ==== FORCE COMPLIANCE MARQUEE FULL WIDTH ==== */
.compliance-marquee.compact{
  position:relative !important;
  width:100vw !important;
  max-width:100vw !important;
  left:50% !important;
  transform:translateX(-50%) !important;
  margin:0 !important;
  padding:26px 0 !important;
  background:#0b141f !important;
  border-bottom:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  z-index:50;
}


/* === IN-PLACE Glow Pulse on Blocks (inner gradient) === */
.itgov3-blocks .blk{
  animation:blockPulse 4s ease-in-out infinite alternate;
}
@keyframes blockPulse{
  0%{ background:linear-gradient(135deg,#32e0c4,#2b8be1); }
  100%{ background:linear-gradient(135deg,#3ff2d7,#4b9cf5); }
}


/* ===================== REVEAL ===================== */
.reveal{opacity:0; transform:translateY(40px); transition:.7s ease}
.reveal.in{opacity:1; transform:none}

@media(max-width:900px){
  .itgov3-inner{flex-direction:column}
  .itgov3-copy{text-align:center}
  .itgov3-copy ul{text-align:left; display:inline-block}
}

.itgov3-blocks.glass4{
  perspective:1200px;
  transform-style:preserve-3d;
}


    /* **********EMBED PAGE NAIGATION************* */
#bluveit-services-nav {
  --bsn-blue: #1A4BFF;
  --bsn-blue-dark: #070F3A;
  --bsn-blue-mid: #0D2FB5;
  --bsn-cyan: #00D4FF;
  --bsn-white: #ffffff;
  --bsn-off: rgba(255,255,255,0.06);
  --bsn-border: rgba(255,255,255,0.1);
  --bsn-text-dim: rgba(255,255,255,0.45);
  --bsn-text-mid: rgba(255,255,255,0.7);
  /* 
  font-family: 'DM Sans', sans-serif; */
}



.bluveit-service-nav {
      background: var(--ink2);
      padding: 8rem 8vw;
      border-top: 0.5px solid rgba(0,0,0,0.4);
      display: grid;
      gap: 6vw;
      position: relative;
      overflow: hidden;
    }
 
    /* Faint green grid */
    .bluveit-service-nav::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(61,220,132,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,220,132,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      z-index: 0;
      pointer-events: none;
    }

.bsn-info-nav {
    width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
    padding: 5rem 0;
}
 
/* ── SECTION LABEL ─────────────────────────────────────── */
.bsn-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bsn-cyan);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  
}
.bsn-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--bsn-cyan);
  opacity: 0.6;
}
 
/* ── CATEGORY TABS ─────────────────────────────────────── */
.bsn-cat-tabs {
  display: flex;
  gap: 2px;
  background: #021a24;
  border: 1px solid var(--bsn-border);
  padding: 4px;
  border-radius: 4px;
  margin-bottom: 2px;
  flex-wrap: wrap;
}
 
.bsn-cat-tab {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: background 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
 
.bsn-cat-tab:hover {
  background: rgba(44, 50, 69, 0.15);
  color: #0D2FB5 !important;
}
 
.bsn-cat-tab.active {
  background: #052a52;
  color: #0D2FB5;
}
 
.bsn-cat-tab.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: var(--bsn-blue) transparent transparent transparent;
}
 
.bsn-cat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  color: #C86E1A;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: color 0.2s;
}
 
.bsn-cat-tab.active .bsn-cat-num {
  color: rgba(255,255,255,0.6);
}
 
.bsn-cat-name {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.2;
  transition: color 0.2s;
  letter-spacing: 1.2px;
  padding: .5rem 0;
}
 
.bsn-cat-tab.active .bsn-cat-name {
  color: snow;
}
 
.bsn-cat-tab:hover .bsn-cat-name {
  color: #fff;
}
 
.bsn-cat-count {
  font-size: 14px;
  color: #60a5fa;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
 
.bsn-cat-tab.active .bsn-cat-count {
  color: 
#C86E1A;
}
 
/* ── PANEL ─────────────────────────────────────────────── */
.bsn-panels {
  background: var(--ink3);
  border: 1px solid var(--bsn-border);
  border-top: none;
  position: relative;
  overflow: hidden;
}
 
.bsn-panel {
  display: none;
  padding: 0;
}
 
.bsn-panel.active {
  display: block;
}
 
/* ── PANEL HEADER ──────────────────────────────────────── */
.bsn-panel-header {
  padding: 3rem 2.5rem 2.5rem;
  border-bottom: 1px solid var(--bsn-border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
 
.bsn-panel-header::before {
  content: attr(data-bg-word);
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: rgba(124, 149, 240, 0.06);
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.04em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
 
.bsn-panel-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  color: #fff;
  line-height: 1.1;
}
 
.bsn-panel-title em {
  font-style: italic;
  color: var(--bsn-cyan);
}
 
.bsn-panel-desc {
  font-size: 14px;
  font-weight: 300;
  color: snow;
  line-height: 1.6;
  max-width: 600px;
  margin-top: 10px;
  letter-spacing: 1.2px;
}
 
.bsn-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bsn-cyan);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.2s;
}
 
.bsn-all-link:hover {
  gap: 12px;
}
 
.bsn-all-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--bsn-cyan);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}
 
.bsn-all-link:hover svg {
  transform: translateX(3px);
}
 
/* ── SUB-SERVICE TABS ──────────────────────────────────── */
.bsn-sub-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--bsn-border);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: 2rem;
}
 
.bsn-sub-tabs::-webkit-scrollbar { display: none; }
 
.bsn-sub-tab {
  padding: 14px 22px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: snow;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  position: relative;
  flex-shrink: 0;
  letter-spacing: 1px;
}
 
.bsn-sub-tab:hover {
  color: var(--bsn-white);
  background: rgba(255,255,255,0.04);
}
 
.bsn-sub-tab.active {
  color: var(--bsn-cyan);
  border-bottom-color: var(--bsn-cyan);
  background: rgba(0,212,255,0.05);
}
 
/* ── SUB-SERVICE CONTENT ───────────────────────────────── */
.bsn-sub-panels {
  padding: 2rem 2.5rem;
}
 
.bsn-sub-panel {
  display: none;
  animation: bsnFadeUp 0.35s ease forwards;
}
 
.bsn-sub-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
 
@keyframes bsnFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
 
.bsn-sub-info {}
 
.bsn-sub-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2vw, 26px);
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  letter-spacing: 1.2px;
}
 
.bsn-sub-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--bsn-text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  letter-spacing: 1.2px;
}
 
.bsn-sub-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C86E1A;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
   font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}
 
.bsn-sub-cta:hover {
  background: var(--bsn-cyan);
  color: var(--bsn-blue-dark);
  transform: translateY(-2px);
}
 
.bsn-sub-cta-arrow {
  font-size: 14px;
  transition: transform 0.2s;
}
 
.bsn-sub-cta:hover .bsn-sub-cta-arrow {
  transform: translateX(3px);
}
 
/* ── SIBLING SERVICES ──────────────────────────────────── */
.bsn-siblings {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.bsn-sibling-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bsn-border);
}
 
.bsn-sibling-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
  border-radius: 2px;
    font-family: 'Cormorant Garamond', serif;
  text-decoration: none;
  letter-spacing: 1.2px;
  color: snow;
  font-size: 13px;
  font-weight: 400;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
 
.bsn-sibling-link:hover,
.bsn-sibling-link.current {
  background: rgba(32, 125, 231, 0.15);
  border-color: rgba(26,75,255,0.4);
  color: #fff;
}
 
.bsn-sibling-link.current {
  border-color: var(--bsn-cyan);
  background: rgba(0,212,255,0.08);
  color: var(--bsn-cyan);
  cursor: default;
}
 
.bsn-sibling-arrow {
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
 
.bsn-sibling-link:hover .bsn-sibling-arrow {
  opacity: 1;
  transform: translateX(3px);
}
 
.bsn-sibling-link.current .bsn-sibling-arrow {
  opacity: 1;
  content: '●';
}
 
/* ── BOTTOM BAR ────────────────────────────────────────── */
.bsn-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  border-top: 1px solid var(--bsn-border);
  background: rgba(0,0,0,0.2);
}
 
.bsn-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}
 
.bsn-breadcrumb a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
 
.bsn-breadcrumb a:hover { color: var(--bsn-cyan); }
 
.bsn-breadcrumb .sep { opacity: 0.4; }
 
.bsn-breadcrumb .current {
  color: var(--bsn-cyan);
}
 
.bsn-quick-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
 
.bsn-qnav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: transparent;
  border: 1px solid var(--bsn-border);
  border-radius: 2px;
  color: var(--bsn-text-dim);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
 
.bsn-qnav-btn:hover {
  background: rgba(26,75,255,0.15);
  border-color: rgba(26,75,255,0.5);
  color: #fff;
}
 
.bsn-qnav-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
 
.bsn-qnav-divider {
  width: 1px;
  height: 16px;
  background: var(--bsn-border);
}
 
/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
  .bsn-sub-panel.active {
    grid-template-columns: 1fr;
  }
  .bsn-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .bsn-panel-header::before {
    font-size: 70px;
  }
  .bsn-sub-panels {
    padding: 1.5rem;
  }
  .bsn-bottom-bar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 1rem 1.5rem;
  }
  .bsn-cat-tab {
    min-width: 140px;
  }
}
 
/* ── PAGE DEMO WRAPPER ─────────────────────────────────── */
.demo-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.demo-note span {
  background: rgba(26,75,255,0.3);
  border: 1px solid rgba(26,75,255,0.5);
  padding: 2px 10px;
  border-radius: 2px;
  color: #00D4FF;
  font-size: 11px;
}
/* **********EMBED PAGE NAIGATION ENDS************* */

/* ============ RESPONSIVE REFINEMENTS ============ */

/* Tablets */
@media (max-width: 992px){
  .audit-standards-strip{
    width:92%;
  }
  .audit-standards-track{
    gap:36px;
  }
  .audit-standards-track span{
    font-size:.8rem;
  }
}

/* Mobile phones */
@media (max-width: 600px){
  .audit-standards-strip-wrapper{
    padding:0 0 18px;
  }
  .audit-standards-strip{
    width:94%;
  }
  .audit-standards-track{
    gap:28px;
    animation-duration: 38s;  /* slow down on small screens */
  }
  .audit-standards-track span{
    font-size:.72rem;
    letter-spacing:.03em;
  }
}

/* Extra tiny screens */
@media (max-width: 420px){
  .audit-standards-track{
    gap:20px;
    animation-duration: 45s; /* slower for clarity */
  }
  .audit-standards-track span{
    font-size:.68rem;
  }
}






