html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* BRAND NEW HOMEPAGE – brandnew.css v5.0 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── HEADER ─────────────────────────── */
.bn-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: box-shadow .3s ease, padding .3s ease;
    will-change: padding, box-shadow;
}


.main-nav a {
    font-size: 13px !important;
}

.bn-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    gap: 20px;
    transition: padding .35s ease
}

.bn-header-logo img {
    height: 38px;
    transition: height .35s ease
}

/* Shrink header on scroll */
.bn-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.bn-header.scrolled .bn-header-inner {
    padding: 10px 40px
}

.bn-header.scrolled .bn-header-logo img {
    height: 28px
}

.bn-header.scrolled .bn-search-box {
    height: 34px
}

.bn-header.scrolled .bn-anand-logo img {
    height: 16px
}

/* Search Bar */
.bn-header-search {
    flex: 1;
    max-width: 460px;
    margin: 0 auto
}

.bn-search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 40px;
    padding: 0;
    border: 2px solid #001B4D;
    overflow: hidden;
    height: 40px;
    transition: height .35s ease, box-shadow .35s ease
}

.bn-search-box:focus-within {
    box-shadow: 0 0 0 3px rgba(0, 70, 170, .15)
}

.bn-search-box input {
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    width: 100%;
    font-family: 'Inter', sans-serif;
    color: #333;
    padding: 0 18px;
    height: 100%
}

.bn-search-box input::placeholder {
    color: #999
}

.bn-search-btn {
    background: #001B4D;
    border: none;
    color: #fff;
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .3s;
    flex-shrink: 0
}

.bn-search-btn:hover {
    background: #008bc4
}

.bn-search-btn i {
    font-size: 14px
}

.bn-header-right {
    display: flex;
    align-items: center;
    gap: 16px
}

.bn-cart-icon {
    position: relative;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: color .3s
}

.bn-cart-icon:hover {
    color: #001B4D
}

.bn-anand-logo img {
    height: 22px;
    transition: height .35s ease
}

.bn-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer
}

/* Mobile Nav */
.bn-mobile-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    transition: left .3s;
    box-shadow: 4px 0 20px rgba(0, 0, 0, .1);
    overflow-y: auto
}

.bn-mobile-nav.open {
    left: 0
}

.bn-mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee
}

.bn-mobile-logo {
    height: 30px
}

.bn-mobile-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer
}

.bn-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.bn-mobile-nav ul li a {
    display: block;
    padding: 14px 24px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background .3s
}

.bn-mobile-nav ul li a:hover {
    background: #f4f5f7;
    color: #001B4D
}

.bn-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 9999;
    display: none
}

.bn-mobile-overlay.open {
    display: block
}

/* ── BLUE NAV + STICKY ────────────────── */
.bn-blue-nav {
    background: #001B4D;
    width: 100%;
}

.bn-blue-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center
}

.bn-blue-nav ul li {
    position: relative
}

.bn-blue-nav ul li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, .3)
}

.bn-blue-nav ul li:last-child::after {
    display: none
}

.bn-blue-nav ul li>a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    display: block;
    transition: background .3s;
    font-family: 'Inter', sans-serif
}

.bn-blue-nav ul li>a:hover {
    background: rgba(255, 255, 255, .12)
}

.bn-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    border-radius: 0 0 8px 8px;
    z-index: 100;
    padding: 8px 0
}

.bn-dropdown:hover .bn-dropdown-menu {
    display: block
}

.bn-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s
}

.bn-dropdown-menu a:hover {
    background: #f4f5f7;
    color: #0039A6;
    padding-left: 24px
}

/* ── HERO SLIDER ──────────────────────── */
/* ── HERO SLIDER ──────────────────────── */
.bn-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.bn-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.bn-hero-slide.active {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.bn-hero-bg {
    position: relative;
    z-index: 1;
}

.bn-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    z-index: 2;
}

.bn-hero-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.bn-hero-container {
    position: absolute;
    inset: 0;
    z-index: 5;
    padding: 60px 6% 40px;
    display: flex;
    align-items: center;
}

.bn-hero-row {
    width: 100%;
    align-items: center;
}

.bn-hero-left {
    color: #fff;
}

.bn-hero-arrows {
    position: absolute;
    right: 40px;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.bn-hero-arrow {
    width: 50px;
    height: 50px;
    background: rgba(0, 57, 166, 0.8);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
    pointer-events: auto;
    /* Re-enable clicks on arrows */
}

.bn-hero-arrow:hover {
    background: #001B4D;
    transform: scale(1.1);
}

.bn-hero-top-text {
    font-size: 14px;
    font-weight: 700;
    color: #0039A6;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bn-hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.bn-text-blue {
    color: #0039A6;
}

.bn-hero-stats-new {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
}

.bn-hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bn-h-stat-icon {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.bn-h-stat-text {
    display: flex;
    flex-direction: column;
}

.bn-h-stat-text strong {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.bn-h-stat-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.bn-hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bn-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.bn-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bn-stat-item i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
}

.bn-stat-info {
    display: flex;
    flex-direction: column;
}

.bn-stat-info strong {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.bn-stat-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.bn-hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bn-btn-blue {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0046aa;
    color: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #0046aa;
    font-size: 12px;
}

.bn-btn-blue:hover {
    background: #003282;
    border-color: #003282;
    color: #fff;
    transform: translateY(-2px);
}

.bn-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.bn-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.bn-hero-left>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bn-hero-slide.active .bn-hero-left>* {
    opacity: 1;
    transform: translateY(0);
}

.bn-hero-slide.active .bn-hero-top-text {
    transition-delay: 0.3s;
}

.bn-hero-slide.active .bn-hero-title {
    transition-delay: 0.5s;
}

.bn-hero-slide.active .bn-hero-desc {
    transition-delay: 0.7s;
}

.bn-hero-slide.active .bn-hero-stats {
    transition-delay: 0.9s;
}

.bn-hero-slide.active .bn-hero-btns {
    transition-delay: 1.1s;
}

.bn-hero-right {
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: 0.6s;
}

.bn-hero-slide.active .bn-hero-right {
    opacity: 1;
    transform: translateX(0);
}

.bn-feature-box {
    background: rgba(0, 20, 50, 0.45);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    width: 100%;
    max-width: 400px;
}

.bn-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
}

.bn-feature-item:last-child {
    margin-bottom: 0;
}

.bn-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 57, 166, 0.15);
    border: 1px solid rgba(0, 57, 166, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0039A6;
    font-size: 20px;
    flex-shrink: 0;
}

.bn-feature-text h4 {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 5px;
    letter-spacing: 0.5px;
}

.bn-feature-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.bn-hero-arrows {
    position: absolute;
    bottom: 60px;
    right: 6%;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.bn-hero-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}

.bn-hero-arrow:hover {
    background: #00a0e3;
    border-color: #00a0e3;
}

@media(max-width: 1200px) {
    .bn-hero-title {
        font-size: 48px;
    }
}

@media(max-width: 991px) {
    .bn-hero-container {
        padding: 120px 20px 60px;
    }

    .bn-hero-right {
        display: none;
    }

    .bn-hero-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bn-hero-desc {
        margin: 0 auto 30px;
    }

    .bn-hero-stats {
        justify-content: center;
    }

    .bn-hero-btns {
        justify-content: center;
    }

    .bn-hero-arrows {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media(max-width: 480px) {
    .bn-hero-title {
        font-size: 32px;
    }

    .bn-stat-item {
        width: 100%;
        justify-content: center;
    }
}

/* ── SECTION TITLES ───────────────────── */
.bn-section-title {
    text-align: center;
    padding: 60px 20px 10px
}

.bn-section-title h2 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #222
}

/* ── STRONG BRANDS SHOWCASE ── */
.bn-brands-showcase {
    padding: 60px 0;
    background: #fff;
}

.bn-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bn-subtitle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.bn-subtitle {
    color: #001B4D;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
}

.bn-line {
    width: 40px;
    height: 1px;
    background: #001B4D;
}

.bn-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a2332;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.bn-title-underline {
    width: 60px;
    height: 4px;
    background: #001B4D;
    margin: 15px auto 0;
    border-radius: 2px;
}

.bn-brands-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.bn-brand-card-v2 {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    background: #001a35;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bn-brand-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.bn-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bn-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.8;
}

.bn-brand-card-v2:hover .bn-card-bg img {
    transform: scale(1.1);
    opacity: 0.6;
}

.bn-card-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 2;
}

.bn-card-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 6px 15px;
    border-radius: 6px;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bn-card-logo img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.bn-card-part {
    position: absolute;
    top: 35%;
    right: -10px;
    width: 160px;
    z-index: 4;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.bn-card-part img {
    width: 100%;
    height: auto;
}

.bn-float {
    animation: bnFloat 4s ease-in-out infinite;
}

@keyframes bnFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.bn-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 5;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.bn-card-icon-box {
    width: 44px;
    height: 40px;
    background: #001B4D;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 159, 224, 0.3);
}

.bn-card-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.bn-card-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px;
    line-height: 1.5;
}

.bn-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.bn-card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.bn-card-link:hover i {
    transform: translateX(5px);
}

.bn-card-link:hover {
    color: #001B4D;
}

.bn-brand-card-btn {
    padding: 10px 24px;
    transition: opacity .4s ease, transform .4s ease;
}

.bn-brand-card:hover .bn-brand-card-btn {
    opacity: 1;
    transform: translateY(0)
}

/* ── AFTERMARKET OVERVIEW ──────────────── */
.bn-aftermarket {
    padding: 50px 0;
    background: #f8fbff;
    background-image: radial-gradient(circle at 10% 90%, rgba(0, 159, 224, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(0, 159, 224, 0.05) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

@keyframes bnItemPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.bn-am-left,
.bn-am-card-new {
    animation: bnItemPulse 6s ease-in-out infinite;
}

.bn-am-card-new:nth-child(1) {
    animation-delay: 0s;
}

.bn-am-card-new:nth-child(2) {
    animation-delay: 0.5s;
}

.bn-am-card-new:nth-child(3) {
    animation-delay: 1s;
}

.bn-am-card-new:nth-child(4) {
    animation-delay: 1.5s;
}

.bn-aftermarket-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.bn-am-left {
    text-align: center;
    width: 100%;
}

.bn-am-left h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a2332;
    line-height: 1.4;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.bn-am-arrow-box {
    display: none;
}

.bn-am-main-stat {
    margin-top: 30px;
}

.bn-stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #001B4D 0%, #006bb3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.bn-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin: 10px 0;
    font-family: 'Inter', sans-serif;
}

.bn-stat-underline {
    width: 40px;
    height: 4px;
    background: #001B4D;
    border-radius: 2px;
    margin: 0 auto;
}

.bn-am-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

.bn-am-card-new {
    background: #fff;
    border-radius: 20px;
    padding: 15px 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.bn-am-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 159, 224, 0.1);
}

.bn-card-dot {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 14px;
    height: 14px;
    background: #001B4D;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 159, 224, 0.6);
}

.bn-card-icon {
    width: 44px;
    height: 44px;
    background: #e6f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #001B4D;
    margin-bottom: 12px;
}

.bn-card-info p {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    margin: 0 0 10px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.bn-card-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #001B4D;
    margin: 0 0 5px;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.bn-card-sub {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.bn-card-line {
    width: 30px;
    height: 3px;
    background: #001B4D;
    border-radius: 2px;
    margin-top: 10px;
}

/* ── BRANDS LOGO CAROUSEL ──────────────── */
.bn-brands-logos-carousel {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: #fff;
    position: relative;
}

.bn-brands-track {
    display: flex;
    width: max-content;
    animation: bnScrollBrands 20s linear infinite;
    gap: 60px;
    align-items: center;
}

.bn-brand-logo-item {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bn-brand-logo-item img {
    max-width: 100%;
    max-height: 60px;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.bn-brand-logo-item:hover img {
    transform: scale(1.1);
}

@keyframes bnScrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-150px * 6 - 60px * 6));
    }
}

/* ── STATS BANNER ─────────────────────── */
.bn-stats-banner {
    background: #f5f6f8;
    padding: 50px 0;
    position: relative
}

.bn-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    gap: 20px
}

.bn-stat-item {
    text-align: center
}

.bn-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: #001B4D;
    font-family: 'Inter', sans-serif;
    line-height: 1
}

.bn-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-top: 6px
}

.bn-stat-line {
    width: 30px;
    height: 3px;
    background: #001B4D;
    margin: 12px auto 0;
    border-radius: 2px
}

/* ── PRODUCT SHOWCASE ─────────────────── */
.bn-showcase {
    padding: 70px 0;
    background: radial-gradient(circle at 70% 50%, #003666 0%, #001a35 100%);
    background-image: linear-gradient(rgba(0, 54, 102, 0.95), rgba(0, 26, 53, 0.95)),
        url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    position: relative;
    overflow: hidden;
    color: #fff;
}

.bn-showcase-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 60px;
}

.bn-showcase-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    max-width: 800px;
    line-height: 1.6;
}

.bn-showcase-heading {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 8px;
    background: rgba(0, 159, 224, 0.05);
    box-shadow: 0 0 20px rgba(0, 159, 224, 0.2);
    margin-bottom: 50px;
    position: relative;
}

.bn-showcase-heading::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: #ffffff;
}

.bn-showcase-heading h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bn-text-light-blue {
    color: #ffffff;
}

.bn-showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px 30px;
}

.bn-sc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.bn-sc-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 159, 224, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    background: rgba(0, 159, 224, 0.1);
    flex-shrink: 0;
}

.bn-sc-item span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.bn-showcase-image-box {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(0, 159, 224, 0.3);
    border-radius: 30px;
    box-shadow: 0 0 40px rgba(0, 159, 224, 0.2);
    overflow: hidden;
}

.bn-showcase-image-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.bn-features-strip {
    background: radial-gradient(circle at 70% 50%, #003666 0%, #001a35 100%);
    background-image: linear-gradient(rgba(0, 54, 102, 0.95), rgba(0, 26, 53, 0.95)),
        url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    padding: 50px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bn-image-glow {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 30px;
    background: linear-gradient(135deg, #001B4D, transparent, #001B4D) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

.bn-showcase-features {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.bn-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bn-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 159, 224, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    background: rgba(0, 159, 224, 0.05);
    flex-shrink: 0;
}

.bn-feat-text h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #fff;
}

.bn-feat-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* ── PRODUCT RANGE ────────────────────── */
.bn-product-range {
    padding: 40px 20px;
    background: #f8f9fa;
    text-align: center;
    padding-bottom: 40px;
}

.bn-product-range h2 {
    font-size: 18px;
    font-weight: 700;
    color: #001B4D;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif
}

.bn-vehicle-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto
}

.bn-vehicle-card {
    width: 260px;
    border: 1px solid #eee;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: all .3s;
    cursor: pointer;
    background: #fff;
    text-decoration: none;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bn-vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bn-vehicle-card.active {
    border: 1px solid #0039A6;
    box-shadow: 0 10px 25px rgba(0, 57, 166, 0.2);
}

.bn-vehicle-img {
    height: 160px;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}

.bn-vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.bn-vehicle-card:hover .bn-vehicle-img img {
    transform: scale(1.05);
}

.bn-vehicle-info {
    position: relative;
    padding: 35px 20px 20px;
    text-align: left;
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.bn-vehicle-icon {
    width: 45px;
    height: 45px;
    background: #0039A6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    top: -22.5px;
    left: 20px;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.bn-vehicle-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #001B4D;
    margin: 0 0 8px;
}

.bn-vehicle-info p {
    font-size: 13px;
    color: #0039A6;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* ── CATEGORIES GRID ──────────────────── */

/* ── SUBCATEGORIES SECTION ────────────────── */
.bn-categories {
    padding: 50px 20px;
    background: #fff;
    position: relative;
    opacity: 0;
    transition: opacity .35s
}

.bn-categories.bn-visible {
    opacity: 1
}



.bn-categories-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto
}

.bn-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 0 auto;
}

.bn-cat-item {
    background: transparent;
    border: 1px solid #0039A6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
    box-shadow: none;
    overflow: visible;
    margin-bottom: 12px;
    height: 130px;
    box-shadow: -5px 8px 5px rgba(0, 57, 166, 0.12);
}

.bn-cat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 57, 166, 0.12);
}

.bn-cat-img-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    height: 100%;
}

.bn-cat-item:hover .bn-cat-img-box {
    transform: scale(1.05);
}

.bn-cat-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bn-cat-item:hover .bn-cat-img-box img {
    transform: scale(1.08);
}

.bn-cat-item h4 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background: #ffffff;
    padding: 0 12px;
    color: #0039A6;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    letter-spacing: 0.2px;
    line-height: 1.3;
    z-index: 2;
    width: auto;
    white-space: nowrap;
    border-radius: 0;
}

.bn-cat-item:hover h4 {
    color: #0039A6;
}


/* ── SUBCATEGORIES SECTION ────────────────── */

.bn-cat-catalogue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.bn-cat-catalogue p {
    font-size: 20px;
    font-weight: 600;
    color: #001B4D;
    margin: 0;
}

.bn-cat-apps {
    display: flex;
    gap: 8px;
}

.bn-cat-apps a img {
    height: 45px;
    transition: transform .2s;
}

.bn-cat-apps a:hover img {
    transform: scale(1.05);
}

.bn-cat-loading,
.bn-cat-empty {
    text-align: center;
    color: #888;
    font-size: 13px;
    padding: 25px;
}

/* ── ABOUT SECTION ────────────────────── */
.bn-about {
    padding: 60px 0;
    background: #fff
}

.bn-about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.bn-about-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden
}

.bn-about-img img {
    width: 100%;
    height: 450px;
    object-fit: fill;
    border-radius: 12px
}

.bn-about-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid #001B4D;
    border-radius: 12px;
    z-index: -1
}

.bn-about-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 8px
}

.bn-about-content .bn-about-tag {
    color: #001B4D;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block
}

.bn-about-content p {
    color: #555;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 16px
}

.bn-about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    padding: 24px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee
}

.bn-about-stat-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #001B4D;
    margin: 0;
    font-family: 'Inter', sans-serif
}

.bn-about-stat-item span {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px
}

.bn-about-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #001B4D;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all .3s;
    margin-top: 10px;
}

.bn-about-btn:hover {
    background: #008bc4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 70, 170, .3)
}

/* ── TESTIMONIALS ─────────────────────── */
.bn-testimonials {
    background: #f4f5f7;
    padding: 80px 0
}

.bn-test-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.bn-test-wrap h2 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 40px;
    text-align: center
}

.bn-test-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.bn-test-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    transition: all .3s;
    border-top: 3px solid #001B4D
}

.bn-test-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1)
}

.bn-test-stars {
    margin-bottom: 16px;
    color: #f5a623;
    font-size: 14px;
    display: flex;
    gap: 3px
}

.bn-test-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 20px
}

.bn-test-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.bn-test-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #001B4D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0
}

.bn-test-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
    margin: 0
}

.bn-test-info span {
    font-size: 12px;
    color: #999
}

/* ── NEWS ─────────────────────────────── */
.bn-news {
    padding: 60px 0;
    background: #fff
}

.bn-news-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.bn-news-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    margin: 0
}

.bn-news-header a {
    color: #001B4D;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase
}

.bn-news-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.bn-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: all .4s
}

.bn-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .12)
}

.bn-news-card-img {
    height: 220px;
    overflow: hidden
}

.bn-news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.bn-news-card:hover .bn-news-card-img img {
    transform: scale(1.08)
}

.bn-news-card-body {
    padding: 24px
}

.bn-news-card-date {
    font-size: 12px;
    color: #001B4D;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.bn-news-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
    margin: 0 0 10px;
    line-height: 1.4
}

.bn-news-card-body p {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    margin: 0
}

/* ── E-CATALOGUE ──────────────────────── */
.bn-ecatalogue {
    padding: 60px 0;
    background: #f5f6f8
}

.bn-ecat-outer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    border-left: 5px solid #001B4D
}

.bn-ecat-left {
    flex-shrink: 0
}

.bn-ecat-phone {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #001B4D, #0060dd);
    display: flex;
    align-items: center;
    justify-content: center
}

.bn-ecat-phone i {
    color: #fff;
    font-size: 28px
}

.bn-ecat-center {
    flex: 1
}

.bn-ecat-badge {
    display: inline-block;
    background: #e8f0fe;
    color: #001B4D;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.bn-ecat-center h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 6px
}

.bn-ecat-center p {
    color: #777;
    font-size: 14px;
    margin: 0;
    line-height: 1.5
}

.bn-ecat-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0
}

.bn-ecat-right a img {
    height: 40px;
    border-radius: 6px;
    transition: transform .3s
}

.bn-ecat-right a:hover img {
    transform: scale(1.05)
}

/* ── ANIMATIONS ───────────────────────── */
.bn-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform
}

.bn-animate.bn-visible {
    opacity: 1;
    transform: translateY(0)
}

/* ── RESPONSIVE ───────────────────────── */
@media(max-width:1199px) {
    .bn-showcase-left h2 {
        font-size: 36px;
    }
}

@media(max-width:1024px) {
    .bn-header-inner {
        padding: 14px 20px;
    }

    .bn-brands-grid-new {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .bn-brand-card-v2 {
        height: 480px;
    }

    .bn-aftermarket-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bn-am-grid-new {
        gap: 20px;
    }

    .bn-about-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bn-showcase-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bn-showcase-left {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .bn-showcase-heading {
        margin-bottom: 30px;
    }

    .bn-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bn-showcase-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .bn-showcase-lists {
        justify-content: center;
    }

    .bn-showcase-right {
        height: auto;
    }
}

@media(max-width:768px) {
    .bn-header {
        transition: none;
    }

    .bn-header-inner {
        padding: 10px 15px;
        flex-wrap: wrap;
    }

    .bn-header.scrolled .bn-header-inner {
        padding: 8px 15px;
    }

    .bn-header-logo img {
        height: 30px;
    }

    .bn-header-search {
        order: 10;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 10px;
    }

    .bn-anand-logo {
        display: none;
    }

    .bn-hamburger {
        display: block;
    }

    .bn-hero {
        margin-top: 135px;
    }

    .bn-hero-box {
        padding: 25px;
        border-radius: 0;
        max-width: 100%;
    }

    .bn-hero-box h2 {
        font-size: 24px;
    }

    .bn-hero-box p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .bn-hero-btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    /* Header wraps, so hero needs more margin */

    .bn-aftermarket-wrap {
        gap: 40px;
    }

    .bn-am-grid-new {
        grid-template-columns: 1fr;
    }

    .bn-stat-number {
        font-size: 80px;
    }

    .bn-am-left h2 {
        font-size: 32px;
    }

    .bn-am-arrow-box {
        margin-bottom: 30px;
    }

    .bn-stat-underline {
        margin: 0 auto;
    }

    .bn-blue-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bn-blue-nav ul {
        justify-content: flex-start;
        padding: 0 10px;
    }

    .bn-blue-nav ul li a {
        padding: 12px 18px;
        font-size: 11px;
        white-space: nowrap;
    }

    .bn-brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bn-brand-card {
        height: 240px;
    }

    .bn-main-title {
        font-size: 32px;
    }

    .bn-brands-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bn-brand-card-v2 {
        height: 440px;
    }

    .bn-about-content h2 {
        font-size: 28px;
    }

    .bn-about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .bn-about-stat-item {
        flex: 1 1 40%;
    }

    .bn-news-grid {
        grid-template-columns: 1fr;
    }

    .bn-test-cards {
        grid-template-columns: 1fr;
    }

    .bn-product-range {
        padding: 40px 15px;
    }

    .bn-vehicle-grid {
        gap: 15px;
    }

    .bn-vehicle-card {
        width: calc(50% - 15px);
        height: auto;
        padding: 15px;
    }

    .bn-stats-inner {
        flex-wrap: wrap;
        gap: 30px;
    }

    .bn-stat-item {
        flex: 1 1 40%;
    }

    .bn-showcase-heading h2 {
        font-size: 32px;
    }

    .bn-showcase-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .bn-showcase-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bn-f-newsletter {
        flex-direction: column;
        text-align: center;
    }

    .bn-f-nl-form {
        max-width: 100%;
    }
}

@media(max-width:480px) {
    .bn-hero {
        margin-top: 130px;
    }

    .bn-header-logo img {
        height: 26px;
    }

    .bn-header-search .bn-search-box {
        height: 36px;
    }

    .bn-section-title h2 {
        font-size: 24px;
    }

    .bn-main-title {
        font-size: 28px;
    }

    .bn-brand-card {
        height: 200px;
    }

    .bn-stat-num {
        font-size: 36px;
    }

    .bn-showcase-heading h2 {
        font-size: 24px;
    }

    .bn-f-bottom {
        flex-direction: column;
        text-align: center;
    }

    .bn-f-legal {
        justify-content: center;
    }

    .bn-f-apps {
        justify-content: center;
    }
}

@media(max-width:991px) {
    .bn-f-newsletter {
        flex-direction: column;
        align-items: flex-start
    }
}

/* ── BRAND NEW FOOTER ─────────────────── */
.bn-footer {
    background: #001e3b;
    color: #d1d5db;
    padding: 60px 0 0;
    font-family: 'Inter', sans-serif
}

.bn-f-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px
}

.bn-f-top {
    padding-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.bn-f-brand {
    flex: 1 1 300px;
}

.bn-f-logo {
    height: 40px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1)
}

.bn-f-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 24px
}

.bn-f-contact {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.bn-f-contact div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #d1d5db;
    font-weight: 500
}

.bn-f-contact i {
    color: #ffffff;
    font-size: 16px
}

.bn-f-links-wrap h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 24px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.bn-f-links-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.bn-f-links-wrap ul li {
    margin-bottom: 12px
}

.bn-f-links-wrap ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color .3s;
    display: inline-block
}

.bn-f-links-wrap ul li a:hover {
    color: #ffffff;
    transform: translateX(4px)
}

.bn-f-newsletter {
    margin-top: 40px;
    background: rgba(255, 255, 255, .03);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, .05)
}

.bn-f-nl-text h4 {
    margin: 0 0 8px;
    color: #fff
}

.bn-f-nl-text p {
    margin: 0;
    font-size: 13px;
    color: #9ca3af
}

.bn-f-nl-form {
    flex: 1;
    max-width: 400px
}

.bn-nl-input-group {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    height: 44px
}

.bn-nl-input {
    flex: 1;
    border: none;
    background: none;
    padding: 0 20px;
    font-size: 14px;
    color: #111;
    outline: none;
    font-family: 'Inter', sans-serif
}

.bn-nl-btn {
    width: 50px;
    height: 100%;
    background: #001B4D;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background .3s
}

.bn-nl-btn:hover {
    background: #008f85;
    color: #fff
}

.bn-f-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px
}

.bn-f-copyright {
    font-size: 12px;
    color: #9ca3af;
    letter-spacing: 1px
}

.bn-f-copyright a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600
}

.bn-f-legal {
    margin-top: 8px;
    display: flex;
    gap: 15px
}

.bn-f-legal a {
    color: #6b7280;
    text-decoration: none;
    transition: color .3s
}

.bn-f-legal a:hover {
    color: #d1d5db
}

.bn-f-apps {
    display: flex;
    align-items: center;
    gap: 15px
}

.bn-f-apps span {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 1px;
    text-transform: uppercase
}

.bn-f-apps a img {
    height: 36px;
    transition: transform .3s
}

.bn-f-apps a:hover img {
    transform: scale(1.05)
}

@media(max-width:991px) {
    .bn-f-newsletter {
        flex-direction: column;
        align-items: flex-start
    }

    .bn-f-nl-form {
        max-width: 100%
    }

    .bn-f-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center
    }

    .bn-f-legal {
        justify-content: center
    }
}

/* ========== CTA SECTION ========== */
.bn-cta-section {
    background: #001B4D;
    padding: 20px 0;
    margin: 0px 0;
}

.bn-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.bn-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.bn-cta-left {
    color: #fff;
    flex: 1;
    min-width: 300px;
}

.bn-cta-left h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.bn-cta-left p {
    font-size: 15px;
    margin: 0;
    color: #e0e0e0;
    font-weight: 400;
}

.bn-cta-right {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bn-cta-btn {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 10px 18px;
    text-decoration: none;
    color: #001B4D;
    min-width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bn-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #001B4D;
}

.bn-cta-icon {
    font-size: 24px;
    color: #0039A6;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1.5px solid #0039A6;
    border-radius: 50%;
}

.bn-cta-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bn-cta-text strong {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #001B4D;
}

.bn-cta-text span {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.bn-cta-arrow {
    color: #0039A6;
    font-size: 16px;
    margin-left: 10px;
}

@media(max-width: 991px) {
    .bn-cta-container {
        padding: 0 20px;
    }

    .bn-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .bn-cta-right {
        width: 100%;
        flex-direction: column;
    }

    .bn-cta-btn {
        width: 100%;
    }
}