/* ========================================
   AllBankIFSCCodes.com - Design System
   Ultra-Lightweight Blog CSS
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500&display=swap');

/* CSS Custom Properties */
:root {
    --primary: #0f1629;
    --primary-light: #1a2344;
    --accent: #00d4ff;
    --accent-glow: rgba(0, 212, 255, 0.15);
    --gold: #f5a623;
    --gold-light: rgba(245, 166, 35, 0.12);
    --success: #00e676;
    --white: #ffffff;
    --off-white: #f7f9fc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --text: #1e293b;
    --text-light: #64748b;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--off-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

/* ================================
   TICKER / Moving Headlines
   ================================ */
.ticker-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    z-index: 1000;
}

.ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 18px;
    background: var(--gold);
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    white-space: nowrap;
}

.ticker-label::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 0;
    bottom: 0;
    width: 12px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.ticker-track {
    display: flex;
    animation: ticker-scroll 40s linear infinite;
    padding-left: 120px;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
}

.ticker-item:hover {
    color: var(--accent);
}

.ticker-item::before {
    content: '•';
    margin-right: 12px;
    color: var(--accent);
    font-size: 8px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 68px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--primary);
}

.nav-brand .brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent), #0090b3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 900;
}

.nav-brand span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: var(--accent-glow);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-dropdown-trigger svg {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
}

.nav-dropdown-menu a:hover {
    background: var(--accent-glow);
    color: var(--accent);
}

/* Search Icon */
.nav-search-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-600);
    margin-left: 8px;
}

.nav-search-btn:hover {
    background: var(--accent-glow);
    color: var(--accent);
}

.nav-search-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 22, 41, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-box {
    width: 90%;
    max-width: 640px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    transition: var(--transition);
}

.search-overlay.active .search-box {
    transform: translateY(0);
}

.search-box input {
    width: 100%;
    padding: 18px 24px;
    border: none;
    outline: none;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: var(--text);
}

.search-box input::placeholder {
    color: var(--gray-400);
}

.search-results {
    padding: 8px 16px 16px;
    max-height: 360px;
    overflow-y: auto;
    display: none;
}

.search-results.has-results {
    display: block;
}

.search-result-item {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.search-result-item:hover {
    background: var(--gray-100);
}

.search-result-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.search-result-item p {
    font-size: 12px;
    color: var(--gray-500);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #162044 50%, var(--primary-light) 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: white;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

/* Hero Search */
.hero-search {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 6px;
    backdrop-filter: blur(10px);
}

.hero-search input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hero-search button {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent), #0090b3);
    color: white;
    border: none;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.hero-search button:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.hero-stat .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ================================
   SECTION HELPERS
   ================================ */
.section {
    padding: 72px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ========== REGIONAL NAVIGATION ========== */
.region-nav {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.region-nav h3 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.region-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.region-links a {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.region-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .region-links {
        flex-direction: column;
    }

    .region-links a {
        text-align: center;
    }
}

/* ========== REGIONAL SECTIONS ========== */
.region-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
    /* Account for sticky header */
}

.region-title {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.region-count {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* ========== BLOG GRID ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* ================================
   BLOG CARD GRID
   ================================ */
.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-img .bank-icon {
    font-size: 48px;
    opacity: 0.3;
}

.blog-card-img .ifsc-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--accent);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-card-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 4px 10px;
    border-radius: 4px;
}

.blog-card-date {
    font-size: 12px;
    color: var(--gray-400);
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a:hover {
    color: var(--accent);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.blog-card-read {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-read:hover {
    gap: 8px;
}

.blog-card-read svg {
    width: 16px;
    height: 16px;
}

.blog-card-time {
    font-size: 12px;
    color: var(--gray-400);
}

/* ================================
   IFSC FINDER SECTION
   ================================ */
.ifsc-finder-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.ifsc-finder-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ifsc-finder-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ifsc-finder-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 16px;
}

.ifsc-finder-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.ifsc-finder-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.ifsc-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.ifsc-feature .check-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 230, 118, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 13px;
    flex-shrink: 0;
}

.ifsc-finder-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--accent), #0090b3);
    color: white;
    border: none;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.ifsc-finder-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.ifsc-finder-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.ifsc-finder-preview .mini-search {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.ifsc-finder-preview .mini-search input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 14px;
    outline: none;
}

.ifsc-finder-preview .mini-search button {
    padding: 14px 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.ifsc-finder-preview .sample-result {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.ifsc-finder-preview .sample-result .row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
}

.ifsc-finder-preview .sample-result .row:last-child {
    border-bottom: none;
}

.ifsc-finder-preview .sample-result .row .lbl {
    color: rgba(255, 255, 255, 0.5);
}

.ifsc-finder-preview .sample-result .row .val {
    color: white;
    font-weight: 500;
}

/* ================================
   POPULAR BANKS SECTION
   ================================ */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.bank-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.bank-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.bank-item .bank-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-glow), rgba(0, 212, 255, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.bank-item .bank-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

/* ================================
   BLOG POST PAGE
   ================================ */
.blog-post-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 48px 24px 56px;
    position: relative;
}

.breadcrumb {
    max-width: 860px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .sep {
    font-size: 10px;
}

.blog-post-header .post-title {
    max-width: 860px;
    margin: 0 auto;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: white;
    line-height: 1.3;
}

.blog-post-header .post-meta {
    max-width: 860px;
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.blog-post-layout {
    max-width: 1100px;
    margin: -32px auto 0;
    padding: 0 24px 72px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    position: relative;
    z-index: 1;
}

.blog-post-content {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

/* Blog Content Prose Styles */
.prose h2 {
    font-size: 24px;
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-100);
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-size: 20px;
    margin: 28px 0 12px;
}

.prose p {
    margin-bottom: 16px;
    color: var(--gray-700);
    line-height: 1.8;
}

.prose a {
    color: var(--accent);
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.prose a:hover {
    border-bottom-color: var(--accent);
}

.prose ul,
.prose ol {
    margin: 16px 0;
    padding-left: 24px;
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    margin-bottom: 8px;
    color: var(--gray-700);
    line-height: 1.7;
}

.prose strong {
    color: var(--text);
    font-weight: 600;
}

/* Blog Detail Table */
.detail-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.detail-table th,
.detail-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
}

.detail-table th {
    background: var(--primary);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    width: 40%;
}

.detail-table td {
    background: white;
    color: var(--text);
}

.detail-table tr:nth-child(even) td {
    background: var(--gray-50);
}

.detail-table tr {
    border-bottom: 1px solid var(--gray-100);
}

.detail-table .ifsc-code {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 1px;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--accent-glow);
    color: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 8px;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--accent);
    color: white;
}

/* Info Box */
.info-box {
    padding: 20px 24px;
    border-radius: var(--radius);
    margin: 24px 0;
    display: flex;
    gap: 14px;
}

.info-box.tip {
    background: rgba(0, 212, 255, 0.06);
    border-left: 4px solid var(--accent);
}

.info-box.warning {
    background: rgba(245, 166, 35, 0.06);
    border-left: 4px solid var(--gold);
}

.info-box .icon {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1.6;
}

.info-box p {
    margin: 0;
    font-size: 14px;
}

/* FAQ Accordion */
.faq-section {
    margin: 36px 0;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: white;
    border: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question .faq-icon {
    background: var(--accent);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h3 .icon {
    font-size: 18px;
}

/* IFSC Finder Widget */
.ifsc-widget {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    color: white;
}

.ifsc-widget h3 {
    color: white;
}

.ifsc-widget input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 14px;
    outline: none;
    margin-bottom: 10px;
}

.ifsc-widget input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.ifsc-widget .widget-btn {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.ifsc-widget .widget-btn:hover {
    background: #00bbdd;
}

/* Related Posts Sidebar */
.related-post-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.related-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post-item .rp-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.related-post-item .rp-info h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.3;
}

.related-post-item .rp-info h4 a:hover {
    color: var(--accent);
}

.related-post-item .rp-info span {
    font-size: 11px;
    color: var(--gray-400);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 24px 0;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 12px;
}

.footer h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
    }

    .ifsc-finder-inner {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 998;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--gray-50);
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }

    .hero {
        padding: 48px 20px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat .number {
        font-size: 24px;
    }

    .hero-search {
        flex-direction: column;
        border-radius: var(--radius);
        gap: 8px;
        padding: 12px;
    }

    .hero-search button {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .banks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-post-content {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .section {
        padding: 48px 16px;
    }

    .ticker-label {
        display: none;
    }

    .ticker-track {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .banks-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .detail-table th,
    .detail-table td {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* ================================
   UTILITIES
   ================================ */
.text-accent {
    color: var(--accent);
}

.text-gold {
    color: var(--gold);
}

.fw-bold {
    font-weight: 700;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.animate-in:nth-child(1) {
    animation-delay: 0.05s;
}

.animate-in:nth-child(2) {
    animation-delay: 0.1s;
}

.animate-in:nth-child(3) {
    animation-delay: 0.15s;
}

.animate-in:nth-child(4) {
    animation-delay: 0.2s;
}

.animate-in:nth-child(5) {
    animation-delay: 0.25s;
}

.animate-in:nth-child(6) {
    animation-delay: 0.3s;
}

/* Print */
@media print {

    .navbar,
    .ticker-wrapper,
    .footer,
    .blog-sidebar,
    .search-overlay {
        display: none !important;
    }

    .blog-post-layout {
        grid-template-columns: 1fr;
    }

    .blog-post-content {
        border: none;
        box-shadow: none;
        padding: 0;
    }
}