

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
          /*  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            background: linear-gradient(135deg, #f59e0b 0%, #cccccc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #f59e0b;
        }

        .cta-nav {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(245, 158, 11, 0.5);
        }

        

        .hero {
            background: linear-gradient(135deg, #0a1929 0%, #1e3a5f 50%, #2d4a73 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding: 8rem 5% 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
            top: -300px;
            right: -300px;
            border-radius: 50%;
            animation: floatGold 7s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
            bottom: -250px;
            left: -250px;
            border-radius: 50%;
            animation: floatGold 9s ease-in-out infinite;
        }

        @keyframes floatGold {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-50px) rotate(10deg); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 0.8s ease-out;
        }

        .rocket-emoji {
            width: 3.5rem;
            height: 3.5rem;
            display: inline-block;
            animation: rocketFly 3s ease-in-out infinite;
            vertical-align: middle;
        }

        .rocket-emoji img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.6));
        }

        @keyframes rocketFly {
            0%, 100% { transform: translateY(0) rotate(-15deg); }
            50% { transform: translateY(-20px) rotate(-15deg); }
        }

        .trophy-emoji {
            width: 4rem;
            height: 4rem;
            display: inline-block;
            animation: trophyShine 2s ease-in-out infinite;
            vertical-align: middle;
        }
        
        .trophy-emoji img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 5px 15px rgba(251, 191, 36, 0.6));
        }

        @keyframes trophyShine {
            0%, 100% { transform: scale(1) rotate(-5deg); }
            50% { transform: scale(1.15) rotate(5deg); }
        }

        .hero-subtitle {
            font-size: 1.7rem;
            color: #fbbf24;
            margin-bottom: 0.5rem;
            animation: fadeInUp 1s ease-out;
            font-weight: 700;
        }

        .capital-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(217, 119, 6, 0.3) 100%);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            margin-bottom: 2rem;
            border: 2px solid rgba(245, 158, 11, 0.6);
            font-size: 1.2rem;
            color: #fbbf24;
            font-weight: 700;
        }

        .hero-description {
            color: #a8b5ff;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }

        .hero-tagline {
            color: #8b9dc3;
            font-size: 1.15rem;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

       /* .cta-primary {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            padding: 1.3rem 3.5rem;
            border-radius: 30px;
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.25rem;
            transition: all 0.3s;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
        } */

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(245, 158, 11, 0.5);
        }

        .cta-secondary {
            background: transparent;
            border: 2px solid #f59e0b;
            padding: 1.3rem 3.5rem;
            border-radius: 30px;
            color: #fbbf24;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.25rem;
            transition: all 0.3s;
            display: inline-block;
        }

        .cta-secondary:hover {
            background: rgba(245, 158, 11, 0.1);
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            animation: fadeInUp 1.2s ease-out;
        }

        .hero-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
            border: 4px solid rgba(245, 158, 11, 0.5);
        }

        .elite-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            padding: 1.2rem 1.8rem;
            border-radius: 50%;
            font-weight: 800;
            font-size: 1rem;
            box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
            animation: elitePulse 2.5s ease-in-out infinite;
            text-align: center;
            line-height: 1.2;
        }

        @keyframes elitePulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.15) rotate(5deg); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .trading-options {
            background: linear-gradient(180deg, #1e3a5f 0%, #0f1f38 100%);
            padding: 5rem 5%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            color: #8b9dc3;
            font-size: 1.25rem;
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .option-card {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
            padding: 3rem;
            border-radius: 30px;
            border: 3px solid rgba(245, 158, 11, 0.4);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .option-card::before {
            content: '\2705';
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 2.5rem;
        }

        .option-card:hover {
            transform: translateY(-15px);
            border-color: rgba(245, 158, 11, 0.7);
            box-shadow: 0 30px 70px rgba(245, 158, 11, 0.4);
        }

        .option-card h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #fbbf24;
        }

        .lot-info {
            background: rgba(245, 158, 11, 0.15);
            padding: 1.5rem;
            border-radius: 20px;
            margin-bottom: 1rem;
            border-left: 5px solid #f59e0b;
        }

        .lot-info p {
            color: #a8b5ff;
            font-size: 1.1rem;
            margin: 0.6rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .lot-info strong {
            color: #ffffff;
            font-size: 1.3rem;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            padding: 0.4rem 1rem;
            border-radius: 12px;
            font-weight: 800;
        }

        .elite-tag {
            display: inline-block;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: #ffffff;
            padding: 0.4rem 1rem;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-top: 0.8rem;
        }

        .comparison {
            background: #0a1929;
            padding: 5rem 5%;
        }

        .comparison-table {
            max-width: 1200px;
            margin: 3rem auto;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
            border-radius: 30px;
            padding: 2.5rem;
            border: 3px solid rgba(245, 158, 11, 0.3);
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            padding: 1.5rem;
            border-bottom: 1px solid rgba(245, 158, 11, 0.2);
            align-items: center;
        }

        .comparison-row:last-child {
            border-bottom: none;
        }

        .comparison-row:first-child {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(102, 126, 234, 0.15) 100%);
            border-radius: 20px;
            font-weight: 700;
            color: #fbbf24;
            font-size: 1.1rem;
        }

        .comparison-row div {
            color: #a8b5ff;
            text-align: center;
        }

        .comparison-row div:first-child {
            text-align: left;
            color: #ffffff;
            font-weight: 600;
            font-size: 1.05rem;
        }

        .highlight-pinnacle {
            color: #fbbf24 !important;
            font-weight: 800 !important;
            font-size: 1.15rem !important;
        }

        .benefits {
            background: linear-gradient(180deg, #0f1f38 0%, #1e3a5f 100%);
            padding: 5rem 5%;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1300px;
            margin: 3rem auto 0;
        }

        .benefit-card {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(102, 126, 234, 0.08) 100%);
            padding: 2.5rem;
            border-radius: 25px;
            border: 2px solid rgba(245, 158, 11, 0.3);
            text-align: center;
            transition: all 0.4s;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            border-color: rgba(245, 158, 11, 0.6);
            box-shadow: 0 20px 50px rgba(245, 158, 11, 0.3);
        }

        .benefit-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .benefit-card h4 {
            color: #fbbf24;
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }

        .benefit-card p {
            color: #8b9dc3;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .exclusive {
            background: #0a1929;
            padding: 5rem 5%;
        }

        .exclusive-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto;
        }

        .exclusive-card {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid rgba(245, 158, 11, 0.3);
            display: flex;
            gap: 1.5rem;
            transition: all 0.3s;
        }

        .exclusive-card:hover {
            transform: translateX(10px);
            border-color: rgba(245, 158, 11, 0.5);
        }

        .exclusive-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }

        .exclusive-card h4 {
            color: #fbbf24;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .exclusive-card p {
            color: #8b9dc3;
            line-height: 1.6;
        }

        .cta-section {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
            padding: 6rem 5%;
            text-align: center;
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .cta-section p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.9;
        }

        .cta-btn-large {
            background: white;
            color: #d97706;
            padding: 1.5rem 4rem;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.4rem;
            transition: all 0.3s;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-btn-large:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        /* Contact Form Section */
        .contact-form-section {
            background: #0a1929;
            padding: 5rem 5%;
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            padding: 3rem;
            border-radius: 25px;
            border: 2px solid rgba(102, 126, 234, 0.3);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #a8b5ff;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: rgba(10, 25, 41, 0.6);
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 15px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 1.2rem;
            border: none;
            border-radius: 25px;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .form-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 15px;
            text-align: center;
            display: none;
        }

        .form-message.success {
            background: rgba(16, 185, 129, 0.2);
            border: 2px solid #10b981;
            color: #10b981;
        }

        .form-message.error {
            background: rgba(239, 68, 68, 0.2);
            border: 2px solid #ef4444;
            color: #ef4444;
        }
   

    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            overflow-x: hidden;
            background: #0a1929;
        } 

        /* Navigation */

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0a1929 0%, #1e3a5f 50%, #2d4a73 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 5% 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(118, 75, 162, 0.15) 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-30px); }
        }

        .hero-content {
            max-width: 900px;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #a8b5ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #a8b5ff;
            margin-bottom: 1rem;
            animation: fadeInUp 1.2s ease-out;
        }

        .user-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(102, 126, 234, 0.2);
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            margin-bottom: 2rem;
            border: 1px solid rgba(102, 126, 234, 0.3);
            animation: fadeInUp 1.4s ease-out;
        }

        .emoji {
            font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
        }

        .cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.6s ease-out;
        }

        /* Dropdown Menu Styles */
        .nav-links li {
            position: relative;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(10, 25, 47, 0.98);
            backdrop-filter: blur(10px);
            min-width: 200px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding-top: 0.5rem;
            margin-top: 0;
            border: 1px solid rgba(245, 158, 11, 0.3);
            z-index: 1001;
        }

        .dropdown-content::before {
            content: '';
            position: absolute;
            top: -0.5rem;
            left: 0;
            right: 0;
            height: 0.5rem;
            background: transparent;
        }

        .dropdown-content a {
            display: block;
            padding: 0.8rem 1.5rem;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background: rgba(245, 158, 11, 0.2);
            color: #f59e0b;
            padding-left: 2rem;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown > a::after {
            content: ' ▼';
            font-size: 0.7rem;
            margin-left: 0.3rem;
        }


        /* Features Section */
        .features {
            background: linear-gradient(180deg, #1e3a5f 0%, #0f1f38 100%);
            padding: 5rem 5%;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #a8b5ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            text-align: center;
            color: #8b9dc3;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(102, 126, 234, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-10px);
           /* box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
            border-color: rgba(102, 126, 234, 0.4);*/
            border-color: rgba(245, 158, 11, 0.7);
            box-shadow: 0 30px 70px rgba(245, 158, 11, 0.4);
        } 

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }

        .feature-card p {
            color: #8b9dc3;
            line-height: 1.6;
        }

        /* Brokers Section */
        .brokers {
            background: #0a1929;
            padding: 4rem 5%;
            text-align: center;
        }

        .broker-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 3rem auto;
        }

        .broker-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .broker-item:hover {
          /*  background: rgba(102, 126, 234, 0.1); */
            transform: translateY(-5px);
           /* border-color: rgba(102, 126, 234, 0.3); */
            border-color: rgba(245, 158, 11, 0.7);
            box-shadow: 0 30px 70px rgba(245, 158, 11, 0.4);
        }

        /* Pricing Section */
        .pricing {
            background: linear-gradient(180deg, #0f1f38 0%, #1e3a5f 100%);
            padding: 5rem 5%;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto;
        }

        .pricing-card {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
            padding: 2.5rem;
            border-radius: 25px;
           /* border: 2px solid rgba(102, 126, 234, 0.2); */
            border: 2px solid rgba(245, 158, 11, 0.7);
            transition: all 0.3s;
            text-align: center;
        }

        .pricing-card:hover {
            transform: scale(1.05);
           /* border-color: rgba(102, 126, 234, 0.5);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3); */
            border-color: rgba(245, 158, 11, 0.7);
            box-shadow: 0 30px 70px rgba(245, 158, 11, 0.4);
        }

        .pricing-card.featured {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
        }

        .price {
            font-size: 3rem;
            font-weight: bold;
            color: #667eea;
            margin: 1rem 0;
        }

        .price-period {
            color: #8b9dc3;
            font-size: 1rem;
        }

        .plan-name {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .plan-features {
            list-style: none;
            margin: 2rem 0;
            color: #8b9dc3;
        }

        .plan-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Testimonials */
        .testimonials {
            background: #0a1929;
            padding: 5rem 5%;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto;
        }

        .testimonial-card {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(102, 126, 234, 0.2);
        }

        .testimonial-text {
            color: #ffffff;
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .testimonial-author {
            color: #667eea;
            font-weight: 600;
        }

        .testimonial-role {
            color: #8b9dc3;
            font-size: 0.9rem;
        }

        .stars {
            color: #ffd700;
            margin-bottom: 1rem;
        }

        /* FAQ Section */
        .faq {
            background: linear-gradient(180deg, #1e3a5f 0%, #0f1f38 100%);
            padding: 5rem 5%;
        }

        .faq-container {
            max-width: 900px;
            margin: 3rem auto;
        }

        .faq-item {
            background: rgba(102, 126, 234, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1rem;
            border: 1px solid rgba(102, 126, 234, 0.2);
        }

        .faq-question {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .faq-answer {
            color: #8b9dc3;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: #0a1929;
            padding: 3rem 5%;
            text-align: center;
            border-top: 1px solid rgba(102, 126, 234, 0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #8b9dc3;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #f59e0b;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
            z-index: 999;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
        }

        .back-to-top::before {
            content: '↑';
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .pricing-grid,
            .features-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
        }


        /* ===== MOBILE NAVIGATION STYLES ===== */

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #f59e0b;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(10px);
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.mobile-menu ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.mobile-menu ul li a:hover {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    padding-left: 1.5rem;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown > a::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.mobile-dropdown.active > a::after {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 500px;
}

.mobile-dropdown-content a {
    padding-left: 2rem !important;
    font-size: 1rem !important;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.mobile-cta {
    margin-top: 2rem;
    text-align: center;
}

.mobile-cta a {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 1rem 2rem;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive - Show hamburger only on mobile */
@media (max-width: 768px) {
    .nav-links,
    .cta-nav {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 35px;
    }
}

/* Desktop - Hide mobile menu completely */
@media (min-width: 769px) {
    .mobile-menu,
    .hamburger,
    .overlay {
        display: none !important;
    }
    
    .nav-links,
    .cta-nav {
        display: flex !important;
    }
}


/* Pricing Section Mobile Fix */
#pricing {
    padding: 60px 15px; /* Reduce side padding on mobile */
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add padding */
}

.pricing-card {
   /* background: #fff; */
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-radius: 12px;
    padding: 30px 20px; /* Reduce horizontal padding */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width */
}

.plan-name {
    font-size: 24px;
    margin-bottom: 15px;
    word-wrap: break-word; /* Prevent text overflow */
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.price-period {
    font-size: 18px;
    color: #666;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px; /* Slightly smaller on mobile */
    word-wrap: break-word; /* Prevent overflow */
    line-height: 1.5;
}

.cta-primary {
    display: block;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
   /* background: #667eea; */
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    #pricing {
        padding: 40px 10px;
    }
    
    .pricing-grid {
        gap: 20px;
        padding: 0 10px;
    }
    
    .pricing-card {
        padding: 25px 15px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .plan-name {
        font-size: 22px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .price-period {
        font-size: 16px;
    }
    
    .plan-features li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .section-title {
        font-size: 24px;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
}

/* Tablet View */
@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Desktop View */
@media (min-width: 1025px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}




@media (max-width: 639px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/* Hide by default (desktop/browser) */
.hide-on-desktop {
  display: none !important;
}

/* Show on mobile */
@media (max-width: 639px) {
  .hide-on-desktop {
    display: initial !important; /* or block, flex, inline-block depending on your layout */
  }
}
    