/* Search */


.center-wrapper {
    min-height: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}


.InputContainer {
    width: 350px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgb(227, 213, 255), rgb(255, 231, 231));
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.075);
}

.input {
    width: 340px;
    height: 40px;
    border: none;
    outline: none;
    caret-color: rgb(255, 81, 0);
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    padding-left: 15px;
    letter-spacing: 0.8px;
    color: rgb(19, 19, 19);
    font-size: 13.4px;
}






/* events button */

.btn-center {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
    font-size: 15px;
}

.btn-2 {
    /* background: #004dff; */
    background: linear-gradient(0deg, #3f4882 0%, #6472c8 100%);
    border: none;
}

.btn-2:before {
    height: 0%;
    width: 2px;
}

.btn-2:hover {
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .5),
        -4px -4px 6px 0 rgba(116, 125, 136, .5),
        inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
        inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
}




/* tesimony video */



.carousel {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0px auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s ease;
}

.slide {
    flex: 0 0 25%;
    /* 4 items per view */
    padding: 12px;
}

.slide-content {
    position: relative;
    background: #1f2937;
    color: #fff;
    border-radius: 12px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    overflow: hidden;
    cursor: pointer;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.slide-content:hover {
    filter: grayscale(0%);
}

.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 24px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease;
    text-align: center;
    max-width: 90%;
    min-width: 90%;
    bottom: 10px;
}

.slide-content:hover .slide-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.slide-title {
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.slide-description {
    font-size: 0.875rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
    display: none;
    transition: all 0.3s ease-in-out;
}

/* Navigation */
.nav_video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(81 93 166);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Pagination dots */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    margin: 0 6px;
    cursor: pointer;
}

.dot.active {
    background: #4f46e5;
}

/* Responsive */
@media (max-width: 900px) {
    .slide {
        flex: 0 0 50%;
    }

    /* 2 per view */
}

@media (max-width: 500px) {
    .slide {
        flex: 0 0 100%;
    }

    /* 1 per view */
}

.slide:hover .slide-description {
    display: block;
    transition: all 0.3s ease-in-out;
}




/* Map */
.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    /* optional */
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}



/* testing */
:root {
    --bship-blue: #4a5899;
    --text-gray: #666;
    --border-color: #f0f0f0;
}

/* --- Container & Layout --- */
.container2 {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-flex-row {
    display: flex;
    gap: 40px;
    align-items: flex-end;
    /* Bottom alignment for desktop */
}

.content-left {
    flex: 1.2;
    width: 100%;
}

.content-right {
    flex: 1;
    width: 100%;
}

/* --- Header Text Row --- */
.text-header-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.title-col {
    flex: 1.5;
}

.desc-col {
    flex: 1;
}

.title-col h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    margin: 0;
}

.title-col h1 span {
    color: var(--bship-blue);
}

.desc-col p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* --- Video Preview --- */
.video-container2 {
    width: 100%;
    max-width: 800px;
    /* Optional: limit max size */
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 0px 30px rgb(29 29 29 / 20%);
}

.video-container2 video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}


/* --- Stats Card & Grid --- */
.stats-card {
    position: relative;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 0px 30px rgb(0 0 0 / 18%);
    overflow: hidden;
    /* Keeps background colors inside radius */
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
}




.stat-item {
    padding: 55px 10px;
}

/* Grid Border & Background Logic */
.ba {
    border-right: 1px solid var(--border-color);
    /* border-bottom: 1px solid var(--border-color); */
}

.bb {
    border-bottom: 1px solid var(--border-color);
    /* background: #f9f9f9; */
}

.bc {
    border-right: 1px solid var(--border-color);
    /* background: #f9f9f9; */
}

.bd {
    background: #fff;
}

.stat-item h2 {
    color: var(--bship-blue);
    font-size: 70px;
    margin: 0;
}

.stat-item p {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 5px;
}

/* --- Floating Revenue Box --- */
.revenue-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px 0 30px 0px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
    z-index: 5;
}

.revenue-box h2 {
    font-size: 50px;
    color: var(--bship-blue);
    margin: 0;
}

.revenue-box p {
    font-size: 16px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Mobile Responsive Queries --- */

@media (max-width: 992px) {
    .main-flex-row {
        flex-direction: column;
        align-items: stretch;
        /* Makes video/card full width */
        gap: 30px;
    }

    .text-header-row {
        flex-direction: column;
        gap: 15px;
    }

    .content-right {
        margin-top: 20px;
    }

    .stat-item {
        padding: 60px 10px;
        /* Smaller padding for mobile */
    }
}

@media (max-width: 480px) {
    .title-col h1 {
        font-size: 22px;
    }

    .revenue-box {
        width: 150px;
        padding: 10px;
    }

    .revenue-box h2 {
        font-size: 18px;
    }

    .stat-item h2 {
        font-size: 24px;
    }
}















/* banner */
.video-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    border-radius: 30px 30px 30px 30px;
}


.video-banner {
    position: relative;
    width: 90%;
    /* Reduce from 100% */
    max-width: 1400px;
    /* Optional max limit */
    height: 700px;
    margin: 40px auto;
    /* Center horizontally */
    overflow: hidden;
    border-radius: 30px;
    margin-top: 120px;
    box-shadow: 0 0px 30px rgb(65 65 65 / 76%);
}




.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}





.banner-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgb(115 115 115 / 39%);
    /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.banner-content h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
}

.banner-content p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
}

.banner-btn {
    background: #515da6;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.banner-btn:hover {
    background: #fff;
    color: #515da6;
}


@media (max-width: 768px) {
    .video-banner {
        height: 70vh;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 14px;
    }
}




@media (max-width: 1200px) {
    .video-banner {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .video-banner {
        width: 96%;
    }
}

@media (max-width: 768px) {
    .video-banner {
        width: 100%;
        height: 60vh;
        border-radius: 30px;
        /* Optional for full mobile look */
    }
}





/* Facts */
/* Fun Facts Strip Styling */
.fun-facts-strip {
    padding: 60px 0;
    background: #fdfdfd;
    /* Light background strip */
    position: relative;
}

.stats-bar {
    background: #414a80;
    /* BSHIP Primary Purple/Indigo */
    padding: 40px 20px;
    border-radius: 100px;
    /* Capsule shape */
    box-shadow: 0 15px 35px rgba(122, 106, 216, 0.3);
    color: #fff;
}

.stats-grid-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
}

.stat-node {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.stat-node:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 28px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.stat-content p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .stats-bar {
        border-radius: 30px;
    }

    .stat-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .stats-grid-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2x2 grid on mobile */
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .stats-bar {
        padding: 30px;
    }
}














/* COre */
.core_team_1 {
    border: #1f2937 1px solid;
    border-radius: 20px;
    background: linear-gradient(220deg, #d9be45 30%, #ffec99 100%);
    /* margin: 20px 350px; */
}

.core_team_2 {
    border: #1f2937 1px solid;
    border-radius: 20px;
    background: linear-gradient(321deg, #a0a9e1 30%, #7b8bee 100%);
    margin: 20px 480px;
}



/* BG */








/* New Menu */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ─── TOKENS ─────────────────────────────────────── */
:root {
    --bs-bg: #ffffff;
    --bs-border: #e8eaf6;
    --bs-h: 72px;
    --bs-blue: #4a5899;
    --bs-blue-dk: #3a4778;
    --bs-lnk: #3a3a3a;
    --bs-lnk-hov: #4a5899;
    --bs-lnk-active-bg: #eef0fb;
    --bs-drop-bg: #ffffff;
    --bs-drop-bdr: #dde1f5;
    --bs-drop-hov: #eef0fb;
    --bs-hi-bg: #f59e0b;
    --bs-hi-hov: #d97706;
    --bs-hi-txt: #1a1a1a;
    --bs-rad: 8px;
    --bs-font: 'Poppins', system-ui, sans-serif;
}

body {
    font-family: var(--bs-font);
    background: #f5f6fa;
    min-height: 100vh;
}

/* ─── HEADER ─────────────────────────────────────── */
.bs-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--bs-bg);
    border-bottom: 1px solid var(--bs-border);
    box-shadow: 0 2px 18px rgba(74, 88, 153, 0.09);
    height: 100px;
}

.bs-header__row {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* ─── LOGO ───────────────────────────────────────── */
.bs-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.bs-logo__img {
    height: 80px;
    width: auto;
    display: block;
    /* Fallback text if image is missing */
}

/* Fallback if image doesn't load */
.bs-logo__text {
    font-size: 22px;
    font-weight: 700;
    color: var(--bs-blue);
    letter-spacing: -0.5px;
    display: none;
    /* shown via JS if img fails */
}

/* ─── DESKTOP NAV ────────────────────────────────── */
.bs-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.bs-nav__item {
    position: relative;
}

/* Normal link */
.bs-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bs-lnk);
    text-decoration: none;
    border-radius: var(--bs-rad);
    white-space: nowrap;
    font-family: var(--bs-font);
    transition: color 0.18s, background 0.18s;
}

.bs-nav__link:hover {
    color: var(--bs-lnk-hov);
    background: var(--bs-lnk-active-bg);
}

/* Active state */
.bs-nav__link--active {
    color: var(--bs-lnk-hov);
    background: var(--bs-lnk-active-bg);
}

/* ── Dropdown trigger ── */
.bs-nav__link--has-drop {
    cursor: pointer;
    user-select: none;
}

.bs-chevron {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.bs-nav__item--drop:hover .bs-chevron {
    transform: rotate(180deg);
}

/* ── Flyout panel ── */
.bs-flyout {
    position: absolute;
    top: calc(100%);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    pointer-events: none;
    min-width: 180px;
    background: var(--bs-drop-bg);
    border: 1px solid var(--bs-drop-bdr);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 16px 48px rgba(74, 88, 153, 0.18);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.bs-nav__item--drop:hover .bs-flyout {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.bs-flyout__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--bs-lnk);
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--bs-font);
    transition: background 0.15s, color 0.15s;
}

.bs-flyout__link:hover {
    background: var(--bs-drop-hov);
    color: var(--bs-blue);
}

.bs-flyout__link-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bs-blue);
    opacity: 0.4;
    flex-shrink: 0;
}

/* ── Highlighted pill ── */
.bs-nav__link--highlight {
    color: var(--bs-hi-txt);
    background: linear-gradient(359deg, #d7bd44 30%, #fae790 100%);
    font-weight: 600;
    border-radius: 20px;
    padding: 7px 15px;
}

.bs-nav__link--highlight:hover {
    background: var(--bs-hi-hov);
    color: var(--bs-hi-txt);
}

/* ── Sign Up button ── */
.bs-signup {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(220deg, #3f4882 30%, #7484e6 100%);
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    font-family: var(--bs-font);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(74, 88, 153, 0.3);
}

.bs-signup:hover {
    background: var(--bs-blue-dk);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(74, 88, 153, 0.42);
    color: #fff;
}

/* ─── HAMBURGER ──────────────────────────────────── */
.bs-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background: var(--bs-lnk-active-bg);
    border: 1.5px solid var(--bs-border);
    border-radius: var(--bs-rad);
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.bs-burger::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(74, 88, 153, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.2s;
}

.bs-burger:hover {
    background: #dde1f5;
    border-color: var(--bs-blue);
}

.bs-burger:hover::before {
    opacity: 1;
}

.bs-burger__bar {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--bs-blue);
    border-radius: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
    position: relative;
    z-index: 1;
}

/* Animated X */
.bs-burger.is-open .bs-burger__bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.bs-burger.is-open .bs-burger__bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.bs-burger.is-open .bs-burger__bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ─── MOBILE TRAY ────────────────────────────────── */
.bs-tray {
    display: none;
    position: fixed;
    inset: var(--bs-h) 0 0 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow-y: auto;
    padding: 20px 20px 48px;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 199;
    border-top: 1px solid var(--bs-border);
}

.bs-tray.is-open {
    transform: translateX(0);
}

.bs-tray__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bs-tray__link {
    display: block;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--bs-lnk);
    text-decoration: none;
    border-radius: var(--bs-rad);
    font-family: var(--bs-font);
    transition: background 0.15s, color 0.15s;
}

.bs-tray__link:hover,
.bs-tray__link.is-active {
    background: var(--bs-lnk-active-bg);
    color: var(--bs-lnk-hov);
}

/* Tray highlight */
.bs-tray__link--hi {
    background: var(--bs-hi-bg);
    color: var(--bs-hi-txt);
    font-weight: 600;
    border-radius: 20px;
    margin-top: 2px;
}

.bs-tray__link--hi:hover {
    background: var(--bs-hi-hov);
    color: var(--bs-hi-txt);
}

/* Tray accordion button */
.bs-tray__acc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--bs-lnk);
    background: none;
    border: none;
    border-radius: var(--bs-rad);
    cursor: pointer;
    text-align: left;
    font-family: var(--bs-font);
    transition: background 0.15s, color 0.15s;
}

.bs-tray__acc-btn:hover {
    background: var(--bs-lnk-active-bg);
    color: var(--bs-lnk-hov);
}

.bs-tray__acc-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    opacity: 0.55;
}

.bs-tray__acc-btn.is-expanded .bs-tray__acc-icon {
    transform: rotate(180deg);
}

.bs-tray__sub {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.bs-tray__sub.is-open {
    max-height: 300px;
    padding: 4px 0 4px 12px;
}

.bs-tray__sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-radius: var(--bs-rad);
    border-left: 2.5px solid var(--bs-blue);
    margin-bottom: 3px;
    font-family: var(--bs-font);
    transition: background 0.15s, color 0.15s;
}

.bs-tray__sub-link:hover {
    background: var(--bs-lnk-active-bg);
    color: var(--bs-blue);
}

/* Divider between groups */
.bs-tray__divider {
    height: 1px;
    background: var(--bs-border);
    margin: 10px 0;
}

/* Tray CTA */
.bs-tray__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(220deg, #3f4882 30%, #7484e6 100%);
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--bs-font);
    box-shadow: 0 4px 20px rgba(74, 88, 153, 0.32);
    transition: background 0.2s, box-shadow 0.2s;
}

.bs-tray__cta:hover {
    background: var(--bs-blue-dk);
    color: #fff;
    box-shadow: 0 6px 24px rgba(74, 88, 153, 0.42);
}

/* ── Backdrop overlay ── */
.bs-overlay {
    display: none;
    position: fixed;
    inset: var(--bs-h) 0 0 0;
    background: rgba(30, 30, 60, 0.25);
    z-index: 198;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bs-overlay.is-show {
    opacity: 1;
}

/* ─── RESPONSIVE ─────────────────────────────────── */

/* Large desktop */
@media (min-width: 1200px) {
    .bs-nav__link {
        padding: 9px 15px;
        font-size: 14.5px;
    }
}

/* Tablet — tighten up */
@media (max-width: 1024px) {
    .bs-nav__link {
        padding: 7px 9px;
        font-size: 13px;
    }

    .bs-signup {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* Small tablet — tighten more */
@media (max-width: 860px) {
    .bs-nav__link {
        padding: 6px 7px;
        font-size: 12.5px;
    }

    .bs-signup {
        padding: 7px 12px;
        font-size: 12.5px;
    }

    .bs-logo__img {
        height: 42px;
    }
}

/* Mobile — hide desktop nav, show hamburger */
@media (max-width: 720px) {

    .bs-nav,
    .bs-signup-wrap {
        display: none !important;
    }

    .bs-burger {
        display: flex !important;
    }

    .bs-tray {
        display: block;
    }

    /* .bs-overlay {
        display: block;
    } */
}

/* Very small phones */
@media (max-width: 380px) {
    .bs-header__row {
        padding: 0 16px;
    }

    .bs-logo__img {
        height: 38px;
    }
}

/* ─── DEMO PAGE ──────────────────────────────────── */
.demo-body {
    max-width: 600px;
    margin: 80px auto 0;
    padding: 0 24px;
    text-align: center;
}

.demo-body h1 {
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 700;
    color: #2a2a4a;
}

.demo-body p {
    margin-top: 14px;
    font-size: 16px;
    color: #777;
    line-height: 1.7;
}













/* Button */
/* Center container */
.button-container {
    display: flex;
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center */
    min-height: 100vh;
    /* Full screen height */
}

/* From Uiverse.io by KlaujonRuamni */
.beautiful-button {
    position: relative;
    display: inline-block;
    background: linear-gradient(to bottom, #1b1c3f, #4a4e91);
    color: white;
    font-family: "Segoe UI", sans-serif;
    font-weight: bold;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: button-shimmer 2s infinite;
    transition: all 0.3s ease-in-out;
}

.beautiful-button:hover {
    background: linear-gradient(to bottom, #2c2f63, #5b67b7);
    animation: button-particles 1s ease-in-out infinite;
    transform: translateY(-2px);
}

.beautiful-button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes button-shimmer {
    0% {
        background-position: left top;
    }

    100% {
        background-position: right bottom;
    }
}

@keyframes button-particles {
    0% {
        background-position: left top;
    }

    100% {
        background-position: right bottom;
    }
}

.beautiful-button {
    display: block;
    margin: 50px auto;
}