:root {
        --primary: #8B5CF6;
        --primary-dark: #7C3AED;
        --primary-light: #A78BFA;
        --secondary: #705ed3;
        --accent: #7d3c98;
        --danger: #346ecc;
        --warning: #7c3b96;
        --dark: #0F172A;
        --darker: #0A0F1F;
        --dark-light: #1E293B;
        --light: #F8FAFC;
        --gray: #94A3B8;
        --glass: rgba(255, 255, 255, 0.07);
        --glass-border: rgba(255, 255, 255, 0.12);
        --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #7d3c98 100%);
        --gradient-secondary: linear-gradient(135deg, #7d3c98 0%, #346ecc 100%);
        --gradient-dark: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 15, 31, 0.9) 100%);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background: var(--darker);
        color: var(--light);
        font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        overflow-x: hidden;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }

    .dashboard-container {
        display: grid;
        grid-template-columns: 280px 1fr;
        min-height: 100%;
        gap: 0;
        max-width: 1900px;
        margin-inline: auto;
    }

    /* Glassmorphism Sidebar */
    .sidebar {
        background: var(--glass);
        backdrop-filter: blur(20px);
        border-right: 1px solid var(--glass-border);
        padding: 30px 20px;
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto;
        box-shadow: var(--glass-shadow);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 1000;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--glass-border);
    }

    .logo-icon {
        width: 50px;
        height: 50px;
        background: var(--gradient-primary);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    }

    .logo-text {
        font-size: 24px;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .nav-menu {
        list-style: none;
        margin-bottom: 40px;
    }

    .nav-item {
        margin-bottom: 8px;
    }

    .nav-link {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 16px 20px;
        color: var(--gray);
        text-decoration: none;
        border-radius: 0px 16px;
        transition: var(--transition);
        font-weight: 500;
    }

    .nav-link:hover {
        background: rgba(139, 92, 246, 0.15);
        color: var(--light);
        transform: translateX(8px);
    }

    .nav-link.active {
        background: rgb(125 60 152 / 20%);
        color: var(--light);
        border-left: 4px solid var(--accent);
        border-right: 4px solid var(--accent);
    }

    .nav-link i {
        width: 24px;
        font-size: 18px;
    }

    .cta-card {
        background: var(--gradient-primary);
        border-radius: 16px;
        padding: 24px;
        text-align: center;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
        animation: float 4s ease-in-out infinite;
    }

    .cta-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .cta-card p {
        font-size: 14px;
        opacity: 0.9;
        margin-bottom: 20px;
    }

    .cta-button {
        background: white;
        color: var(--primary);
        border: none;
        padding: 12px 28px;
        border-radius: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        width: 100%;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    }

    /* Main Content */
    .main-content {
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-height: none;
        width: 100%;
        max-width: none;
        margin-inline: auto;
    }

    .stats-categories-container>*,
    .chart-insights-container>* {
        min-width: 0;
    }

    /* Section Styling */
    .dashboard-section {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
        scroll-margin-top: 30px;
    }

    /* Header */
    .section-header {
        border-radius: 20px;
        padding: 0px;
    }

    .welcome-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .welcome-text h1 {
        font-size: 32px;
        margin-bottom: 8px;
        background: linear-gradient(90deg, var(--light) 0%, var(--primary-light) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .welcome-text p {
        color: var(--gray);
        font-size: 16px;
    }

    /* Dropdowns Container */
    .dropdowns-container {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .dropdown-wrapper {
        position: relative;
        min-width: 180px;
    }

    .dropdown {
        background: rgba(139, 92, 246, 0.15);
        border: 3px solid var(--accent);
        color: var(--light);
        padding: 12px 40px 12px 16px;
        border-radius: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        width: 100%;
        text-align: left;
        position: relative;
        font-size: 14px;
        min-width: 200px !important;
    }

    .dropdown:hover {
        background: rgba(139, 92, 246, 0.25);
        border-color: rgba(139, 92, 246, 0.5);
    }

    .dropdown::after {
        content: '▼';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 10px;
        opacity: 0.7;
    }

    .dropdown.open::after {
        content: '▲';
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-light);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        margin-top: 5px;
        overflow: hidden;
        z-index: 1000;
        box-shadow: var(--glass-shadow);
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 12px 16px;
        color: var(--light);
        cursor: pointer;
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        background: rgba(139, 92, 246, 0.15);
    }

    .dropdown-item.disabled {
        color: var(--gray);
        cursor: not-allowed;
        opacity: 0.6;
    }

    .status-icon {
        font-size: 14px;
        font-weight: 800;
        margin-left: 8px;
    }

    .status-unlocked {
        color: #447df6;
    }

    .status-locked {
        color: var(--gray);
    }

    /* New Layout for Week/Month and Categories */
    .stats-categories-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stats-side {
        display: grid;
        grid-template-rows: auto 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .divis {
        grid-column: span 2;
        background: var(--accent);
        padding: 15px;
        border-radius: 0px 25px 0px 25px;
        border: 1px solid var(--glass-border);
    }

    .divis h3 {
        margin-bottom: 10px;
        font-weight: 500;
    }

    .stat-card {
        background: var(--glass);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 0px 25px 0px 25px;
        padding: 25px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        flex: 1;
        cursor: pointer;
    }

    .section-header h3 {
        font-weight: 500;
    }

    .section-header p {
        margin-bottom: 15px;
        font-weight: 300;
    }

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        border-color: var(--danger);
    }

    .stat-card:nth-child(even):hover {
        border-color: var(--accent);
    }

    .stat-card::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
    }

    .stat-content {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .stat-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .stat-title {
        font-size: 14px;
        color: white;
        font-weight: 500;
    }

    .stat-trend {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 13px;
        font-weight: 400;
        padding: 4px 10px;
        border-radius: 0px 10px 0px 10px;
    }

    .trend-up {
        background: var(--warning);
        color: #ffffff;
    }

    .trend-down {
        background: var(--danger);
        color: white;
    }

    .stat-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .stat-value {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1;
    }

    .stat-label {
        color: var(--gray);
        font-size: 14px;
    }

    .stat-chart-container {
        position: relative;
        width: 180px;
        height: 180px;
    }

    .liquid-chart {
        width: 100%;
        height: 100%;
    }

    .liquid-value {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 20px;
        font-weight: 500;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        z-index: 10;
    }

    /* Categories Grid as Table */
    .categories-grid-table {
        background: var(--glass);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 18px;
        box-shadow: var(--glass-shadow);
        height: 100%;
        max-height: 500px;
        overflow-x: auto;
    }

    .table-header {
        display: grid;
        grid-template-columns: 3fr 1fr 1fr;
        gap: 20px;
        padding: 20px 20px;
        background: var(--secondary);
        border-radius: 0px 0px 10px 10px;
        margin-bottom: 10px;
        font-weight: 600;
        color: var(--light);
        border: 3px solid rgb(167 139 250);
    }

    .table-row {
        display: grid;
        grid-template-columns: 3fr 1fr 1fr;
        gap: 20px;
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: var(--transition);
        align-items: center;
    }

    .table-row:hover {
        background: rgba(139, 92, 246, 0.05);
        transform: translateX(5px);
    }

    .subcategory-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .subcategory-icon {
        width: 40px;
        height: 40px;
        border-radius: 0px 10px 0px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: white;
        flex-shrink: 0;
        background: var(--accent);
        padding: 10px;
    }

    .subcategory-icon-image {
        width: 30px;
        height: 30px;
    }

    .subcategory-details {
        display: flex;
        flex-direction: column;
    }

    .subcategory-name {
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 4px;
    }

    .subcategory-category {
        font-size: 13px;
        color: var(--gray);
    }

    .price-value {
        font-size: 16px;
        font-weight: 400;
        color: var(--light);
    }

    .difference-value {
        display: flex;
        gap: 8px;
        font-size: 16px;
        font-weight: 400;
        padding: 6px 12px;
        border-radius: 0px 10px 0px 10px;
        width: auto;
        align-items: center;
        text-align: center;
        justify-content: space-between;
    }

    .difference-up {
        background: var(--warning);
        color: white;
    }

    .difference-down {
        background: var(--danger);
        color: white;
    }

    /* Chart and Insights Container */
    .chart-insights-container {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 30px;
    }

    /* Main Chart Section */
    .chart-section {
        background: var(--glass);
        backdrop-filter: blur(20px);
        border: 3px solid var(--accent);
        border-radius: 0px 25px 0px 25px;
        padding: 30px;
        box-shadow: var(--glass-shadow);
        transition: var(--transition);
        display: flex;

        flex-direction: column;
        justify-content: center;
    }

    .chart-section:hover {
        border-color: rgba(139, 92, 246, 0.3);
    }

    .chart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
    }

    .chart-title h2 {
        font-size: 24px;
        margin-bottom: 8px;
        color: #dc9afa;
        font-weight: 600;
    }

    .chart-title p {
        color: var(--gray);
        font-size: 15px;
    }

    .chart-controls {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .zoom-controls {
        display: flex;
        gap: 15px;
        background: var(--accent);
        border-radius: 0px 10px;
        padding: 5px;
    }

    .zoom-btn {
        background: transparent;
        border: none;
        color: var(--light);
        width: 36px;
        height: 36px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
    }

    .zoom-btn:hover {
        background: rgba(139, 92, 246, 0.2);
    }

    .chart-actions {
        display: flex;
        gap: 12px;
    }

    .chart-btn {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid var(--glass-border);
        color: var(--light);
        padding: 10px 20px;
        border-radius: 10px;
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
    }

    .chart-btn:hover,
    .chart-btn.active {
        background: var(--gradient-primary);
        border-color: transparent;
    }

    .chart-container {
        height: 400px;
        width: 100%;
        position: relative;
    }

    .price-chart-container {
        height: 450px;
        width: 100%;
        position: relative;
    }

    .chart-note {
        color: white;
        font-size: 14px;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0px 16px;
        border-left: 4px solid #7d3c98;
        border-right: 4px solid #7d3c98;
    }

    /* Insights Section */
    .insights-section {
        background: linear-gradient(45deg, var(--accent), var(--danger));
        backdrop-filter: blur(20px);
        border-radius: 0px 25px 0px 25px;
        padding: 30px;
        box-shadow: var(--glass-shadow);
        display: flex;
        flex-direction: column;
        border: 3px solid #7c3c97;
    }

    .insights-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }

    .insights-header h2 {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .insights-icon {
        width: 60px;
        height: 60px;
        background: var(--gradient-primary);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    }

    .insights-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .insights-content p {
        color: white;
        line-height: 1.7;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .table-heading-des {
        background: var(--warning);
        padding: 5px 10px;
        margin-bottom: 8px;
        border-radius: 10px 10px 0px 00px;
        border: 3px solid var(--primary-light);
    }

    .insights-content-iamge {
        width: 300px;
    }

    /* Animations */
    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .float-animation {
        animation: float 3s ease-in-out infinite;
    }

    .pulse-animation {
        animation: pulse 2s infinite;
    }

    /* Responsive Design */
    .main-content {
        margin-top: 10px;
        width: 100%;
    }

    .main-content *,
    .chart-section,
    .categories-grid-table {
        max-width: 100%;
        min-width: 0;
    }

    .new-dashbord-conect-div {
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: center;
        padding: 0px;
        row-gap: 20px;
        background-color: var(--accent);
        border-radius: 15px;
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        width: 90%;
        height: 250px;
        margin: 0 auto;
    }

    .conect-title {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.2px;
        line-height: 28px;
        text-align: center;
    }

    .new-dashbord-conect-div img {
        width: 38%;
        position: absolute;
        left: 2%;
        bottom: 2%;
    }

    .insights-content-iamge-relative {
        position: relative;
    }


    .dashbord-conect-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 65%;
        row-gap: 14px;
    }

    .free-button-hover {
        border-color: #000;
        padding: 10px;
        color: white;
        background-color: var(--accent);
        transition: all 0.3s ease;
        text-decoration: none;
        border-radius: 0px 10px;
        border: 2px solid white;
        font-weight: 600;
    }

    .free-button-hover:hover {
        background-color: transparent;
        transition: all 0.3s ease;
    }

    .insights-section {
        position: relative;
        overflow: hidden;
    }

    /* Shared icon container */
    .insights-icons {
        position: absolute;
        top: 72%;
        display: flex;
        gap: 14px;
        transform: translateY(-50%);
        pointer-events: none;
        flex-direction: column;
    }

    /* Left & Right positioning */
    .insights-icons.left {
        left: 10%;
    }

    .insights-icons.right {
        right: 10%;
    }

    /* Icon base */
    .insights-icons .icon {
        width: 60px;
        height: 60px;
        opacity: 0;
        transform: translateX(0);
        transition:
            transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.2s ease;
        will-change: transform, opacity;
        background-size: contain;
        background-repeat: no-repeat;
    }

    /* Initial hidden positions */
    .insights-icons.left .icon {
        transform: translateX(-60px);
    }

    .insights-icons.right .icon {
        transform: translateX(60px);
    }

    /* Hover trigger */
    .insights-section:hover .insights-icons .icon {
        opacity: 1;
        transform: translateX(0);
    }

    /* ⚡ Lightning-fast stagger */
    .insights-section:hover .left .i1 {
        transition-delay: 0.02s;
    }

    .insights-section:hover .left .i2 {
        transition-delay: 0.06s;
    }

    .insights-section:hover .left .i3 {
        transition-delay: 0.1s;
    }

    .insights-section:hover .right .i4 {
        transition-delay: 0.02s;
    }

    .insights-section:hover .right .i5 {
        transition-delay: 0.06s;
    }

    .insights-section:hover .right .i6 {
        transition-delay: 0.1s;
    }


    .cta-section-my-website-first-cta {
        position: relative;
        background: url(../1.jpg) no-repeat center center/cover;
        color: #fff;
        text-align: center;
        padding: 6rem 1rem;
        overflow: hidden;
        border-radius: 2rem;
        max-width: 1848px;
        margin: 0 auto;
        border: 1px solid var(--glass-border);
        margin-top: 20px;
    }



    .cta-section-my-website-first-cta-content {
        position: relative;
        z-index: 2;
        max-width: 720px;
        margin: 0 auto;
    }

    .cta-section-my-website-first-cta-btn {
        display: inline-block;
        margin-top: 1.5rem;
        padding: 0.75rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(90deg, #4a90e2, #7f5af0);
        border: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .cta-section-my-website-first-cta-btn:hover {
        background: linear-gradient(90deg, #7f5af0, #4a90e2);
        transform: translateY(-2px);
    }


    .aryan-hero-section-vid-des-j-cta-btn {
        padding: 1rem 3rem;
        font-size: 1rem;
        font-weight: 500;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 3rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        margin-bottom: auto;
        position: relative;
        overflow: hidden;
    }

    .cta-section-my-website-first-cta-title {
        font-size: 34px;
    }


    .aryan-hero-section-vid-des-j-cta-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
        color: #ffffff;
        text-decoration: none;
    }


    .dashbord-footer {
        background-color: #7d3c98;
        padding: 20px 30px;
        z-index: 9999;
        position: relative;
        border-radius: 15px;

        margin-top: 20px;
    }

    .footer-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .new-footer-social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .new-footer-social-icon i {
        color: #fff;
        font-size: 16px;
    }

    .footer-contact {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-contact a {
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        font-family: var(--font-family);
        text-decoration: none;
        margin: 0 10px;
    }

    .copyright span {
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        font-family: var(--font-family);
        text-decoration: none;
    }

     .table-header-bottom-table {
                                grid-template-columns: repeat(7, 1fr);
                            }

                            .bottom-grid-table {
                                grid-template-columns: repeat(7, 1fr);
                            }

                            .bottom-section-container-mainn .categories-grid-table{
            overflow:unset;
        }

        #products{
            padding-top:30px;
        }

    @media (max-width: 1400px) {
        .dashboard-container {
            display: block;
        }

        .new-dashbord-conect-div {
            display: none !important;
        }

        nav {
            display: flex;
            width: 100%;
            justify-content: space-between;
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: auto;
            max-height: 80px;
            padding: 15px 20px;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            overflow-x: auto;
            overflow-y: hidden;
            border-right: none;
            border-bottom: 1px solid var(--glass-border);
            z-index: 1000;
        }

        .logo {
            margin-bottom: 0;
            border-bottom: none;
            padding-right: 20px;
            border-right: 1px solid var(--glass-border);
            min-width: 200px;
        }

        .logo img {
            width: 200px;
            height: auto;
        }

        .nav-menu {
            display: flex;
            margin-bottom: 0;
            gap: 10px;
            overflow-x: auto;
            white-space: nowrap;
            padding: 0 20px;
        }

        .nav-item {
            margin-bottom: 0;
        }

        .nav-link {
            padding: 12px 15px;
            border-radius: 10px;
            flex-direction: column;
            gap: 8px;
            text-align: center;
            min-width: 100px;
        }

        .nav-link:hover {
            transform: translateY(-3px);
        }

        /* .nav-link.active {
            background: rgb(125 60 152 / 20%);
            color: var(--light);
            border-left: none;
            border-bottom: 3px solid var(--accent);
        } */

        .nav-link span {
            font-size: 12px;
        }

        .nav-link img {
            width: 24px;
            height: 24px;
        }

        .cta-card {
            display: none;
        }

        .main-content {
            margin-top: 80px;
            padding: 20px;
            max-height: none;
        }

        .chart-insights-container {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .chart-container,
        .price-chart-container {
            height: 350px;
        }

        .dropdowns-container {
            flex-wrap: wrap;
        }

        .dropdown-wrapper {
            min-width: 160px;
        }
    }

    @media (max-width: 1200px) {
        .stats-categories-container {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .stats-side {
            grid-template-columns: 1fr 1fr;
        }

        


    }

     @media (max-width: 1024px) {
        .bottom-grid-table.table-row{
            grid-template-columns: repeat(7, minmax(max-content, 1fr));
            gap:25px;
        }
        .bottom-section-container-mainn .table-rows-container {
    overflow-x: scroll;
}

     }

    @media (max-width: 991px) {
        .sidebar {
            max-height: max-content;
            padding: 10px 15px;
        }

        nav {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .welcome-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .chart-section {
            padding: 10px;
        }

        .stats-side {
            grid-template-columns: 1fr;
        }

        .divis {
            grid-column: span 1;
        }

        .chart-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .cta-section-my-website-first-cta-title {
            font-size: 28px;
            font-weight: 600;
        }

        .chart-controls {
            width: 100%;
            justify-content: space-between;
        }

        .chart-container,
        .price-chart-container {
            height: 300px;
        }

        .stat-body {
            flex-direction: column;
            gap: 20px;
            align-items: flex-start;
        }

        .stat-chart-container {
            width: 120px;
            height: 120px;
        }

        .table-header,
        .table-row {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .table-header {
            display: none;
        }

        .table-row {
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-bottom: 10px;
            grid-template-columns: 1fr;
        }

        .liquid-value{
            font-size: 14px;
        }
        .footer-flex{
            flex-direction: column;
            gap: 10px;
        }

        .footer-contact{
           flex-direction: column;
           gap: 5px;
        }

        /* .subcategory-info {
            margin-bottom: 10px;
        } */

        .sidebar {
            padding: 10px 15px;
        }

        .logo {
            min-width: 150px;
        }

        .nav-link {
            padding: 8px 12px;
            min-width: 80px;
        }

        .nav-link img {
            width: 20px;
            height: 20px;
        }

        .main-content {
            margin-top: 70px;
        }

        .dropdowns-container {
            width: 100%;
        }

        .dropdown-wrapper {
            min-width: calc(50% - 8px);
        }
    }

    @media (max-width: 576px) {
        .main-content {
            padding: 15px;
        }

        .stat-value {
            font-size: 28px;
        }

        .chart-container,
        .price-chart-container {
            height: 250px;
        }

        .stat-chart-container {
            width: 100px;
            height: 100px;
        }

        .sidebar {
            flex-direction: column;
            height: auto;
            max-height: none;
            padding: 15px;
        }

        .logo {
            border-right: none;
            border-bottom: 1px solid var(--glass-border);
            padding-right: 0;
            width: 100%;
        }

        .nav-menu {
            width: 100%;
            padding: 0px 0px 10px 0px;
        }

        .nav-link {
            flex-direction: row;
            text-align: left;
            justify-content: flex-start;
        }

        .main-content {
            margin-top: 135px;
        }

        .chart-controls {
            flex-direction: column;
            gap: 10px;
        }

        .zoom-controls {
            align-self: flex-start;
        }

        .dropdowns-container {
            flex-direction: column;
        }

        .dropdown-wrapper {
            min-width: 100%;
        }
    }


    /* +==========================popup form css===================================== */
    .dashboard-form-wz-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9999;
}

.dashboard-form-wz-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.dashboard-form-wz-modal {
  background: #7d3c98;
  color: #fff;
  width: 100%;
  max-width: 420px;
  margin: 16px;
  border-radius: 14px;
  padding: 24px;
  position: relative;

}

.dashboard-form-wz-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.dashboard-form-wz-form {
  display: flex;
  flex-direction: column;
  /* gap: 14px; */
  gap: 8px;
      align-items: center;
}

.dashboard-form-wz-form input,
.dashboard-form-wz-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.dashboard-form-wz-form button {
      padding: 12px;
    border-radius: 8px;
    border: none;
    background: transparent;
    border: 1px solid;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.dashboard-form-wz-title {
  text-align: center;
  margin-bottom: 6px;
}


    .unique-phone-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
        width: 100%;
}

/* Country selector button */
.unique-country-selector {
    position: relative;
}

.selected-country-option {
    display: flex;
    align-items: center;
    background-color: white;
    /* border: 1px solid rgb(136, 51, 148); */
    border-radius: 10px;
        padding: 7px 16px;
    cursor: pointer;
    font-size: 14px;
    min-width: 80px;
}

.contact-us-page-contact-form-design-j-rdi-glass-card .selected-country-option{
  border: 1px solid rgb(136, 51, 148);
}
.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.country-code-text {
    margin-right: 5px;
}

.dropdown-toggle-arrow {
    margin-left: auto;
        color: #7d3c98;
    font-size: 12px;
}

/* Dropdown menu */
.unique-country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

/* Search box */
.unique-country-search {
    width: 100%;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #ced4da;
    font-size: 14px;
    box-sizing: border-box;
}

/* Country list */
.unique-country-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.unique-country-list li {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    color:black;
}

.unique-country-list li:hover {
    background-color: #f1f1f1;
}

/* Responsive design */
@media (max-width: 767px) {
    .unique-phone-wrapper {
        
       
    }
	.selected-country-option{
		width: 97px;
	}
	

    .unique-country-selector {
        
        margin-bottom: 0px;
    }

    .unique-country-dropdown {
        width: 100%;
    }
	.unique-country-dropdown {
        width: 300%;
	}

    
}

.search-country1 {
    padding: 2px 15px !important;
}