.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ==========================================================================
   1. VARIABLES & BASE SETUP
   ========================================================================== */
:root {
    --bg-dark: #090d16;
    --bg-card: #121826;
    --bg-glass: rgba(18, 24, 38, 0.85);
    --accent-blue: #00f2fe;
    --accent-purple: #4facfe;
    --primary-red: #e50914;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-code: 'Fira Code', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ==========================================================================
   2. CUSTOM CURSOR
   ========================================================================== */
@media (min-width: 992px) {
    body { cursor: none; }
    a, button, input, select, textarea { cursor: none; }
}

.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    display: none;
}

.cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1px solid rgba(229, 9, 20, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: none;
    align-items: center;
    justify-content: center;
    transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
}

.cursor-text {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0;
    text-transform: uppercase;
}

.cursor-follower.active {
    width: 65px;
    height: 65px;
    background-color: var(--primary-red);
    border-color: transparent;
}

.cursor-follower.active .cursor-text {
    opacity: 1;
}

/* ==========================================================================
   3. ANIMATED BEAM & RADAR PULSE
   ========================================================================== */
.cyber-card-beam {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-card);
    padding: 1px;
}

.cyber-card-beam::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(transparent, var(--accent-blue), transparent 30%);
    animation: rotateBeam 4s linear infinite;
}

@keyframes rotateBeam {
    100% { transform: rotate(360deg); }
}

.radar-pulse {
    width: 8px; height: 8px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.radar-pulse.red { background-color: var(--primary-red); }

.radar-pulse::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    border: 1px solid var(--accent-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    animation: radarScan 2s infinite ease-out;
}

.radar-pulse.red::after { border-color: var(--primary-red); }

@keyframes radarScan {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3.5); opacity: 0; }
}

/* ==========================================================================
   4. ACCREDITATION & BADGES WALL
   ========================================================================== */
.accreditation-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.badge-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.75rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.badge-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.15);
    transform: translateY(-4px);
}

.badge-icon-box {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.badge-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.badge-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   5. LIVE SIEM CONSOLE PREVIEW WIDGET
   ========================================================================== */
.console-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 1.5rem;
}

.console-wrapper {
    background: #0d1117;
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    font-family: var(--font-code);
}

.console-header {
    background: #161b22;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.console-dots {
    display: flex;
    gap: 6px;
    margin-right: 1rem;
}

.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.console-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.console-body {
    padding: 1.5rem;
}

.console-controls {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.query-btn {
    background: #21262d;
    border: 1px solid var(--border-color);
    color: var(--accent-blue);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.query-btn:hover, .query-btn.active {
    background: var(--accent-blue);
    color: #000;
}

.terminal-window {
    background: #010409;
    border-radius: 6px;
    padding: 1.25rem;
    min-height: 220px;
    max-height: 320px;
    overflow-y: auto;
    font-size: 0.85rem;
    line-height: 1.5;
}

.system-msg { color: #8b949e; }
.log-line { margin-bottom: 0.4rem; }
.log-alert { color: #ff4d4d; font-weight: 700; }
.log-success { color: #27c93f; }
.log-kw { color: #00f2fe; }

/* ==========================================================================
   6. INTERACTIVE CAREER & FEE ESTIMATOR QUIZ
   ========================================================================== */
.quiz-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 1.5rem;
}

.quiz-container {
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
}

.quiz-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    width: 33%;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.quiz-opt {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    color: var(--text-main);
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.quiz-opt:hover {
    border-color: var(--accent-blue);
    background: rgba(0, 242, 254, 0.05);
    transform: translateX(4px);
}

.quiz-result {
    display: none;
    text-align: center;
}

.quiz-result.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.result-badge {
    display: inline-block;
    background: rgba(0, 242, 254, 0.15);
    color: var(--accent-blue);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quiz-result h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.result-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.metric-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.quiz-reset-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-size: 0.9rem;
    text-decoration: underline;
}

/* ==========================================================================
   7. ALUMNI CAREER TRANSITION CARDS (BEFORE & AFTER)
   ========================================================================== */
.transition-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 1.5rem;
}

.transition-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.transition-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.75rem;
    border-radius: 12px;
}

.transition-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.avatar {
    width: 45px; height: 45px;
    background: var(--gradient-primary);
    color: #000;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-taken {
    font-size: 0.8rem;
    color: var(--accent-blue);
}

.journey-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.journey-box {
    display: flex;
    flex-direction: column;
}

.journey-box .label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.journey-box.from .label { color: #ff4d4d; }
.journey-box.to .label { color: #27c93f; }

.journey-box strong {
    font-size: 0.85rem;
    margin: 0.2rem 0;
}

.journey-box .salary {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.journey-arrow {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.quote {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ==========================================================================
   8. LAYOUT & STANDARD SECTIONS
   ========================================================================== */
.page-shell { width: 100%; overflow: hidden; }

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.brand img { height: 32px; width: auto; }
.highlight { color: var(--accent-blue); }

.main-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.main-nav a:hover { color: var(--text-main); }

.outline-link {
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 6px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-blue);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu.show { display: flex; }

.hero-section {
    position: relative;
    padding: 8rem 1.5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

#cyberCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.hero-copy h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero-copy p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.hero-trust strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-main);
}

.hero-trust span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px; height: 30px;
    background: var(--border-color);
}

.hero-card-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.badge-live {
    background: rgba(229, 9, 20, 0.2);
    color: #ff4d4d;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-pill { font-size: 0.8rem; color: var(--text-muted); }

.hero-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

.hero-summary {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary { background: var(--gradient-primary); color: #000; }
.btn-secondary { background: rgba(255, 255, 255, 0.05); color: var(--text-main); border: 1px solid var(--border-color); }
.btn-glow { background: var(--gradient-primary); color: #000; box-shadow: 0 0 20px rgba(0, 242, 254, 0.3); }
.btn-full { width: 100%; }

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partners-ticker {
    background: var(--bg-card);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.ticker-heading {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.ticker-wrap { display: flex; width: 100%; }

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: scroll 20s linear infinite;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.course-section, .faq-section, .contact-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 1.5rem;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-heading h2 { font-size: 2rem; }

.course-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.course-card {
    background: var(--bg-card);
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.course-card:hover { border-color: rgba(0, 242, 254, 0.4); }

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-weight: 600;
}

.tab-btn.active {
    background: var(--accent-blue);
    color: #000;
    border-color: var(--accent-blue);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.card-tag {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(0, 242, 254, 0.1);
    color: var(--accent-blue);
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
}

.course-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    padding-right: 2rem;
}

.course-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-link {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-section { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border-color); }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding-bottom: 1.25rem;
    color: var(--text-muted);
}

.faq-item.active .faq-answer { display: block; }

.contact-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.contact-form label span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.contact-form input, .contact-form select {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 4rem 1.5rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.brand-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.brand-footer img { height: 24px; }

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px; right: 20px;
    background: #25d366;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

@media (min-width: 992px) {
    .main-nav, .phone-link { display: flex; }
    .nav-toggle { display: none; }
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
    }
    .hero-copy h1 { font-size: 3.5rem; }
    .course-grid { grid-template-columns: repeat(2, 1fr); }
    .transition-grid { grid-template-columns: repeat(3, 1fr); }
    .quiz-options { grid-template-columns: repeat(2, 1fr); }
    .contact-section { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}/* End custom CSS */