       body{
            background:#f5f7fb;
            font-family: 'Poppins', sans-serif;
        }
        .service-card a,
        .col-4 a {
            text-decoration: none;
            color: inherit;
        }

        /* ================= HEADER ================= */
        .main-header h3{
            font-weight:600;
        }

        /* ================= WALLET CARDS ================= */
        /* Premium Wallet Card Design */
        .premium-wallet-card {
            background: linear-gradient(135deg, #021a5c 0%, #0a2d8a 100%);
            border-radius: 28px;
            padding: 25px;
            color: white;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Background Subtle Glow */
        .premium-wallet-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            filter: blur(50px);
        }

        .wallet-badge {
            background: rgba(255, 255, 255, 0.15);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            display: inline-block;
            backdrop-filter: blur(5px);
            border: 0.5px solid rgba(255,215,0,0.3);
        }

        .main-amount {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 10px 0;
            letter-spacing: -1px;
        }

        .view-details {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
            text-decoration: none;
            font-weight: 500;
        }

        /* Circular Cashback Section */
        .circular-progress {
            width: 110px;
            height: 110px;
            background: conic-gradient(#ffd700 80%, transparent 0); /* Golden Progress */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        }

        .inner-circle {
            width: 96px;
            height: 96px;
            background: #021a5c;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255,255,255,0.1);
        }

        .star-icon {
            color: #ffd700;
            font-size: 14px;
            position: absolute;
            top: 5px;
            background: #021a5c;
            padding: 0 5px;
        }

        .cashback-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .cashback-label {
            font-size: 0.6rem;
            font-weight: 700;
            color: #ffd700;
            letter-spacing: 1px;
        }

        /* Quick Actions Box */
        .action-box {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            margin: 0 auto 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 6px 15px rgba(0,0,0,0.06);
            transition: 0.3s;
        }

        .action-item {
            text-decoration: none !important;
            color: #444 !important;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .bg-orange { background: #ff9800; color: white; }
        .bg-dark-blue { background: #1a237e; color: white; }
        .bg-grey { background: #546e7a; color: white; }

        .action-item:hover .action-box {
            transform: translateY(-5px);
        }
        /* ================= CATEGORY TITLE ================= */
        .section-title{
            font-size:20px;
            font-weight:600;
            margin:35px 0 15px;
        }

        /* ================= SERVICE CARD ================= */
        .service-card{
            background:white;
            border-radius:18px;
            padding:20px 10px;
            text-align:center;
            transition:0.3s;
            cursor:pointer;
            border:1px solid #eee;
            height:140px;
            display:flex;
            flex-direction:column;
            align-items:center;
            justify-content:center;
        }

        .service-card:hover{
            transform:translateY(-6px);
            box-shadow:0 8px 20px rgba(0,0,0,0.08);
        }

        .service-icon{
            width:55px;
            height:55px;
            border-radius:50%;
            background:#eef3ff;
            /* background:#042556; */
            display:flex;
            align-items:center;
            justify-content:center;
            margin-bottom:10px;
        }

        .service-icon img{
            width:32px;
            height:32px;
        }

        .service-card span{
            font-size:14px;
            font-weight:500;
            color:black !important;
        }

        .radiate-anim {
            border-radius: 50%;
            animation: radiate 1s infinite;
            background: #f8fcf8;
            padding: 2px;
            border: 1.5px solid rgb(3, 3, 85);
            display: inline-block;
        }
        @keyframes radiate {
            0% { box-shadow: 0 0 0 0 #001a5c; }
            70% { box-shadow: 0 0 16px 10px rgba(0, 26, 92, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 26, 92, 0); }
        }

        /* Responsive */
        @media(max-width:576px){
            .service-card{
                height:120px;
                padding:15px 5px;
            }

            .service-card span{
                font-size:10px;
                font-weight:400;
                color:#333;
            }
        }
        .col-3 a {
            text-decoration: none;
            color: inherit;
        }

        /* Bharat Connect logo */
        .fixed-bharat-connect-header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: white; 
        }
        .fixed-bharat-connect-header .navbar-brand img {
            height: 80px !important;
            width: auto !important;
            mix-blend-mode: multiply;
            max-width: unset !important;
            max-height: unset !important;
            min-width: 0 !important;
            min-height: 0 !important;
            display: block;
        }

        @media (max-width: 576px) {
            .fixed-bharat-connect-header{
                margin-top: 30px;
            }
        }  

        /* Quick Action Cards Styling */
        .action-card {
            display: flex;
            align-items: center;
            padding: 9px 10px;
            border-radius: 16px;
            background: #fff;
            border: 1px solid #eef2f6;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            gap: 10px;
        }

        .action-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

        .action-icon {
            
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            /* margin-right: 12px; */
            flex-shrink: 0;
        }

        /* Orange Theme for Status */
        .action-orange .action-icon {
            background: rgba(255, 140, 0, 0.1);
            color: #ff8c00;
        }
        .action-orange:hover {
            border-color: #ff8c00;
        }

        /* Blue Theme for History */
        .action-blue .action-icon {
            background: rgba(0, 82, 204, 0.1);
            color: #0052cc#0052cc;
            border-color: #0052cc !important;
        }

        .action-blue:hover {
            border-color: #0052cc;
        }
        .action-text {
            margin-left: 10px !important;
            display: flex;
            flex-direction: column;
        }
        .main-label {
            font-size: 0.7rem;
            font-weight: 700;
            color: #1e293b;
        }

        .sub-label {
            font-size: 0.7rem;
            color: #64748b;
            font-weight: 500;
        }

        @media (max-width: 576px) {
            .action-card {
                padding: 10px;
            }
            .main-label {
                font-size: 0.8rem;
            }
            .sub-label {
                display: none; /* Mobile par clean rakhne ke liye sub-text hata diya */
            }
        }
        /* Base Style for Fund Text */
        .fund {
            font-size: 15px;
            position: relative; /* Tooltip position ke liye zaroori hai */
            cursor: pointer;
        }

        /* Tooltip (Suggestion Box) Style */
        .fund:hover::after {
            content: attr(data-text); /* data-text attribute se content lega */
            position: absolute;
            bottom: 130%; /* Text ke thoda upar */
            left: 50%;
            transform: translateX(-50%);
            background: rgba(1, 30, 76, 0.95); /* Dark theme match color */
            color: #fff;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            z-index: 100;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            animation: fadeInTooltip 0.3s ease;
        }

        /* Tooltip ki Chhoti Chonch (Arrow) */
        .fund:hover::before {
            content: "";
            position: absolute;
            bottom: 110%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: rgba(1, 30, 76, 0.95);
            z-index: 100;
        }

        /* Animation */
        @keyframes fadeInTooltip {
            from { opacity: 0; transform: translateX(-50%) translateY(5px); }
            to { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        /* Responsive adjustments */
        @media (max-width: 576px) {
            .fund {
                font-size: 13px;
            }
            
            /* Mobile par hover ki jagah long-press ya click par bhi dikhega */
            .fund:active::after, .fund:hover::after {
                display: block;
            }
                .service-card span {
            font-size: 0.30rem;
            font-weight: 300;
         
        
        }

        }

        :root {
            --primary-color: #021a5c;
            --bg-color: #f8f9fa;
            --card-bg: #ffffff;
            --text-main: #2d3436;
            --text-muted: #021a5c;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
        }

        /* Top Navigation */
        .top-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }

        .nav-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0;
            color: var(--primary-color);
        }

        .brand-logo {
            height: 65px;
        }

        /* Section Titles */
        .section-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin: 25px 0 15px 0;
            color: black;
            letter-spacing: 0.5px;
        }

        /* Service Cards Styling */
        .service-link {
            text-decoration: none !important;
            color: inherit;
        }

        .service-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 20px 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.03);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(108, 92, 231, 0.1);
            border-color: var(--primary-color);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: rgba(108, 92, 231, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            font-size: 22px;
            color: var(--primary-color);
        }

        .service-card span {
            font-size: 0.85rem;
            font-weight: 500;
            line-height: 1.2;
            color: var(--text-main);
        }

        /* Badge for "Coming Soon" */
        . {
            opacity: 0.8;
        }
        . .service-icon {
            background: #f1f2f6;
            color: #95a5a6;
        }

        .bbps-pay-logo {
            width: 32px;
            height: 32px;
            background: #2d2e83; 
            color: white;
            font-weight: 900;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 40% 40% 50% 0; /* BBPS style curve shape */
            position: relative;
            font-family: 'Arial Black', sans-serif;
        }

        /* Card ke icon container ko thoda saaf karne ke liye */
        .service-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: #f0f2f5;
            border-radius: 12px;
            margin-bottom: 8px;
        }