.elementor-383 .elementor-element.elementor-element-73b6b06{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-383 .elementor-element.elementor-element-54961da{padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-54961da *//* CSS Variables for Brand Theme */
        :root {
            --brand-navy: #011B39;
            --brand-gold: #FFD500;
            --brand-gold-hover: #e6c000;
            --brand-light-navy: #09233D;
            --brand-border: #1a3048;
            --text-main: #ffffff;
            --text-muted: #a0aec0;
            --success-green: #00d084;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        /* Reset & Base */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--brand-navy);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; color: inherit; }
        ul { list-style-position: inside; }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Ticker Bar (Urgency/CRO) */
        .ticker-bar {
            background-color: var(--brand-gold);
            color: var(--brand-navy);
            text-align: center;
            padding: 8px 15px;
            font-size: 0.85rem;
            font-weight: 700;
            position: relative;
            z-index: 1001;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        .pulse-dot {
            width: 8px; height: 8px;
            background-color: #d93025;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 48, 37, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(217, 48, 37, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 48, 37, 0); }
        }

        /* Glassmorphism Navbar */
        .navbar {
            position: sticky;
            top: 0;
            background: rgba(1, 27, 57, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transition);
        }
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }
         .nav-logo img {
            height: 55px;
            width: auto;
            transition: height 0.3s ease;
        }
        .logo span { color: var(--brand-gold); }
        .nav-links { display: flex; gap: 30px; align-items: center; }
        .nav-link { font-size: 0.95rem; font-weight: 500; transition: var(--transition); }
        .nav-link:hover { color: var(--brand-gold); }
        
        .btn {
            background-color: var(--brand-gold);
            color: var(--brand-navy);
            padding: 12px 28px;
            border-radius: 6px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            display: inline-block;
        }
        .btn:hover {
            background-color: var(--brand-gold-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 213, 0, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--brand-gold);
            color: var(--brand-gold);
        }
        .btn-outline:hover {
            background: var(--brand-gold);
            color: var(--brand-navy);
        }

        /* Hero Section (Above the Fold) */
        .hero {
            padding: 60px 0 80px;
            background: radial-gradient(circle at top right, #09233d, #011b39);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvc3ZnPg==') repeat;
            animation: rotateBg 150s linear infinite;
            z-index: 0;
            pointer-events: none;
        }
        @keyframes rotateBg { 100% { transform: rotate(360deg); } }
        
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-content h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .hero-content h1 .highlight { color: var(--brand-gold); }
        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 30px;
            font-weight: 400;
        }
        .hero-benefits {
            margin-bottom: 35px;
        }
        .hero-benefits li {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 1.05rem;
            font-weight: 500;
        }
        .hero-benefits li svg {
            color: var(--brand-gold);
            flex-shrink: 0;
        }
        .trust-badges {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .trust-item {
            display: flex;
            flex-direction: column;
        }
        .trust-number { font-weight: 800; font-size: 1.4rem; font-family: 'Montserrat', sans-serif; color: var(--brand-gold); }
        .trust-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

        /* Lead Gen Form (CRO Optimized) */
        .form-card {
            background-color: var(--brand-light-navy);
            border: 1px solid var(--brand-border);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
            position: relative;
        }
        .form-card::after {
            content: '';
            position: absolute;
            top: -2px; left: -2px; right: -2px; bottom: -2px;
            background: linear-gradient(45deg, var(--brand-gold), transparent, var(--brand-gold));
            z-index: -1;
            border-radius: 18px;
            opacity: 0.3;
        }
        .form-header { text-align: center; margin-bottom: 30px; }
        .form-header h3 { font-size: 1.8rem; margin-bottom: 8px; }
        .form-header p { color: var(--text-muted); font-size: 0.95rem; }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .input-group { margin-bottom: 20px; }
        .form-row .input-group { margin-bottom: 5px; }
        
        .input-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-main);
        }
        .input-group label span { color: var(--brand-gold); }
        .input-group input, .input-group select {
            width: 100%;
            padding: 14px 16px;
            border-radius: 8px;
            border: 1px solid var(--brand-border);
            background-color: rgba(0, 0, 0, 0.2);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        .input-group input:focus, .input-group select:focus {
            outline: none;
            border-color: var(--brand-gold);
            box-shadow: 0 0 0 3px rgba(255, 213, 0, 0.1);
        }
        .submit-btn {
            width: 100%;
            padding: 16px;
            font-size: 1.1rem;
            margin-top: 10px;
        }
        .privacy-note {
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        /* Section Styling */
        .section { padding: 80px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
        .section-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
        .section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
        .section-header p { font-size: 1.1rem; color: var(--text-muted); }

        /* Grid Layouts */
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

        /* Feature Cards */
        .feature-card {
            background: rgba(9, 35, 61, 0.5);
            border: 1px solid var(--brand-border);
            border-radius: 12px;
            padding: 35px 25px;
            text-align: left;
            transition: var(--transition);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            background: var(--brand-light-navy);
            border-color: rgba(255, 213, 0, 0.3);
        }
        .feature-icon {
            width: 60px; height: 60px;
            background: rgba(255, 213, 0, 0.1);
            color: var(--brand-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .feature-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
        .feature-card p { color: var(--text-muted); font-size: 0.95rem; }

        /* Mentor Section */
        .mentor-box {
            background: var(--brand-light-navy);
            border-radius: 20px;
            padding: 50px;
            display: flex;
            align-items: center;
            gap: 50px;
        }
        .mentor-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
        .mentor-content p { margin-bottom: 20px; color: var(--text-muted); font-size: 1.05rem; }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--brand-gold);
            padding-left: 20px;
            margin: 30px 0;
            font-size: 1.1rem;
            color: var(--text-main);
        }
        .mentor-stats {
            display: flex; gap: 15px; margin-top: 30px;
        }
        .stat-badge {
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            color: var(--brand-gold);
            font-size: 0.9rem;
        }

        /* Syllabus Section (SEO Heavy) */
        .syllabus-container {
            background: #021429;
            border-radius: 16px;
            padding: 40px;
            border: 1px solid var(--brand-border);
        }
        .syllabus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .syllabus-col h3 { color: var(--brand-gold); margin-bottom: 25px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--brand-border); padding-bottom: 15px; font-size: 1.2rem; }
        .topic-list { list-style: none; }
        .topic-list li { margin-bottom: 20px; }
        .topic-list h4 { font-size: 1.1rem; margin-bottom: 5px; color: #fff; }
        .topic-list p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

        /* FAQ Section */
        .faq-item {
            background: rgba(9, 35, 61, 0.3);
            border: 1px solid var(--brand-border);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item:hover { border-color: rgba(255, 255, 255, 0.2); }
        .faq-question {
            padding: 20px 25px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--brand-gold);
            transition: var(--transition);
        }
        .faq-item.active .faq-question::after { content: '−'; transform: rotate(90deg); }
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            color: var(--text-muted);
        }
        .faq-item.active .faq-answer {
            padding: 0 25px 20px;
            max-height: 500px;
        }

        /* Floating Mobile CTA (CRO) */
        .mobile-cta {
            position: fixed;
            bottom: 0; left: 0; right: 0;
            background: var(--brand-light-navy);
            padding: 15px 20px;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
            z-index: 1000;
            display: none;
            border-top: 2px solid var(--brand-gold);
        }
        .mobile-cta .btn { width: 100%; font-size: 1.1rem; padding: 15px; }

        /* Footer */
        footer {
            background: #010d1c;
            padding: 60px 0 40px;
            text-align: center;
        }
        .footer-logo { font-size: 1.8rem; font-family: 'Montserrat', sans-serif; font-weight: 900; margin-bottom: 20px; }
        .footer-logo span { color: var(--brand-gold); }
        .footer-text { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; }
        .footer-links { margin-top: 30px; border-top: 1px solid var(--brand-border); padding-top: 30px; display: flex; justify-content: center; gap: 20px; }
        .footer-links a { color: var(--text-muted); font-size: 0.85rem; }
        .footer-links a:hover { color: var(--brand-gold); }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero .container { grid-template-columns: 1fr; text-align: center; }
            .hero-content h1 { font-size: 2.8rem; }
            .hero-benefits li { justify-content: center; }
            .trust-badges { justify-content: center; }
            .grid-3 { grid-template-columns: repeat(2, 1fr); }
            .mentor-box { flex-direction: column; text-align: center; padding: 40px 20px; }
            .mentor-stats { justify-content: center; flex-wrap: wrap; }
            .syllabus-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .grid-3, .grid-2 { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 2.2rem; }
            .section { padding: 50px 0; }
            .mobile-cta { display: block; }
            body { padding-bottom: 80px; } /* Space for mobile CTA */
            .ticker-bar { font-size: 0.75rem; padding: 6px 10px; flex-direction: column; gap: 5px; }
            .form-card { padding: 30px 20px; }
            .form-row { grid-template-columns: 1fr; gap: 0; }
        }/* End custom CSS */