:root {
      --gold:       #C9A84C;
      --gold-light: #F0D080;
      --gold-dark:  #8B6914;
      --navy:       #0D1B2A;
      --navy-mid:   #142232;
      --navy-soft:  #1C2E42;
      --text-light: #E8D9B5;
      --text-muted: #8FA3B8;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Noto Sans Bengali', sans-serif; background: var(--navy); color: #fff; overflow-x: hidden; }
    h1,h2,h3,h4,h5,h6 { font-family: 'Noto Serif Bengali', serif; }

    /* TICKER */
    .ticker-bar { background: var(--navy-mid); border-bottom: 1px solid rgba(201,168,76,0.15); font-size: .8rem; color: var(--text-muted); padding: 6px 0; overflow: hidden; }
    .ticker-inner { display: flex; gap: 40px; animation: tickerScroll 30s linear infinite; white-space: nowrap; }
    .ticker-item { display: flex; gap: 8px; align-items: center; }
    .ticker-item .label { color: var(--text-muted); }
    .ticker-item .value { color: var(--gold-light); font-weight: 600; }
    .ticker-item .up   { color: #4ade80; }
    .ticker-item .down { color: #f87171; }
    @keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* NAVBAR */
    .navbar { background: rgba(13,27,42,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 14px 0; position: sticky; top: 0; z-index: 1000; }
    .navbar-brand { font-family: 'Noto Serif Bengali', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold) !important; letter-spacing: .5px; }
    .navbar-brand span { color: #fff; }
    .nav-link { color: var(--text-light) !important; font-size: .92rem; font-weight: 500; padding: 6px 14px !important; transition: color .2s; }
    .nav-link:hover  { color: var(--gold) !important; }
    .nav-link.active { color: var(--gold) !important; }
    .btn-nav-login { border: 1.5px solid var(--gold); color: var(--gold); border-radius: 6px; padding: 6px 18px; font-size: .88rem; font-weight: 600; transition: all .25s; background: transparent; }
    .btn-nav-login:hover { background: var(--gold); color: var(--navy); }
    .btn-nav-reg { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); border: none; border-radius: 6px; padding: 6px 18px; font-size: .88rem; font-weight: 700; transition: opacity .25s; }
    .btn-nav-reg:hover { opacity: .85; color: var(--navy); }

    /* PAGE HERO */
    .page-hero { background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(201,168,76,0.11) 0%, transparent 65%), var(--navy); padding: 80px 0 70px; text-align: center; position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(201,168,76,0.05) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
    .breadcrumb-nav { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--text-muted); margin-bottom: 18px; }
    .breadcrumb-nav a { color: var(--gold); text-decoration: none; }
    .breadcrumb-nav a:hover { text-decoration: underline; }
    .page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.25; }
    .gold-text { background: linear-gradient(90deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .page-hero p { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.8; }

    /* SHARED */
    .gold-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .2; }
    .section-label { font-size: .78rem; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
    .section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; color: #fff; line-height: 1.3; }
    .section-title .gold { color: var(--gold); }

    /* ANIMATIONS */
    .fade-up { opacity: 0; transform: translateY(26px); transition: opacity .55s ease, transform .55s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: .1s; } .delay-2 { transition-delay: .2s; }
    .delay-3 { transition-delay: .3s; } .delay-4 { transition-delay: .4s; }
    .delay-5 { transition-delay: .5s; }

    /* MVV CARDS */
    .mvv-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 18px; padding: 32px 28px; height: 100%; position: relative; overflow: hidden; transition: all .3s; }
    .mvv-card:hover { border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.04); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(201,168,76,0.09); }
    .mvv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); opacity: 0; transition: opacity .3s; }
    .mvv-card:hover::before { opacity: 1; }
    .mvv-icon { width: 58px; height: 58px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
    .mvv-card h4 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
    .mvv-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.8; margin: 0; }

    /* STORY */
    .story-text p { font-size: .95rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 18px; }
    .story-text p:last-child { margin-bottom: 0; }
    .story-highlight { background: rgba(201,168,76,0.08); border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 24px 0; font-size: .92rem; color: var(--text-light); line-height: 1.75; font-style: italic; }

    /* TIMELINE */
    .timeline-item { display: flex; gap: 20px; padding-bottom: 28px; position: relative; }
    .timeline-item::before { content: ''; position: absolute; left: 19px; top: 42px; bottom: 0; width: 1px; background: rgba(201,168,76,0.2); }
    .timeline-item:last-child::before { display: none; }
    .tl-dot { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; color: var(--navy); font-family: 'Noto Serif Bengali', serif; box-shadow: 0 2px 12px rgba(201,168,76,0.3); }
    .tl-body h6 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
    .tl-body p  { font-size: .83rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

    /* STATS */
    .stats-strip { background: var(--navy-soft); padding: 60px 0; }
    .stat-box { text-align: center; padding: 10px; }
    .stat-box .num { font-size: 2.3rem; font-weight: 700; font-family: 'Noto Serif Bengali', serif; color: var(--gold); }
    .stat-box .desc { font-size: .85rem; color: var(--text-muted); margin-top: 5px; }

    /* PILLARS */
    .pillar-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 24px 22px; transition: all .28s; }
    .pillar-card:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); transform: translateY(-3px); }
    .pillar-card .p-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
    .pillar-card h6 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
    .pillar-card p  { font-size: .84rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

    /* TEAM */
    .team-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 18px; padding: 30px 24px; text-align: center; transition: all .3s; }
    .team-card:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); transform: translateY(-5px); box-shadow: 0 16px 44px rgba(201,168,76,0.1); }
    .team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--navy-soft)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 16px; border: 2px solid rgba(201,168,76,0.3); }
    .team-card h5   { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
    .team-card .role { font-size: .8rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; letter-spacing: .5px; }
    .team-card p    { font-size: .83rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 16px; }
    .team-social a  { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: .85rem; text-decoration: none; transition: all .2s; }
    .team-social a:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); color: var(--gold); }

    /* CERT */
    .cert-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 22px 20px; display: flex; align-items: center; gap: 16px; transition: all .25s; }
    .cert-card:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.05); }
    .cert-icon { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
    .cert-card h6 { font-size: .92rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
    .cert-card p  { font-size: .8rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

    /* PARTNERS */
    .partner-badge { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 18px 22px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: all .25s; }
    .partner-badge:hover { border-color: rgba(201,168,76,0.25); background: rgba(201,168,76,0.04); }
    .partner-badge .pb-icon { font-size: 1.6rem; }
    .partner-badge .pb-name { font-size: .82rem; color: var(--text-muted); font-weight: 600; }

    /* CTA */
    .cta-section { padding: 100px 0; text-align: center; background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%), var(--navy); }
    .btn-hero-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--navy); font-weight: 700; font-size: 1rem; border: none; border-radius: 8px; padding: 13px 32px; box-shadow: 0 4px 24px rgba(201,168,76,0.3); transition: all .25s; text-decoration: none; display: inline-block; }
    .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.45); color: var(--navy); }
    .btn-hero-ghost { border: 1.5px solid rgba(201,168,76,0.4); color: var(--gold-light); background: transparent; border-radius: 8px; padding: 13px 28px; font-size: 1rem; font-weight: 600; transition: all .25s; text-decoration: none; display: inline-block; }
    .btn-hero-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.07); }

    /* FOOTER */
    footer { background: #080F17; border-top: 1px solid rgba(201,168,76,0.15); padding: 60px 0 24px; }
    .footer-brand { font-family: 'Noto Serif Bengali', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
    .footer-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; }
    .footer-heading { font-size: .8rem; font-weight: 700; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
    .footer-link { display: block; font-size: .85rem; color: var(--text-muted); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
    .footer-link:hover { color: var(--gold); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 48px; padding-top: 22px; font-size: .8rem; color: var(--text-muted); }
    .social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: .95rem; transition: all .2s; text-decoration: none; }
    .social-btn:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); color: var(--gold); }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }