<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy:   #0D1B2A;
    --navy2:  #162032;
    --ivory:  #F7F3EE;
    --amber:  #F5A623;
    --amber2: #E8931A;
    --slate:  #4A5568;
    --mid:    #7B8794;
    --white:  #FFFFFF;
    --border: #E8E2DA;
    --r: 10px;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ivory);
    color: var(--navy);
    line-height: 1.65;
  }

  /* ── NAV ── */
  .bca-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 72px;
    background: rgba(13,27,42,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245,166,35,0.15);
  }
  .bca-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif;
    color: var(--white); font-size: 1.1rem; font-weight: 700;
    text-decoration: none;
  }
  .bca-brand .crown {
    width: 34px; height: 34px; background: var(--amber);
    border-radius: 6px; display: flex; align-items: center;
    justify-content: center; font-size: 18px;
  }
  .bca-nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .bca-nav-links a {
    color: rgba(255,255,255,0.75); text-decoration: none;
    font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .bca-nav-links a:hover { color: var(--amber); }
  .bca-nav-cta {
    background: var(--amber) !important; color: var(--navy) !important;
    font-weight: 700 !important; padding: 9px 22px;
    border-radius: 6px; transition: background 0.2s !important;
  }
  .bca-nav-cta:hover { background: var(--amber2) !important; }
  .bca-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .bca-hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; display: block; }

  /* ── HERO ── */
  .bca-hero {
    position: relative; min-height: 100vh;
    background: var(--navy); display: flex; align-items: center; overflow: hidden;
  }
  .bca-hero-bg {
    position: absolute; inset: 0;
    background-image: url('{{ asset("assets/images/slide04.jpg") }}');
    background-size: cover; background-position: center;
    opacity: 0.35;
  }
  .bca-hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(245,166,35,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245,166,35,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .bca-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(13,27,42,0.92) 50%, rgba(13,27,42,0.4) 100%);
  }
  .bca-hero-inner {
    position: relative; z-index: 2;
    width: 90%; max-width: 1200px; margin: 0 auto;
    padding: 140px 0 100px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .bca-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3);
    border-radius: 100px; padding: 6px 16px; color: var(--amber);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 28px;
  }
  .bca-eyebrow span { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; }
  .bca-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900;
    color: var(--white); line-height: 1.15; margin-bottom: 24px;
  }
  .bca-hero h1 em { font-style: normal; color: var(--amber); }
  .bca-hero-desc {
    color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 480px; margin-bottom: 40px;
  }
  .bca-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .bca-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--amber); color: var(--navy);
    font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.95rem;
    padding: 14px 28px; border-radius: var(--r); text-decoration: none;
    border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
  }
  .bca-btn-primary:hover { background: var(--amber2); transform: translateY(-2px); color: var(--navy); }
  .bca-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem;
    padding: 13px 28px; border-radius: var(--r); text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3); cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }
  .bca-btn-ghost:hover { border-color: var(--amber); background: rgba(245,166,35,0.08); color: var(--white); }

  /* Hero chessboard */
  .bca-hero-visual { display: flex; justify-content: center; align-items: center; }
  .bca-chessboard-wrap { position: relative; }
  .bca-chessboard {
    display: grid; grid-template-columns: repeat(8, 48px); grid-template-rows: repeat(8, 48px);
    border: 3px solid rgba(245,166,35,0.5); border-radius: 8px; overflow: hidden;
    box-shadow: 0 0 60px rgba(245,166,35,0.2), 0 40px 80px rgba(0,0,0,0.6);
  }
  .bca-sq { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 26px; }
  .bca-sq.light { background: #C8A97A; }
  .bca-sq.dark  { background: #5C3D1E; }
  .bca-board-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--amber); color: var(--navy);
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.8rem;
    padding: 10px 18px; border-radius: 8px; white-space: nowrap;
    box-shadow: 0 8px 24px rgba(245,166,35,0.35);
  }
  .bca-board-badge strong { font-size: 1.3rem; display: block; }

  /* ── STATS STRIP ── */
  .bca-stats { background: var(--navy2); border-top: 1px solid rgba(245,166,35,0.15); border-bottom: 1px solid rgba(245,166,35,0.15); }
  .bca-stats-inner {
    width: 90%; max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .bca-stat {
    padding: 44px 40px; border-right: 1px solid rgba(245,166,35,0.1); text-align: center;
  }
  .bca-stat:last-child { border-right: none; }
  .bca-stat-num {
    font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900;
    color: var(--amber); line-height: 1; margin-bottom: 6px;
  }
  .bca-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; }

  /* ── SHARED SECTION ── */
  .bca-section { padding: 100px 0; }
  .bca-container { width: 90%; max-width: 1200px; margin: 0 auto; }
  .bca-section-eyebrow {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--amber); margin-bottom: 12px;
  }
  .bca-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700;
    color: var(--navy); line-height: 1.2; margin-bottom: 16px;
  }
  .bca-section-sub { color: var(--slate); font-size: 1rem; max-width: 560px; }
  .bca-section-header { margin-bottom: 60px; }
  .bca-section-header.centered { text-align: center; }
  .bca-section-header.centered .bca-section-sub { margin: 0 auto; }

  /* ── FEATURES ── */
  .bca-features { background: var(--ivory); }
  .bca-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .bca-feature-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r); padding: 36px 28px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    text-align: center; text-decoration: none; color: inherit; display: block;
  }
  .bca-feature-card:hover {
    border-color: var(--amber); box-shadow: 0 12px 40px rgba(245,166,35,0.12);
    transform: translateY(-4px); color: inherit;
  }
  .bca-feature-icon {
    width: 60px; height: 60px; background: rgba(245,166,35,0.1);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 28px; margin: 0 auto 20px;
  }
  .bca-feature-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.05rem;
    font-weight: 700; color: var(--navy); margin-bottom: 10px;
  }
  .bca-feature-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.6; }
  .bca-feature-more {
    display: inline-block; margin-top: 16px;
    background: var(--navy); color: var(--white);
    font-size: 0.78rem; font-weight: 600; padding: 6px 18px;
    border-radius: 100px; text-decoration: none;
    transition: background 0.2s;
  }
  .bca-feature-more:hover { background: var(--amber); color: var(--navy); }

  /* ── ABOUT ── */
  .bca-about { background: var(--white); }
  .bca-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .bca-about-img-wrap { position: relative; }
  .bca-about-img {
    width: 100%; border-radius: 14px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(13,27,42,0.15);
  }
  .bca-about-img img { width: 100%; height: auto; display: block; }
  .bca-about-accent {
    position: absolute; bottom: -24px; left: -24px;
    width: 140px; height: 140px; background: var(--amber);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; flex-direction: column;
    font-family: 'Playfair Display', serif; font-weight: 900;
    font-size: 0.9rem; color: var(--navy); text-align: center; line-height: 1.3;
    box-shadow: 0 12px 32px rgba(245,166,35,0.3);
  }
  .bca-about-accent strong { font-size: 2.4rem; display: block; line-height: 1; }
  .bca-about-list { list-style: none; margin: 28px 0 36px; }
  .bca-about-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid var(--border);
    font-size: 0.93rem; color: var(--slate);
  }
  .bca-about-list li::before { content: '♟'; color: var(--amber); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
  .bca-btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
  .bca-btn-dark {
    display: inline-flex; align-items: center;
    background: var(--navy); color: var(--white);
    font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.9rem;
    padding: 13px 28px; border-radius: var(--r); text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .bca-btn-dark:hover { background: #1a3350; color: var(--white); transform: translateY(-2px); }
  .bca-btn-outline {
    display: inline-flex; align-items: center;
    background: transparent; color: var(--navy);
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
    padding: 12px 28px; border-radius: var(--r); text-decoration: none;
    border: 1px solid rgba(13,27,42,0.25); transition: border-color 0.2s, background 0.2s;
  }
  .bca-btn-outline:hover { border-color: var(--amber); background: rgba(245,166,35,0.07); color: var(--navy); }

  /* ── STATS + IMAGES BAND ── */
  .bca-band { background: var(--navy); overflow: hidden; }
  .bca-band-inner {
    width: 90%; max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center;
    padding: 80px 0;
  }
  .bca-band-counters { display: flex; flex-direction: column; gap: 0; }
  .bca-counter-item { padding: 36px 0; border-bottom: 1px solid rgba(245,166,35,0.15); }
  .bca-counter-item:last-child { border-bottom: none; }
  .bca-counter-num {
    font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900;
    color: var(--amber); line-height: 1;
  }
  .bca-counter-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 6px; }
  .bca-band-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .bca-band-images img { width: 100%; border-radius: 10px; object-fit: cover; height: 220px; }

  /* ── COURSES ── */


.bca-programs{

    background:#0f1117;
    padding:120px 0;
}

.bca-programs .bca-section-title span{

    color:var(--amber);
}

.program-list{

    margin-top:70px;
}

.program-item{

    display:grid;
    grid-template-columns:80px 260px 1fr 60px;

    align-items:center;

    gap:45px;

    padding:45px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    position:relative;

    transition:.45s;
}

.program-item::before{

    content:'';

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:100%;

    background:linear-gradient(90deg,
        rgba(245,166,35,.12),
        transparent);

    transition:.5s;
}

.program-item:hover::before{

    width:100%;
}

.program-number{

    font-size:55px;

    font-weight:700;

    color:rgba(255,255,255,.08);

    transition:.4s;
}

.program-item:hover .program-number{

    color:var(--amber);

    transform:translateX(10px);
}

.program-image{

    overflow:hidden;

    border-radius:14px;
}

.program-image img{

    width:100%;

    height:180px;

    object-fit:cover;

    transition:.6s;
}

.program-item:hover img{

    transform:scale(1.08);
}

.program-tag{

    display:inline-block;

    color:var(--amber);

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;
}

.program-content h3{

    font-size:34px;

    margin-bottom:14px;
}

.program-content p{

    color:#bbb;

    line-height:1.8;

    max-width:650px;
}

.program-content ul{

    display:flex;

    gap:30px;

    margin-top:22px;

    list-style:none;

    padding:0;

    flex-wrap:wrap;
}

.program-content li{

    color:#ddd;

    font-size:15px;
}

.program-arrow{

    width:54px;

    height:54px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    transition:.35s;
}

.program-item:hover .program-arrow{

    background:var(--amber);

    color:#000;

    transform:rotate(-45deg);
}

@media(max-width:992px){

.program-item{

grid-template-columns:1fr;

gap:25px;

text-align:center;
}

.program-content ul{

justify-content:center;
}

.program-number{

font-size:42px;
}

.program-arrow{

margin:auto;
}

.program-image img{

height:220px;
}

}

  /* ── BLOG ── */
  .bca-blog { background: var(--white); }
  .bca-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .bca-blog-card {
    border: 1px solid var(--border); border-radius: var(--r);
    overflow: hidden; transition: box-shadow 0.25s, transform 0.25s;
    text-decoration: none; display: block; color: inherit;
  }
  .bca-blog-card:hover { box-shadow: 0 16px 48px rgba(13,27,42,0.1); transform: translateY(-4px); color: inherit; }
  .bca-blog-thumb { position: relative; height: 200px; overflow: hidden; }
  .bca-blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
  .bca-blog-card:hover .bca-blog-thumb img { transform: scale(1.04); }
  .bca-blog-cat {
    position: absolute; top: 14px; left: 14px;
    background: var(--amber); color: var(--navy);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
  }
  .bca-blog-body { padding: 24px; }
  .bca-blog-body h3 {
    font-family: 'Playfair Display', serif; font-size: 1.05rem;
    font-weight: 700; color: var(--navy); margin-bottom: 10px;
  }
  .bca-blog-body p { font-size: 0.875rem; color: var(--slate); margin-bottom: 16px; }
  .bca-blog-footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--border); padding-top: 14px;
  }
  .bca-blog-author { font-size: 0.78rem; color: var(--mid); }
  .bca-readmore {
    color: var(--amber); font-size: 0.83rem; font-weight: 600;
    text-decoration: none; border-bottom: 1px solid var(--amber);
  }

  /* ── TESTIMONIALS ── */
  .bca-testimonials { background: var(--ivory); }
  .bca-testi-track { overflow: hidden; position: relative; }
  .bca-testi-grid-wrap {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .bca-testi-card {
    background: var(--white); border: 1px solid var(--border);
    border-left: 4px solid var(--amber); border-radius: var(--r);
    padding: 32px 28px; transition: box-shadow 0.25s;
  }
  .bca-testi-card:hover { box-shadow: 0 12px 36px rgba(13,27,42,0.08); }
  .bca-testi-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
  .bca-testi-quote { font-size: 0.92rem; color: var(--slate); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
  .bca-testi-author { display: flex; align-items: center; gap: 14px; }
  .bca-testi-avatar { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
  .bca-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .bca-testi-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
  .bca-testi-role { font-size: 0.78rem; color: var(--mid); }

  /* ── CTA BANNER ── */
  .bca-cta { background: var(--amber); padding: 80px 0; }
  .bca-cta-inner {
    width: 90%; max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
  }
  .bca-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900;
    color: var(--navy); margin-bottom: 8px;
  }
  .bca-cta p { color: rgba(13,27,42,0.65); font-size: 1rem; }

  /* ── FOOTER ── */
  .bca-footer { background: var(--navy); padding: 70px 0 30px; border-top: 1px solid rgba(245,166,35,0.15); }
  .bca-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
  .bca-footer-brand {
    font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700;
    color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
  }
  .bca-footer-brand .crown { width: 32px; height: 32px; background: var(--amber); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
  .bca-footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; }
  .bca-footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
  .bca-footer-col ul { list-style: none; }
  .bca-footer-col ul li { margin-bottom: 10px; }
  .bca-footer-col ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
  .bca-footer-col ul li a:hover { color: var(--amber); }
  .bca-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .bca-footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .bca-features-grid { grid-template-columns: repeat(2, 1fr); }
    .bca-courses-grid, .bca-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .bca-testi-grid-wrap { grid-template-columns: repeat(2, 1fr); }
    .bca-stats-inner { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .bca-hero-inner, .bca-about-grid, .bca-band-inner, .bca-cta-inner { grid-template-columns: 1fr; }
    .bca-hero-visual { display: none; }
    .bca-about-accent { display: none; }
    .bca-features-grid, .bca-courses-grid, .bca-blog-grid, .bca-testi-grid-wrap { grid-template-columns: 1fr; }
    .bca-footer-grid { grid-template-columns: 1fr 1fr; }
    .bca-nav-links { display: none; }
    .bca-hamburger { display: flex; }
    .bca-band-images { grid-template-columns: 1fr; }
    .bca-cta-inner { flex-direction: column; text-align: center; }
    .bca-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .bca-stat { padding: 28px 20px; }
  }
  @media (max-width: 480px) {
    .bca-footer-grid { grid-template-columns: 1fr; }
    .bca-stats-inner { grid-template-columns: 1fr 1fr; }
  }
  @media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }
  
  <style>
/* ── STATS STRIP — animated counters ── */
/* ── STATS STRIP — animated counters ── */
.bca-stats { overflow: hidden; border-top: 2px solid rgba(245,166,35,0.25); border-bottom: 2px solid rgba(245,166,35,0.25); }
.bca-stat { position: relative; overflow: hidden; cursor: default; transition: background 0.3s; }
.bca-stat::before { content: ''; position: absolute; inset: 0; background: rgba(245,166,35,0); transition: background 0.3s; }
.bca-stat:hover::before { background: rgba(245,166,35,0.07); }
.bca-stat-icon { font-size: 26px; display: block; margin-bottom: 10px; transition: transform 0.3s; }
.bca-stat:hover .bca-stat-icon { transform: scale(1.18) rotate(-6deg); }
.bca-stat-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900; color: var(--amber); line-height: 1; margin-bottom: 6px; display: block; }
 
/* ── COURSES — elevated cards with glow + progress bar ── */
.bca-courses { position: relative; overflow: hidden; }
.bca-courses::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.bca-course-card { position: relative; transition: border-color 0.3s, transform 0.3s; }
.bca-course-card:hover { border-color: var(--amber); transform: translateY(-8px); }
.bca-course-thumb { position: relative; }
.bca-course-thumb-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 70%, rgba(245,166,35,0.2) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.35s;
}
.bca-course-card:hover .bca-course-thumb-glow { opacity: 1; }
.bca-course-thumb img { transition: transform 0.4s; }
.bca-course-card:hover .bca-course-thumb img { transform: scale(1.06); }
.bca-course-meta a { display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.bca-course-card:hover .bca-course-meta a { gap: 8px; }
.bca-cprogress { height: 3px; background: rgba(245,166,35,0.12); margin-top: 14px; border-radius: 2px; overflow: hidden; }
.bca-cprogress-fill { height: 100%; background: var(--amber); border-radius: 2px; width: 0%; transition: width 0.7s ease; }
 
/* ── BAND — staggered images + animated counter bars ── */
.bca-band-img-wrap { position: relative; border-radius: 10px; overflow: hidden; border: 1px solid rgba(245,166,35,0.15); }
.bca-band-img-wrap:first-child { transform: translateY(-14px); }
.bca-band-img-wrap:last-child  { transform: translateY(14px); }
.bca-band-img-wrap img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s; }
.bca-band-img-wrap:hover img { transform: scale(1.05); }
.bca-band-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,0.45) 0%, transparent 60%); }
.bca-counter-bar { height: 2px; background: rgba(245,166,35,0.12); margin-top: 10px; border-radius: 1px; overflow: hidden; }
.bca-counter-bar-fill { height: 100%; background: linear-gradient(90deg, var(--amber), rgba(245,166,35,0.3)); border-radius: 1px; width: 0%; transition: width 1.3s ease; }
.bca-counter-num { display: flex; align-items: baseline; gap: 4px; }
.bca-counter-plus { font-size: 1.6rem; font-weight: 700; color: rgba(245,166,35,0.6);  }
</style>
</style>