/* =========================================================
   VR Cybernauts — Design System
   ========================================================= */

:root {
	--bg: #0a0e14;
	--surface: #111826;
	--surface-alt: #161f2e;
	--surface-hover: #1b2637;
	--border: #232f42;
	--text: #e6edf3;
	--muted: #8b98a9;
	--green: #39ff8c;
	--cyan: #00c2ff;
	--amber: #ffb020;
	--red: #ff4d4f;
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--wrap: 1200px;
	--wrap-narrow: 800px;
	--font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
	--font-body: 'Inter', 'Segoe UI', sans-serif;
	--font-mono: 'JetBrains Mono', 'Courier New', monospace;
	--shadow-card: 0 10px 40px -12px rgba(0,0,0,0.55);
}

/* ---------- Base ---------- */
body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text);
	background: #4e2e22;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.6em;
	letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; color: var(--text); }
a { text-decoration: none; transition: color .2s ease; }
.mono { font-family: var(--font-mono); }
ul { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--green); color: var(--bg); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 5rem 0; }
@media (max-width: 782px) { .section { padding: 3.2rem 0; } }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px,1px,1px,1px);
	width: 1px; height: 1px; overflow: hidden;
}
.skip-link {
	position: fixed; top: -100px; left: 12px; z-index: 9999;
	background: var(--green); color: var(--bg); padding: 10px 16px; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 12px; }

:focus-visible {
	outline: 2px solid var(--cyan);
	outline-offset: 3px;
}

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--green); font-size: 1.2rem; letter-spacing: 0.08em; text-transform: uppercase;
	margin: 0 0 1rem; font-weight: 600;
}
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head.split { max-width: none; margin: 0 0 2.5rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; text-align: left; }
.section-head.split .eyebrow { justify-content: flex-start; }
.section-sub { color: var(--muted); font-size: 1.05rem; }
@media (max-width: 700px) { .section-head.split { flex-direction: column; align-items: flex-start; } }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 0.85rem 1.5rem; border-radius: var(--radius-sm);
	font-weight: 600; font-size: 0.95rem; border: 1px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
	white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--green); color: #06120a; box-shadow: 0 0 0 rgba(57,255,140,0); }
.btn-primary:hover { background: #5dffa4; box-shadow: 0 8px 24px -6px rgba(57,255,140,0.5); transform: translateY(-1px); color: #06120a; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.6rem 1rem; font-size: 0.85rem; }

/* ---------- Top bar ---------- */
.vrcyber-topbar { background: #060a10; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 24px; color: var(--muted); flex-wrap: wrap; gap: 6px; }
.topbar-left { display: flex; gap: 20px; }
.topbar-left a { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.topbar-left a:hover { color: var(--green); }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(57,255,140,.6); animation: pulse-dot 1.8s infinite; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(57,255,140,.6);} 70% { box-shadow: 0 0 0 8px rgba(57,255,140,0);} 100% { box-shadow: 0 0 0 0 rgba(57,255,140,0);} }
@media (max-width: 600px) { .topbar-left a:last-child { display: none; } }

/* ---------- Header ---------- */
.vrcyber-header { background: #3F51B5; }
.vrcyber-header::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	pointer-events: none;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 24px; }
.site-branding img { max-height: 46px; width: auto; }
.site-title-fallback { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--text); }
.brand-mark { color: var(--green); width: 30px; height: 30px; }

.primary-menu { display: flex; align-items: center; gap: 6px; }
.primary-menu > li { position: relative; }
.primary-menu .nav-link { display: flex; align-items: center; gap: 4px; padding: 10px 14px; border-radius: var(--radius-sm); color: var(--text); font-weight: 500; font-size: 0.95rem; }
.primary-menu .nav-link:hover, .primary-menu li.current-menu-item > .nav-link { color: var(--green); background: rgba(57,255,140,0.08); }
.dropdown-caret { width: 12px; height: 12px; transform: rotate(90deg); }
.primary-menu .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--surface);
	border: 1px solid var(--border); border-radius: var(--radius-md); padding: 8px;
	box-shadow: var(--shadow-card); opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: all .18s ease; z-index: 50;
}
.primary-menu li.has-dropdown:hover > .sub-menu,
.primary-menu li.has-dropdown:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-menu .sub-menu .nav-link { padding: 8px 12px; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm); width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--text); }
.menu-toggle svg { width: 20px; height: 20px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 960px) {
	.primary-navigation {
		position: fixed; inset: 0 0 0 auto; width: min(340px, 85vw); height: 100vh;
		background: var(--surface); border-left: 1px solid var(--border);
		transform: translateX(100%); transition: transform .3s ease; z-index: 600;
		padding: 90px 20px 20px; overflow-y: auto;
	}
	.primary-navigation.is-open { transform: translateX(0); }
	.primary-menu { flex-direction: column; align-items: stretch; gap: 2px; }
	.primary-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; margin-left: 12px; }
	.primary-menu li.has-dropdown.is-open > .sub-menu { display: block; }
	.menu-toggle { display: inline-flex; }
	.header-actions .btn-primary { display: none; }
}

/* ---------- Breadcrumbs ---------- */
.vrcyber-breadcrumbs { border-bottom: 1px solid var(--border); background: var(--surface); }
.vrcyber-breadcrumbs .wrap { padding: 12px 24px; font-size: 0.85rem; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; }
.vrcyber-breadcrumbs a { color: var(--muted); }
.vrcyber-breadcrumbs a:hover { color: var(--green); }
.vrcyber-breadcrumbs .current { color: var(--text); }

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    background-color: #111111; /* fallback when no video/image */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* NEW — only addition */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;       /* mirrors background-size: cover  */
    object-position: center; /* mirrors background-position: center */
    z-index: 0;              /* below overlay (z-index:1) and content (z-index:2) */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.hero-content {
    max-width: 700px;
    color: #ffffff;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.btn-hero{border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    background: #3f51b5;}

.pulse { animation: icon-pulse 1.6s infinite; }
@keyframes icon-pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Terminal window */
.hero-visual { position: relative; }
.terminal-window {
	background: #0c1119; border: 1px solid var(--border); border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card), 0 0 60px -20px rgba(57,255,140,0.25);
	overflow: hidden;
}
.terminal-titlebar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #0f1520; border-bottom: 1px solid var(--border); }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red { background: #ff5f57; } .dot-amber { background: #febc2e; } .dot-green { background: #28c840; }
.terminal-name { margin-left: auto; color: var(--muted); font-size: 0.78rem; }
.terminal-body { padding: 20px; font-size: 0.86rem; line-height: 1.9; min-height: 260px; }
.tline { margin: 0; color: var(--muted); white-space: pre-wrap; opacity: 0; animation: type-in .4s ease forwards; }
.tline:nth-child(1) { animation-delay: .2s; }
.tline:nth-child(2) { animation-delay: .7s; }
.tline:nth-child(3) { animation-delay: 1.2s; }
.tline:nth-child(4) { animation-delay: 1.7s; }
.tline:nth-child(5) { animation-delay: 2.2s; }
.tline:nth-child(6) { animation-delay: 2.7s; }
.tline:nth-child(7) { animation-delay: 3.3s; }
.tline:nth-child(8) { animation-delay: 3.8s; }
.tline:nth-child(9) { animation-delay: 4.3s; }
@keyframes type-in { to { opacity: 1; } }
.prompt { color: var(--green); margin-right: 6px; }
.t-out { color: #a9b6c6; padding-left: 18px; }
.ok { color: var(--green); font-weight: 600; }
.warn { color: var(--amber); font-weight: 600; }
.crit { color: var(--red); font-weight: 600; }
.cursor { color: var(--green); animation: blink 1s step-start infinite; }
@keyframes blink { 50% { opacity: 0; } }

.floating-badge {
	position: absolute; display: flex; align-items: center; gap: 10px;
	background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
	padding: 10px 16px; font-size: 0.82rem; font-weight: 600; box-shadow: var(--shadow-card);
}
.floating-badge svg { color: var(--green); }
.badge-1 { top: -18px; right: 20px; }
.badge-2 { bottom: -18px; left: 10px; }

@media (max-width: 960px) {
	.hero-inner { grid-template-columns: 1fr; }
	.hero-visual { order: -1; }
	.floating-badge { position: static; margin-top: 12px; display: inline-flex; }
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 2.2rem 1rem; text-align: center; border-left: 1px solid var(--border); }
.stat-item:first-child { border-left: none; }
.stat-value { display: block; font-size: 2.1rem; font-weight: 700; color: var(--green); }
.stat-label { color: var(--muted); font-size: 0.85rem; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-item:nth-child(3) { border-left: none; } }

/* =========================================================
   FEATURE GRID (Why Us)
   ========================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.feature-card {
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
	padding: 1.8rem; transition: border-color .2s ease, transform .2s ease;
}
.feature-card:hover { border-color: rgba(57,255,140,0.4); transform: translateY(-3px); }
.feature-icon {
	    position: relative; display: inline-flex; align-items: center; justify-content: center; width: 25px; height: 25px; border-radius: var(--radius-sm); color: #3f51b5;
}
.feature-icon svg { width: 25px;
    height: 25px;
    position: absolute;
    top: 7px;
    left: -5px;}
.feature-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.feature-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CARDS: course / batch / service (shared look)
   ========================================================= */
.course-grid, .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.batch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 980px) { .course-grid, .service-grid, .batch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .course-grid, .service-grid, .batch-grid { grid-template-columns: 1fr; } }
.process-section{background: #3f51b5;}
.course-card {
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
	overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease;
}
.course-card:hover { transform: translateY(-4px); border-color: rgba(57,255,140,.4); }
.course-card-media { position: relative; display: block; aspect-ratio: 16/10; background: var(--surface-alt); overflow: hidden; }
.course-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.course-card:hover .course-card-media img { transform: scale(1.05); }
.course-card-media-fallback { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--border); }
.course-card-media-fallback svg { width: 56px; height: 56px; }
.course-tag { position: absolute; top: 12px; left: 12px; background: rgba(10,14,20,.85); color: var(--green); font-size: 0.72rem; font-weight: 600; padding: 5px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.course-card-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.course-card-body h3 { font-size: 1.08rem; margin: 0; }
.course-card-body h3 a:hover { color: var(--green); }
.course-card-excerpt { color: var(--muted); font-size: 0.9rem; margin: 0; flex: 1; }
.course-meta-row { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: var(--muted); }
.course-meta-row li { display: flex; align-items: center; gap: 5px; }
.course-meta-row-lg { font-size: 0.88rem; gap: 20px; margin: 1.4rem 0; }
.course-meta-row-lg svg { color: var(--green); }
.course-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: .6rem; border-top: 1px solid var(--border); }
.course-fee { font-family: var(--font-mono); font-weight: 600; color: var(--green); }
.course-fee-onrequest { color: var(--muted); font-size: 0.82rem; }
.course-card-link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.85rem; font-weight: 600; color: var(--cyan); }
.course-card-link:hover { color: var(--green); }

.batch-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.6rem; display: flex; flex-direction: column; gap: 0.9rem; }
.batch-card-top { display: flex; align-items: center; justify-content: space-between; }
.batch-status { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 4px 10px; border-radius: 999px; }
.status-upcoming { background: rgba(0,194,255,.12); color: var(--cyan); }
.status-filling { background: rgba(255,176,32,.14); color: var(--amber); }
.status-closed { background: rgba(255,77,79,.12); color: var(--red); }
.batch-seats { font-size: 0.78rem; color: var(--muted); display: inline-flex; align-items: center; gap: 4px; }
.batch-card h3 { font-size: 1.1rem; margin: 0; }
.batch-card h3 a:hover { color: var(--green); }
.batch-details { display: flex; flex-direction: column; gap: 8px; font-size: 0.86rem; color: var(--muted); }
.batch-details li { display: flex; align-items: center; gap: 8px; }
.batch-details svg { color: var(--green); flex-shrink: 0; }

.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.8rem; transition: transform .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(0,194,255,.4); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: var(--radius-sm); background: rgba(0,194,255,0.1); color: var(--cyan); margin-bottom: 1rem; }
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.service-card h3 a:hover { color: var(--cyan); }
.service-card p { color: var(--muted); font-size: 0.92rem; }
.service-link { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; font-size: 0.88rem; color: var(--cyan); }
.service-link:hover { color: var(--green); }

.empty-state { text-align: center; padding: 3rem 1.5rem; border: 1px dashed var(--border); border-radius: var(--radius-md); color: var(--muted); }

/* Filter pills (archive) */
.archive-hero { padding-bottom: 2rem; text-align: center; }
.archive-hero .section-sub { max-width: 640px; margin: 0 auto; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 1.8rem; }
.pill { padding: 8px 18px; border-radius: 999px; border: 1px solid var(--border); font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.pill:hover { color: var(--text); border-color: var(--cyan); }
.pill.is-active { background: var(--green); color: var(--bg); border-color: var(--green); }

/* =========================================================
   PROCESS TRACK
   ========================================================= */
.process-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; position: relative; counter-reset: step; list-style: none;}
.process-track::before { content: ""; position: absolute; top: 26px; left: 5%; right: 5%; height: 1px; background: linear-gradient(90deg, var(--green), var(--cyan)); opacity: .25; }
.process-step { position: relative; padding-top: 0; }
.step-index { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--green); font-weight: 700; margin-bottom: 1rem; position: relative; z-index: 1; }
.process-step h3 { font-size: 1rem; margin-bottom: .4rem; }
.process-step p { color: var(--text); font-size: 0.86rem; }
@media (max-width: 980px) { .process-track { grid-template-columns: repeat(2, 1fr); } .process-track::before { display: none; } }
@media (max-width: 560px) { .process-track { grid-template-columns: 1fr; } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
  .testimonial-carousel {
    position: relative;
    width: min(1100px, 92vw);
	margin: 0 auto;
	padding: 25px 0;
  }

  .testimonial-viewport {
    overflow: hidden;
  }

  .testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  }

  .testimonial-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0.5rem;
  }

  .testimonial-card {
    background: #9e9e9ec9;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .testimonial-quote {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
  }

  .testimonial-quote::before {
    content: "\201C";
    font-size: 2rem;
    color: #c7c9d1;
    line-height: 0;
    display: block;
    margin-bottom: 0.5rem;
  }

  .testimonial-person {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
  }

  .testimonial-role {
    font-size: 0.8rem;
    color: #888;
  }

  .testimonial-stars {
    color: #f5b301;
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.75rem;
  }

  .testimonial-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .testimonial-btn:hover { background: var(--green); color: #fff; }
  .testimonial-btn:active { transform: scale(0.92); }

  .testimonial-dots {
    display: flex;
    gap: 8px;
  }

  .testimonial-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d3d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .testimonial-dot.active {
    background: var(--green);
    transform: scale(1.25);
  }

  /* Responsive: 3 -> 2 -> 1 columns per page */
  @media (max-width: 900px) {
    .testimonial-page { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .testimonial-page { grid-template-columns: 1fr; }
  }
/* =========================================================
   FAQ
   ========================================================= */
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: transparent; border: none; color: var(--text); padding: 1.2rem 1.4rem; text-align: left; font-weight: 600; font-size: 0.98rem; }
.faq-toggle-icon { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-toggle-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 0.92rem; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { background: url('https://vrcybernauts.com/images/ctabg1.png') center / cover no-repeat; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 3.4rem 0; flex-wrap: wrap; }
.cta-band-inner h2 { margin-bottom: .4rem; }
.cta-band-inner p { color: var(--muted); margin: 0; max-width: 46ch; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }



/* =========================================================
   SINGLE COURSE / BATCH / SERVICE
   ========================================================= */
.course-hero { background: var(--surface); border-bottom: 1px solid var(--border); padding: 3.5rem 0; }
.course-hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: center; }
.course-hero-excerpt { color: var(--muted); font-size: 1.05rem; }
.course-hero-media { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/10; }
.course-hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .course-hero-inner { grid-template-columns: 1fr; } }

.course-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: flex-start; }
@media (max-width: 960px) { .course-layout { grid-template-columns: 1fr; } }
.course-main.entry-content h2 { margin-top: 2rem; }
.vrcyber-check-list, .vrcyber-tool-list { display: flex; flex-direction: column; gap: 10px; margin: 1rem 0 1.6rem; }
.vrcyber-check-list li, .vrcyber-tool-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); }
.vrcyber-check-list svg, .vrcyber-tool-list svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

.course-sidebar { position: sticky; top: 100px; }
.enroll-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; display: flex; flex-direction: column; gap: 12px; }
.enroll-card-price { text-align: center; margin-bottom: .6rem; }
.enroll-card-price .price { font-size: 2rem; font-weight: 700; color: var(--green); }
.price-onrequest { font-size: 1.1rem !important; color: var(--muted) !important; }
.price-note { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.enroll-card-heading { margin: 0; font-size: 1.05rem; text-align: center; }
.enroll-card-sub { color: var(--muted); font-size: 0.85rem; text-align: center; margin-bottom: .4rem; }
.enroll-batches { border-top: 1px solid var(--border); margin-top: 10px; padding-top: 14px; }
.enroll-batches h4 { font-size: 0.9rem; margin-bottom: .7rem; }
.enroll-batches ul { display: flex; flex-direction: column; gap: 8px; }
.enroll-batches a { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; padding: 8px 10px; border-radius: var(--radius-sm); background: var(--surface-alt); }
.enroll-batches a:hover { background: var(--surface-hover); }
.enroll-card-link { text-align: center; font-size: 0.85rem; color: var(--cyan); display: inline-flex; align-items: center; justify-content: center; gap: 4px; margin-top: 6px; }
.enroll-card-link:hover { color: var(--green); }

/* =========================================================
   PAGE / BLOG / SIDEBAR
   ========================================================= */
.page-header h1 { margin-bottom: 1.2rem; }
.page-thumbnail { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 2rem; border: 1px solid var(--border); }
.entry-content > * + * { margin-top: 1.1em; }
.entry-content h2 { margin-top: 2em; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; list-style: revert; }
.entry-content blockquote { border-left: 3px solid var(--green); padding-left: 1.2rem; color: var(--muted); font-style: italic; }
.entry-content img { border-radius: var(--radius-md); }
.entry-content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: flex-start; }
@media (max-width: 900px) { .content-with-sidebar { grid-template-columns: 1fr; } }
.no-sidebar .content-with-sidebar { grid-template-columns: 1fr; }
.content-sidebar .widget { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.4rem; margin-bottom: 1.4rem; }
.widget-title { font-size: 1rem; margin-bottom: .8rem; }

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.blog-card-media { display: block; aspect-ratio: 16/9; background: var(--surface-alt); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-media-fallback { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--border); }
.blog-card-body { padding: 1.3rem; }
.blog-date { color: var(--green); font-size: 0.76rem; margin-bottom: .5rem; }
.blog-card-body h2 { font-size: 1.1rem; margin-bottom: .5rem; }
.blog-card-body h2 a:hover { color: var(--green); }
.blog-card-body p { color: var(--muted); font-size: 0.9rem; }

/* =========================================================
   PAGINATION
   ========================================================= */
.vrcyber-pagination { margin-top: 2.5rem; display: flex; justify-content: center; }
.vrcyber-pagination ul { display: flex; gap: 6px; }
.vrcyber-pagination a, .vrcyber-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border-radius: var(--radius-sm); border: 1px solid var(--border); color: var(--muted); font-size: 0.85rem; }
.vrcyber-pagination .current { background: var(--green); border-color: var(--green); color: var(--bg); font-weight: 700; }
.vrcyber-pagination a:hover { border-color: var(--cyan); color: var(--cyan); }

/* =========================================================
   CONTACT PAGE + FORMS
   ========================================================= */
.contact-layout { display: grid; grid-template-columns: 320px 1fr; gap: 2.5rem; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info-col { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; }
.contact-info-card h3 { font-size: 1rem; margin: 0 0 .3rem; }
.contact-info-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.contact-info-card a:hover { color: var(--green); }

.vrcyber-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.form-row { margin-bottom: 1.2rem; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row-split { grid-template-columns: 1fr; } }
.vrcyber-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.vrcyber-form input, .vrcyber-form textarea {
	width: 100%; background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius-sm);
	padding: 0.8rem 1rem; color: var(--text); font-family: inherit; font-size: 0.95rem;
}
.vrcyber-form input:focus, .vrcyber-form textarea:focus { outline: none; border-color: var(--green); }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-status { margin-top: 1rem; font-size: 0.9rem; min-height: 1.2em; }
.form-status.is-success { color: var(--green); }
.form-status.is-error { color: var(--red); }

.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }

/* Search form */
.vrcyber-search-form { display: flex; gap: 8px; margin-top: 1rem; }
.vrcyber-search-form input { flex: 1; background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.8rem 1rem; color: var(--text); }
.vrcyber-search-form button { background: var(--green); border: none; border-radius: var(--radius-sm); padding: 0 1rem; color: var(--bg); }

/* =========================================================
   FOOTER
   ========================================================= */
.vrcyber-footer { position: relative; background: #060a10; border-top: 1px solid var(--border); padding-top: 4rem; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 1rem; color: var(--text); }
.footer-logo img { max-height: 40px; }
.footer-about p { color: var(--muted); font-size: 0.9rem; }
.footer-socials { display: flex; gap: 10px; margin-top: 1rem; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; color: var(--muted); }
.footer-socials a:hover { border-color: var(--green); color: var(--green); }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 1rem; color: var(--text); }
.footer-menu { display: flex; flex-direction: column; gap: 10px; }
.footer-menu a { color: var(--muted); font-size: 0.9rem; }
.footer-menu a:hover { color: var(--green); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 1rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 0.88rem; }
.footer-contact svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.4rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { margin: 0; color: var(--muted); font-size: 0.82rem; }
.footer-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--green) !important; }

.whatsapp-fab {
	position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%;
	background: #25D366; color: #06120a; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 10px 30px -8px rgba(37,211,102,.6); z-index: 400; transition: transform .2s ease;
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover { transform: scale(1.08); }

/* ---------- Icons ---------- */
.vic { width: 20px; height: 20px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.ico-xs { width: 15px; height: 15px; }
.ico-sm { width: 17px; height: 17px; }
.rot-180 { transform: rotate(180deg); }

.vrcyber-header.is-scrolled { box-shadow: 0 8px 24px -12px rgba(0,0,0,0.6); }
body.menu-open { overflow: hidden; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Block editor content niceties (front-end) ---------- */
.vrcyber-cta-pattern { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.is-style-terminal-card { background: var(--surface); border: 1px solid var(--border) !important; border-radius: var(--radius-md); padding: 1.6rem; }
.is-style-signal-line hr { border: none; height: 2px; background: linear-gradient(90deg, var(--green), var(--cyan)); }
.is-style-scan-frame img { border: 1px solid var(--green); border-radius: var(--radius-md); }

/* WordPress core alignment helpers */
.alignwide { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; }
