﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Premium fintech palette */
            --navy-950: #060c18;
            --navy-900: #0a1730;
            --navy-800: #0d1f42;
            --navy-700: #123163;
            --brand-blue: #1a5a85;
            --brand-blue-dark: #0f3b60;
            --gold: #c9a227;
            --gold-light: #e8c96a;
            --emerald-600: #0c8a54;
            --emerald-700: #0a6d43;
            --emerald-50: #e7f8ef;
            --emerald-100: #d3f2e1;
        }

        body {
          
            background:
                radial-gradient(1100px 500px at 100% -10%, rgba(26, 90, 133, 0.10), transparent 60%),
                radial-gradient(900px 500px at -10% 0%, rgba(12, 138, 84, 0.08), transparent 55%),
                #f0f4fb;
            color: #0b1f33;
           
        }

        .app-wrapper {
            max-width: 1180px;
            margin: 0 auto;
            padding: 9px 7px;
        }

        /* ── SCROLLBAR ── */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #eaf0f6;
            border-radius: 12px;
        }
        ::-webkit-scrollbar-thumb {
            background: #b0c8dd;
            border-radius: 12px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #8aaec9;
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideDown {
            0% {
                opacity: 0;
                transform: translateY(-20px) scale(0.97);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes pulseGlow {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(26, 90, 133, 0.2);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(26, 90, 133, 0);
            }
        }

        .animate-fade-up {
            animation: fadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        }

        .animate-fade-up:nth-child(2) {
            animation-delay: 0.05s;
        }
        .animate-fade-up:nth-child(3) {
            animation-delay: 0.1s;
        }
        .animate-fade-up:nth-child(4) {
            animation-delay: 0.15s;
        }
        .animate-fade-up:nth-child(5) {
            animation-delay: 0.2s;
        }
        .animate-fade-up:nth-child(6) {
            animation-delay: 0.25s;
        }

        /* ── TOP BAR ── */
        .top-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem 1.5rem;
            margin-bottom: 1.8rem;
            background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
            border-radius: 22px;
            padding: 1.4rem 1.8rem;
            box-shadow: 0 16px 40px rgba(6, 12, 24, 0.28);
            position: relative;
            overflow: hidden;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(500px 200px at 90% -20%, rgba(201, 162, 39, 0.18), transparent 60%),
                radial-gradient(400px 200px at 10% 120%, rgba(12, 138, 84, 0.20), transparent 60%);
            pointer-events: none;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            position: relative;
            z-index: 1;
        }

        .brand-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(145deg, var(--gold-light), var(--gold));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1200;
            font-size: 1.6rem;
            box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
            transition: transform 0.3s ease;
        }

        .brand-icon:hover {
            transform: scale(1.05) rotate(-2deg);
        }

        .brand h1 {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #ffffff;
        }

        .brand h1 span {
            font-weight: 400;
            color: #9db8d6;
        }

        .brand .brand-tagline {
            display: block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-top: 0.1rem;
        }

        .header-chips {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .header-chips .chip {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #dce8f5;
            border: 1px solid rgba(255, 255, 255, 0.14);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.25s ease;
        }

        .header-chips .chip:hover {
            background: rgba(255, 255, 255, 0.14);
            transform: translateY(-1px);
        }

        .header-chips .chip i {
            color: var(--gold-light);
        }

        .header-chips .chip.verified {
            background: rgba(12, 138, 84, 0.22);
            border-color: rgba(46, 200, 130, 0.4);
            color: #b7f0d3;
        }
        .header-chips .chip.verified i {
            color: #3fdc93;
        }

        /* ── TABS CONTAINER ── */
        .tabs-container {
            background: white;
            border-radius: 20px;
            padding: 0.6rem 0.6rem 0.6rem 1.2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem 0.8rem;
            box-shadow: 0 4px 24px rgba(0, 20, 40, 0.06);
            border: 1px solid #e2edf7;
            margin-bottom: 4px;
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(16px);
            background: rgba(255, 255, 255, 0.92);
            transition: all 0.3s ease;
        }

        .tabs-group {
            display: flex;
            flex-wrap: wrap;
            /* gap: 0.3rem; */
        }

        .tab-btn {
            padding: 0.5rem 1.3rem;
            border: none;
            border-radius: 40px;
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: #32373c;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .tab-btn:hover {
            background: #eef4fa;
            color: #0a2a44;
        }

        .tab-btn.active {
            background: linear-gradient(145deg, #0f3b60, #1a5a85);
            color: #fff;
            box-shadow: 0 6px 20px rgba(18, 67, 112, 0.30);
            transform: translateY(-1px);
        }

        .tab-btn .badge-count {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.04rem 0.6rem;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
        }

        .tab-btn.active .badge-count {
            background: rgba(255, 255, 255, 0.25);
        }

        .quick-actions {
            display: flex;
            /* gap: 0.5rem; */
            align-items: center;
        }

        .quick-btn {
            padding: 0.4rem 1.2rem;
            border: none;
            border-radius: 40px;
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: #eef4fa;
            color: #1a4b70;
        }

        .quick-btn:hover {
            background: #dce8f5;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(18, 67, 112, 0.12);
        }

        .quick-btn.branch-btn {
            background: linear-gradient(145deg, #0f3b60, #1a5a85);
            color: #fff;
            box-shadow: 0 4px 14px rgba(18, 67, 112, 0.25);
        }

        .quick-btn.branch-btn:hover {
            box-shadow: 0 8px 24px rgba(18, 67, 112, 0.35);
            transform: translateY(-2px);
        }

        .quick-btn.branch-btn.active-branch {
            background: linear-gradient(145deg, #8b5a2b, #b87a3a);
            box-shadow: 0 4px 14px rgba(184, 122, 58, 0.35);
        }

        .quick-btn.download-btn {
            background: #eaf3e8;
            color: #1d5a1d;
        }
        .quick-btn.download-btn:hover {
            background: #d4e8d4;
        }

        /* ── PRODUCT GRID ── */
        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 6px;
            margin-bottom: 1.5rem;
        }

        /* ── PRODUCT CARD ── */
        .product-card {
            background: white;
            border-radius: 20px;
            border: 1px solid #e2edf7;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow: hidden;
            position: relative;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--brand-blue-dark), #8f6e05, #13456c);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 2;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(18, 67, 112, 0.10);
            border-color: #b8cfe5;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card.expanded {
            border-color: #b8cfe5;
            box-shadow: 0 12px 36px rgba(18, 67, 112, 0.09);
        }

        .product-card.expanded::before {
            opacity: 1;
        }

        .product-card .card-header-custom {
            padding: 11px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eaf1f9;
            cursor: pointer;
            user-select: none;
            transition: background 0.25s ease;
        }

        .product-card .card-header-custom:hover {
            background: #f7fafd;
        }

        .product-card .card-title-wrap {
            flex: 1;
        }

        .product-card .card-title-wrap h4 {
            font-size: 1.08rem;
            font-weight: 700;
            color: #0a2a44;
            line-height: 1.35;
            margin-bottom: 1px;
        }

        .product-card .card-title-wrap .sub-text {
            font-size: 0.8rem;
            color: #544c11;
            font-weight: 500;
            padding-left: 28px;
            display: none;
        }

        .card-header-right {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .card-chevron {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #fbfdff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            flex-shrink: 0;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .card-chevron i {
            font-size: 0.85rem;
            transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .product-card.expanded .card-chevron {
            background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
            color: #fff;
            box-shadow: 0 6px 16px rgba(18, 67, 112, 0.28);
        }

        .product-card.expanded .card-chevron i {
            transform: rotate(180deg);
        }

        /* ── COLLAPSIBLE BODY ── */
        .card-collapsible {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .product-card.expanded .card-collapsible {
            max-height: 2400px;
        }

        .product-card .card-badge {
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 0.28rem 1rem;
            border-radius: 40px;
            background: #eaf1f9;
            color: #1f4d77;
            border: 1px solid #c5d9ed;
            white-space: nowrap;
        }

        .product-card .card-badge.bond {
            background: linear-gradient(135deg, #fbf3dc, #f3e3b3);
            color: #6b5410;
            border-color: var(--gold);
        }

        .product-card .card-badge.fd {
            background: #e4f0e4;
            color: #1f5a1f;
            border-color: #8cc08c;
        }

        .product-card .card-badge.floating {
            background: #f0e8dc;
            color: #6a4f2e;
            border-color: #c8a87a;
        }

        /* ── TABS INSIDE CARD (Online / Offline) ── */
        .card-tabs {
            display: flex;
            gap: 0.6rem;
            background: #f8fafc;
            padding: 5px 24px;
            border-bottom: 1px solid #eaf1f9;
        }

        .card-tab-btn {
            flex: none;
            padding: 0.45rem 1.3rem;
            border: 1.5px solid #dbe6f2;
            border-radius: 30px;
            background: #ffffff;
            font-family: 'Inter', sans-serif;
            font-size: 0.74rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.045em;
            color: #003c70;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
        }

        .card-tab-btn:hover {
            color: #0a2a44;
            border-color: #b8cfe5;
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(18, 67, 112, 0.08);
        }

        .card-tab-btn.active {
            color: #0f3b60;
            background: rgba(26, 90, 133, 0.05);
        }

        /* Online tab = premium emerald green (as requested) */
        .card-tab-btn[data-tab="online"].active {
            color: #fff;
            border-color: transparent;
            background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
            box-shadow: 0 6px 16px rgba(12, 138, 84, 0.30);
            transform: translateY(-1px);
        }

        .card-tab-btn[data-tab="online"].active i {
            color: #fff;
        }

        /* Offline tab = navy/gold, distinct from online */
        .card-tab-btn[data-tab="offline"].active {
            color: #fff;
            border-color: transparent;
            background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
            box-shadow: 0 6px 16px rgba(18, 67, 112, 0.30);
            transform: translateY(-1px);
        }

        .card-tab-btn[data-tab="offline"].active i {
            color: var(--gold-light);
        }

        .card-tab-btn i {
            font-size: 0.8rem;
        }

        /* ── PDF DOWNLOAD LINK (Bank Matrix) ── */
        .pdf-download-link {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            margin-top: 1rem;
            padding: 0.7rem 0.9rem 0.7rem 0.7rem;
            background: linear-gradient(135deg, var(--emerald-50), var(--emerald-100));
            border: 1px solid #a9e2c3;
            border-radius: 14px;
            text-decoration: none;
            color: var(--emerald-700);
            font-weight: 700;
            font-size: 0.76rem;
            letter-spacing: 0.01em;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .pdf-download-link::before {
            content: '';
            position: absolute;
            top: 0; left: -60%;
            width: 40%; height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
            transform: skewX(-20deg);
            transition: left 0.6s ease;
        }

        .pdf-download-link:hover::before {
            left: 130%;
        }

        .pdf-download-link i {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, var(--emerald-600), var(--emerald-700));
            color: #fff;
            border-radius: 10px;
            font-size: 0.85rem;
            box-shadow: 0 4px 12px rgba(12, 138, 84, 0.35);
        }

        .pdf-download-link span {
            flex: 1;
        }

        .pdf-download-link::after {
            content: '\f061';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.7rem;
            opacity: 0.55;
            transition: transform 0.3s ease;
        }

        .pdf-download-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 26px rgba(12, 138, 84, 0.20);
            border-color: #7ecb9b;
            color: var(--emerald-700);
        }

        .pdf-download-link:hover::after {
            transform: translateX(4px);
        }

        /* ── CARD BODY ── */
        .card-body-content {
            padding: 7px;
        }

        .card-tab-pane {
            display: none;
            animation: fadeUp 0.35s ease;
        }

        .card-tab-pane.active {
            display: block;
        }

        .bank-details-box {
            background: linear-gradient(155deg, #f5f9fe, #eef4fc);
            border: 1px solid #dbe7f5;
            border-radius: 16px;
            padding: 0.9rem 1.2rem;
            margin-bottom: 0.2rem;
        }

        .bank-detail-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0px;
            border-bottom: 1px dashed #d4e2f2;
            font-size: 0.92rem;
            gap: 1rem;
        }

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

        .bank-detail-row .label {
            font-weight: 600;
            color: #2a4154;
            font-size: 0.76rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            min-width: 110px;
        }

        .bank-detail-row .value {
            font-weight: 700;
            color: #0a2a44;
            font-size: 0.98rem;
            text-align: right;
            word-break: break-word;
            line-height: 19px;
        }

        .bank-detail-row .value.value-highlight {
            color: #ffffff;
            background: #023f6c;
            border: 1px solid #b9e3c9;
            padding: 0.22rem 0.7rem;
            border-radius: 8px;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
        }

        .doc-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .doc-list li {
            padding: 0.6rem 0.3rem;
            font-size: 0.93rem;
            font-weight: 500;
            color: #1f3d5c;
            line-height: 1.5;
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            border-bottom: 1px dashed #e3edf7;
            border-radius: 8px;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .doc-list li:hover {
            background: rgba(26, 90, 133, 0.04);
            transform: translateX(2px);
        }

        .doc-list li:last-child {
            border-bottom: none;
        }

        .doc-list li::before {
            content: "\2713";
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 21px;
            height: 21px;
            margin-top: 0.1rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
            color: #fff;
            font-size: 0.68rem;
            font-weight: 800;
            box-shadow: 0 3px 8px rgba(12, 138, 84, 0.30);
        }

        .card-footer-bank {
            padding: 0.6rem 1.4rem;
            background: #f8fafc;
            border-top: 1px solid #eaf1f9;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .card-footer-bank .bank-chip {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.7rem;
            font-weight: 600;
            color: #1a4b70;
            background: #eef4fa;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
        }

        .card-footer-bank .bank-chip i {
            color: #1f6a9e;
        }

        .card-footer-bank .mode-tag {
            font-size: 0.6rem;
            font-weight: 600;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .mode-tag.online {
            background: linear-gradient(135deg, var(--emerald-100), #bdeecf);
            color: var(--emerald-700);
        }

        .mode-tag.offline {
            background: linear-gradient(135deg, #e6edf6, #d3e2f0);
            color: var(--brand-blue-dark);
        }

        .mode-tag.na {
            background: #ececec;
            color: #777;
        }

        /* ── BRANCH SECTION ── */
        .branch-section {
            background: white;
            border-radius: 24px;
            padding: 2rem 2rem 2.2rem;
            margin-top: 9px;
            border: 1px solid #e2edf7;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
            animation: slideDown 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: none;
        }

        .branch-section.visible {
            display: block;
        }

        .head-office-banner {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            background: linear-gradient(145deg, #f0f6fe, #e8f0fa);
            border-radius: 18px;
            border: 1px solid #d0e0f0;
            margin-bottom: 1.8rem;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .hob-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(145deg, #0f3b60, #1a5a85);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.8rem;
            flex-shrink: 0;
            box-shadow: 0 6px 18px rgba(18, 67, 112, 0.20);
        }

        .hob-content {
            flex: 1;
        }

        .hob-tag {
            display: inline-block;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            background: #1a5a85;
            color: #fff;
            padding: 0.15rem 1rem;
            border-radius: 30px;
            margin-bottom: 0.3rem;
        }

        .hob-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0a2a44;
            margin-bottom: 0.2rem;
        }

        .hob-address {
            font-size: 0.95rem;
            color: #2d5a7a;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-weight: 500;
        }

        .hob-address i {
            color: var(--gold);
            margin-top: 0.15rem;
        }

        .hob-contacts {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }

        .hob-contacts a {
            font-size: 0.8rem;
            color: #1a4b70;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .hob-contacts a:hover {
            color: #0a2a44;
        }

        .hob-contacts a i {
            color: #1f6a9e;
            font-size: 0.8rem;
        }

        .branch-section-subtitle {
            font-size: 0.9rem;
            font-weight: 500;
            color: #3b5e7a;
            margin-bottom: 1.2rem;
            padding-left: 0.2rem;
        }

        .state-accordion-list {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .state-accordion-item {
            border-radius: 14px;
            border: 1px solid #e2edf7;
            background: #fafdff;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .state-accordion-item:hover {
            border-color: #b8cfe5;
        }

        .state-toggle {
            display: none;
        }

        .state-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 1.4rem;
            cursor: pointer;
            transition: background 0.25s ease;
            gap: 0.8rem;
            flex-wrap: wrap;
        }

        .state-header:hover {
            background: #f0f6fe;
        }

        .state-name {
            font-weight: 600;
            color: #0a2a44;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .state-name i {
            color: #1f6a9e;
        }

        .state-count-chip {
            font-size: 0.7rem;
            font-weight: 600;
            color: #1a4b70;
            background: #eaf1f9;
            padding: 0.15rem 0.9rem;
            border-radius: 30px;
            border: 1px solid #c5d9ed;
        }

        .state-arrow {
            font-size: 0.8rem;
            color: #6a8caa;
            transition: transform 0.35s ease;
            margin-left: auto;
        }

        .state-arrow::after {
            content: '\F282';
            font-family: 'bootstrap-icons';
            font-size: 1rem;
        }

        .state-toggle:checked+.state-header .state-arrow {
            transform: rotate(180deg);
        }

        .state-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease;
            padding: 0 1.4rem;
        }

        .state-toggle:checked+.state-header+.state-body {
            max-height: 800px;
            padding: 0 1.4rem 1.2rem;
        }

        .state-content {
            padding-top: 0.6rem;
            border-top: 1px solid #eaf1f9;
        }

        .branch-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.1rem;
        }

        .branch-card {
            position: relative;
            background: linear-gradient(180deg, #ffffff, #fbfdff);
            padding: 1.3rem 1.4rem 1.3rem;
            border-radius: 18px;
            border: 1px solid #e8eef6;
            box-shadow: 0 3px 14px rgba(18, 67, 112, 0.05);
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .branch-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--brand-blue-dark), var(--gold), var(--brand-blue));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .branch-card:hover {
            border-color: #b8cfe5;
            box-shadow: 0 14px 34px rgba(18, 67, 112, 0.14);
            transform: translateY(-4px);
        }

        .branch-card:hover::before {
            opacity: 1;
        }

        .branch-card-title {
            font-size: 1.02rem;
            font-weight: 700;
            color: #0a2a44;
            margin-bottom: 0.65rem;
            display: flex;
            align-items: center;
            gap: 0.65rem;
            letter-spacing: -0.01em;
        }

        .branch-card-title .bc-icon {
            width: 34px;
            height: 34px;
            flex-shrink: 0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, var(--gold-light), var(--gold));
            color: #241a05;
            font-size: 0.85rem;
            box-shadow: 0 4px 10px rgba(201, 162, 39, 0.30);
        }

        .branch-card-title i {
            color: var(--gold);
            font-size: 0.8rem;
        }

        .branch-card-address {
            font-size: 0.88rem;
            color: #33587a;
            line-height: 1.55;
            margin-bottom: 0.9rem;
            font-weight: 500;
            padding-left: 44px;
        }

        .branch-card-phone {
            font-size: 0.85rem;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            width: 100%;
            transition: all 0.25s ease;
            background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue) 70%, #17709f);
            padding: 0.55rem 0.9rem;
            border-radius: 30px;
            box-shadow: 0 4px 12px rgba(18, 67, 112, 0.20);
        }

        .branch-card-phone:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(18, 67, 112, 0.30);
        }

        .branch-card-phone i {
            color: var(--gold-light);
        }

        /* ── EMPTY STATE ── */
        .empty-state {
            text-align: center;
            padding: 3rem 1rem;
            color: #6a8caa;
        }
        .empty-state i {
            font-size: 2.5rem;
            color: #b8cfe5;
            margin-bottom: 0.8rem;
        }
        .empty-state h3 {
            font-weight: 600;
            color: #1f3d5c;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 992px) {
            .app-wrapper {
                padding: 10px 2px;
            }
            .tabs-container {
                flex-direction: column;
                align-items: stretch;
                padding: 0.6rem;
            }
            .tabs-group {
                justify-content: center;
            }
            .quick-actions {
                justify-content: center;
            }
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                flex-direction: column;
                align-items: stretch;
            }
            .brand h1 {
                font-size: 1.2rem;
            }
            .tab-btn {
                font-size: 0.7rem;
                padding: 0.35rem 0.9rem;
            }
            .products-grid {
                grid-template-columns: 1fr;
            }
            .state-header {
                padding: 0.7rem 1rem;
                font-size: 0.85rem;
            }
            .branch-section {
                padding: 1rem;
            }
            .head-office-banner {
                flex-direction: column;
                align-items: stretch;
            }
            .hob-contacts {
                flex-direction: column;
            }
            .branch-cards-grid {
                grid-template-columns: 1fr;
            }
            .card-header-custom {
                flex-direction: column;
                gap: 0.4rem;
            }
            .bank-detail-row {
                /* flex-direction: column; */
                /* gap: 0.1rem; */
            }
            .bank-detail-row .value {
                text-align: right;
                font-weight: normal;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .header-chips .chip {
                font-size: 0.6rem;
                padding: 0.25rem 0.8rem;
            }
            .quick-btn {
                font-size: 0.65rem;
                padding: 0.3rem 0.8rem;
            }
            .tab-btn .badge-count {
                display: none;
            }
            .card-footer-bank {
                flex-direction: column;
                align-items: stretch;
                gap: 0.4rem;
            }
        }

        /* ── UTILITY ── */
        .text-truncate-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .url-link {
            color: #004b8f;
            text-decoration: none;
            border-bottom: 1px dashed #7aa3c9;
            font-weight: 500;
            font-size: 0.7rem;
            word-break: break-all;
        }

        .url-link:hover {
            border-bottom: 1px solid #002b55;
            color: #002b55;
        }

        .fw-600 {
            font-weight: 600;
        }

        .gap-1 {
            gap: 0.25rem;
        }

        /* ══════════════════════════════════════════════════════
           UPGRADED TABS + QUICK ACTIONS BAR
           ══════════════════════════════════════════════════════ */
        .tabs-container {
            border-radius: 15px;
            padding: 7px 9px;
            border: 1px solid #dfe9f6;
        }

        .tabs-group {
            /* gap: 0.4rem; */
            /* background: #f3f7fc; */
            /* padding: 0.4rem; */
            border-radius: 40px;
            /* border: 1px solid #e6eef8; */
        }

        .tab-btn {
            padding: 5px 5px;
            font-size: 0.8rem;
            gap: 6px;
        }

        .tab-btn:hover {
            background: #ffffff;
            box-shadow: 0 3px 10px rgba(18, 67, 112, 0.10);
        }

        .tab-btn.active {
            background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 55%, #1f7aab 100%);
            box-shadow: 0 8px 22px rgba(18, 67, 112, 0.35);
        }

        .tab-icon {
            width: 26px;
            height: 27px;
            flex-shrink: 0;
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            color: #3b6b8f;
            font-size: 0.9rem;
            box-shadow: 0 2px 6px rgba(18, 67, 112, 0.10);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .tab-btn.active .tab-icon {
            background: none;
            color: #fff;
            /* box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25); */
        }

        .tab-btn .badge-count {
            background: #e2ecf7;
            color: #33587a;
            padding: 0.1rem 0.55rem;
        }

        .tab-btn.active .badge-count {
            background: rgba(255, 255, 255, 0.22);
            color: #fff;
        }

        .quick-actions {
            gap: 6px;
        }

        .quick-btn {
            padding: 5px 5px;
            font-size: 0.8rem;
            border-radius: 40px;
            border: 1.5px solid transparent;
            gap: 1px;
        }

        .quick-btn .qb-icon {
            width: 24px;
            height: 25px;
            flex-shrink: 0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .quick-btn .qb-count {
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0.1rem 0.55rem;
            border-radius: 20px;
            margin-left: 3px;
        }

        .quick-btn.branch-btn {
            background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue) 60%, #17709f);
            box-shadow: 0 8px 22px rgba(18, 67, 112, 0.30);
        }

        .quick-btn.branch-btn .qb-icon {
            /* background: rgba(255, 255, 255, 0.18); */
            color: #fff;
        }

        .quick-btn.branch-btn .qb-count {
            background: rgba(255, 255, 255, 0.22);
            color: #fff;
        }

        .quick-btn.branch-btn.active-branch {
            background: linear-gradient(135deg, #8b5a2b, var(--gold) 60%, var(--gold-light));
            box-shadow: 0 8px 22px rgba(184, 122, 58, 0.35);
            color: #241a05;
        }

        .quick-btn.branch-btn.active-branch .qb-icon {
            background: rgba(255, 255, 255, 0.35);
            color: #3a2600;
        }

        .quick-btn.branch-btn.active-branch .qb-count {
            background: rgba(0, 0, 0, 0.16);
            color: #241a05;
        }

        .quick-btn.download-btn {
            background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue) 60%, #17709f);
            border-color: #154c74;
            color: #ffffff;
            font-weight: 700;
            text-decoration: none;
        }

        .quick-btn.download-btn .qb-icon {
            /* background: linear-gradient(145deg, var(--emerald-600), var(--emerald-700)); */
            color: #fff;
        }

        .quick-btn.download-btn:hover {
            background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue) 60%, #17709f);
        }

        /* ══════════════════════════════════════════════════════
           ONLINE TAB — SPLIT LAYOUT (Bank Details | Documents)
           ══════════════════════════════════════════════════════ */
        .online-split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.1rem;
            align-items: start;
        }

        .online-split-col {
            border-radius: 16px;
            padding: 1.1rem 1.2rem 1.3rem;
            border: 1px solid transparent;
        }

        .online-split-col.bank-col {
            background: linear-gradient(160deg, #eef6ff 0%, #e3f0fd 100%);
            border-color: #cfe3f8;
        }

        .online-split-col.doc-col {
            background: linear-gradient(160deg, #fff8e8 0%, #fdf1d3 100%);
            border-color: #ecdba0;
        }

        .online-split-heading {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            margin-bottom: 0.85rem;
        }

        .online-split-heading h5 {
            font-size: 0.92rem;
            font-weight: 800;
            letter-spacing: -0.01em;
            margin: 0;
        }

        .online-split-heading p {
            font-size: 0.68rem;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            opacity: 0.75;
        }

        .osh-icon {
            width: 38px;
            height: 38px;
            flex-shrink: 0;
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #fff;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
        }

        .bank-heading h5 { color: #0f3b60; }
        .bank-heading p { color: #3a6690; }
        .bank-heading .osh-icon { background: linear-gradient(145deg, var(--brand-blue-dark), var(--brand-blue)); }

        .doc-heading h5 { color: #7a5a10; }
        .doc-heading p { color: #a2842f; }
        .doc-heading .osh-icon { background: linear-gradient(145deg, #b8862a, var(--gold)); }

        .online-split-col.bank-col .bank-details-box {
            background: rgba(255, 255, 255, 0.65);
            border-color: #c9def4;
        }

        .online-split-col.doc-col .doc-list li {
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid #f2e3ae;
            border-bottom: 1px solid #f2e3ae;
            margin-bottom: 0.4rem;
            border-radius: 10px;
            padding: 0.6rem 0.7rem;
        }

        .online-split-col.doc-col .doc-list li:hover {
            background: rgba(255, 255, 255, 0.9);
            border-color: var(--gold);
        }

        .online-split-col.doc-col .doc-list li::before {
            background: linear-gradient(135deg, #b8862a, var(--gold));
            box-shadow: 0 3px 8px rgba(184, 134, 42, 0.35);
        }

        .online-note {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.78rem;
            font-weight: 600;
            color: #0f3b60;
            background: rgba(255, 255, 255, 0.6);
            border: 1px dashed #b8cfe5;
            border-radius: 10px;
            padding: 0.55rem 0.7rem;
        }

        .online-note i {
            margin-top: 0.1rem;
            color: var(--brand-blue);
        }

        .upload-note {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            margin-top: 0.9rem;
            padding: 0.7rem 0.85rem;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--emerald-50), var(--emerald-100));
            border: 1px solid #a9e2c3;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--emerald-700);
        }

        .upload-note i {
            font-size: 1.1rem;
            color: var(--emerald-600);
            margin-top: 0.05rem;
        }

        @media (max-width: 768px) {
            .online-split-grid {
                grid-template-columns: 1fr;
            }
            .online-split-col {
   
    padding: 10px 1px;
            }
        }

        /* ══════════════════════════════════════════════════════
           BRANCH LOCATOR MAP
           ══════════════════════════════════════════════════════ */
        .branch-map-wrap {
            margin-top: 1.8rem;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #dbe7f5;
            box-shadow: 0 8px 28px rgba(18, 67, 112, 0.08);
        }

        .branch-map-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            padding: 7px;
            background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--brand-blue-dark) 100%);
        }

        .bmh-left {
            display: flex;
            align-items: center;
            gap: 0.9rem;
        }

        .bmh-icon {
            width: 44px;
            height: 44px;
            border-radius: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, var(--gold-light), var(--gold));
            color: #1a1200;
            font-size: 1.2rem;
            flex-shrink: 0;
            box-shadow: 0 6px 16px rgba(201, 162, 39, 0.35);
        }

        .branch-map-heading h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 0.15rem;
        }

        .branch-map-heading p {
            font-size: 0.75rem;
            font-weight: 500;
            color: #a9c3dd;
            margin: 0;
        }

        .bmh-count {
            font-size: 0.7rem;
            font-weight: 700;
            color: #dce8f5;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            padding: 0.35rem 1rem;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .bmh-count i {
            color: var(--gold-light);
        }

        #branchMap {
            height: 420px;
            width: 100%;
            background: #eaf0f6;
        }

        .map-canvas-wrap {
            position: relative;
        }

        .open-maps-btn {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(6px);
            color: #0f3b60;
            font-weight: 700;
            font-size: 0.8rem;
            padding: 0.55rem 1.1rem;
            border-radius: 30px;
            text-decoration: none;
            box-shadow: 0 8px 22px rgba(18, 67, 112, 0.22);
            border: 1px solid #dbe7f5;
            transition: all 0.25s ease;
        }
        .open-maps-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(18, 67, 112, 0.30);
            color: #0a2a44;
        }
        .open-maps-btn i { color: var(--gold); }

        /* ── ANIMATED MAP PINS — Google-style teardrop, gradient fill, labeled ── */
        @keyframes pinDrop {
            0% { transform: translateY(-16px) scale(0.6); opacity: 0; }
            60% { transform: translateY(3px) scale(1.05); opacity: 1; }
            100% { transform: translateY(0) scale(1); opacity: 1; }
        }

        @keyframes pinPulseGold {
            0% { transform: scale(0.6); opacity: 0.55; }
            70% { transform: scale(2.1); opacity: 0; }
            100% { transform: scale(2.1); opacity: 0; }
        }

        @keyframes pinPulseHQ {
            0% { transform: scale(0.6); opacity: 0.6; }
            70% { transform: scale(2.4); opacity: 0; }
            100% { transform: scale(2.4); opacity: 0; }
        }

        @keyframes pinBob {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        .branch-pin-wrap {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pin-anim {
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            animation: pinDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        }

        .branch-pin-svg {
            filter: drop-shadow(0 5px 8px rgba(10, 30, 55, 0.35));
            animation: pinBob 2.8s ease-in-out infinite;
            transition: transform 0.2s ease;
            transform-origin: bottom center;
        }

        .branch-pin-wrap:hover .branch-pin-svg {
            transform: scale(1.14) translateY(-2px);
        }

        .hq-pin-svg {
            filter: drop-shadow(0 6px 12px rgba(140, 84, 20, 0.45));
        }

        .pin-chip {
            margin-top: 4px;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            white-space: nowrap;
            color: #0a2a44;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(4px);
            padding: 0.18rem 0.6rem;
            border-radius: 20px;
            box-shadow: 0 4px 10px rgba(18, 67, 112, 0.18);
            border: 1px solid #dbe7f5;
        }

        .pin-chip-hq {
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            color: #241a05;
            border-color: transparent;
            font-size: 0.65rem;
        }

        .pin-pulse {
            position: absolute;
            bottom: 18px;
            z-index: -1;
            border-radius: 50%;
        }
        .pulse-gold {
            width: 20px; height: 20px;
            background: rgba(26, 90, 133, 0.35);
            animation: pinPulseGold 2.4s ease-out infinite;
        }
        .pulse-hq {
            width: 26px; height: 26px;
            background: rgba(201, 162, 39, 0.4);
            animation: pinPulseHQ 2.4s ease-out infinite;
        }

        .branch-popup {
            font-family: 'Inter', sans-serif;
            min-width: 190px;
        }

        .branch-popup-tag {
            display: inline-block;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            background: #eaf1f9;
            color: #1f4d77;
            padding: 0.15rem 0.6rem;
            border-radius: 20px;
            margin-bottom: 0.35rem;
        }

        .branch-popup-tag.hq {
            background: #fbe9d3;
            color: #8a5414;
        }

        .branch-popup h6 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #0a2a44;
            margin: 0 0 0.3rem;
        }

        .branch-popup p {
            font-size: 0.78rem;
            color: #33587a;
            line-height: 1.4;
            margin: 0 0 0.4rem;
        }

        .popup-actions {
            display: flex;
            gap: 0.8rem;
            margin-top: 0.3rem;
        }
        .popup-actions a {
            font-size: 0.78rem;
            font-weight: 700;
            color: #0f3b60;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .popup-actions a i { color: var(--gold); }

        .leaflet-control-minimap {
            border-radius: 12px !important;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important;
            border: 2px solid #fff !important;
        }

        @media (max-width: 576px) {
            #branchMap {
                height: 320px;
            }
            .branch-map-heading {
                padding: 1rem;
            }
            .bmh-icon {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
            .branch-map-heading h3 {
                font-size: 0.92rem;
            }
            .leaflet-control-minimap {
                width: 80px !important;
                height: 65px !important;
            }
        }
        
        .product_icon_mobile{ display:none;}
        .navmenunew a, .navmenunew a:focus{ text-decoration:none;}
        .footernew .footernew-item a{ text-decoration:none;}
        .text-white {
    --bs-text-opacity: 1;
    color: #8180c2 !important;
}