:root {
            --primary-color: #5bcbe3;
            --primary-dark: #4ab8cf;
            --primary-light: #e8f7fb;
            --text-dark: #2c3e50;
            --text-muted: #6c757d;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.5;
            font-size: 0.875rem;
        }

        /* Modern Navbar */
        .navbar-custom {
            background: var(--white);
            box-shadow: var(--shadow-sm);
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .navbar-custom .navbar-brand img {
            height: 32px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .navbar-custom .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .navbar-custom .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.875rem;
            padding: 0.375rem 0.75rem;
            margin: 0 0.125rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-custom .nav-link:hover {
            color: var(--primary-color);
            background-color: var(--primary-light);
        }

        .navbar-custom .nav-link i {
            margin-right: 0.375rem;
            font-size: 0.875rem;
        }

        /* Dropdown Styling */
        .dropdown-menu {
            border: none;
            box-shadow: var(--shadow-lg);
            border-radius: 8px;
            padding: 0.25rem;
            margin-top: 0.25rem;
            font-size: 0.875rem;
        }

        .dropdown-item {
            border-radius: 6px;
            padding: 0.375rem 0.75rem;
            transition: all 0.2s ease;
            font-size: 0.875rem;
        }

        .dropdown-item:hover {
            background-color: var(--primary-light);
            color: var(--primary-color);
        }

        .dropdown-item.text-danger:hover {
            background-color: #f8d7da;
            color: #721c24;
        }

        .dropdown-item i {
            margin-right: 0.5rem;
            width: 16px;
            text-align: center;
        }
 .muin-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1rem;
        }
        /* Main Container */
        .main-container {
            padding: 1rem 0;
            margin-top: 60px;
        }

        /* Welcome Section */
        .welcome-section {
            margin-bottom: 1rem;
        }

        .welcome-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .welcome-section p {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* Modern Stat Cards */
        .stat-card {
            background: var(--white);
            border-radius: 10px;
            padding: 1rem;
            height: 100%;
            border-left: 2px solid #5bcbe3;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: var(--primary-color);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-card-icon {
            width: 36px;
            height: 36px;
            background: #5bcbe3;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
            color: var(--white);
        }

        .stat-card:hover .stat-card-icon {
            background: var(--primary-color);
            color: var(--white);
        }

        .stat-card-icon i {
            font-size: 1.125rem;
            color: var(--white);
            transition: color 0.3s ease;
        }

        .stat-card:hover .stat-card-icon i {
            color: var(--white);
        }

        .stat-card h6 {
            font-size: 0.75rem;
            font-weight: black;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.25rem;
        }
        .btn2{
            border: 2px #5bcbe3 solid;
        }
        .stat-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.125rem;
        }

        .stat-card small {
            color: var(--text-muted);
            font-size: 0.75rem;
        }

        .stat-card p {
            font-size: 0.8125rem;
            margin-bottom: 0.5rem;
        }

        .stat-card a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.8125rem;
            transition: all 0.3s ease;
        }

        .stat-card a:hover {
            color: var(--primary-dark);
        }

        /* Balance Card Special */
        .stat-card.balance-card {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: var(--white);
        }

        .stat-card.balance-card h6,
        .stat-card.balance-card h3,
        .stat-card.balance-card small {
            color: var(--white);
        }

        .stat-card.balance-card .stat-card-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .stat-card.balance-card .stat-card-icon i {
            color: var(--white);
        }

        /* Modern Plan Card */
        .plan-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .plan-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }

        .plan-card-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 1rem;
            position: relative;
            overflow: hidden;
        }

        .plan-card-header::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(45deg);
        }

        .plan-card-header h5 {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .plan-card-header i {
            margin-right: 0.375rem;
            font-size: 0.875rem;
        }

        .plan-card-body {
            padding: 1.25rem;
        }

        /* Plan Status */
        .plan-status {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.375rem 0.75rem;
            background: var(--primary-light);
            color: var(--primary-color);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .plan-status i {
            font-size: 0.875rem;
        }

        /* Plan Price */
        .plan-price {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin: 0.75rem 0;
        }

        .plan-price small {
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        /* Feature List */
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li:hover {
            padding-left: 0.375rem;
        }

        .feature-list i {
            color: var(--primary-color);
            margin-right: 0.75rem;
            font-size: 1rem;
        }

        /* Modern Buttons */
        .btn-modern {
            padding: 0.5rem 1rem;
            font-weight: 600;
            font-size: 0.8125rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            background-color: #5bcbe3;
        }

        .btn-primary-modern {
            background: #5bcbe3;
            color: var(--white);
            box-shadow: 0 3px 8px rgba(91, 203, 227, 0.3);
        }

        .btn-primary-modern:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(91, 203, 227, 0.4);
        }

        .btn-outline-modern {
            background: transparent;
            color: var(--primary-color);
            border: 1.5px solid var(--primary-color);
        }

        .btn-outline-modern:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-1px);
        }

        /* No Plan State */
        .no-plan-state {
            text-align: center;
            padding: 2.5rem 1.5rem;
        }

        .no-plan-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            position: relative;
        }

        .no-plan-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--primary-light);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        .no-plan-icon i {
            font-size: 2rem;
            color: var(--primary-color);
            position: relative;
            z-index: 1;
        }

        .no-plan-state h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .no-plan-state p {
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }

        /* Info Grid */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 0.75rem;
            margin: 0.75rem 0;
        }

        .info-item {
            padding: 0.75rem;
            background: var(--bg-light);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .info-item:hover {
            background: var(--primary-light);
        }

        .info-item small {
            display: block;
            color: var(--text-muted);
            font-size: 0.625rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.125rem;
        }

        .info-item .value {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .plan-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .plan-card h5 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .plan-card p {
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar-custom .nav-link {
                padding: 0.375rem;
                font-size: 0.75rem;
            }
            
            .stat-card {
                margin-bottom: 0.75rem;
                padding: 0.875rem;
            }
            
            .stat-card h3 {
                font-size: 1.25rem;
            }
            
            .plan-price {
                font-size: 1.5rem;
            }
            
            .welcome-section h2 {
                font-size: 1.25rem;
            }
            
            .plan-card-body {
                padding: 1rem;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
         .hero-section {
            text-align: center;
            margin-bottom: 3rem;
            color: #000;
        }

        .hero-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            color: #000;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Alert */
        .current-plan-alert {
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 16px;
            padding: 1rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
        }

        /* Plan Cards */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .plan-card {
            background: var(--surface);
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            height: fit-content;
        }

        .plan-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .plan-card.featured {
            transform: scale(1.02);
            border: 2px solid rgba(102, 126, 234, 0.3);
        }

        .plan-card.featured:hover {
            transform: translateY(-8px) scale(1.02);
        }

        .popular-badge {
            position: absolute;
            top: 15px;
            right: -25px;
            background: var(--secondary-gradient);
            color: white;
            padding: 5px 30px;
            transform: rotate(45deg);
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            z-index: 2;
            box-shadow: 0 2px 15px rgba(245, 87, 108, 0.3);
        }

        .plan-header {
            padding: 1.5rem 1rem;
            text-align: center;
            background: #5bcbe3;
            color: white;
            position: relative;
        }

        .plan-name {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .plan-price {
            font-size: 16px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .plan-duration {
            font-size: 0.8rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .plan-body {
            padding: 1.25rem;
        }

        .plan-description {
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 1.25rem;
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-item:hover {
            padding-left: 0.25rem;
            background: rgba(102, 126, 234, 0.05);
            border-radius: 6px;
            margin: 0 -0.25rem;
        }

        .feature-icon {
            color: #10b981;
            margin-right: 0.75rem;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .feature-text {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 0.85rem;
        }

        /* Buttons */
        .plan-button {
            width: 100%;
            padding: 0.75rem;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-block;
            text-align: center;
            position: relative;
            overflow: hidden;
            color:#4ab8cf;
        }

        .plan-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
           
        }

        .plan-button:hover::before {
            left: 100%;
        }
.msebenz{
    color:#000;
}
        .btn-select {
            background: var(--primary-gradient);
            color: #5bcbe3;
            border: solid 1px #5bcbe3;
        }

        .btn-select:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
            color: white;
        }

        .btn-current {
            background: rgba(107, 114, 128, 0.1);
            color: var(--text-secondary);
            cursor: not-allowed;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--surface);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .faq-title {
            text-align: center;
            margin-bottom: 2.5rem;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .accordion {
            --bs-accordion-border-width: 0;
            --bs-accordion-border-radius: 16px;
            --bs-accordion-inner-border-radius: 12px;
        }

        .accordion-item {
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 16px !important;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }

        .accordion-button {
            padding: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            background: var(--surface);
            border: none;
            border-radius: 16px !important;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-gradient);
            color: white;
            box-shadow: none;
        }

        .accordion-body {
            padding: 1.5rem;
            color: var(--text-secondary);
            line-height: 1.7;
            background: var(--surface);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .plans-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .main-container {
                padding: 2rem 1rem;
            }

            .plans-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .plan-card.featured {
                transform: none;
            }

            .plan-card.featured:hover {
                transform: translateY(-8px);
            }

            .faq-section {
                padding: 2rem 1.5rem;
            }

            .hero-title {
                margin-bottom: 1rem;
            }
        }

        @media (min-width: 1400px) {
            .plans-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Loading Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .plan-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .plan-card:nth-child(1) { animation-delay: 0.1s; }
        .plan-card:nth-child(2) { animation-delay: 0.2s; }
        .plan-card:nth-child(3) { animation-delay: 0.3s; }
        .page-titlex{
            color:#000;
        }

         .page-title {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            color:#000;
        }

        /* Balance Card */
        .balance-card {
            background: #5bcbe3;
            color: white;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
            transform: perspective(1000px) rotateX(5deg);
            transition: all 0.3s ease;
        }

        .balance-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(50px, -50px);
        }

        .balance-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            transform: translate(-50px, 50px);
        }

        .balance-card:hover {
            transform: perspective(1000px) rotateX(0deg) translateY(-5px);
            box-shadow: 0 25px 50px rgba(91, 203, 227, 0.3);
        }

        .balance-content {
            position: relative;
            z-index: 2;
        }

        .balance-amount {
            font-size: 3.5rem;
            font-weight: 800;
            margin: 1rem 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .balance-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        /* Quick Actions Card */
        .quick-actions-card {
            background: var(--surface);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            height: 100%;
            transition: all 0.3s ease;
        }

        .quick-actions-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .quick-actions-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }

        /* Buttons */
        .btn-modern {
            padding: 0.875rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background-color: #5bcbe3;
            color:#fff;
        }

        .btn-primary-modern {
            background: var(--primary-gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(91, 203, 227, 0.3);
        }

        .btn-primary-modern:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(91, 203, 227, 0.4);
            color: white;
        }

        .btn-outline-modern {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline-modern:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        .btn-light-modern {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-light-modern:hover {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            transform: translateY(-2px);
        }

        /* Payment Methods */
        .payment-methods-section {
            background: var(--surface);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .section-header {
            background: var(--surface-elevated);
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--border-color);
        }

        .section-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #000;
            margin: 0;
        }

        .payment-method-card {
            background: var(--surface);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

        .payment-method-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 10px 25px rgba(91, 203, 227, 0.15);
        }

        .payment-method-card.selected {
            border-color: var(--primary-color);
            background: rgba(91, 203, 227, 0.05);
        }

        .payment-method-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .payment-method-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .payment-method-subtitle {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Transaction Cards */
        .transactions-section {
            background: var(--surface);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            overflow: hidden;
        }

        .transactions-header {
            background: var(--surface-elevated);
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .filter-buttons {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: var(--surface);
            color: var(--text-secondary);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .transaction-card {
            background: var(--surface);
            border: none;
            border-bottom: 1px solid var(--border-color);
            padding: 1.5rem 2rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .transaction-card:last-child {
            border-bottom: none;
        }

        .transaction-card:hover {
            background: var(--surface-elevated);
            transform: translateX(10px);
        }

        .transaction-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--primary-gradient);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .transaction-card:hover::before {
            transform: scaleY(1);
        }

        .transaction-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 1rem;
        }

        .transaction-icon.payment {
            background: rgba(16, 185, 129, 0.1);
            color: var(--success-color);
        }

        .transaction-icon.top_up {
            background: rgba(91, 203, 227, 0.1);
            color: var(--primary-color);
        }

        .transaction-icon.refund {
            background: rgba(245, 158, 11, 0.1);
            color: var(--warning-color);
        }

        .transaction-details h6 {
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: var(--text-primary);
        }

        .transaction-amount {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .amount-positive {
            color: var(--success-color);
        }

        .amount-negative {
            color: var(--danger-color);
        }

        /* Status Badges */
        .status-badge {
            padding: 0.375rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-success {
            background: rgba(16, 185, 129, 0.1);
            color: var(--success-color);
        }

        .status-pending {
            background: rgba(245, 158, 11, 0.1);
            color: var(--warning-color);
        }

        .status-failed {
            background: rgba(239, 68, 68, 0.1);
            color: var(--danger-color);
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
        }

        .empty-icon {
            font-size: 4rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .empty-text {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* Modal */
        .modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: var(--shadow-xl);
        }

        .modal-header {
            border-bottom: 1px solid var(--border-color);
            padding: 1.5rem 2rem;
        }

        .modal-title {
            font-weight: 700;
            color: var(--text-primary);
        }

        .modal-body {
            padding: 2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-container {
                padding: 1rem;
            }

            .page-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            .balance-card {
                padding: 2rem;
                transform: none;
            }

            .balance-amount {
                font-size: 2.5rem;
            }

            .transactions-header {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-buttons {
                justify-content: center;
            }

            .transaction-card {
                padding: 1rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        .animate-in:nth-child(1) { animation-delay: 0.1s; }
        .animate-in:nth-child(2) { animation-delay: 0.2s; }
        .animate-in:nth-child(3) { animation-delay: 0.3s; }


        /* Payment Page Specific Styles */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.welcome-section {
    margin-bottom: 1.5rem;
}

.welcome-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.welcome-section p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Transaction Card */
.transaction-card {
    background: var(--white);
    border-radius: 12px;
    border: none;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-top: 1.5rem;
}

.transaction-card .card-header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1.25rem;
}

.transaction-card .card-header h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Filter Pills */
.filter-pills {
    display: flex;
    gap: 0.5rem;
}

.filter-pill {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-pill.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Transaction List */
.transaction-list {
    max-height: 500px;
    overflow-y: auto;
}

.transaction-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    gap: 1rem;
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-item:hover {
    background: var(--bg-light);
}

.transaction-icon-wrapper {
    flex-shrink: 0;
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.transaction-icon.payment {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.transaction-icon.top_up {
    background: var(--primary-light);
    color: var(--primary-color);
}

.transaction-icon.refund {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.transaction-details {
    flex: 1;
    min-width: 0;
}

.transaction-details h6 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
    color: var(--text-dark);
}

.transaction-details small {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transaction-date {
    text-align: center;
    min-width: 100px;
}

.transaction-date small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.transaction-amount {
    font-size: 1rem;
    font-weight: 600;
    min-width: 100px;
    text-align: right;
}

.amount-positive {
    color: #10b981;
}

.amount-negative {
    color: #ef4444;
}

.transaction-status {
    min-width: 80px;
}

/* Update existing stat-card styles for payment page */
.stat-card h6 {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.375rem;
}

.stat-card.balance-card h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.stat-card .btn-sm {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-icon {
    font-size: 3rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.empty-state small {
    font-size: 0.875rem;
}

/* Custom scrollbar for transaction list */
.transaction-list::-webkit-scrollbar {
    width: 6px;
}

.transaction-list::-webkit-scrollbar-track {
    background: transparent;
}

.transaction-list::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 3px;
}

.transaction-list::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-pills {
        flex-wrap: wrap;
    }
    
    .transaction-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .transaction-date {
        display: none;
    }
    
    .transaction-amount,
    .transaction-status {
        flex: 1;
        min-width: auto;
    }
}
  .login-card {
            max-width: 400px;
            width: 100%;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }
        .login-header {
            background: #5bcbe3;
            color: white;
            padding: 2rem;
            text-align: center;
        }
        .login-body {
            padding: 2rem;
        }

        .logu{
            margin-top: 80px;
        }

         .login-container {
            width: 100%;
            padding: 20px;
        }

        .login-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-width: 350px;
            margin: 0 auto;
            animation: slideUp 0.5s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-header {
            background: linear-gradient(135deg, #5bcbe3 0%, #4ab8cf 100%);
            color: white;
            padding: 15px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            height:80px;
        }

        .login-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .login-header h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 3px;
            position: relative;
            z-index: 1;
        }

        .login-header p {
            font-size: 14px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .login-body {
            padding: 15px 2rem;
        }

        /* Modern Form Styles */
        .form-group {
            position: relative;
            margin-bottom: 2rem;
        }

        .form-control {
            border: none;
            border-bottom: 2px solid #e0e0e0;
            border-radius: 0;
            padding: 0.75rem 0;
            font-size: 1rem;
            background: transparent;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            box-shadow: none;
            border-bottom-color: #5bcbe3;
            background: transparent;
        }

        .form-label {
            position: absolute;
            top: 0.75rem;
            left: 0;
            font-size: 1rem;
            color: #6c757d;
            pointer-events: none;
            transition: all 0.3s ease;
            background: white;
            padding: 0 5px;
        }
        .form-control::placeholder{
            font-size:12px;
        }

        .form-control:focus ~ .form-label,
        .form-control:not(:placeholder-shown) ~ .form-label {
            top: -12px;
            font-size: 12px;
            color: #5bcbe3;
        }

        /* Modern Alert */
        .alert-modern {
            background: #fee;
            border: none;
            border-radius: 12px;
            color: #dc3545;
            padding: 1rem 1.25rem;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            animation: shake 0.5s ease;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-10px); }
            75% { transform: translateX(10px); }
        }

        /* Modern Button */
        .btn-login {
            background: linear-gradient(135deg, #5bcbe3 0%, #4ab8cf 100%);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0.875rem 2rem;
            font-weight: 600;
            font-size: 1rem;
            width: 100%;
            margin-top: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-login::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-login:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(91, 203, 227, 0.3);
        }

        /* Links */
        .auth-links {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
        }

        .auth-links a {
            color: #6c757d;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .auth-links a:hover {
            color: #5bcbe3;
        }

        .register-link {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e0e0e0;
            font-size: 0.9rem;
        }

        .register-link a {
            color: #5bcbe3;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .register-link a:hover {
            text-decoration: underline;
        }

        /* Logo */
        .logo-section {
            text-align: center;
            margin-bottom: 2rem;
        }

        .logo-section img {
            
            width: 120px;
        }

        /* Responsive */
        @media (max-width: 576px) {
            .login-header {
                padding: 2rem 1.5rem;
            }

            .login-body {
                padding: 2rem 1.5rem;
            }

            .login-header h3 {
                font-size: 1.5rem;
            }
        }
