/*
Theme Name:   BITS Child
Theme URI:    https://bits.org.bw
Description:  Child theme for the Botswana Information Technology Society website
Author:       BITS Web Team
Template:     astra
Version:      2.4.1
Text Domain:  bits-child
*/

/* =========================================================
   BITS Brand Variables
   Primary:  #003366 (dark navy)
   Accent:   #29ABE2 (bright blue)
   White:    #FFFFFF
   Light BG: #F4F7FA
   Text:     #1A1A2E
========================================================= */

:root {
    --bits-navy:      #003366;
    --bits-blue:      #29ABE2;
    --bits-white:     #FFFFFF;
    --bits-light-bg:  #F4F7FA;
    --bits-text:      #1A1A2E;
    --bits-text-muted:#5A6478;
    --bits-border:    #E0E7EF;
    --bits-font:      'Inter', 'Poppins', sans-serif;
}

/* === Base Typography === */
body {
    font-family: var(--bits-font);
    color: var(--bits-text);
    background-color: var(--bits-white);
    font-size: 16px;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bits-font);
    color: var(--bits-navy);
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--bits-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--bits-navy);
}

/* =============================================
   ASTRA LAYOUT OVERRIDE
   Force full-width layout — remove Astra's
   container constraints so our sections span
   the full viewport width.
   ============================================= */
.bits-site #content.site-content {
    padding: 0 !important;
}
.bits-site #content .ast-container,
.bits-site .ast-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    display: block !important;
}
.bits-site #primary.content-area,
.bits-site .content-area {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    float: none !important;
}
/* Hide any Astra-generated sidebar */
.bits-site aside.widget-area,
.bits-site #secondary {
    display: none !important;
}
/* Remove Astra row/flex wrappers */
.bits-site .ast-row {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* Remove Astra entry content padding */
.bits-site .entry-content,
.bits-site .ast-article-single {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* === Site Header === */
.site-header,
.ast-primary-header-bar,
.main-header-bar {
    background-color: var(--bits-navy) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* Hide site title and tagline — keep only the logo image */
.ast-site-title-wrap,
.site-title,
.site-description {
    display: none !important;
}

/* Logo: show full-colour logo in a clean white badge on the navy header */
.site-branding .custom-logo-link,
a.custom-logo-link {
    display: block;
    background: #fff;
    border-radius: 6px;
    padding: 6px 14px;
    line-height: 0;
    transition: opacity 0.2s;
}
.site-branding .custom-logo-link:hover,
a.custom-logo-link:hover { opacity: 0.9; }

.custom-logo-link img.custom-logo,
a.custom-logo-link img {
    max-height: 64px;
    width: auto;
    display: block;
    filter: none;
    border-radius: 0;
}

/* Single-row nav: tighten padding so 8 items fit */
.main-header-bar .main-header-menu > li > a,
.ast-primary-header-bar .main-header-menu > li > a {
    padding: 0 10px !important;
    line-height: 80px;
}

/* Nav link text */
.ast-primary-header-bar .main-header-menu a,
.main-header-bar .main-header-menu a {
    color: var(--bits-white) !important;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
}

.ast-primary-header-bar .main-header-menu a:hover,
.main-header-bar .main-header-menu a:hover,
.ast-primary-header-bar .main-header-menu .current-menu-item > a,
.main-header-bar .main-header-menu .current-menu-item > a {
    color: var(--bits-blue) !important;
}

/* Dropdown menus */
.main-header-menu .sub-menu {
    background-color: #002855 !important;
    border-top: 3px solid var(--bits-blue);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.main-header-menu .sub-menu a {
    color: var(--bits-white) !important;
    font-size: 13px !important;
    padding: 10px 16px !important;
    line-height: 1.4 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.main-header-menu .sub-menu a:hover {
    color: var(--bits-blue) !important;
    background-color: rgba(41,171,226,0.12) !important;
}

/* Mobile hamburger */
.ast-button-wrap .menu-toggle,
.ast-mobile-header-wrap .menu-toggle {
    color: var(--bits-white) !important;
    border-color: rgba(255,255,255,0.4) !important;
}

/* Mobile menu panel background */
.ast-mobile-popup-drawer .ast-mobile-popup-inner,
.ast-mobile-header-wrap {
    background-color: var(--bits-navy) !important;
}
.ast-mobile-header-wrap .main-header-menu a {
    color: var(--bits-white) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

/* === CTA / Join Button === */
.bits-btn-primary,
.ast-header-custom-widget .bits-btn-primary {
    background-color: var(--bits-blue);
    color: var(--bits-white) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--bits-blue);
    transition: all 0.2s ease;
    display: inline-block;
}

.bits-btn-primary:hover {
    background-color: transparent;
    color: var(--bits-blue) !important;
}

.bits-btn-secondary {
    background-color: transparent;
    color: var(--bits-navy) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--bits-navy);
    transition: all 0.2s ease;
    display: inline-block;
}

.bits-btn-secondary:hover {
    background-color: var(--bits-navy);
    color: var(--bits-white) !important;
}

/* === Hero Section === */
.bits-hero {
    background: linear-gradient(135deg, var(--bits-navy) 0%, #005099 100%);
    color: var(--bits-white);
    padding: 100px 0 80px;
    text-align: center;
}

.bits-hero h1 {
    color: var(--bits-white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
}

.bits-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto 36px;
}

/* === Section Styles === */
.bits-section {
    padding: 60px 0;
}

.bits-section-light {
    background-color: var(--bits-light-bg);
    padding: 60px 0;
}

.bits-section-dark {
    background-color: var(--bits-navy);
    padding: 60px 0;
    color: var(--bits-white);
}

.bits-section-dark h2,
.bits-section-dark h3 {
    color: var(--bits-white);
}

.bits-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--bits-navy);
    margin-bottom: 12px;
    text-align: center;
}

.bits-section-subtitle {
    font-size: 1rem;
    color: var(--bits-text-muted);
    text-align: center;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.bits-section-title-accent {
    display: block;
    width: 56px;
    height: 4px;
    background-color: var(--bits-blue);
    border-radius: 2px;
    margin: 12px auto 0;
}

/* === Cards === */
.bits-card {
    background: var(--bits-white);
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,51,102,0.08);
    padding: 32px 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 4px solid var(--bits-blue);
}

.bits-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,51,102,0.14);
}

.bits-card h3 {
    color: var(--bits-navy);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

/* === Membership Grade Table === */
.bits-membership-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 15px;
}

.bits-membership-table thead {
    background-color: var(--bits-navy);
    color: var(--bits-white);
}

.bits-membership-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bits-membership-table tbody tr {
    border-bottom: 1px solid var(--bits-border);
    transition: background 0.15s ease;
}

.bits-membership-table tbody tr:hover {
    background-color: var(--bits-light-bg);
}

.bits-membership-table tbody td {
    padding: 14px 18px;
    color: var(--bits-text);
}

.bits-membership-table .grade-badge {
    display: inline-block;
    background-color: var(--bits-blue);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* === CTA Strip === */
.bits-cta-strip {
    background: linear-gradient(90deg, var(--bits-navy), #005099);
    padding: 60px 0;
    text-align: center;
    color: var(--bits-white);
}

.bits-cta-strip h2 {
    color: var(--bits-white);
    margin-bottom: 12px;
}

.bits-cta-strip p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
}

/* === Awards Page === */
.bits-awards-intro { max-width: 760px; margin: 0 auto 8px; text-align: center; }
.bits-awards-intro p { font-size: 15px; color: var(--bits-text); line-height: 1.8; margin-bottom: 12px; }
.bits-award-card { background: var(--bits-white); border-radius: 8px; padding: 32px 24px; text-align: center; box-shadow: 0 2px 12px rgba(0,51,102,0.07); border-top: 4px solid var(--bits-blue); transition: transform 0.2s, box-shadow 0.2s; }
.bits-award-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,51,102,0.13); }
.bits-award-trophy { font-size: 2.6rem; display: block; margin-bottom: 14px; }
.bits-award-card h3 { color: var(--bits-navy); font-size: 16px; margin-bottom: 10px; }
.bits-award-card p { font-size: 13px; color: var(--bits-text-muted); line-height: 1.6; }
.bits-awards-process-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.bits-process-steps { padding-left: 20px; display: flex; flex-direction: column; gap: 12px; }
.bits-process-steps li { font-size: 14px; color: var(--bits-text); line-height: 1.6; }
.bits-process-steps li strong { color: var(--bits-navy); }

/* === News Page === */
.bits-news-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.bits-news-sidebar { position: sticky; top: 100px; }
.bits-news-list-item { display: flex; gap: 22px; padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--bits-border); }
.bits-news-list-thumb { flex-shrink: 0; width: 180px; }
.bits-news-list-img { width: 100%; height: 120px; object-fit: cover; border-radius: 6px; display: block; }
.bits-news-list-icon-wrap {
    display: flex; align-items: center; justify-content: center;
    width: 180px; height: 120px; border-radius: 6px;
    background: linear-gradient(135deg, #003366 0%, #29ABE2 100%);
    text-decoration: none;
}
.bits-news-list-icon { width: 44px; height: 44px; fill: rgba(255,255,255,0.85); }
.bits-news-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }
.bits-news-cat { background: var(--bits-blue); color: var(--bits-white); font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.bits-news-list-body h3 { font-size: 17px; color: var(--bits-navy); margin-bottom: 8px; line-height: 1.4; }
.bits-news-list-body h3 a { color: var(--bits-navy); }
.bits-news-list-body h3 a:hover { color: var(--bits-blue); }
.bits-news-list-body p { font-size: 14px; color: var(--bits-text-muted); line-height: 1.6; margin-bottom: 10px; }
.bits-pagination { margin-top: 32px; display: flex; gap: 8px; flex-wrap: wrap; }
.bits-pagination .page-numbers { padding: 8px 14px; border: 1px solid var(--bits-border); border-radius: 4px; color: var(--bits-navy); font-size: 14px; }
.bits-pagination .page-numbers.current { background: var(--bits-navy); color: var(--bits-white); border-color: var(--bits-navy); }
.bits-pagination a.page-numbers:hover { background: var(--bits-light-bg); }

/* === Industry & Partnerships === */
.bits-partner-card { background: var(--bits-white); border-radius: 8px; padding: 28px 22px; box-shadow: 0 2px 12px rgba(0,51,102,0.07); border-top: 4px solid var(--bits-blue); }
.bits-partner-card h3 { color: var(--bits-navy); margin-bottom: 10px; font-size: 16px; }
.bits-partner-card p { font-size: 14px; color: var(--bits-text-muted); line-height: 1.6; margin-bottom: 10px; }
.bits-partnership-cta-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.bits-partnership-box h2 { margin-bottom: 14px; }
.bits-partnership-box p { color: var(--bits-text); line-height: 1.8; font-size: 15px; margin-bottom: 8px; }

/* === Footer === */
.site-footer,
.footer-sml-layout-1 {
    background-color: var(--bits-navy) !important;
    color: rgba(255,255,255,0.75) !important;
}

.ast-footer-copyright {
    background-color: #001f40 !important;
    color: rgba(255,255,255,0.5) !important;
    font-size: 13px;
}

/* Footer widgets */
.footer-widget-area .widget-title {
    color: var(--bits-white) !important;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid var(--bits-blue);
    padding-bottom: 10px;
    margin-bottom: 16px;
}

.footer-widget-area a,
.footer-widget-area p,
.footer-widget-area li {
    color: rgba(255,255,255,0.7) !important;
    font-size: 14px;
}

.footer-widget-area a:hover {
    color: var(--bits-blue) !important;
}

/* === Forms === */
.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form select,
.wpforms-container .wpforms-form textarea {
    border: 1px solid var(--bits-border) !important;
    border-radius: 4px !important;
    padding: 10px 14px !important;
    font-family: var(--bits-font) !important;
    font-size: 14px !important;
    transition: border-color 0.2s ease !important;
}

.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form select:focus,
.wpforms-container .wpforms-form textarea:focus {
    border-color: var(--bits-blue) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(41,171,226,0.15) !important;
}

.wpforms-container .wpforms-form .wpforms-submit {
    background-color: var(--bits-navy) !important;
    color: var(--bits-white) !important;
    border: none !important;
    padding: 12px 32px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

.wpforms-container .wpforms-form .wpforms-submit:hover {
    background-color: var(--bits-blue) !important;
}

/* === Layout Containers === */
.bits-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.bits-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bits-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* === Hero === */
.bits-hero {
    background: linear-gradient(135deg, var(--bits-navy) 0%, #004d8a 100%);
    color: var(--bits-white);
    padding: 110px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bits-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: rgba(41,171,226,0.07);
    pointer-events: none;
}

.bits-hero-tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bits-blue);
    margin-bottom: 16px;
}

.bits-hero h1 {
    color: var(--bits-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.bits-hero > .bits-container > p {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.bits-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.bits-btn-outline {
    background: transparent;
    color: var(--bits-white) !important;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    display: inline-block;
}

.bits-btn-outline:hover {
    border-color: var(--bits-white);
    background: rgba(255,255,255,0.1);
}

/* === Highlights cards === */
.bits-card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.bits-link {
    color: var(--bits-blue);
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-top: 12px;
}

.bits-link:hover {
    color: var(--bits-navy);
}

/* === Membership Grade Cards === */
.bits-grade-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.bits-grade-card {
    background: var(--bits-white);
    border-radius: 8px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,51,102,0.08);
    flex: 1 1 160px;
    max-width: 200px;
    transition: transform 0.2s, box-shadow 0.2s;
    border-bottom: 4px solid var(--bits-border);
}

.bits-grade-card:hover,
.bits-grade-card.featured {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,51,102,0.14);
    border-bottom-color: var(--bits-blue);
}

.bits-grade-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.bits-grade-badge.student   { background:#e8f5e9; color:#2e7d32; }
.bits-grade-badge.affiliate { background:#e3f2fd; color:#1565c0; }
.bits-grade-badge.associate { background:#fff8e1; color:#f57f17; }
.bits-grade-badge.ordinary  { background:#fce4ec; color:#c62828; }
.bits-grade-badge.fellow    { background:var(--bits-navy); color:var(--bits-white); }

.bits-grade-card h4 {
    font-size: 15px;
    color: var(--bits-navy);
    margin-bottom: 8px;
}

.bits-grade-card p {
    font-size: 13px;
    color: var(--bits-text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.bits-grade-fee {
    font-size: 13px;
    font-weight: 700;
    color: var(--bits-blue);
}

/* === Stats Strip === */
.bits-stats-strip {
    background-color: var(--bits-navy);
    padding: 48px 0;
}

.bits-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.bits-stat-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--bits-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.bits-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === News Cards === */
.bits-news-card {
    background: var(--bits-white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,51,102,0.07);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bits-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,51,102,0.13);
}

.bits-news-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.bits-news-body {
    padding: 24px;
}

.bits-news-date {
    font-size: 12px;
    color: var(--bits-text-muted);
    display: block;
    margin-bottom: 8px;
}

.bits-news-body h4 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.bits-news-body h4 a {
    color: var(--bits-navy);
}

.bits-news-body h4 a:hover {
    color: var(--bits-blue);
}

.bits-news-body p {
    font-size: 14px;
    color: var(--bits-text-muted);
    line-height: 1.6;
}

/* === CTA Strip buttons (white variants) === */
.bits-btn-white {
    background: var(--bits-white);
    color: var(--bits-navy) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--bits-white);
    transition: all 0.2s ease;
    display: inline-block;
}

.bits-btn-white:hover {
    background: transparent;
    color: var(--bits-white) !important;
}

.bits-btn-white-outline {
    background: transparent;
    color: var(--bits-white) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.2s ease;
    display: inline-block;
}

.bits-btn-white-outline:hover {
    border-color: var(--bits-white);
    background: rgba(255,255,255,0.1);
}

/* === Inner Page Hero === */
.bits-page-hero {
    background: linear-gradient(135deg, var(--bits-navy) 0%, #004d8a 100%);
    padding: 60px 0 50px;
    color: var(--bits-white);
}

.bits-page-hero h1 {
    color: var(--bits-white);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 10px 0 12px;
}

.bits-page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    max-width: 560px;
}

.bits-breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}

.bits-breadcrumb a {
    color: var(--bits-blue);
}

/* === About Page Layout === */
.bits-about-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.bits-about-main h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--bits-blue);
    display: inline-block;
}

.bits-about-main p {
    margin-bottom: 16px;
    color: var(--bits-text);
    line-height: 1.8;
}

.bits-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
}

.bits-vm-card {
    padding: 28px;
    border-radius: 8px;
}

.bits-vm-card.vision {
    background: var(--bits-navy);
    color: var(--bits-white);
}

.bits-vm-card.vision h3 {
    color: var(--bits-blue);
    margin-bottom: 12px;
}

.bits-vm-card.vision p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.bits-vm-card.mission {
    background: var(--bits-light-bg);
    border-left: 4px solid var(--bits-blue);
}

.bits-vm-card.mission h3 {
    color: var(--bits-navy);
    margin-bottom: 12px;
}

.bits-objectives-list {
    padding-left: 20px;
    margin-top: 12px;
}

.bits-objectives-list li {
    margin-bottom: 10px;
    color: var(--bits-text);
    line-height: 1.6;
    padding-left: 4px;
}

.bits-objectives-list li::marker {
    color: var(--bits-blue);
}

/* === Sidebar Boxes === */
.bits-about-sidebar {
    position: sticky;
    top: 100px;
}

.bits-sidebar-box {
    background: var(--bits-white);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,51,102,0.08);
    border-top: 4px solid var(--bits-blue);
}

.bits-sidebar-box h4 {
    color: var(--bits-navy);
    font-size: 15px;
    margin-bottom: 14px;
    font-weight: 700;
}

.bits-sidebar-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bits-sidebar-box ul li {
    border-bottom: 1px solid var(--bits-border);
    padding: 8px 0;
}

.bits-sidebar-box ul li:last-child {
    border-bottom: none;
}

.bits-sidebar-box ul li a {
    color: var(--bits-text);
    font-size: 14px;
    font-weight: 500;
}

.bits-sidebar-box ul li a:hover {
    color: var(--bits-blue);
}

.bits-sidebar-box p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--bits-text-muted);
    margin-bottom: 8px;
}

.bits-sidebar-box a {
    color: var(--bits-blue);
    font-size: 14px;
}

.join-box {
    background: var(--bits-navy);
    border-top-color: var(--bits-blue);
}

.join-box h4 {
    color: var(--bits-white) !important;
}

.join-box p {
    color: rgba(255,255,255,0.75) !important;
}

/* === Membership Page === */
.bits-benefit-card {
    background: var(--bits-white);
    border-radius: 8px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,51,102,0.07);
    border-top: 4px solid var(--bits-blue);
}

.bits-benefit-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 14px;
}

.bits-benefit-card h4 {
    color: var(--bits-navy);
    margin-bottom: 10px;
    font-size: 15px;
}

.bits-benefit-card p {
    font-size: 14px;
    color: var(--bits-text-muted);
    line-height: 1.6;
}

.bits-membership-table-wrap {
    overflow-x: auto;
    margin-top: 20px;
}

.bits-table-note {
    font-size: 13px;
    color: var(--bits-text-muted);
    margin-top: 10px;
    font-style: italic;
}

/* === Payment Box === */
.bits-payment-box {
    background: var(--bits-white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 16px rgba(0,51,102,0.08);
    max-width: 700px;
    margin: 0 auto;
    border-left: 6px solid var(--bits-blue);
}

.bits-payment-box h2 {
    color: var(--bits-navy);
    margin-bottom: 14px;
    font-size: 1.4rem;
}

.bits-payment-box p {
    color: var(--bits-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.bits-bank-details {
    background: var(--bits-light-bg);
    border-radius: 6px;
    padding: 20px 24px;
}

.bits-bank-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--bits-border);
    font-size: 14px;
    gap: 16px;
}

.bits-bank-row:last-child {
    border-bottom: none;
}

.bits-bank-row span {
    color: var(--bits-text-muted);
    min-width: 140px;
}

.bits-bank-row strong {
    color: var(--bits-navy);
    text-align: right;
}

/* === Application Forms === */
.bits-form-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}

.bits-form-sidebar { position: sticky; top: 100px; }

.bits-application-form { width: 100%; }

.bits-form-section {
    background: var(--bits-white);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,51,102,0.07);
    border-left: 4px solid var(--bits-blue);
}

.bits-form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bits-navy);
    font-size: 1.1rem;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--bits-border);
}

.bits-form-section-title span {
    background: var(--bits-navy);
    color: var(--bits-white);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.bits-form-section-title small {
    font-size: 13px;
    font-weight: 400;
    color: var(--bits-text-muted);
}

.bits-form-row        { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.bits-form-row-2      { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.bits-form-row-3      { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.bits-field           { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.bits-field label     { font-size: 13px; font-weight: 600; color: var(--bits-navy); }
.bits-field label em  { color: #e53935; font-style: normal; margin-left: 2px; }
.bits-field small     { font-size: 12px; color: var(--bits-text-muted); }

.bits-field input[type="text"],
.bits-field input[type="email"],
.bits-field input[type="tel"],
.bits-field input[type="url"],
.bits-field input[type="number"],
.bits-field input[type="date"],
.bits-field input[type="month"],
.bits-field select,
.bits-field textarea {
    border: 1px solid var(--bits-border);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: var(--bits-font);
    color: var(--bits-text);
    background: var(--bits-white);
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.bits-field input:focus,
.bits-field select:focus,
.bits-field textarea:focus {
    border-color: var(--bits-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(41,171,226,0.12);
}

.bits-field input[type="file"] {
    border: 1px dashed var(--bits-border);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 13px;
    cursor: pointer;
    background: var(--bits-light-bg);
}

.bits-radio-label,
.bits-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--bits-text);
    cursor: pointer;
    padding: 4px 0;
}

.bits-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
}

.bits-checkbox-grid.compact { gap: 2px 10px; }

/* Repeater tables inside forms */
.bits-repeater-table       { width: 100%; margin-top: 8px; }
.bits-repeater-head        { display: grid; gap: 8px; background: var(--bits-light-bg); padding: 8px 12px; border-radius: 4px 4px 0 0; font-size: 12px; font-weight: 600; color: var(--bits-text-muted); text-transform: uppercase; }
.bits-repeater-row         { display: grid; gap: 8px; padding: 8px 12px; border-bottom: 1px solid var(--bits-border); }
.bits-repeater-table       .bits-repeater-head,
.bits-repeater-table       .bits-repeater-row { grid-template-columns: repeat(4, 1fr); }
.bits-repeater-table.employment .bits-repeater-head,
.bits-repeater-table.employment .bits-repeater-row { grid-template-columns: 2fr 2fr 1fr 1fr 2fr; }
.bits-repeater-row input   { border: 1px solid var(--bits-border); border-radius: 3px; padding: 7px 10px; font-size: 13px; font-family: var(--bits-font); width: 100%; box-sizing: border-box; }
.bits-repeater-row input:focus { border-color: var(--bits-blue); outline: none; }

.bits-declaration-box {
    background: var(--bits-light-bg);
    border-radius: 6px;
    padding: 20px 24px;
    border-left: 4px solid var(--bits-blue);
}
.bits-declaration-box p    { font-size: 13px; color: var(--bits-text); line-height: 1.7; margin-bottom: 10px; }

.bits-payment-reminder {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 6px;
    padding: 18px 22px;
    margin-top: 20px;
}
.bits-payment-reminder h4  { color: #856404; margin-bottom: 8px; font-size: 15px; }
.bits-payment-reminder p   { font-size: 13px; color: #6d4c00; margin-bottom: 6px; line-height: 1.6; }

.bits-submit-btn {
    background: var(--bits-navy);
    color: var(--bits-white);
    border: none;
    padding: 14px 48px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--bits-font);
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.3px;
}
.bits-submit-btn:hover { background: var(--bits-blue); }

.bits-alert {
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.6;
}
.bits-alert.success { background: #e8f5e9; border-left: 4px solid #2e7d32; color: #1b5e20; }
.bits-alert.error   { background: #ffebee; border-left: 4px solid #c62828; color: #b71c1c; }

.bits-fee-list { list-style: none; padding: 0; margin: 0; }
.bits-fee-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--bits-border); font-size: 13px; }
.bits-fee-list li:last-child { border-bottom: none; }
.bits-fee-list li span { color: var(--bits-text-muted); }
.bits-fee-list li strong { color: var(--bits-navy); }

/* === Contact Page === */
.bits-contact-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.bits-contact-form-wrap h2 { color: var(--bits-navy); margin-bottom: 24px; font-size: 1.4rem; }
.bits-contact-info { display: flex; flex-direction: column; gap: 16px; }
.bits-contact-card { background: var(--bits-white); border-radius: 8px; padding: 22px; box-shadow: 0 2px 10px rgba(0,51,102,0.07); }
.bits-contact-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.bits-contact-card h4 { color: var(--bits-navy); margin-bottom: 8px; font-size: 15px; }
.bits-contact-card p { font-size: 14px; color: var(--bits-text-muted); line-height: 1.6; margin-bottom: 4px; }
.bits-contact-card a { color: var(--bits-blue); }

/* === Resources Page === */
.bits-resource-grid { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.bits-resource-card { display: flex; gap: 20px; background: var(--bits-white); border-radius: 8px; padding: 22px 24px; box-shadow: 0 2px 10px rgba(0,51,102,0.07); align-items: flex-start; border-left: 4px solid var(--bits-blue); }
.bits-resource-icon { width: 48px; height: 48px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.bits-resource-icon.pdf { background: #ffebee; color: #c62828; }
.bits-resource-icon.doc { background: #e3f2fd; color: #1565c0; }
.bits-resource-info h4 { color: var(--bits-navy); margin-bottom: 6px; font-size: 15px; }
.bits-resource-info p { font-size: 13px; color: var(--bits-text-muted); margin-bottom: 12px; line-height: 1.5; }
.bits-resource-note { font-size: 13px; color: var(--bits-text-muted); font-style: italic; }
.bits-resource-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* === FAQ Accordion === */
.bits-faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 8px; }
.bits-faq-item { background: var(--bits-white); border-radius: 6px; box-shadow: 0 1px 8px rgba(0,51,102,0.06); overflow: hidden; }
.bits-faq-question { width: 100%; background: none; border: none; padding: 18px 22px; text-align: left; font-size: 15px; font-weight: 600; color: var(--bits-navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--bits-font); }
.bits-faq-question:hover { background: var(--bits-light-bg); }
.bits-faq-icon { font-size: 20px; color: var(--bits-blue); font-weight: 400; flex-shrink: 0; }
.bits-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.bits-faq-answer p { padding: 0 22px 18px; font-size: 14px; color: var(--bits-text-muted); line-height: 1.7; }

/* === Info box === */
.bits-info-box { background: var(--bits-light-bg); border-radius: 8px; padding: 28px 32px; border-left: 4px solid var(--bits-blue); }
.bits-info-box h3 { color: var(--bits-navy); margin-bottom: 12px; }
.bits-info-box p { font-size: 14px; color: var(--bits-text); line-height: 1.7; }

/* === Empty state === */
.bits-empty-state { text-align: center; padding: 60px 20px; background: var(--bits-light-bg); border-radius: 8px; }
.bits-empty-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.bits-empty-state h3 { color: var(--bits-navy); margin-bottom: 12px; }
.bits-empty-state p { color: var(--bits-text-muted); font-size: 15px; max-width: 480px; margin: 0 auto 10px; line-height: 1.7; }

/* === Footer === */
footer.bits-footer,
footer#colophon,
.bits-footer {
    background-color: var(--bits-navy) !important;
    color: rgba(255,255,255,0.75) !important;
}

.bits-footer-widgets { padding: 64px 0 48px; }

.bits-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
}

.bits-footer-logo {
    display: inline-block;
    background: #fff;
    border-radius: 6px;
    padding: 6px 12px;
    line-height: 0;
    margin-bottom: 20px;
}

.bits-footer-logo-img {
    max-width: 140px;
    height: auto;
    display: block;
    filter: none;
}

.bits-footer-about {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
}

.bits-social-links { display: flex; gap: 10px; }

.bits-social-btn {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--bits-white) !important;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s;
    text-decoration: none;
}

.bits-social-btn:hover { background: var(--bits-blue); }

.bits-footer-heading {
    color: var(--bits-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bits-blue);
}

.bits-footer-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}

.bits-footer-links li a {
    color: rgba(255,255,255,0.65) !important;
    font-size: 13px;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}

.bits-footer-links li a:hover {
    color: var(--bits-blue) !important;
    padding-left: 4px;
}

.bits-footer-contact-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 14px;
}

.bits-footer-contact-list li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 13px; color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.bits-footer-contact-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }

.bits-footer-contact-list a { color: rgba(255,255,255,0.65) !important; }
.bits-footer-contact-list a:hover { color: var(--bits-blue) !important; }

.bits-footer-bank {
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 14px 16px;
    margin-top: 18px;
    border-left: 3px solid var(--bits-blue);
}

.bits-footer-bank-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--bits-blue);
    margin-bottom: 6px;
}

.bits-footer-bank p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 3px;
    line-height: 1.5;
}

/* Footer bottom bar */
.bits-footer-bottom {
    background: #001f40;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.bits-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bits-footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.bits-footer-legal {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 20px;
}

.bits-footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.45) !important;
    transition: color 0.2s;
}

.bits-footer-legal a:hover { color: var(--bits-blue) !important; }

/* === Responsive === */
@media (max-width: 1024px) {
    .bits-footer-grid   { grid-template-columns: 1fr 1fr; }
    .bits-form-layout   { grid-template-columns: 1fr; }
    .bits-form-sidebar  { position: static; }
    .bits-contact-grid  { grid-template-columns: 1fr; }
    .bits-about-grid    { grid-template-columns: 1fr; }
    .bits-about-sidebar { position: static; }
}

@media (max-width: 1024px) {
    .bits-grid-4       { grid-template-columns: repeat(2, 1fr); }
    .bits-stats-grid   { grid-template-columns: repeat(2, 1fr); }
    .bits-about-grid   { grid-template-columns: 1fr; }
    .bits-about-sidebar{ position: static; }
}

@media (max-width: 768px) {
    .bits-footer-grid       { grid-template-columns: 1fr; gap: 28px; }
    .bits-footer-bottom-inner { flex-direction: column; text-align: center; }
    .bits-footer-legal      { justify-content: center; }
    .bits-form-row-2    { grid-template-columns: 1fr; }
    .bits-form-row-3    { grid-template-columns: 1fr; }
    .bits-checkbox-grid { grid-template-columns: 1fr; }
    .bits-repeater-head { display: none; }
    .bits-repeater-row  { grid-template-columns: 1fr !important; }
    .bits-contact-info  { flex-direction: row; flex-wrap: wrap; }
    .bits-contact-card  { flex: 1 1 calc(50% - 8px); min-width: 200px; }
    .bits-hero          { padding: 70px 0 60px; }
    .bits-hero-btns     { flex-direction: column; align-items: center; }

    .bits-section,
    .bits-section-light,
    .bits-section-dark  { padding: 50px 0; }

    .bits-grid-3        { grid-template-columns: 1fr; }
    .bits-grid-4        { grid-template-columns: 1fr; }
    .bits-vm-grid       { grid-template-columns: 1fr; }
    .bits-grade-cards   { flex-direction: column; align-items: center; }
    .bits-grade-card    { max-width: 100%; width: 100%; }
    .bits-stats-grid    { grid-template-columns: repeat(2, 1fr); }

    .bits-membership-table { font-size: 13px; }
    .bits-membership-table thead th,
    .bits-membership-table tbody td { padding: 10px 10px; }

    .bits-bank-row      { flex-direction: column; gap: 4px; }
    .bits-bank-row strong { text-align: left; }

    .bits-payment-box   { padding: 24px; }

    .bits-cta-strip .bits-btn-white,
    .bits-cta-strip .bits-btn-white-outline { display: block; margin: 8px auto !important; max-width: 280px; text-align: center; }
}

/* =========================================================
   CORPORATE REDESIGN v2.0 — Premium UI Enhancement
   All new components for the redesigned homepage & global
   polish.
   =========================================================

/* =============================================
   HERO SLIDER
   ============================================= */
.bits-hero-slider {
    position: relative;
    height: 560px;
    min-height: 480px;
    overflow: hidden;
    background: #001429;
}

.bits-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bits-slide.active { opacity: 1; z-index: 1; }

.bits-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,18,46,0.93) 0%,
        rgba(0,30,70,0.82) 50%,
        rgba(0,51,102,0.55) 100%
    );
}

.bits-slide-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 60px 0 50px;
}

.bits-slide-content h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.bits-slide-content h1 span { color: var(--bits-blue); }

.bits-slide-content p {
    color: rgba(255,255,255,0.82);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.78;
    margin-bottom: 38px;
    max-width: 580px;
}

/* Slider buttons */
.bits-btn-hero-primary {
    display: inline-block;
    background: var(--bits-blue);
    color: #fff !important;
    padding: 15px 38px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--bits-blue);
    transition: all 0.25s;
    text-decoration: none;
}
.bits-btn-hero-primary:hover {
    background: #fff;
    color: var(--bits-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(41,171,226,0.35);
}

.bits-btn-hero-outline {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    padding: 13px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.25s;
    text-decoration: none;
}
.bits-btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Prev/Next arrows */
.bits-slider-prev,
.bits-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
}
.bits-slider-prev { left: 28px; }
.bits-slider-next { right: 28px; }
.bits-slider-prev:hover,
.bits-slider-next:hover {
    background: var(--bits-blue);
    border-color: var(--bits-blue);
    transform: translateY(-50%) scale(1.08);
}

/* Dots */
.bits-slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.bits-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.bits-dot.active {
    background: var(--bits-blue);
    width: 28px;
    border-radius: 5px;
}

/* Scroll hint */
.bits-scroll-hint {
    position: absolute;
    bottom: 32px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.4);
    animation: scrollBounce 2.2s infinite;
}
.bits-scroll-hint span { font-size: 18px; }
.bits-scroll-hint small { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }

@keyframes scrollBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(7px); }
}

/* Card link */
.bits-card-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bits-blue) !important;
    transition: gap 0.2s;
}
.bits-card-link:hover { color: var(--bits-navy) !important; }

/* Slider responsive */
@media (max-width: 768px) {
    .bits-hero-slider { height: 480px; }
    .bits-slide-content { padding: 48px 0 40px; }
    .bits-slide-content h1 { font-size: 2rem; }
    .bits-slider-prev,
    .bits-slider-next { width: 40px; height: 40px; font-size: 14px; }
    .bits-slider-prev { left: 12px; }
    .bits-slider-next { right: 12px; }
    .bits-hero-btns { flex-direction: column; }
    .bits-scroll-hint { display: none; }
}

/* --- Sticky header + scroll shadow --- */
.site-header { position: sticky; top: 0; z-index: 999; }
.ast-primary-header-bar { min-height: 72px; }

/* --- Eyebrow / badge label --- */
.bits-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bits-blue);
    background: rgba(41,171,226,0.12);
    border: 1px solid rgba(41,171,226,0.3);
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}

/* =============================================
   FULL-SCREEN HERO (photo background)
   ============================================= */
.bits-hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    overflow: hidden;
}

.bits-hero-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,20,51,0.92) 0%,
        rgba(0,33,80,0.80) 50%,
        rgba(0,51,102,0.60) 100%
    );
    z-index: 1;
}

.bits-hero-full::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(0,20,51,0.5));
    z-index: 1;
}

.bits-hero-full .bits-container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 100px;
}

.bits-hero-full-inner {
    max-width: 760px;
}

.bits-hero-full h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.bits-hero-full h1 span {
    color: var(--bits-blue);
}

.bits-hero-full p {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    margin-bottom: 38px;
    max-width: 580px;
}

.bits-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Scroll indicator */
.bits-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}

.bits-scroll-hint span { font-size: 20px; }

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   IMPACT NUMBERS STRIP (dark navy)
   ============================================= */
.bits-impact-strip {
    background: #001f40;
    padding: 0;
}

.bits-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.bits-impact-item {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.25s;
}

.bits-impact-item:last-child { border-right: none; }
.bits-impact-item:hover { background: rgba(41,171,226,0.08); }

.bits-impact-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--bits-blue);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.bits-impact-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

/* =============================================
   WHAT WE DO — enhanced cards
   ============================================= */
.bits-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bits-offer-card {
    background: var(--bits-white);
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 4px 24px rgba(0,51,102,0.08);
    border-top: 4px solid transparent;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.bits-offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bits-navy), var(--bits-blue));
}

.bits-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,51,102,0.16);
}

.bits-offer-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0,51,102,0.08), rgba(41,171,226,0.12));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.bits-offer-card h3 {
    font-size: 17px;
    color: var(--bits-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.bits-offer-card p {
    font-size: 14px;
    color: var(--bits-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   ABOUT / FEATURE — two-column photo section
   ============================================= */
.bits-feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.bits-feature-img-wrap {
    position: relative;
}

.bits-feature-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.bits-feature-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--bits-navy);
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 12px 40px rgba(0,20,51,0.35);
    min-width: 180px;
    text-align: center;
    border: 3px solid var(--bits-blue);
}

.bits-feature-badge .badge-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--bits-blue);
    line-height: 1;
}

.bits-feature-badge .badge-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
    display: block;
}

.bits-feature-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--bits-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.bits-feature-content p {
    font-size: 15px;
    color: var(--bits-text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.bits-feature-list {
    list-style: none;
    padding: 0; margin: 0 0 32px;
    display: flex; flex-direction: column; gap: 10px;
}

.bits-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--bits-text);
    line-height: 1.6;
}

.bits-feature-list li::before {
    content: '';
    width: 20px; height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bits-navy), var(--bits-blue));
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* =============================================
   MEMBERSHIP GRADES — on dark background
   ============================================= */
.bits-grades-section {
    background: linear-gradient(135deg, #001429 0%, #002a5c 100%);
    padding: 80px 0;
    overflow: hidden;
}

.bits-grades-section .bits-section-title { color: #fff; }
.bits-grades-section .bits-section-title-accent::after { background: var(--bits-blue); }
.bits-grades-section .bits-section-subtitle { color: rgba(255,255,255,0.65); }

.bits-grades-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.bits-grade-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 28px 18px 24px;
    text-align: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    cursor: default;
}

.bits-grade-item:hover {
    background: rgba(41,171,226,0.1);
    border-color: var(--bits-blue);
    transform: translateY(-4px);
}

.bits-grade-badge-circle {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0 auto 16px;
    color: #fff;
}

.bits-grade-item h4 { color: #fff; font-size: 15px; margin-bottom: 6px; }
.bits-grade-item .grade-post { font-size: 12px; color: var(--bits-blue); font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; }
.bits-grade-item p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.55; }

.grade-student  .bits-grade-badge-circle { background: linear-gradient(135deg, #00875A, #00a66d); }
.grade-affiliate .bits-grade-badge-circle { background: linear-gradient(135deg, #0065CC, #29ABE2); }
.grade-associate .bits-grade-badge-circle { background: linear-gradient(135deg, #E67E22, #f39c12); }
.grade-ordinary  .bits-grade-badge-circle { background: linear-gradient(135deg, #C0392B, #e74c3c); }
.grade-fellow    .bits-grade-badge-circle { background: linear-gradient(135deg, #003366, #005099); border: 2px solid var(--bits-blue); }

/* =============================================
   EVENT PHOTO GALLERY
   ============================================= */
.bits-events-gallery {
    background: var(--bits-light-bg);
    padding: 80px 0;
}

.bits-gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.bits-gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.bits-gallery-card:first-child { grid-row: span 1; }

.bits-gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bits-gallery-card:hover img { transform: scale(1.04); }

.bits-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,20,51,0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

.bits-gallery-card:hover .bits-gallery-overlay { opacity: 1; }

.bits-gallery-caption { color: #fff; font-size: 14px; font-weight: 600; }
.bits-gallery-caption span { display: block; font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.65); margin-top: 3px; }

/* =============================================
   LATEST NEWS — premium cards
   ============================================= */
.bits-news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
}

.bits-news-card-v2 {
    background: var(--bits-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,51,102,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.bits-news-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,51,102,0.14);
}

.bits-news-card-v2 .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: var(--bits-light-bg);
}

.bits-news-card-v2 .card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #003366 0%, #1a6fa8 60%, #29ABE2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bits-news-card-v2 .card-img-placeholder svg {
    width: 54px; height: 54px; fill: rgba(255,255,255,0.80);
}

.bits-news-card-v2 .card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bits-news-card-v2 .card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.bits-news-card-v2 .card-date {
    font-size: 12px;
    color: var(--bits-text-muted);
}

.bits-news-card-v2 .card-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bits-blue);
    background: rgba(41,171,226,0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.bits-news-card-v2 h3 {
    font-size: 16px;
    color: var(--bits-navy);
    margin-bottom: 10px;
    line-height: 1.45;
}

.bits-news-card-v2 h3 a { color: inherit; }
.bits-news-card-v2 h3 a:hover { color: var(--bits-blue); }

.bits-news-card-v2 p {
    font-size: 13px;
    color: var(--bits-text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.bits-news-card-v2 .card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--bits-blue);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.bits-news-card-v2 .card-link::after {
    content: '→';
    transition: transform 0.2s;
}

.bits-news-card-v2:hover .card-link::after { transform: translateX(4px); }

/* =============================================
   GRAND CTA STRIP — deep navy
   ============================================= */
.bits-grand-cta {
    background: linear-gradient(135deg, #001429 0%, #002a5c 60%, #003d8a 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bits-grand-cta::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41,171,226,0.12) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
}

.bits-grand-cta::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41,171,226,0.08) 0%, transparent 70%);
    bottom: -150px; left: -50px;
    pointer-events: none;
}

.bits-grand-cta-inner {
    position: relative; z-index: 2;
}

.bits-grand-cta h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.bits-grand-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.bits-grand-cta .bits-btn-white {
    padding: 16px 40px;
    font-size: 16px;
    margin: 0 8px;
}

/* =============================================
   SECTION HEADING — improved
   ============================================= */
.bits-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--bits-navy);
    margin-bottom: 12px;
    line-height: 1.25;
}

.bits-section-subtitle {
    font-size: 16px;
    color: var(--bits-text-muted);
    max-width: 600px;
    line-height: 1.75;
    margin-bottom: 48px;
}

/* Center variant */
.bits-section-head-center {
    text-align: center;
}

.bits-section-head-center .bits-section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   BUTTON UPGRADES
   ============================================= */
.bits-btn-primary {
    padding: 13px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: all 0.25s;
    display: inline-block;
    text-align: center;
}

.bits-btn-primary:hover {
    background-color: var(--bits-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,51,102,0.25);
}

.bits-btn-white {
    background: #fff;
    color: var(--bits-navy) !important;
    padding: 13px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: all 0.25s;
}

.bits-btn-white:hover {
    background: var(--bits-blue);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41,171,226,0.35);
}

.bits-btn-white-outline {
    background: transparent;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.25s;
}

.bits-btn-white-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   PAGE HERO (inner pages) — upgraded
   ============================================= */
.bits-page-hero {
    background: linear-gradient(135deg, var(--bits-navy) 0%, #005099 100%);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}

.bits-page-hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41,171,226,0.15) 0%, transparent 70%);
    top: -150px; right: 5%;
    pointer-events: none;
}

.bits-page-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.bits-page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    max-width: 620px;
    line-height: 1.7;
}

.bits-breadcrumb { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 14px; }
.bits-breadcrumb a { color: rgba(255,255,255,0.6); }
.bits-breadcrumb a:hover { color: #fff; }

/* =============================================
   GLOBAL CARD UPGRADE (applies everywhere)
   ============================================= */
.bits-card {
    background: var(--bits-white);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0,51,102,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    border-top: 3px solid var(--bits-blue);
}

.bits-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,51,102,0.13);
}

.bits-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

/* =============================================
   RESPONSIVE — v2 components
   ============================================= */
@media (max-width: 1024px) {
    .bits-offer-grid { grid-template-columns: repeat(2, 1fr); }
    .bits-grades-grid { grid-template-columns: repeat(3, 1fr); }
    .bits-gallery-grid { grid-template-columns: 1fr 1fr; }
    .bits-feature-section { grid-template-columns: 1fr; gap: 40px; }
    .bits-feature-img-wrap img { height: 360px; }
    .bits-feature-badge { bottom: 16px; right: 16px; }
    .bits-news-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .bits-impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bits-hero-full { background-attachment: scroll; min-height: 90vh; }
    .bits-hero-full h1 { font-size: 2rem; }
    .bits-offer-grid { grid-template-columns: 1fr; }
    .bits-grades-grid { grid-template-columns: repeat(2, 1fr); }
    .bits-gallery-grid { grid-template-columns: 1fr; }
    .bits-news-cards-grid { grid-template-columns: 1fr; }
    .bits-impact-grid { grid-template-columns: repeat(2, 1fr); }
    .bits-hero-btns { flex-direction: column; align-items: flex-start; }
    .bits-feature-section { grid-template-columns: 1fr; }
    .bits-grand-cta { padding: 64px 0; }
}

/* =============================================
   HEADER NAV — BECOME A MEMBER CTA BUTTON
   ============================================= */

/* Step 1: make the <li> a flex container so the button centres vertically */
.main-header-menu li.bits-header-cta,
.ast-primary-header-bar .main-header-menu li.bits-header-cta,
.main-header-bar .main-header-menu li.bits-header-cta {
    display:     flex         !important;
    align-items: center       !important;
    padding:     0 0 0 10px   !important;
}

/* Step 2: button <a> — kill the inherited line-height:80px, make it compact */
.main-header-menu li.bits-header-cta > a,
.ast-primary-header-bar .main-header-menu li.bits-header-cta > a,
.main-header-bar .main-header-menu li.bits-header-cta > a {
    background:    var(--bits-blue)            !important;
    color:         #fff                        !important;
    padding:       9px 18px                    !important;
    border-radius: 5px                         !important;
    font-weight:   700                         !important;
    font-size:     12.5px                      !important;
    line-height:   1.3                         !important;
    height:        auto                        !important;
    border:        2px solid var(--bits-blue)  !important;
    white-space:   nowrap                      !important;
    display:       inline-flex                 !important;
    align-items:   center                      !important;
    transition:    all 0.22s ease              !important;
    letter-spacing:0.2px                       !important;
}

.main-header-menu li.bits-header-cta > a:hover,
.ast-primary-header-bar .main-header-menu li.bits-header-cta > a:hover,
.main-header-bar .main-header-menu li.bits-header-cta > a:hover {
    background:  #fff                            !important;
    color:       var(--bits-navy)                !important;
    border-color:#fff                            !important;
    box-shadow:  0 4px 14px rgba(41,171,226,.40) !important;
}

/* =============================================
   SLIDER — KEN BURNS BACKGROUND LAYER
   ============================================= */
.bits-slide-bg {
    position: absolute;
    inset: -6%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
}

@keyframes kenBurns {
    0%   { transform: scale(1.1) translate(0,    0);    }
    100% { transform: scale(1.0) translate(-0.5%, -0.3%); }
}

@keyframes kenBurns2 {
    0%   { transform: scale(1.1) translate(0, 0);    }
    100% { transform: scale(1.0) translate(0.4%, 0.2%); }
}

.bits-slide:nth-child(odd).active  .bits-slide-bg { animation: kenBurns  9s ease-out forwards; }
.bits-slide:nth-child(even).active .bits-slide-bg { animation: kenBurns2 9s ease-out forwards; }

/* =============================================
   SLIDER — TEXT ENTRANCE ANIMATIONS
   ============================================= */
.bits-slide .bits-slide-content .bits-eyebrow,
.bits-slide .bits-slide-content h1,
.bits-slide .bits-slide-content p,
.bits-slide .bits-slide-content .bits-hero-btns {
    opacity: 0;
    transform: translateY(26px);
}

.bits-slide.active .bits-slide-content .bits-eyebrow {
    animation: slideUpIn 0.65s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}
.bits-slide.active .bits-slide-content h1 {
    animation: slideUpIn 0.72s cubic-bezier(0.22,1,0.36,1) 0.33s both;
}
.bits-slide.active .bits-slide-content p {
    animation: slideUpIn 0.72s cubic-bezier(0.22,1,0.36,1) 0.51s both;
}
.bits-slide.active .bits-slide-content .bits-hero-btns {
    animation: slideUpIn 0.65s cubic-bezier(0.22,1,0.36,1) 0.68s both;
}

@keyframes slideUpIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* =============================================
   SLIDER — PROGRESS BAR
   ============================================= */
.bits-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--bits-blue), #7dd3fc);
    z-index: 20;
    border-radius: 0 2px 0 0;
    box-shadow: 0 0 10px rgba(41,171,226,0.55);
}

@keyframes progressFill {
    from { width: 0%; }
    to   { width: 100%; }
}

/* =============================================
   SLIDER — DECORATIVE RINGS (right side)
   ============================================= */
.bits-slide-rings {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    width: 0; height: 0;
    pointer-events: none;
    z-index: 3;
}

.bits-slide-rings::before,
.bits-slide-rings::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(41,171,226,0.18);
    top: 50%; left: 50%;
}

.bits-slide-rings::before {
    width: 340px; height: 340px;
    margin: -170px 0 0 -170px;
    animation: ringFloat 6s ease-in-out infinite alternate;
}

.bits-slide-rings::after {
    width: 540px; height: 540px;
    margin: -270px 0 0 -270px;
    border-color: rgba(41,171,226,0.10);
    animation: ringFloat 8s ease-in-out infinite alternate-reverse;
}

@keyframes ringFloat {
    0%   { opacity: 0.25; transform: scale(1) rotate(0deg); }
    100% { opacity: 0.55; transform: scale(1.04) rotate(10deg); }
}

/* glow dot in center of rings */
.bits-slide-rings-dot {
    position: absolute;
    top: 50%; right: 6%;
    transform: translateY(-50%);
    width: 120px; height: 120px;
    margin-top: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41,171,226,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 3;
    animation: dotPulse 3.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(1); }
    50%       { opacity: 0.7; transform: translateY(-50%) scale(1.15); }
}

/* Hide rings on mobile to keep it clean */
@media (max-width: 768px) {
    .bits-slide-rings,
    .bits-slide-rings-dot { display: none; }
}

/* =============================================
   SLIDER — SLIDE COUNTER
   ============================================= */
.bits-slide-counter {
    position: absolute;
    top: 32px;
    right: 40px;
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-family: var(--bits-font);
}

.counter-current {
    font-size: 22px;
    font-weight: 800;
    color: var(--bits-blue);
    line-height: 1;
    min-width: 28px;
    text-align: right;
    transition: opacity 0.3s;
}

.counter-divider {
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
}

.counter-total {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}

@media (max-width: 768px) {
    .bits-slide-counter { display: none; }
}

/* =============================================
   BITS AGM POPUP
   ============================================= */

/* Overlay — always rendered, hidden via opacity+visibility so animations work */
.bits-agm-overlay {
    display: flex;
    position: fixed; inset: 0;
    z-index: 99999;
    background: rgba(0,20,51,0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s;
}
.bits-agm-overlay.bits-agm-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.bits-agm-overlay.bits-agm-closing {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Modal card */
.bits-agm-modal {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 100%; max-width: 520px;
    box-shadow: 0 32px 80px rgba(0,20,51,0.45), 0 8px 24px rgba(0,0,0,0.18);
    overflow: hidden;
    transform: translateY(60px) scale(0.96);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.45s ease;
    opacity: 0;
}
.bits-agm-overlay.bits-agm-open .bits-agm-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.bits-agm-overlay.bits-agm-closing .bits-agm-modal {
    transform: translateY(40px) scale(0.97);
    opacity: 0;
}


/* Close × button */
.bits-agm-close {
    position: absolute; top: 14px; right: 16px;
    background: rgba(255,255,255,0.18); border: none; cursor: pointer;
    width: 32px; height: 32px; border-radius: 50%;
    font-size: 20px; line-height: 1; color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
.bits-agm-close:hover { background: rgba(255,255,255,0.32); }

/* Header section */
.bits-agm-header {
    background: linear-gradient(135deg, #003366 0%, #1a5b9e 55%, #29ABE2 100%);
    padding: 36px 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bits-agm-header::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center;
}

/* Bell with rings */
.bits-agm-bell-wrap {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    width: 72px; height: 72px; margin-bottom: 16px;
}
.bits-agm-bell {
    width: 40px; height: 40px; fill: #fff;
    position: relative; z-index: 1;
    animation: agmBellRing 2.4s cubic-bezier(0.36,0.07,0.19,0.97) 0.6s infinite;
    transform-origin: top center;
}
@keyframes agmBellRing {
    0%,100% { transform: rotate(0deg); }
    5%       { transform: rotate(14deg); }
    10%      { transform: rotate(-12deg); }
    15%      { transform: rotate(10deg); }
    20%      { transform: rotate(-8deg); }
    25%      { transform: rotate(5deg); }
    30%      { transform: rotate(0deg); }
}
.bits-agm-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    animation: agmRingPulse 2.4s ease-out 0.6s infinite;
}
.bits-agm-ring-2 { animation-delay: 1.2s; }
@keyframes agmRingPulse {
    0%   { transform: scale(0.8); opacity:0.9; }
    100% { transform: scale(1.8); opacity:0; }
}

/* Badge */
.bits-agm-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 14px; border-radius: 20px;
    margin-bottom: 12px;
    animation: agmBadgeIn 0.5s ease 0.5s both;
}
@keyframes agmBadgeIn {
    from { opacity:0; transform:translateY(-8px); }
    to   { opacity:1; transform:translateY(0); }
}
.bits-agm-title {
    color: #fff; font-size: 24px; font-weight: 800;
    margin: 0 0 10px; line-height: 1.2;
    animation: agmTitleIn 0.55s ease 0.65s both;
}
@keyframes agmTitleIn {
    from { opacity:0; transform:translateY(10px); }
    to   { opacity:1; transform:translateY(0); }
}
.bits-agm-intro {
    color: rgba(255,255,255,0.88);
    font-size: 14px; line-height: 1.6; margin: 0;
    animation: agmTitleIn 0.55s ease 0.75s both;
}

/* Timeline */
.bits-agm-timeline {
    padding: 24px 28px 8px;
    display: flex; flex-direction: column; gap: 12px;
}
.bits-agm-item {
    display: flex; align-items: center; gap: 14px;
    background: #f7f9fc;
    border: 1px solid #e5eaf2;
    border-radius: 12px;
    padding: 14px 16px;
    animation: agmItemIn 0.5s cubic-bezier(0.22,1,0.36,1) calc(0.9s + var(--i) * 0.12s) both;
}
@keyframes agmItemIn {
    from { opacity:0; transform: translateX(-24px); }
    to   { opacity:1; transform: translateX(0); }
}
.bits-agm-item-urgent {
    background: #fff8f0;
    border-color: #f5a623;
    box-shadow: 0 2px 12px rgba(245,166,35,0.12);
}
.bits-agm-item-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: #003366;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.bits-agm-item-urgent .bits-agm-item-icon { background: #f5a623; }
.bits-agm-item-icon svg { width: 20px; height: 20px; fill: #fff; }

.bits-agm-item-body {
    flex: 1; display: flex; flex-direction: column; gap: 2px;
}
.bits-agm-item-label {
    font-weight: 700; color: #003366; font-size: 14px;
}
.bits-agm-item-urgent .bits-agm-item-label { color: #b86e00; }
.bits-agm-item-desc {
    font-size: 12px; color: #6b7a96; line-height: 1.4;
}

.bits-agm-item-date {
    flex-shrink: 0; text-align: center;
    background: #003366; color: #fff;
    border-radius: 8px; padding: 6px 12px;
    min-width: 54px;
}
.bits-agm-item-urgent .bits-agm-item-date { background: #f5a623; }
.bits-agm-date-day   { display: block; font-size: 20px; font-weight: 800; line-height: 1; }
.bits-agm-date-month { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.5px; opacity:0.88; }

/* Footer actions */
.bits-agm-actions {
    display: flex; gap: 12px; align-items: center;
    padding: 20px 28px 28px;
    animation: agmTitleIn 0.5s ease 1.3s both;
}
.bits-agm-docs-btn {
    display: inline-flex; align-items: center; gap: 7px;
    background: #003366; color: #fff;
    font-size: 13px; font-weight: 700;
    padding: 11px 18px; border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.bits-agm-docs-btn svg { width:16px; height:16px; fill:#fff; flex-shrink:0; }
.bits-agm-docs-btn:hover { background: #00254d; transform: translateY(-1px); color:#fff; }
.bits-agm-dismiss {
    flex: 1;
    background: #f0f4fa; border: 1px solid #dde3ef;
    color: #003366; font-size: 13px; font-weight: 600;
    padding: 11px 18px; border-radius: 8px; cursor: pointer;
    transition: background 0.2s;
}
.bits-agm-dismiss:hover { background: #e3e9f5; }

/* Mobile */
@media (max-width: 540px) {
    .bits-agm-header   { padding: 28px 20px 22px; }
    .bits-agm-timeline { padding: 18px 16px 6px; }
    .bits-agm-actions  { flex-direction: column; padding: 16px 16px 24px; }
    .bits-agm-docs-btn, .bits-agm-dismiss { width: 100%; justify-content: center; }
    .bits-agm-title    { font-size: 20px; }
}

/* =============================================
   BITS CHATBOT — WORLD CLASS UI v2
   ============================================= */

/* --- Floating toggle --- */
#bits-chat-toggle {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
    height: 54px;
    padding: 0 22px 0 16px;
    border-radius: 50px;
    background: #003366;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0,51,102,0.55), 0 2px 8px rgba(0,0,0,0.22);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
/* pulse ring */
#bits-chat-toggle::before {
    content: '';
    position: absolute; inset: -5px;
    border-radius: 50px;
    background: rgba(0,51,102,0.22);
    animation: chatToggleRing 2.6s ease-in-out infinite;
}
@keyframes chatToggleRing {
    0%,100% { transform: scale(1);    opacity: 0.7; }
    50%      { transform: scale(1.06); opacity: 0; }
}
#bits-chat-toggle:hover {
    transform: scale(1.04) translateY(-2px);
    background: #00254d;
    box-shadow: 0 10px 36px rgba(0,51,102,0.70), 0 4px 12px rgba(0,0,0,0.25);
}
#bits-chat-toggle svg {
    width: 24px; height: 24px; fill: #29ABE2;
    pointer-events: none; position: relative; z-index: 1; flex-shrink: 0;
}
#bits-chat-toggle .bits-chat-label {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    position: relative; z-index: 1;
    white-space: nowrap;
}
#bits-chat-toggle .bits-chat-badge {
    position: absolute; top: 6px; right: 6px;
    width: 11px; height: 11px;
    background: #2ecc71; border-radius: 50%;
    border: 2px solid #003366; z-index: 2;
    box-shadow: 0 0 6px rgba(46,204,113,0.8);
}

/* --- Chat panel --- */
#bits-chatbot {
    position: fixed;
    bottom: 104px; right: 28px;
    z-index: 9998;
    width: 370px; height: 530px;
    background: #fff;
    border-radius: 22px;
    box-shadow:
        0 28px 80px rgba(0,18,51,0.24),
        0 8px 24px rgba(41,171,226,0.12),
        0 0 0 1px rgba(0,51,102,0.06);
    display: flex; flex-direction: column;
    overflow: hidden;
    transform: scale(0.84) translateY(32px);
    opacity: 0; pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
    transform-origin: bottom right;
}
#bits-chatbot.bits-chat-open {
    transform: scale(1) translateY(0);
    opacity: 1; pointer-events: all;
}

/* --- Header --- */
.bits-chat-head {
    background: linear-gradient(135deg, #001220 0%, #002756 55%, #004080 100%);
    padding: 15px 18px;
    display: flex; align-items: center; gap: 13px;
    flex-shrink: 0; position: relative; overflow: hidden;
}
/* decorative glow orbs */
.bits-chat-head::before {
    content: '';
    position: absolute; top: -24px; right: -16px;
    width: 110px; height: 110px; border-radius: 50%;
    background: radial-gradient(circle, rgba(41,171,226,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.bits-chat-head::after {
    content: '';
    position: absolute; bottom: -28px; left: 30px;
    width: 80px; height: 80px; border-radius: 50%;
    background: radial-gradient(circle, rgba(41,171,226,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.bits-chat-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #29ABE2 0%, #0066cc 100%);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #fff; font-size: 16px;
    flex-shrink: 0; position: relative; z-index: 1;
    box-shadow: 0 0 0 3px rgba(41,171,226,0.35), 0 4px 14px rgba(0,0,0,0.25);
}
.bits-chat-head-info { flex: 1; position: relative; z-index: 1; }
.bits-chat-head-name  { color: #fff; font-weight: 700; font-size: 14px; line-height: 1.2; letter-spacing: 0.1px; }
.bits-chat-head-status {
    display: flex; align-items: center; gap: 5px;
    color: rgba(255,255,255,0.55); font-size: 11px; margin-top: 3px;
}
.bits-chat-online-dot {
    width: 7px; height: 7px; background: #2ecc71; border-radius: 50%;
    box-shadow: 0 0 7px rgba(46,204,113,0.8);
    animation: bitsOnlinePulse 2.4s ease-in-out infinite;
}
@keyframes bitsOnlinePulse {
    0%,100% { opacity: 1; } 50% { opacity: 0.35; }
}
.bits-chat-head-close {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.65);
    font-size: 17px; cursor: pointer;
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; position: relative; z-index: 1;
}
.bits-chat-head-close:hover {
    background: rgba(255,255,255,0.22);
    color: #fff; border-color: rgba(255,255,255,0.3);
}

/* --- Messages area --- */
.bits-chat-msgs {
    flex: 1; overflow-y: auto;
    padding: 18px 14px 10px;
    display: flex; flex-direction: column; gap: 12px;
    background: linear-gradient(160deg, #eef5ff 0%, #f5f8fc 50%, #f0f4f8 100%);
    scroll-behavior: smooth;
}
.bits-chat-msgs::-webkit-scrollbar { width: 3px; }
.bits-chat-msgs::-webkit-scrollbar-track { background: transparent; }
.bits-chat-msgs::-webkit-scrollbar-thumb { background: #c0d0e4; border-radius: 4px; }

.bits-cmsg {
    display: flex; align-items: flex-end; gap: 8px;
    animation: msgSlideIn 0.3s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes msgSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.bits-cmsg.user-msg { align-self: flex-end; flex-direction: row-reverse; }
.bits-cmsg.bot-msg  { align-self: flex-start; }

.bits-cmsg-av {
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, #002756, #004d99);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,39,86,0.3);
}

.bits-cbubble {
    max-width: 256px;
    padding: 11px 15px;
    font-size: 13.5px;
    line-height: 1.6;
    word-wrap: break-word;
}
.bits-cmsg.bot-msg .bits-cbubble {
    background: #fff;
    color: #1a2340;
    border-radius: 18px 18px 18px 5px;
    box-shadow: 0 2px 14px rgba(0,30,80,0.10), 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,51,102,0.07);
}
.bits-cmsg.user-msg .bits-cbubble {
    background: linear-gradient(135deg, #29ABE2 0%, #0073cc 100%);
    color: #fff;
    border-radius: 18px 18px 5px 18px;
    box-shadow: 0 4px 18px rgba(41,171,226,0.40);
}

/* --- Typing indicator --- */
.bits-typing-wrap {
    display: flex; align-items: flex-end; gap: 8px;
    animation: msgSlideIn 0.28s ease both;
}
.bits-typing-dots {
    background: #fff;
    border-radius: 18px 18px 18px 5px;
    border: 1px solid rgba(0,51,102,0.07);
    box-shadow: 0 2px 14px rgba(0,30,80,0.10);
    padding: 13px 16px;
    display: flex; gap: 4px; align-items: center;
}
.bits-typing-dots span {
    width: 7px; height: 7px;
    background: linear-gradient(135deg, #29ABE2, #0073cc);
    border-radius: 50%;
    animation: bitsTypingBounce 1.3s infinite ease-in-out;
}
.bits-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.bits-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bitsTypingBounce {
    0%,60%,100% { transform: translateY(0); opacity: 0.6; }
    30%          { transform: translateY(-8px); opacity: 1; }
}

/* --- Quick replies --- */
.bits-chat-qr {
    padding: 8px 14px 11px;
    display: flex; flex-wrap: wrap; gap: 6px;
    background: linear-gradient(180deg, #eef5ff 0%, #f5f8fc 100%);
    flex-shrink: 0;
    border-top: 1px solid rgba(0,51,102,0.07);
}
.bits-qr-btn {
    background: #fff;
    border: 1.5px solid rgba(41,171,226,0.6);
    color: #0066cc;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12px; font-weight: 600;
    cursor: pointer; font-family: var(--bits-font);
    white-space: nowrap;
    box-shadow: 0 1px 6px rgba(41,171,226,0.14);
    transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.bits-qr-btn:hover {
    background: linear-gradient(135deg, #29ABE2, #0073cc);
    color: #fff; border-color: transparent;
    box-shadow: 0 4px 16px rgba(41,171,226,0.45);
    transform: translateY(-2px) scale(1.04);
}

/* --- Input row --- */
.bits-chat-input-row {
    display: flex; gap: 9px;
    padding: 12px 14px;
    border-top: 1px solid rgba(0,51,102,0.07);
    background: #fff;
    flex-shrink: 0; align-items: center;
}
#bits-chat-field {
    flex: 1;
    border: 1.5px solid #dde8f5;
    border-radius: 24px;
    padding: 10px 18px;
    font-size: 13px;
    font-family: var(--bits-font);
    outline: none;
    background: #f2f7fd;
    color: #1a2340;
    transition: all 0.22s;
}
#bits-chat-field:focus {
    border-color: #29ABE2;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(41,171,226,0.14);
}
#bits-chat-field::placeholder { color: #9db8d4; }
#bits-chat-submit {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #29ABE2 0%, #0073cc 100%);
    border: none; border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(41,171,226,0.45);
    transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}
#bits-chat-submit:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(41,171,226,0.60);
}
#bits-chat-submit svg { width: 17px; height: 17px; fill: #fff; pointer-events: none; }

/* --- Mobile --- */
@media (max-width: 480px) {
    #bits-chatbot     { width: calc(100vw - 24px); right: 12px; bottom: 86px; height: 72vh; }
    #bits-chat-toggle { right: 14px; bottom: 16px; padding: 0 16px 0 12px; height: 48px; }
}

/* ── Objectives Numbered ── */
.bits-objectives-numbered { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.bits-obj-item { display: flex; gap: 16px; align-items: flex-start; }
.bits-obj-num { background: #003366; color: #fff; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }
.bits-obj-text { padding-top: 6px; color: #444; line-height: 1.6; }

/* ── Committee Block ── */
.bits-committee-block { border-left: 4px solid #29ABE2; padding-left: 24px; margin: 40px 0 0; }
.bits-committee-block h2 { margin-top: 0; font-size: 1.25rem; color: #003366; }

/* ── Steps List ── */
.bits-steps-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.bits-step { display: flex; gap: 20px; align-items: flex-start; }
.bits-step-num { background: #29ABE2; color: #fff; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.bits-step-body h4 { margin: 4px 0 6px; color: #003366; }
.bits-step-body p  { margin: 0; color: #555; line-height: 1.6; }

/* ── Download List ── */
.bits-download-list { display: flex; flex-direction: column; gap: 16px; }
.bits-download-item { display: flex; align-items: center; gap: 20px; background: #f8f9fa; border: 1px solid #e0eaf2; border-radius: 10px; padding: 20px 24px; }
.bits-download-icon { font-size: 2rem; flex-shrink: 0; }
.bits-download-info { flex: 1; }
.bits-download-info strong { display: block; color: #003366; font-size: 1rem; margin-bottom: 4px; }
.bits-download-info span { color: #666; font-size: 0.88rem; line-height: 1.5; }
.bits-download-btn { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 600px) {
    .bits-download-item { flex-direction: column; text-align: center; }
    .bits-download-btn { width: 100%; text-align: center; }
}

/* ── Notice Box ── */
.bits-notice-box h3 { margin-top: 0; }

/* ── Leadership Grid ── */
.bits-leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.bits-leader-card {
    background: #f4f8fc;
    border: 1px solid #d0e4f0;
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
}
.bits-leader-role {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #29ABE2;
    margin-bottom: 6px;
}
.bits-leader-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #003366;
    line-height: 1.35;
}

/* ── Past Events ── */
.bits-past-event-card {
    background: #fff;
    border: 1px solid #e0eaf2;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    align-items: start;
}
.bits-past-event-date {
    background: #003366;
    color: #fff;
    border-radius: 8px;
    padding: 16px 10px;
    text-align: center;
    font-weight: 700;
}
.bits-past-event-date .month { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.bits-past-event-date .year  { font-size: 0.85rem; color: #29ABE2; margin-top: 4px; }
.bits-past-event-date .days  { font-size: 1.4rem; line-height: 1; margin: 4px 0; }
.bits-past-event-tag {
    display: inline-block;
    background: #e8f6fd;
    color: #29ABE2;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.bits-past-event-body h3 { margin: 0 0 8px; color: #003366; font-size: 1.1rem; }
.bits-past-event-body p  { margin: 0 0 10px; color: #555; font-size: 0.9rem; line-height: 1.6; }
.bits-past-event-meta    { font-size: 0.82rem; color: #888; }
.bits-past-event-meta span { margin-right: 16px; }
@media (max-width: 580px) {
    .bits-past-event-card { grid-template-columns: 1fr; }
    .bits-past-event-date { display: flex; gap: 12px; align-items: center; justify-content: center; padding: 12px; }
}
