.cisbc-hero {
    background: linear-gradient(135deg, #190028 0%, #4f0071 60%, #0d233a 100%) !important;
    padding: 18px 15px !important;
    min-height: 0 !important;
    height: auto !important;
    color: #ffffff !important;
    text-align: center !important;
    border-bottom: 3px solid #ffc107 !important;
}
.cisbc-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(168,85,247,0.25) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}
.cisbc-search-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 6px 8px 6px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.cisbc-search-input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    width: 100%;
    outline: none;
}
.cisbc-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.cisbc-search-btn {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #ffffff;
    border: none;
    border-radius: 40px;
    padding: 10px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cisbc-search-btn:hover {
    background: linear-gradient(135deg, #9333ea, #6d28d9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

/* Filter Card Styling */
.filter-card-v2 {
    background: #ffffff;
    border: 1px solid #eee2f7;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(79, 0, 113, 0.05);
    transition: all 0.3s ease;
}
.filter-section-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #4f0071;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-option-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: #334155;
    font-weight: 500;
}
.filter-option-label:hover {
    background: #f5edfc;
    color: #4f0071;
}
.filter-option-label input[type="checkbox"],
.filter-option-label input[type="radio"] {
    accent-color: #7c3aed;
    width: 17px;
    height: 17px;
    cursor: pointer;
}

/* Custom Scrollbar for Quick Find Sidebar List */
.custom-sidebar-scroll {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 6px;
}
.custom-sidebar-scroll::-webkit-scrollbar {
    width: 6px;
}
.custom-sidebar-scroll::-webkit-scrollbar-track {
    background: #f3e8ff;
    border-radius: 10px;
}
.custom-sidebar-scroll::-webkit-scrollbar-thumb {
    background: #c084fc;
    border-radius: 10px;
}
.custom-sidebar-scroll::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}
.hover-sidebar-item {
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.hover-sidebar-item:hover {
    background: #f5edfc;
    border-color: #e0c2f0;
    color: #4f0071 !important;
}
.text-wrap-break {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Controls Bar above Grid */
.controls-bar {
    background: #ffffff;
    border: 1px solid #f1e6fa;
    border-radius: 16px;
    padding: 14px 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.sort-select-custom {
    border: 1px solid #e0c2f0;
    border-radius: 12px;
    padding: 8px 36px 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #4f0071;
    background: #fcf8ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237c3aed' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 12px center;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}
.sort-select-custom:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

/* ── CISBC Overview & Details Section ── */
.cisbc-about-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 10px 30px rgba(79, 0, 113, 0.04);
}

.cisbc-gain-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: #fdfbfd;
    border: 1px solid #f1e6fa;
    border-radius: 14px;
    height: 100%;
    transition: all 0.25s ease;
}

.cisbc-gain-item:hover {
    background: #ffffff;
    border-color: #d8b4fe;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(79, 0, 113, 0.08);
}

.cisbc-gain-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed, #4f0071);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.cisbc-why-card {
    background: #ffffff;
    border: 1px solid #f1e6fa;
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(79, 0, 113, 0.03);
}

.cisbc-why-card:hover {
    transform: translateY(-5px);
    border-color: #c084fc;
    box-shadow: 0 12px 28px rgba(79, 0, 113, 0.1);
}

.cisbc-why-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #f3e8ff;
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 14px;
}

.cisbc-approval-box {
    background: linear-gradient(135deg, #190028 0%, #3b0764 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 26px 30px;
    border-bottom: 4px solid #ffc107;
}

