/* ====================================================
           EXACT LOGO COLOURS (as per your image)
           ==================================================== */
        :root {
            --bg-primary: #080633;
            --bg-card: #0A0773;
            --bg-card-hover: #1411A8;
            --gold: #D4AF37;
            --accent: #F5B342;
            --text-white: #FFFFFF;
            --text-light: #C8C8E6;
            --text-muted: #9A9ABF;
            --shadow-gold: rgba(212, 175, 55, 0.25);
            --shadow-dark: rgba(0, 0, 0, 0.40);
            --radius: 12px;
            --radius-lg: 24px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            justify-content: center;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--bg-primary);
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
        }
        .btn-primary:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.50);
            color: #000;
        }

        .btn-outline {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
        }
        .btn-outline:hover {
            background: var(--gold);
            color: var(--bg-primary);
            transform: translateY(-3px);
        }

        /* ===== CLEAN HEADER / NAVBAR ===== */
        .header {
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 10000;
            background: #080633;
            border-bottom: 1px solid rgba(212, 175, 55, 0.14);
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
        }

        .navbar {
            min-height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            color: var(--text-white);
            font-weight: 800;
            line-height: 1;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: var(--gold);
            color: var(--bg-primary);
            font-size: 1.3rem;
            font-weight: 800;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
        }

        .logo-title {
            display: block;
            color: var(--text-white);
            font-size: 1.18rem;
            line-height: 1.1;
            white-space: nowrap;
        }

        .logo .tagline {
            display: block;
            margin-top: 4px;
            color: var(--text-light);
            font-size: 0.58rem;
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: .35px;
            white-space: nowrap;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-menu a {
            display: block;
            padding: 9px 14px;
            color: var(--text-light);
            font-size: .9rem;
            font-weight: 500;
            border-radius: 8px;
            transition: var(--transition);
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--gold);
            background: rgba(212, 175, 55, .10);
        }

        .hamburger {
            display: none;
            width: 42px;
            height: 42px;
            padding: 8px;
            border: 0;
            border-radius: 10px;
            background: rgba(255,255,255,.04);
            cursor: pointer;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .hamburger span {
            display: block;
            width: 23px;
            height: 2px;
            border-radius: 5px;
            background: #fff;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ===== HERO ===== */
        .hero {
            padding: 140px 0 80px;
            background: radial-gradient(ellipse at top left, #0A0773 0%, #080633 70%);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(212, 175, 55, 0.08);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.4rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--text-white);
            letter-spacing: -1px;
        }

        .hero-content h1 .highlight {
            color: var(--gold);
            position: relative;
        }

        /* 👇 Underline hata diya (financial freedom ke neeche) */
        .hero-content h1 .highlight::after {
            display: none;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin: 20px 0 32px;
            max-width: 520px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(212, 175, 55, 0.15);
        }

        .hero-stats .stat h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
        }

        .hero-stats .stat p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            width: 100%;
            max-width: 440px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.50);
            border: 1px solid rgba(212, 175, 55, 0.15);
            text-align: center;
        }

        .hero-card .big-icon {
            font-size: 3.6rem;
            color: var(--gold);
            background: rgba(212, 175, 55, 0.10);
            width: 88px;
            height: 88px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .hero-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-white);
        }

        .hero-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin: 8px 0 20px;
        }

        .hero-card .badge-row {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .hero-card .badge-row span {
            background: rgba(255, 255, 255, 0.05);
            padding: 4px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-light);
            border: 1px solid rgba(212, 175, 55, 0.10);
        }
        .hero-card .badge-row span i {
            color: var(--gold);
        }

        /* ===== SECTION TITLES ===== */
        .section {
            padding: 80px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.05);
        }
        .section:last-of-type {
            border-bottom: none;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 56px;
        }

        .section-header .label {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            color: var(--gold);
            padding: 4px 18px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--text-white);
            letter-spacing: -0.5px;
        }

        .section-header h2 span {
            color: var(--gold);
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-top: 12px;
        }

        /* ===== ABOUT US ===== */
        #about {
            background: var(--bg-primary);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            background: linear-gradient(135deg, var(--bg-card), var(--bg-primary));
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            color: var(--text-white);
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.10);
        }

        .about-image::after {
            content: '⟡';
            position: absolute;
            bottom: -30px;
            right: -20px;
            font-size: 12rem;
            opacity: 0.04;
            color: var(--gold);
        }

        .about-image h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
            color: var(--gold);
        }

        .about-image p {
            opacity: 0.85;
            font-size: 1rem;
            line-height: 1.7;
            max-width: 400px;
            position: relative;
            z-index: 2;
        }

        .about-image .feature-list {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
            z-index: 2;
        }

        .about-image .feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            opacity: 0.90;
        }

        .about-image .feature-list li i {
            color: var(--gold);
            font-size: 1.1rem;
        }

        .about-text h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 16px;
        }

        .about-text p {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        /* ===== MISSION & VISION ===== */
        #mission-vision {
            background: var(--bg-primary);
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .mv-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
            border: 1px solid rgba(212, 175, 55, 0.08);
            transition: var(--transition);
        }

        .mv-card:hover {
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.50);
            transform: translateY(-6px);
            border-color: rgba(212, 175, 55, 0.25);
            background: var(--bg-card-hover);
        }

        .mv-card .icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 16px;
        }

        .mv-card .icon.gold-bg {
            background: rgba(212, 175, 55, 0.15);
            color: var(--gold);
        }

        .mv-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 10px;
        }

        .mv-card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ===== WHY CHOOSE US ===== */
        #why-choose {
            background: var(--bg-primary);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .why-item {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 32px 28px;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.06);
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.20);
        }

        .why-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.50);
            border-color: var(--gold);
            background: var(--bg-card-hover);
        }

        .why-item .icon {
            font-size: 2.4rem;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .why-item h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 8px;
        }

        .why-item p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ============================================================
           CONTACT – only email (no form)
           ============================================================ */
        #contact {
            background: var(--bg-primary);
        }

        .contact-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 12px;
        }

        .contact-info p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .contact-info .detail {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: var(--bg-card);
            padding: 18px 36px;
            border-radius: 60px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
            transition: var(--transition);
        }

        .contact-info .detail:hover {
            border-color: var(--gold);
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.50);
        }

        .contact-info .detail i {
            font-size: 1.4rem;
            color: var(--gold);
        }

        .contact-info .detail a {
            color: var(--text-white);
            font-size: 1.2rem;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .contact-info .detail a:hover {
            color: var(--gold);
        }

        /* Social icons (optional, clean) */
        .contact-social {
            margin-top: 30px;
            display: flex;
            gap: 16px;
        }

        .contact-social a {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 1.2rem;
            border: 1px solid rgba(212, 175, 55, 0.05);
            transition: var(--transition);
        }

        .contact-social a:hover {
            background: var(--gold);
            color: var(--bg-primary);
            transform: translateY(-4px);
            border-color: var(--gold);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #05042A;
            color: var(--text-light);
            padding: 48px 0 32px;
            border-top: 1px solid rgba(212, 175, 55, 0.08);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }

        .footer-brand .logo {
            color: var(--text-white);
            margin-bottom: 12px;
        }

        .footer-brand .logo .logo-icon {
            background: var(--gold);
            color: var(--bg-primary);
        }

        .footer-brand p {
            font-size: 0.95rem;
            max-width: 320px;
            line-height: 1.7;
            color: var(--text-muted);
        }

        .footer-col h4 {
            color: var(--text-white);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 14px;
        }

        .footer-col a {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 8px;
            transition: var(--transition);
            color: var(--text-muted);
        }

        .footer-col a:hover {
            color: var(--gold);
            transform: translateX(4px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(212, 175, 55, 0.06);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .footer-social {
            display: flex;
            gap: 14px;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: var(--text-muted);
            border: 1px solid rgba(212, 175, 55, 0.05);
        }

        .footer-social a:hover {
            background: var(--gold);
            color: var(--bg-primary);
            transform: translateY(-3px);
            border-color: var(--gold);
        }

        /* ============================================================
           RESPONSIVE
           ============================================================ */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-stats {
                justify-content: center;
            }
            .hero-card {
                max-width: 100%;
            }
            .about-grid {
                grid-template-columns: 1fr;
            }
            .mv-grid {
                grid-template-columns: 1fr;
            }
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {

            /* Clean mobile header */
            .header {
                position: sticky !important;
                top: 0 !important;
                min-height: 64px;
                padding: 0 !important;
            }

            .navbar {
                min-height: 64px !important;
                height: 64px !important;
            }

            .logo {
                gap: 8px;
            }

            .logo-icon {
                width: 36px;
                height: 36px;
                min-width: 36px;
                border-radius: 10px;
                font-size: 1.05rem;
            }

            .logo-title {
                font-size: .98rem;
            }

            .logo .tagline {
                margin-top: 3px;
                font-size: .48rem;
            }

            .hamburger {
                display: flex;
                flex-shrink: 0;
            }

            .nav-menu {
                position: absolute !important;
                top: 64px !important;
                left: 0;
                width: 100%;
                padding: 14px 16px 18px !important;
                background: #080633 !important;
                border-bottom: 1px solid rgba(212,175,55,.12);
                box-shadow: 0 16px 30px rgba(0,0,0,.35);
                flex-direction: column;
                gap: 4px !important;
                transform: translateY(-130%);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: .25s ease;
                max-height: calc(100vh - 64px);
                overflow-y: auto;
            }

            .nav-menu.open {
                transform: translateY(0) !important;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .nav-menu a {
                width: 100%;
                padding: 11px 14px !important;
                text-align: center;
                font-size: .95rem !important;
            }

            .hero {
                padding-top: 52px !important;
            }
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 72px;
                left: 0;
                width: 100%;
                background: rgba(8, 6, 51, 0.98);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                flex-direction: column;
                padding: 24px 20px 32px;
                gap: 4px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.60);
                transform: translateY(-120%);
                transition: var(--transition);
                border-bottom: 1px solid rgba(212, 175, 55, 0.10);
                max-height: calc(100vh - 72px);
                overflow-y: auto;
            }

            .nav-menu.open {
                transform: translateY(0);
            }

            .nav-menu a {
                width: 100%;
                padding: 12px 16px;
                font-size: 1rem;
                text-align: center;
            }

            .hero {
                padding: 120px 0 60px;
            }

            .hero-content h1 {
                font-size: 2.4rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-stats {
                gap: 28px;
                flex-wrap: wrap;
            }

            .hero-stats .stat h3 {
                font-size: 1.6rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .about-image {
                min-height: 220px;
                padding: 32px 24px;
            }

            .about-image h3 {
                font-size: 1.5rem;
            }

            .mv-card {
                padding: 28px 24px;
            }

            .contact-info .detail {
                padding: 14px 24px;
                flex-direction: column;
                gap: 8px;
                border-radius: 30px;
            }

            .contact-info .detail a {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-card {
                padding: 28px 20px;
            }
            .hero-card .big-icon {
                width: 64px;
                height: 64px;
                font-size: 2.6rem;
            }
            .container {
                padding: 0 16px;
            }
            .section {
                padding: 56px 0;
            }
        }

        /* ===== FINAL HEADER OVERRIDE: keep below all responsive rules ===== */
        @media (max-width: 768px) {
            .header {
                position: sticky !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                width: 100% !important;
                min-height: 64px !important;
                height: auto !important;
                margin: 0 !important;
                padding: 0 !important;
                background: #080633 !important;
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
            }

            .header .container {
                padding-left: 16px !important;
                padding-right: 16px !important;
            }

            .navbar {
                height: 64px !important;
                min-height: 64px !important;
                margin: 0 !important;
                padding: 0 !important;
                align-items: center !important;
            }

            .logo {
                height: auto !important;
                min-height: 0 !important;
                margin: 0 !important;
                padding: 0 !important;
                overflow: visible !important;
                gap: 8px !important;
            }

            .logo-icon {
                width: 36px !important;
                height: 36px !important;
                min-width: 36px !important;
                font-size: 1.05rem !important;
            }

            .logo-text {
                display: flex !important;
                flex-direction: column !important;
                justify-content: center !important;
                overflow: visible !important;
            }

            .logo-title {
                font-size: .98rem !important;
                line-height: 1.05 !important;
                white-space: nowrap !important;
            }

            .logo .tagline {
                display: block !important;
                margin: 3px 0 0 !important;
                padding: 0 !important;
                font-size: .48rem !important;
                line-height: 1.05 !important;
                white-space: nowrap !important;
            }

            .hamburger {
                display: flex !important;
                flex-shrink: 0 !important;
            }

            .nav-menu {
                position: absolute !important;
                top: 64px !important;
                left: 0 !important;
                right: 0 !important;
                width: 100% !important;
                padding: 14px 16px 18px !important;
                background: #080633 !important;
                transform: translateY(-130%) !important;
                opacity: 0 !important;
                visibility: hidden !important;
                pointer-events: none !important;
                max-height: calc(100vh - 64px) !important;
                overflow-y: auto !important;
            }

            .nav-menu.open {
                transform: translateY(0) !important;
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: auto !important;
            }

            .hero {
                margin-top: 0 !important;
                padding-top: 52px !important;
            }
        }

        @media (max-width: 420px) {
            .header .container {
                padding-left: 12px !important;
                padding-right: 12px !important;
            }
            .logo-title { font-size: .9rem !important; }
            .logo .tagline { font-size: .44rem !important; }
            .logo-icon {
                width: 34px !important;
                height: 34px !important;
                min-width: 34px !important;
            }
        }