        /* ===== Global Theme Colors ===== */
        :root {
            --primary-color: #F46523;
            --dark-color: #010101;
            --text-light: #ffffff;
        }

        /* ==== This css was added in the head tag of the frontlayout ====  */
        .user-dropdown {
            position: relative;
            /* top: 20px */
        }

        .animate-dropdown {
            opacity: 0;
            /* position: absolute; */
            transform: translateY(-10px);
            transition: all 0.3s ease;
            display: none;
            min-width: 220px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            top: 47px;
        }

        .user-dropdown.show .animate-dropdown {
            background-color: white !important;
            display: block;
            opacity: 1;
            transform: translateY(0);
        }


        .dropdown-item:hover {
            background-color: #f8f9fa;
        }

        .identity-btn {
            /* background: #f46523b2; */
            padding: 10px;
            border: 1px solid black;
            border-radius: 5px;
            color: #010101;
            text-decoration: none;
            transition: .4s all;
        }

        .identity-btn:hover {
            background: #ff783a;
            color: #010101;
        }

        .kyc-btn {
            display: block;
            background: #ff783a;
            padding: 10px 15px;
            border-radius: 8px;
            font-weight: 600;
            color: #fff !important;
            text-align: center;
            text-decoration: none;
            transition: .3s ease;
            margin-top: 10px;
        }

        .kyc-btn:hover {
            background: #e8682f;
        }

        /* Pending */
        .kyc-badge.kyc-pending {
            display: block;
            background: #fff3cd;
            color: #856404;
            border: 1px solid #ffeeba;
            padding: 10px 15px;
            border-radius: 8px;
            font-weight: 600;
            margin-top: 10px;
            text-align: center;
        }

        /* Verified */
        .kyc-badge.kyc-verified {
            display: block;
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            padding: 10px 15px;
            border-radius: 8px;
            font-weight: 600;
            margin-top: 10px;
            text-align: center;
        }

        .admin-btn {
            display: block;
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            padding: 10px 15px;
            border-radius: 8px;
            font-weight: 600;
            margin-top: 10px;
            text-align: center;
        }

        .notif-badge {
            position: absolute;
            top: 0px;
            right: 11px;
            background: #ff3b30;
            color: #fff;
            font-size: 12px;
            font-weight: bold;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Notification Panel Style */
        /* .notification-panel {
            position: absolute;
            top: 70px;
            right: 287px;
            width: 320px;
            background: rgba(255, 255, 255, 0.11);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
            display: none;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 9999;
        } */

        .notification-panel {
            position: fixed;
            /* important: not absolute inside collapsed container */
            top: 64px;
            /* adjust as needed for navbar height */
            right: 200px;
            /* distance from right edge (adjust) */
            width: 320px;
            max-width: calc(100% - 24px);
            background: rgba(255, 255, 255, 0.11);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
            display: none;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.25s ease;
            z-index: 2000;
            /* must be above navbar */
        }

        .notification-panel.show {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .notification-panel.show {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .notification-panel .title {
            font-size: 17px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #fff;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 8px;
        }

        /* Notification Item */
        .notif-item {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.07);
            margin-bottom: 8px;
            cursor: pointer;
            transition: 0.2s;
        }

        .notif-item:hover {
            background: rgba(255, 255, 255, 0.16);
        }

        .notif-text p {
            margin: 0;
            color: #e9e9e9;
            font-size: 13px;
        }

        .notif-text strong {
            color: #fff;
            font-size: 14px;
        }

        .time {
            color: #ddd;
            font-size: 12px;
            white-space: nowrap;
        }

        .single-note {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: all .3s ease;
        }

        .single-note:hover {
            transform: translateY(-2px);
        }

        .delete-note {
            cursor: pointer;
            padding: 6px;
            border-radius: 50%;
            transition: .3s;
            height: 0;
        }

        .delete-note:hover {
            /* background: #ffe2e2; */
            color: #f44336;
        }

        /* ==== End This css was added in the head tag of the frontlayout ====  */

        /* ===== Navbar Styling ===== */
        .navbar {
            background-color: var(--dark-color) !important;
            padding: 1rem 2rem;
        }

        .navbar .container-fluid {
            width: auto;
        }

        .navbar-brand {
            color: var(--primary-color) !important;
            font-weight: 700;
            font-size: 1.4rem;
            letter-spacing: 1px;
            margin-left: 40px;
        }

        .navbar-nav .nav-link {
            color: var(--text-light) !important;
            margin-right: 1rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-item {
            font-size: 15px;
        }

        /* ===== Button Styling ===== */
        .btns {
            display: flex;
            gap: 10px;
        }

        .btn1 {
            background-color: var(--primary-color) !important;
            border: none;
            color: var(--text-light);
            font-weight: 500;
            transition: all 0.3s ease;
            font-weight: 400;
            border-radius: 10px;
            text-align: center;
            font-size: 14px;


        }

        .btn2 {
            background-color: transparent;
            border: 1px solid white;
            color: var(--text-light);
            font-weight: 500;
            transition: all 0.3s ease;
            font-weight: 400;
            border-radius: 10px;
            text-align: center;
            font-size: 14px;

        }

        .btn1:hover {
            background-color: #ff783a !important;
            transform: scale(1.05);
        }

        .btn2:hover {
            background-color: #ff783a !important;
            transform: scale(1.05);
        }

        #language {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            padding: 6px 28px 6px 10px;
            font-size: 0.95rem;
            font-weight: 500;
            appearance: none;
            outline: none;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            background-image: url("data:image/svg+xml;utf8,<svg fill='%23F46523' height='14' viewBox='0 0 24 24' width='14' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
            background-repeat: no-repeat;
            background-position: right 10px center;
            margin-left: 15px;
        }

        #language:hover {
            border-color: #F46523;
        }

        #language:focus {
            border-color: #F46523;
            box-shadow: 0 0 6px rgba(244, 101, 35, 0.5);
        }

        /* ===== Option Styling ===== */
        #language option {
            background-color: #010101;
            color: #ffffff;
            font-weight: 500;
            border: none;
            padding: 8px;
        }

        #language option:hover {
            background-color: #F46523;
            color: #ffffff;
        }

        /* HERO adjustments */
        /* CHANGE: mobile-first padding/reflow */

        .main {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 89px;
            /* padding: 32px var(--container-padding-x); */
        }


        .main .content .small-head {
            background-color: #f465235c;
            padding: 7px 14px;
            border-radius: 15px;
            font-size: 14px;
            color: #F46523;
            text-decoration: none;

        }

        .main .content h1 {
            font-size: 65px;
             font-family: 'Poppins';
        }

        .hero-btns .btn1 {
            background-color: var(--primary-color) !important;
            border: none;
            color: var(--text-light);
            font-weight: 500;
            transition: all 0.3s ease;
            font-weight: 400;
            border-radius: 10px;
            text-align: center;
            font-size: 16px;
            padding: 10px 62px;
        }

        .hero-btns .btn2 {

            font-size: 16px;
            padding: 10px 62px;
        }

        .graphic {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 50px 0;
        }

        .about .row {

            width: 50%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            text-align: center;
        }

        .about .col h2 {
            font-size: 2rem;
            margin: 0;
            color: white;
            /* Customize color */
        }

        .about .col p {
            margin: 10px 0 0;
            color: #555;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about .row {
                width: 80%;
                grid-template-columns: 1fr;
            }
        }


        .crypto-section {
            background-color: #111;
            color: #fff;
            text-align: center;
        }

        .crypto-title {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
        }

        .crypto-subtitle {
            color: #ccc;
            font-size: 0.95rem;
        }

        .crypto-table {
            width: 100%;
            border-collapse: collapse;
            color: #fff;
            min-width: 700px;
            max-height: 200px;
            background-color: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
        }

        .crypto-table thead {
            background-color: #F46523;
            color: #fff;
        }

        .crypto-table th {
            padding: 14px 12px;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            border: none;
        }

        .crypto-table td {
            padding: 14px 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            vertical-align: middle;
            font-size: 0.95rem;
        }

        .crypto-table tbody tr:hover {
            background-color: rgba(244, 101, 35, 0.08);
            transition: 0.3s ease;
        }

        .token-cell {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }

        .text-success {
            color: #4CAF50 !important;
        }

        .text-danger {
            color: #E53935 !important;
        }

        .text-muted {
            color: #aaa !important;
        }

        .table-responsive {

            max-height: 700px;
            /* 👈 Set your preferred visible height */
            overflow-y: auto;
            /* Enable vertical scrolling */
            overflow-x: auto;
            /* Keep horizontal scroll for small screens */
            scrollbar-width: thin;
            scrollbar-color: #F46523 #1a1a1a;
        }

        .table-responsive::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        .table-responsive::-webkit-scrollbar-thumb {
            background: #F46523;
            border-radius: 4px;
        }


        .hooks-section {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 70px 0;
            background: #0a0a0a;
        }

        .hooks-section .row {
            width: 40%;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .hooks-section .col {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 25px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            transition: all 0.3s ease;
        }

        .hooks-section .col:hover {
            background: rgba(244, 101, 35, 0.15);
            transform: translateY(-3px);
        }

        .hooks-section .icon-wrapper {
            width: 60px;
            height: 60px;
            min-width: 60px;
            border-radius: 50%;
            background: rgba(244, 101, 35, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hooks-section .icon-wrapper i {
            font-size: 24px;
            color: #F46523;
        }

        .hooks-section .text h2 {
            font-size: 1.2rem;
            margin: 0;
            color: #fff;
            font-weight: 600;
        }

        .hooks-section .text p {
            margin: 5px 0 0;
            color: #ccc;
            font-size: 0.95rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hooks-section .row {
                width: 70%;
            }
        }

        @media (max-width: 576px) {
            .hooks-section .row {
                width: 90%;
            }

            .hooks-section .col {
                flex-direction: row;
                align-items: flex-start;
            }

            .hooks-section .icon-wrapper {
                width: 50px;
                height: 50px;
            }

            .hooks-section .icon-wrapper i {
                font-size: 20px;
            }
        }

        .last-section {
            background: #0a0a0a;
            color: #fff;
            padding: 80px 0;
            overflow: hidden;
        }

        /* ===== First Row ===== */
        .last-section .intro {
            margin-bottom: 60px;
        }

        .last-section .heading {
            font-size: 3rem;
            font-weight: 700;
            flex: 1;
            max-width: 55%;
            color: #fff;
        }

        .last-section .lottie-animation {
            width: 400px;
            height: 400px;
            flex-shrink: 0;
        }

        /* ===== Second Row ===== */
        .feature-text {
            max-width: 70%;
            margin: 0 auto 70px auto;
            text-align: left;
        }

        .feature-text h2 {
            color: #F46523;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .feature-text h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .feature-text p {
            color: #bbb;
            line-height: 1.7;
        }

        /* ===== Third Row (Glass Boxes) ===== */
        .glass-boxes {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-bottom: 80px;
            position: relative;
        }

        .last-graphic {
            position: absolute;
            left: -90px;
        }

        .glass-box {
            display: flex;
            align-items: center;
            gap: 15px;
            width: 60%;
            padding: 20px 25px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
        }

        .glass-box:hover {
            background: rgba(244, 101, 35, 0.15);
            transform: translateY(-3px);
        }

        .glass-box i {
            font-size: 28px;
            color: #F46523;
            background: rgba(244, 101, 35, 0.15);
            border-radius: 50%;
            padding: 15px;
        }

        /* ===== Fourth Row (Horizontal Scroll) ===== */
        .scroll-boxes {
            position: relative;
            height: 220px;
        }

        .scroll-track {
            display: flex;
            align-items: center;
            gap: 25px;
            animation: moveCards 20s linear infinite;
        }

        .scroll-card {
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 25px;
            color: #fff;
        }

        .scroll-card h4 {
            color: #F46523;
            margin-bottom: 10px;
        }

        .scroll-card {
            width: 280px;
            height: 180px;
        }

        /* .scroll-card.medium {
            width: 230px;
            height: 160px;
        }

        .scroll-card.small {
            width: 240px;
            height: 140px;
        } */

        /* Add this animation */
        @keyframes floatMove {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0);
            }
        }


        .last-section .col:last-child .col:nth-child(2) {
            animation-delay: 0.5s;
        }

        .last-section .col:last-child .col:nth-child(3) {
            animation-delay: 1s;
        }

        .last-section .col:last-child .col:nth-child(4) {
            animation-delay: 1.5s;
        }

        /* ===== Responsive ===== */
        @media (max-width: 992px) {
            .last-section .intro {
                flex-direction: column;
                text-align: center;
            }

            .last-section .heading {
                max-width: 100%;
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .last-section .lottie-animation {
                width: 300px;
                height: 300px;
            }

            .feature-text {
                max-width: 90%;
            }

            .glass-box {
                width: 80%;
            }
        }

        @media (max-width: 576px) {
            .glass-box {
                width: 90%;
                flex-direction: column;
                text-align: center;
            }
        }

        .brand-footer {
            background-color: #010101;
            color: #fff;
            font-family: sans-serif;
            border-top: 3px solid #F46523;
        }

        .brand-footer .footer-logo img {
            width: 120px;
        }

        .brand-footer .footer-desc {
            color: #aaa;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .brand-footer .footer-title {
            color: #F46523;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .brand-footer .footer-links {
            list-style: none;
            padding: 0;
        }

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

        .brand-footer .footer-links li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .brand-footer .footer-links li a:hover {
            color: #F46523;
        }

        .brand-footer .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .brand-footer .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border-radius: 8px;
            border: none;
            outline: none;
        }

        .brand-footer .newsletter-form button {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            background-color: #F46523;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .brand-footer .newsletter-form button:hover {
            background-color: #ff783a;
        }

        .brand-footer .social-icons {
            display: flex;
            gap: 15px;
        }

        .brand-footer .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #111;
            color: #fff;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .brand-footer .social-icons a:hover {
            background-color: #F46523;
            color: #fff;
        }

        .brand-footer .footer-bottom p {
            color: #777;
            margin-top: 20px;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .brand-footer .newsletter-form {
                flex-direction: column;
            }

            .brand-footer .newsletter-form button {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .brand-footer .social-icons {
                justify-content: center;
            }
        }

        /* ===== Body Background ===== */
        body {
            background-color: #0f0f0f;
            color: var(--text-light);
        }

        * {
            font-family: sans-serif;

        }

        .profile-icon {
            background-color: #F46523;
            border-radius: 50%;
            padding: 8px 14px;
        }

        html {
            scroll-behavior: smooth;
        }