/* =====================================================================
   NorthBridge Bank — Custom Stylesheet
   style.css
===================================================================== */

/* ─── CSS Custom Properties ─────────────────────────────────────── */
:root {
    --blue-deep: #0a2540;
    --blue-mid: #1a4a7a;
    --blue-light: #2563ab;
    --blue-accent: #1d6faf;
    --gold: #c8a864;
    --white: #ffffff;
    --off-white: #f7f9fc;
    --gray-light: #eef1f6;
    --gray-mid: #9399a6;
    --gray-dark: #4a5568;
    --text-dark: #1a202c;
    --text-body: #4a5568;
    --shadow-sm: 0 2px 12px rgba(10, 37, 64, 0.08);
    --shadow-md: 0 6px 28px rgba(10, 37, 64, 0.12);
    --shadow-lg: 0 16px 48px rgba(10, 37, 64, 0.18);
    --radius: 8px;
    --radius-lg: 14px;
    --transition: all 0.3s ease;
}

/* ─── Global Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.72;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--blue-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--blue-deep);
}

/* ─── Utility ───────────────────────────────────────────────────── */
.section-pad {
    padding: 88px 0;
}

.section-pad-sm {
    padding: 56px 0;
}

.nb-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-accent);
    margin-bottom: 0.6rem;
}

.nb-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--blue-deep);
    margin-bottom: 1rem;
}

.nb-section-title.light {
    color: var(--white);
}

.nb-section-body {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 680px;
}

.nb-divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1rem 0 1.6rem;
}

.nb-divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.nb-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--blue-light);
    color: var(--white) !important;
    border: 2px solid var(--blue-light);
    padding: 0.72rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
}

.nb-btn-primary:hover {
    background: var(--blue-deep);
    border-color: var(--blue-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nb-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    color: var(--blue-light) !important;
    border: 2px solid var(--blue-light);
    padding: 0.72rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.nb-btn-outline:hover {
    background: var(--blue-light);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nb-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--white);
    color: var(--blue-deep) !important;
    border: 2px solid var(--white);
    padding: 0.72rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nb-btn-white:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nb-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 0.72rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nb-btn-outline-white:hover {
    background: var(--white);
    color: var(--blue-deep) !important;
    border-color: var(--white);
}

/* Navbar button */
.nb-btn-outline-light {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius);
    color: var(--white);
    transition: var(--transition);
}

.nb-btn-outline-light:hover {
    background: var(--white);
    color: var(--blue-deep) !important;
}

/* ─── NAVBAR ────────────────────────────────────────────────────── */
.nb-navbar {
    background: transparent;
    padding: 1.1rem 0;
    transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
    z-index: 1050;
}

.nb-navbar.scrolled {
    background: var(--blue-deep) !important;
    padding: 0.65rem 0;
    box-shadow: 0 4px 24px rgba(10, 37, 64, 0.35);
}

.nb-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nb-brand-logo {
    height: 56px;
    width: auto;
    display: block;
    max-width: 100%;
}

.nb-navbar .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0.45rem 0.75rem !important;
    border-radius: 5px;
    transition: var(--transition);
    position: relative;
}

.nb-navbar .nav-link:hover,
.nb-navbar .nav-link.nb-active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
    .nb-navbar .navbar-collapse {
        background: var(--blue-deep);
        border-radius: 10px;
        margin-top: 0.6rem;
        padding: 0.75rem 1rem 1rem;
        box-shadow: 0 8px 32px rgba(10, 37, 64, 0.45);
    }
}

.nb-navbar .nav-link.nb-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* ─── HERO SECTION ──────────────────────────────────────────────── */
.nb-hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Carousel container */
.nb-hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nb-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform-origin: center;
}

.nb-hero-slide.active {
    opacity: 1;
    animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

/* Dark overlay */
.nb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(6, 20, 40, 0.78) 0%,
            rgba(10, 37, 64, 0.65) 60%,
            rgba(10, 37, 64, 0.45) 100%);
    z-index: 1;
}

.nb-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.nb-hero-tagline {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    animation: fadeInUp 0.9s 0.4s forwards;
}

.nb-hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin: 1rem 0 1.4rem;
    opacity: 0;
    animation: fadeInUp 0.9s 0.7s forwards;
}

.nb-hero-body {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.9s 1s forwards;
}

.nb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 0.9s 1.25s forwards;
}

/* Slide dots */
.nb-hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.nb-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.nb-hero-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.fade-in-up.delay-1 {
    transition-delay: 0.1s;
}

.fade-in-up.delay-2 {
    transition-delay: 0.2s;
}

.fade-in-up.delay-3 {
    transition-delay: 0.3s;
}

.fade-in-up.delay-4 {
    transition-delay: 0.4s;
}

.fade-in-up.delay-5 {
    transition-delay: 0.5s;
}

.fade-in-up.delay-6 {
    transition-delay: 0.6s;
}

/* ─── TRUST INDICATORS ──────────────────────────────────────────── */
.nb-trust {
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-light);
}

.nb-trust-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.4rem 0;
}

.nb-trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue-deep);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.nb-trust-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-mid);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.nb-trust-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.nb-trust-divider {
    width: 1px;
    height: 56px;
    background: var(--gray-light);
    margin: 0 auto;
}

/* ─── ABOUT PREVIEW ─────────────────────────────────────────────── */
.nb-about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.nb-about-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.nb-about-img:hover img {
    transform: scale(1.03);
}

.nb-about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--blue-deep);
    color: var(--white);
    padding: 0.9rem 1.4rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
}

.nb-about-badge-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.nb-about-badge-text {
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
}

/* ─── SERVICE CARDS ─────────────────────────────────────────────── */
.nb-service-card {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.nb-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 171, 0.15);
}

.nb-service-card-img {
    height: 200px;
    overflow: hidden;
}

.nb-service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.nb-service-card:hover .nb-service-card-img img {
    transform: scale(1.05);
}

.nb-service-card-body {
    padding: 1.5rem;
}

.nb-service-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--off-white);
    color: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.9rem;
    transition: var(--transition);
}

.nb-service-card:hover .nb-service-card-icon {
    background: var(--blue-deep);
    color: var(--white);
}

.nb-service-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 0.5rem;
}

.nb-service-card-text {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.nb-service-card-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue-light);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.nb-service-card-link i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.nb-service-card:hover .nb-service-card-link i {
    transform: translateX(4px);
}

/* ─── WHY CHOOSE US ─────────────────────────────────────────────── */
.nb-why {
    background: var(--off-white);
}

.nb-why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    height: 100%;
}

.nb-why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.nb-why-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.nb-why-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* ─── STATISTICS ────────────────────────────────────────────────── */
.nb-stats {
    background: var(--blue-deep);
    padding: 72px 0;
}

.nb-stat-item {
    text-align: center;
}

.nb-stat-number {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.nb-stat-suffix {
    color: var(--gold);
}

.nb-stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nb-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    height: 64px;
    margin: 0 auto;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────────── */
.nb-testimonials {
    background: var(--white);
}

.nb-testimonial-track {
    position: relative;
    overflow: hidden;
}

.nb-testimonial-slide {
    display: none;
    animation: fadeSlide 0.5s ease;
}

.nb-testimonial-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nb-testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2.4rem;
    border: 1px solid var(--gray-light);
    position: relative;
}

.nb-testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    line-height: 0.7;
    color: var(--blue-light);
    opacity: 0.18;
    position: absolute;
    top: 1.4rem;
    left: 1.8rem;
    font-family: Georgia, serif;
}

.nb-testimonial-text {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.8rem;
    padding-top: 1rem;
}

.nb-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nb-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.nb-testimonial-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.1rem;
}

.nb-testimonial-role {
    font-size: 0.82rem;
    color: var(--gray-mid);
}

.nb-testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
}

/* Dots */
.nb-t-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.nb-t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.nb-t-dot.active {
    background: var(--blue-light);
    width: 24px;
    border-radius: 4px;
}

/* ─── ADVISORY SECTION ──────────────────────────────────────────── */
.nb-advisory {
    background: var(--off-white);
}

.nb-advisory-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.nb-advisory-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* ─── CTA BAND ──────────────────────────────────────────────────── */
.nb-cta {
    background: var(--blue-deep);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.nb-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.nb-cta::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.nb-cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.nb-cta-body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto 2rem;
}

/* ─── PAGE BANNER ───────────────────────────────────────────────── */
.nb-page-banner {
    position: relative;
    height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 70px;
    /* navbar clearance */
}

.nb-page-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nb-page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 20, 40, 0.82), rgba(10, 37, 64, 0.6));
}

.nb-page-banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.nb-banner-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.nb-breadcrumb .breadcrumb-item,
.nb-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.nb-breadcrumb .breadcrumb-item.active {
    color: var(--gold);
}

.nb-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ─── ABOUT PAGE ────────────────────────────────────────────────── */
.nb-history-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.nb-history-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* Mission/Vision */
.nb-mv-card {
    background: var(--blue-deep);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.4rem;
    height: 100%;
}

.nb-mv-card.light {
    background: var(--off-white);
    color: var(--text-dark);
    border: 1px solid var(--gray-light);
}

.nb-mv-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.nb-mv-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: inherit;
    margin-bottom: 0.75rem;
}

/* Core Values */
.nb-value-card {
    text-align: center;
    padding: 2rem 1.4rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.nb-value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(37, 99, 171, 0.2);
}

.nb-value-icon {
    font-size: 2.2rem;
    color: var(--blue-light);
    margin-bottom: 1rem;
}

.nb-value-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 0.5rem;
}

/* Leadership */
.nb-leader-card {
    text-align: center;
    padding: 2rem 1.2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nb-leader-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.nb-leader-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--off-white);
    box-shadow: var(--shadow-sm);
    margin: 0 auto 1.2rem;
}

.nb-leader-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 0.2rem;
}

.nb-leader-role {
    font-size: 0.85rem;
    color: var(--gray-mid);
}

/* Timeline */
.nb-timeline {
    position: relative;
    padding: 2rem 0;
}

.nb-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-light);
    transform: translateX(-50%);
}

.nb-timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 32px);
    margin-bottom: 3rem;
    position: relative;
}

.nb-timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 32px);
}

.nb-timeline-dot {
    position: absolute;
    left: 50%;
    top: 18px;
    width: 14px;
    height: 14px;
    background: var(--blue-light);
    border: 3px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--gray-light);
}

.nb-timeline-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow-sm);
    max-width: 360px;
}

.nb-timeline-year {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

.nb-timeline-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.nb-timeline-text {
    font-size: 0.88rem;
    color: var(--text-body);
}

/* ─── SERVICES PAGE ─────────────────────────────────────────────── */
.nb-svc-row {
    padding: 64px 0;
    border-bottom: 1px solid var(--gray-light);
}

.nb-svc-row:last-child {
    border-bottom: none;
}

.nb-svc-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.nb-svc-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.nb-svc-img:hover img {
    transform: scale(1.03);
}

.nb-svc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--off-white);
    color: var(--blue-light);
    border-radius: 12px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* ─── FAQ PAGE ──────────────────────────────────────────────────── */
.nb-faq .accordion-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.nb-faq .accordion-button {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    padding: 1.2rem 1.5rem;
    gap: 0.75rem;
}

.nb-faq .accordion-button::after {
    flex-shrink: 0;
}

.nb-faq .accordion-button:not(.collapsed) {
    color: var(--blue-deep);
    background: var(--off-white);
    box-shadow: none;
}

.nb-faq .accordion-button:focus {
    box-shadow: none;
}

.nb-faq .accordion-body {
    font-size: 0.97rem;
    color: var(--text-body);
    line-height: 1.75;
    background: var(--white);
    padding: 1rem 1.5rem 1.4rem;
}

.nb-faq-icon {
    color: var(--blue-light);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* ─── CONTACT PAGE ──────────────────────────────────────────────── */
.nb-contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
}

.nb-form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 0.4rem;
}

.nb-form-control {
    width: 100%;
    padding: 0.72rem 1rem;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.nb-form-control:focus {
    border-color: var(--blue-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 171, 0.12);
}

.nb-form-control.error {
    border-color: #e53e3e;
}

.nb-error-msg {
    font-size: 0.82rem;
    color: #e53e3e;
    margin-top: 0.25rem;
}

.nb-success-alert {
    background: #edf7ed;
    border: 1px solid #a3d9a5;
    color: #276749;
    border-radius: var(--radius);
    padding: 1rem 1.4rem;
    font-weight: 500;
    font-size: 0.97rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nb-info-card {
    background: var(--blue-deep);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
}

.nb-info-card h4 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.nb-info-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nb-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.nb-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--gold);
}

.nb-map-placeholder {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-mid);
    border: 1px solid var(--gray-light);
}

.nb-map-placeholder i {
    font-size: 3rem;
    color: var(--blue-light);
    margin-bottom: 0.75rem;
}

.nb-map-placeholder p {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
.nb-footer {
    background: var(--blue-deep);
}

.nb-footer-top {
    padding: 72px 0 48px;
}

.nb-footer-brand {
    display: flex;
    align-items: center;
}

.nb-footer-logo {
    height: 58px;
    width: auto;
    display: block;
    max-width: 100%;
}

.nb-footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.72;
}

.nb-footer-heading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.nb-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nb-footer-links li {
    margin-bottom: 0.6rem;
}

.nb-footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nb-footer-links a:hover {
    color: var(--white);
}

.nb-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nb-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.9rem;
    line-height: 1.5;
}

.nb-footer-contact li i {
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 14px;
}

.nb-footer-contact a {
    color: rgba(255, 255, 255, 0.65);
}

.nb-footer-contact a:hover {
    color: var(--white);
}

.nb-social-icons {
    display: flex;
    gap: 0.65rem;
}

.nb-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nb-social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.nb-footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nb-footer-bottom p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.nb-fdic-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

.nb-footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0.5rem 0 0;
    line-height: 1.5;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .nb-hero {
        height: 92vh;
    }

    .nb-page-banner {
        height: 280px;
        margin-top: 62px;
    }

    .nb-about-img img {
        height: 380px;
    }

    .nb-advisory-img img {
        height: 340px;
    }

    .nb-svc-img img {
        height: 300px;
    }

    .nb-timeline::before {
        left: 20px;
    }

    .nb-timeline-item,
    .nb-timeline-item:nth-child(even) {
        padding-right: 0;
        padding-left: 52px;
        justify-content: flex-start;
    }

    .nb-timeline-dot {
        left: 20px;
    }

    .nb-timeline-card {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .nb-brand-logo {
        height: 46px;
    }

    .nb-footer-logo {
        height: 48px;
    }

    .section-pad {
        padding: 60px 0;
    }

    .nb-hero {
        height: 100svh;
        min-height: 560px;
    }

    .nb-hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nb-hero-actions a {
        text-align: center;
    }

    .nb-stats .nb-stat-divider {
        display: none;
    }

    .nb-trust-divider {
        display: none;
    }

    .nb-trustrow .col {
        border-bottom: 1px solid var(--gray-light);
    }

    .nb-page-banner {
        height: 240px;
    }

    .nb-page-banner-content .nb-banner-title {
        font-size: 1.8rem;
    }
}
