
        :root {
            --primary-yellow: #F0B90B; /* Binance yellow */
            --primary-black: #0F1014;
            --secondary-black: #1E1F25;
            --primary-white: #FFFFFF;
            --secondary-white: #F5F5F5;
            --text-gray: #8A8D98;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--primary-black);
            color: var(--primary-white);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-black); 
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-white);
            text-decoration: none;
        } */

        .logo img {
            width: 100px; /* Adjust width as needed */
            height: auto; /* Maintains aspect ratio */
            max-height: 80px; /* Ensures it's not too tall */
            display: block; /* Removes extra space below the image */
        }
        
        
        .logo span {
            color: var(--primary-yellow);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--primary-white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--primary-yellow);
        }
        
        .auth-buttons {
            display: flex;
            align-items: center;
        }
        .mobile-auth {
            display: none;
          }
        
        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-outline {
            border: 1px solid var(--primary-white);
            color: var(--primary-white);
            margin-right: 15px;
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .btn-primary {
            background-color: var(--primary-yellow);
            color: var(--primary-black);
            border: 1px solid var(--primary-yellow);
        }
        
        .btn-primary:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(240, 185, 11, 0.3);
        }

        /* Hamburger Menu Styles */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger-menu .bar {
            width: 30px;
            height: 4px;
            background-color: var(--primary-white);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* Responsive Navbar */
        @media (max-width: 768px) {
            .hamburger-menu {
                display: flex;
            }

            .nav-menu {
                position: absolute;
                top: 70px;
                right: 0;
                width: 100%;
                background: var(--primary-black);
                flex-direction: column;
                align-items: center;
                display: none; /* Initially hidden */
                padding: 20px 0;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .nav-menu.active {
                display: flex;
            }
            .mobile-auth {
                display: block;
                margin-top: 10px;
              }
            
              .mobile-auth a {
                display: inline-block;
                margin: 5px;
              }
        }

        
        /* Hero Section */
        .heroo {
            position: relative;
            text-align: center;
            padding: 100px 20px;
            overflow: hidden;
        }

        /* 💛 Golden glow on the left side */
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 200px; /* You can adjust this */
            height: 100%;
            background: radial-gradient(circle at 30% center, rgba(255, 215, 0, 0.3), transparent);
            z-index: 0;
            pointer-events: none;
            animation: goldenPulse 5s infinite ease-in-out;
        }

        /* 🪄 Fancy shimmer animation */
        @keyframes goldenPulse {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 0.6;
                transform: scale(1.05);
            }
        }


        .hero-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            object-fit: cover; /* Ensures the image covers the entire section */
            opacity: 0.3; /* Reduce opacity */
            z-index: -1;
        }

        .hero {
            position: relative;
            text-align: center;
            padding: 100px 20px;
            overflow: hidden; /* Prevents overflow issues */
        }
        
        .hero-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            object-fit: cover; /* Ensures the image covers the entire section */
            opacity: 0.3; /* Reduce opacity */
            z-index: -2;
        }
        
        .coin-image {
            position: relative; /* or absolute, depends on where you want it */
            max-width: 250px; /* Adjust as needed */
            margin: 20px auto;
            display: block;
            position:fixed;
            top: 30%;
            left: 75%;
            transform: translate(-50%, -50%);
            z-index: -1;

          }
          @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
          }
          
          .coin-image {
            animation: spin 10s linear infinite;
          }
          @media (max-width: 768px) {
            .coin-image {
              top: 25%;
              left: 50%;
              max-width: 190px;

            }
          }
          .arrow-particle {
            position: absolute;
            width: 24px;
            opacity: 0.8;
            pointer-events: none;
            z-index: 1;
            filter: drop-shadow(0 0 6px gold);
          }
          
          /* Falling down animation */
          @keyframes fallDown {
            0% {
              transform: translateY(-100px);
              opacity: 0;
            }
            10% {
              opacity: 1;
            }
            90% {
              opacity: 1;
            }
            100% {
              transform: translateY(100vh);
              opacity: 0;
            }
          }
          
          /* Floating up animation */
          @keyframes floatUp {
            0% {
              transform: translateY(100vh);
              opacity: 0;
            }
            10% {
              opacity: 1;
            }
            90% {
              opacity: 1;
            }
            100% {
              transform: translateY(-100px);
              opacity: 0;
            }
          }
          
          /* Optional glow pulse */
          @keyframes glowPulse {
            0%, 100% {
              filter: drop-shadow(0 0 6px gold);
            }
            50% {
              filter: drop-shadow(0 0 12px gold);
            }
          }
          
          
          
          
        /* Mobile View: Change Image */
        /* @media (max-width: 505px) {
            .hero {
                background: url('assets/heroBanner.jpg') no-repeat center center;
                background-size: cover;
                padding: 80px 20px; /* Adjust padding for smaller screens */
            /* } */
            /* .hero p {
                color: #0F1014 !important;
                background-color: rgba(255, 255, 255, 0.2);
                padding: 10px;
                border-radius: 6px;
            }
        }     */ *



        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
            text-align: left; /* 👈 Important */
          }
          
        .hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 0 40px 0; /* Left-align margins */
            color: #d8d7d7;
            font-weight: 700;
            text-align: left; /* 👈 Important */
          }
          
        .hero-buttons {
            display: flex;
            justify-content: flex-start; /* 👈 Push buttons to the left */
            gap: 20px;
          }
          
        
        /* Features Section */
        .features {
            background-color: var(--primary-white);
            color: var(--primary-black);
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .chota-text {
            margin-bottom: 80px;
            color: #797b82;
            font-weight: 600;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            background-color: var(--secondary-white);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--primary-yellow);
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .feature-card p {
            color: var(--text-gray);
        }
        
        /* Trading Section */
        .trading {
            background-color: var(--primary-white);
            color: var(--primary-black);
            padding: 80px 0;
        }
        
        .trading-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .trading-content {
            flex: 1;
        }
        
        .trading-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .trading-content p {
            margin-bottom: 30px;
            color: var(--text-gray);
        }
        
        .trading-image {
            flex: 1;
            background-color: var(--secondary-white);
            height: 400px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden; /* Ensures image doesn't overflow */
        }
        
        .trading-image img {
            width: 100%; /* Makes sure image scales properly */
            height: 100%; /* Ensures full height coverage */
            object-fit: cover; /* Ensures image covers the container without distortion */
            border-radius: 10px; /* Matches container rounding */
        }
        
        
        /* .trading-image-placeholder {
            font-size: 24px;
            color: var(--text-gray);
        } */
        
        /* Stats Section */
        .stats {
            padding: 60px 0;
            background-color: var(--secondary-black);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-yellow);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 16px;
            color: var(--text-gray);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .trading-container {
                flex-direction: column;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .auth-buttons {
                display:none;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        
