         :root {
            --royal-blue: #002D62;
            --light-blue: #002D62;
            --gold: #fbbf24;
            --dark-gold: #d97706;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            overflow-x: hidden;
        }
        
        /* Navbar */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 1rem 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--royal-blue) !important;
        }
        
        .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--royal-blue) !important;
        }
        
        .btn-royal {
            background: var(--royal-blue);
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-royal:hover {
            background: var(--light-blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
        }
        
        .btn-gold {
            background: var(--gold);
            color: var(--royal-blue);
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-gold:hover {
            background: var(--dark-gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
        }
        
        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 100vh;
            /* min-height: 300px; */
        }
        
        .carousel-item {
            height: 100vh;
            /* min-height: 200px; */
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(37, 99, 235, 0.8) 100%);
        }
        
        .carousel-caption {
            position: absolute;
            top: 35%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 1200px;
            text-align: left;
        }
        
        .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .carousel-caption p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        
        .badge-award {
            display: inline-block;
            background: rgba(251, 191, 36, 0.2);
            color: var(--gold);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--gold);
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: white;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--royal-blue);
            margin-bottom: 2rem;
        }

        .about-content p {
            font-size: 1.15rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Mission & Vision Section */
        .mission-vision {
            padding: 80px 0;
            background: #f8fafc;
        }

        .mission-box, .vision-box {
            background: white;
            border-radius: 16px;
            padding: 3rem;
            height: 100%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .mission-box:hover, .vision-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .mission-box h3, .vision-box h3 {
            color: var(--royal-blue);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .mission-box p, .vision-box p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--royal-blue);
            margin-bottom: 1rem;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #666;
        }
        
        .service-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.3s;
            border: 2px solid var(--gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--dark-gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--royal-blue), var(--light-blue));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .service-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--royal-blue);
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .learn-more {
            color: var(--gold);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .learn-more:hover {
            color: var(--dark-gold);
            padding-left: 5px;
        }

        /* POS Section */
        .pos-section {
            padding: 80px 0;
            background: white;
        }

        .pos-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
           
        }

        .pos-feature {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 12px;
            border-color: var(--gold);
            text-align: center;
            transition: all 0.3s;
             border: 2px solid var(--gold);
        }

        .pos-feature:hover {
            background: var(--royal-blue);
            color: white;
            transform: translateY(-5px);
        }

        .pos-feature i {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .pos-feature h4 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        /* Feature Section with Image */
        .feature-section {
            padding: 80px 0;
        }
        
        .feature-section:nth-child(even) {
            background: #f8fafc;
        }
        
        .feature-image {
            width: 100%;
            height: 400px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            color: var(--gold);
            
        }
        .feature-image img {
            width: 90%;
            border-radius: 5px;
        }
        
        .feature-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--royal-blue);
            margin-bottom: 1.5rem;
        }
        
        .feature-content p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .feature-list li {
            padding: 0.8rem 0;
           
            display: flex;
            align-items: center;
        }
        
        .feature-list li i {
            color: var(--gold);
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        p i {
            color: var(--gold);
            margin-right: 1rem;
            font-size: 1.2rem;
        }
        
        /* Gadgets Grid */
        .gadget-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        
        .gadget-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .gadget-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--light-blue) 0%, var(--royal-blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: white;
        }
        
        .gadget-content {
            padding: 1.5rem;
        }
        
        .gadget-content h4 {
            color: var(--royal-blue);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .gadget-price {
            color: var(--gold);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .gadget-content p {
            color: #666;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
        
        /* Stats Section */
        .stats {
            background: var(--royal-blue);
            color: white;
            padding: 60px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Video Section */
        .video-section {
            padding: 80px 0;
            background: white;
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background: #f8fafc;
        }

        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            height: 100%;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--royal-blue), var(--light-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .author-info h5 {
            margin: 0;
            color: var(--royal-blue);
            font-weight: 700;
        }

        .author-info p {
            margin: 0;
            color: #888;
            font-size: 0.9rem;
        }

        .stars {
            color: var(--gold);
            margin-bottom: 1rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: white;
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .accordion-button {
            background: white;
            color: var(--royal-blue);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1.5rem;
        }

        .accordion-button:not(.collapsed) {
            background: var(--royal-blue);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-body {
            padding: 1.5rem;
            color: #666;
            line-height: 1.7;
        }
        
        /* Investors Section */
        .investors {
            padding: 80px 0;
            background: #f8fafc;
        }
        
        .investor-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .investor-logo {
            width: 150px;
            height: 80px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        
        .investor-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        /* Download App Section */
        .download-app {
            padding: 80px 0;
            background: var(--royal-blue);
            color: white;
        }

        .app-download-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .app-download-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .app-download-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .app-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .app-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            color: var(--royal-blue);
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .app-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            color: var(--royal-blue);
        }

        .app-btn i {
            font-size: 2rem;
        }

        .app-btn-text small {
            display: block;
            font-size: 0.8rem;
            opacity: 0.7;
        }

        .app-btn-text span {
            display: block;
            font-size: 1.1rem;
        }
        
        /* Categories Section */
        .categories {
            padding: 80px 0;
            background: white;
        }
        
        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .category-tab {
            background: white;
            border: 2px solid var(--gold);
            color: var(--royal-blue);
            padding: 1.5rem 3rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .category-tab:hover {
            background: var(--royal-blue);
            color: white;
            transform: scale(1.05);
        }
        
        /* Footer */
        footer {
            background: var(--royal-blue);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-links h5 {
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--gold);
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--gold);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
        }
        
        @media (max-width: 768px) {
            .carousel-caption h1 {
                font-size: 2rem;
            }
            
            .carousel-caption p {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .category-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .feature-image {
                height: 300px;
                font-size: 5rem;
                margin-bottom: 2rem;
            }
        }
 

   
        /* Sidebar */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: var(--sidebar-width);
            background: var(--royal-blue);
            color: white;
            overflow-y: auto;
            transition: all 0.3s;
            z-index: 1000;
        }

        .sidebar.collapsed {
            width: 80px;
        }

        .sidebar-header {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .sidebar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold);
            white-space: nowrap;
        }

        .sidebar.collapsed .sidebar-brand span {
            display: none;
        }

        .toggle-btn {
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .toggle-btn:hover {
            background: var(--gold);
            color: var(--royal-blue);
        }

        .sidebar-menu {
            padding: 1rem 0;
        }

        .menu-section {
            margin-bottom: 2rem;
        }

        .menu-section-title {
            padding: 0 1.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .sidebar.collapsed .menu-section-title {
            display: none;
        }

        .menu-item {
            display: flex;
            align-items: center;
            padding: 0.8rem 1.5rem;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }

        .menu-item:hover {
            background: rgba(255,255,255,0.1);
            color: white;
        }

        .menu-item.active {
            background: var(--gold);
            color: var(--royal-blue);
            font-weight: 600;
        }

        .menu-item i {
            width: 24px;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .sidebar.collapsed .menu-item span {
            display: none;
        }

        /* Main Content */
        .main-content {
            margin-left: var(--sidebar-width);
            transition: all 0.3s;
            min-height: 100vh;
        }

        .sidebar.collapsed + .main-content {
            margin-left: 80px;
        }

        /* Top Navbar */
        .top-navbar {
            background: white;
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .search-box {
            position: relative;
            width: 400px;
        }

        .search-box input {
            width: 100%;
            padding: 0.6rem 1rem 0.6rem 2.5rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 0.95rem;
        }

        .search-box i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
        }

        .top-navbar-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .notification-icon, .profile-icon {
            position: relative;
            cursor: pointer;
            font-size: 1.3rem;
            color: #64748b;
            transition: all 0.3s;
        }

        .notification-icon:hover, .profile-icon:hover {
            color: var(--royal-blue);
        }

        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ef4444;
            color: white;
            font-size: 0.7rem;
            padding: 0.15rem 0.4rem;
            border-radius: 10px;
            font-weight: 600;
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            cursor: pointer;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .user-profile:hover {
            background: #f1f5f9;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--royal-blue), var(--light-blue));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        /* Dashboard Content */
        .dashboard-content {
            padding: 2rem;
        }

        .page-header {
            margin-bottom: 2rem;
        }

        .page-header h1 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--royal-blue);
            margin-bottom: 0.5rem;
        }

        .breadcrumb {
            background: none;
            padding: 0;
            margin: 0;
        }

        /* Stats Cards */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .stat-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border-left: 4px solid;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .stat-card.payment { border-color: #10b981; }
        .stat-card.savings { border-color: #3b82f6; }
        .stat-card.investment { border-color: var(--gold); }
        .stat-card.ecommerce { border-color: #8b5cf6; }

        .stat-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .stat-card.payment .stat-icon {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
        }

        .stat-card.savings .stat-icon {
            background: rgba(59, 130, 246, 0.1);
            color: #3b82f6;
        }

        .stat-card.investment .stat-icon {
            background: rgba(251, 191, 36, 0.1);
            color: var(--gold);
        }

        .stat-card.ecommerce .stat-icon {
            background: rgba(139, 92, 246, 0.1);
            color: #8b5cf6;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--royal-blue);
            margin-bottom: 0.3rem;
        }

        .stat-label {
            color: #64748b;
            font-size: 0.95rem;
        }

        .stat-change {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .stat-change.positive {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
        }

        .stat-change.negative {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        /* Charts Section */
        .charts-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .chart-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .chart-header h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--royal-blue);
        }

        .chart-filter {
            display: flex;
            gap: 0.5rem;
        }

        .filter-btn {
            padding: 0.4rem 1rem;
            border: 1px solid #e2e8f0;
            background: white;
            border-radius: 8px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--royal-blue);
            color: white;
            border-color: var(--royal-blue);
        }

        .chart-placeholder {
            height: 300px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            font-size: 1.1rem;
        }

        /* Tables Section */
        .table-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }

        .table-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .table-header h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--royal-blue);
        }

        .table-actions {
            display: flex;
            gap: 0.8rem;
        }

        .btn-action {
            padding: 0.5rem 1.2rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary-custom {
            background: var(--royal-blue);
            color: white;
        }

        .btn-primary-custom:hover {
            background: var(--light-blue);
            transform: translateY(-2px);
        }

        .btn-secondary-custom {
            background: #f1f5f9;
            color: #64748b;
        }

        .btn-secondary-custom:hover {
            background: #e2e8f0;
        }

        .custom-table {
            width: 100%;
            border-collapse: collapse;
        }

        .custom-table thead tr {
            background: #f8fafc;
        }

        .custom-table th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            color: #64748b;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        .custom-table td {
            padding: 1rem;
            border-top: 1px solid #f1f5f9;
            color: #334155;
        }

        .custom-table tbody tr:hover {
            background: #fafbfc;
        }

        .status-badge {
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
        }

        .status-completed {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
        }

        .status-pending {
            background: rgba(251, 191, 36, 0.1);
            color: #d97706;
        }

        .status-cancelled {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .action-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .action-btn {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .action-btn.view {
            background: rgba(59, 130, 246, 0.1);
            color: #3b82f6;
        }

        .action-btn.edit {
            background: rgba(251, 191, 36, 0.1);
            color: #d97706;
        }

        .action-btn.delete {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .action-btn:hover {
            transform: scale(1.1);
        }

        /* Quick Actions */
        .quick-actions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .quick-action-btn {
            background: white;
            border: 2px solid var(--gold);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            color: var(--royal-blue);
        }

        .quick-action-btn:hover {
            background: var(--royal-blue);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .quick-action-btn i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .quick-action-btn:hover i {
            color: white;
        }

        .quick-action-btn h4 {
            font-size: 1rem;
            font-weight: 600;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .charts-grid {
                grid-template-columns: 1fr;
            }

            .search-box {
                width: 250px;
            }
        }

        @media (max-width: 768px) {
            .sidebar {
                transform: translateX(-100%);
            }

            .sidebar.show {
                transform: translateX(0);
            }

            .main-content {
                margin-left: 0;
            }

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

            .search-box {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
        }

        .mobile-menu-btn {
            display: none;
            background: var(--royal-blue);
            color: white;
            border: none;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            cursor: pointer;
        }

        /* Tabs */
        .nav-tabs-custom {
            border-bottom: 2px solid #e2e8f0;
            margin-bottom: 2rem;
        }

        .nav-tabs-custom .nav-link {
            border: none;
            color: #64748b;
            padding: 1rem 1.5rem;
            font-weight: 600;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }

        .nav-tabs-custom .nav-link:hover {
            color: var(--royal-blue);
        }

        .nav-tabs-custom .nav-link.active {
            color: var(--royal-blue);
            border-bottom-color: var(--gold);
            background: none;
        }
 