/* =================================================================
   The Officers Academy — main stylesheet
   Palette driven by CSS vars set in the plugin (--toa-primary / --toa-accent)
   ================================================================= */

:root {
	--toa-primary: #E2640F;        /* saffron — buttons, links, accents */
	--toa-accent: #F8B400;         /* golden yellow — CTAs, highlights */
	--toa-primary-700: #B84A0A;    /* deep saffron — gradients/hover */
	--toa-primary-50: #FFF3E6;     /* light saffron tint */
	--toa-heading: #2A1A0D;        /* warm near-black — heading & label text */
	--toa-dark: #A1410A;           /* dark saffron — dark section backgrounds */
	--toa-dark-2: #D9620E;         /* saffron — gradient ends */
	--toa-ink: #2A2018;            /* warm near-black body text */
	--toa-muted: #6b5d50;          /* warm muted */
	--toa-line: #ece6df;           /* warm border */
	--toa-bg: #ffffff;
	--toa-bg-alt: #fbf7f2;         /* warm off-white */
	--toa-radius: 14px;
	--toa-radius-sm: 9px;
	--toa-shadow: 0 10px 30px rgba(11, 31, 58, .08);
	--toa-shadow-sm: 0 4px 14px rgba(11, 31, 58, .07);
	--toa-container: 1200px;
	--toa-font: 'Poppins', 'Noto Sans Devanagari', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--toa-font);
	color: var(--toa-ink);
	background: var(--toa-bg);
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--toa-primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--toa-accent); }
h1, h2, h3, h4 { color: var(--toa-heading); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

.toa-container { width: 100%; max-width: var(--toa-container); margin: 0 auto; padding: 0 20px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.toa-skip-link:focus { position: fixed; left: 12px; top: 12px; z-index: 9999; background: #fff; padding: 10px 16px; border-radius: 8px; clip: auto; width: auto; height: auto; }

/* ---------- Buttons ---------- */
.toa-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
	border: 2px solid transparent; cursor: pointer; transition: all .18s ease; white-space: nowrap;
}
.toa-btn-accent { background: var(--toa-accent); color: #1a1206; border-color: var(--toa-accent); }
.toa-btn-accent:hover { background: #e08e08; border-color: #e08e08; color: #1a1206; transform: translateY(-1px); }
.toa-btn-primary { background: var(--toa-primary); color: #fff; border-color: var(--toa-primary); }
.toa-btn-primary:hover { background: var(--toa-primary-700); color: #fff; }
.toa-btn-outline { background: transparent; color: var(--toa-primary); border-color: var(--toa-line); }
.toa-btn-outline:hover { border-color: var(--toa-accent); color: var(--toa-accent); }
.toa-btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.toa-btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; }
.toa-btn-sm { padding: 9px 16px; font-size: 13px; }
.toa-btn-block { width: 100%; }

/* ---------- Header ---------- */
.toa-topbar { background: var(--toa-primary); color: #e2cfba; font-size: 13px; }
.toa-topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; }
.toa-topbar a { color: #e2cfba; margin-right: 16px; }
.toa-topbar a:hover { color: #fff; }
.toa-topbar-left { display: flex; flex-wrap: wrap; }

.toa-social { display: inline-flex; gap: 8px; }
.toa-social a {
	display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px;
	border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 11px; font-weight: 700; margin: 0;
}
.toa-social a:hover { background: var(--toa-accent); color: #1a1206; }

.toa-navbar { background: #fff; box-shadow: var(--toa-shadow-sm); position: sticky; top: 0; z-index: 200; }
.toa-navbar.is-stuck { box-shadow: 0 6px 24px rgba(11,31,58,.12); }
.toa-navbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 20px; }
.toa-logo-text { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.toa-logo-mark { background: var(--toa-primary); color: var(--toa-accent); border-radius: 10px; padding: 8px 10px; font-size: 16px; letter-spacing: 1px; }
.toa-logo-name { color: var(--toa-primary); font-size: 19px; line-height: 1.1; max-width: 220px; }
.custom-logo { max-height: 56px; width: auto; }

.toa-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.toa-menu li { position: relative; }
.toa-menu a { display: block; padding: 10px 14px; font-weight: 500; color: var(--toa-ink); border-radius: 8px; }
.toa-menu a:hover, .toa-menu .current-menu-item > a { color: var(--toa-primary); background: var(--toa-primary-50); }
.toa-menu .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 200px; background: #fff; list-style: none;
	box-shadow: var(--toa-shadow); border-radius: 10px; padding: 8px; opacity: 0; visibility: hidden;
	transform: translateY(8px); transition: all .18s ease; z-index: 10;
}
.toa-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.toa-nav-cta { display: flex; align-items: center; gap: 12px; }
.toa-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.toa-hamburger span { width: 24px; height: 2px; background: var(--toa-primary); border-radius: 2px; transition: .2s; }
.toa-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.toa-hamburger.is-active span:nth-child(2) { opacity: 0; }
.toa-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.toa-mobile-drawer { position: fixed; inset: 0 0 0 auto; width: min(320px, 86vw); background: #fff; z-index: 300; box-shadow: -8px 0 40px rgba(0,0,0,.18); padding: 90px 22px 30px; overflow-y: auto; transform: translateX(100%); transition: transform .25s ease; }
.toa-mobile-drawer.is-open { transform: translateX(0); }
.toa-mobile-drawer[hidden] { display: block; }
.toa-mobile-menu { list-style: none; margin-bottom: 20px; }
.toa-mobile-menu a { display: block; padding: 12px 6px; border-bottom: 1px solid var(--toa-line); font-weight: 500; color: var(--toa-ink); }
.toa-overlay { position: fixed; inset: 0; background: rgba(11,31,58,.5); z-index: 290; opacity: 0; visibility: hidden; transition: .25s; }
.toa-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.toa-hero { position: relative; background: linear-gradient(120deg, var(--toa-dark) 0%, #B8470A 55%, var(--toa-dark-2) 100%); color: #fff; overflow: hidden; }
.toa-hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(245,158,11,.28), transparent 70%); border-radius: 50%; }
.toa-hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 70px 0 80px; position: relative; z-index: 2; }
.toa-hero-hi { color: var(--toa-accent); font-weight: 700; font-size: 18px; letter-spacing: .3px; display: block; margin-bottom: 10px; }
.toa-hero h1 { color: #fff; font-size: clamp(30px, 4.4vw, 52px); font-weight: 800; margin-bottom: 18px; }
.toa-hero p.toa-hero-sub { color: #ecdcc9; font-size: 18px; max-width: 560px; margin-bottom: 26px; }
.toa-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.toa-hero-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--toa-radius); padding: 26px; backdrop-filter: blur(6px); }
.toa-hero-card h3 { color: #fff; }
.toa-hero-trust { display: flex; gap: 18px; margin-top: 22px; flex-wrap: wrap; }
.toa-hero-trust div { font-size: 14px; color: #e2cfba; }
.toa-hero-trust strong { display: block; color: var(--toa-accent); font-size: 24px; }

/* ---------- Stats strip ---------- */
.toa-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.toa-statsband { background: var(--toa-accent); color: var(--toa-heading); }
.toa-statsband .toa-container { padding-top: 28px; padding-bottom: 28px; }
.toa-stat { text-align: center; }
.toa-stat-num { display: block; font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1; }
.toa-stat-label { font-size: 14px; font-weight: 600; opacity: .85; }

/* ---------- Sections ---------- */
.toa-section { padding: 72px 0; }
.toa-section.alt { background: var(--toa-bg-alt); }
.toa-section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.toa-eyebrow { display: inline-block; color: var(--toa-primary); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.toa-section-head h2 { font-size: clamp(26px, 3.2vw, 38px); }
.toa-section-head p { color: var(--toa-muted); font-size: 17px; }
.toa-section-cta { text-align: center; margin-top: 40px; }

/* ---------- Quick access cards ---------- */
.toa-quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 40px 0 8px; position: relative; z-index: 5; }
.toa-quick-card { background: #fff; border-radius: var(--toa-radius); padding: 22px; box-shadow: var(--toa-shadow); border-top: 4px solid var(--toa-accent); display: flex; flex-direction: column; gap: 6px; transition: transform .18s ease; }
.toa-quick-card:hover { transform: translateY(-4px); }
.toa-quick-ico { font-size: 26px; }
.toa-quick-card h3 { font-size: 17px; margin: 0; }
.toa-quick-card p { font-size: 13px; color: var(--toa-muted); margin: 0; }
.toa-quick-card a { margin-top: auto; font-weight: 600; font-size: 14px; color: var(--toa-accent); }

/* ---------- Grids & cards ---------- */
.toa-grid { display: grid; gap: 26px; }
.toa-grid-2 { grid-template-columns: repeat(2, 1fr); }
.toa-grid-3 { grid-template-columns: repeat(3, 1fr); }
.toa-grid-4 { grid-template-columns: repeat(4, 1fr); }

.toa-card-item { background: #fff; border: 1px solid var(--toa-line); border-radius: var(--toa-radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.toa-card-item:hover { transform: translateY(-5px); box-shadow: var(--toa-shadow); }
.toa-card-media { position: relative; display: block; aspect-ratio: 16/10; background: var(--toa-primary-50); overflow: hidden; }
.toa-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.toa-card-item:hover .toa-card-media img { transform: scale(1.05); }
.toa-thumb-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 54px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--toa-primary), var(--toa-primary-700)); }
.toa-badge { position: absolute; top: 12px; left: 12px; background: var(--toa-accent); color: #1a1206; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em; }
.toa-card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.toa-card-title { font-size: 19px; margin: 0; }
.toa-card-title a { color: var(--toa-heading); }
.toa-card-title a:hover { color: var(--toa-primary); }
.toa-card-excerpt { color: var(--toa-muted); font-size: 14px; margin: 0; }
.toa-card-meta { list-style: none; display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--toa-muted); margin: 4px 0 0; }
.toa-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--toa-line); }
.toa-price-now { font-size: 22px; font-weight: 800; color: var(--toa-primary); }
.toa-price-old { font-size: 14px; color: var(--toa-muted); text-decoration: line-through; margin-left: 6px; }
.toa-readmore { font-weight: 600; font-size: 14px; color: var(--toa-primary); }

/* Topper cards */
.toa-topper-card { text-align: center; align-items: center; padding-bottom: 22px; }
.toa-topper-photo { position: relative; width: 100%; aspect-ratio: 1/1; background: var(--toa-primary-50); }
.toa-topper-photo img { width: 100%; height: 100%; object-fit: cover; }
.toa-topper-photo .toa-thumb-fallback { font-size: 60px; }
.toa-rank { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); background: var(--toa-accent); color: #1a1206; font-weight: 700; padding: 4px 16px; border-radius: 999px; font-size: 13px; white-space: nowrap; }
.toa-topper-body { padding: 22px 18px 0; }
.toa-topper-name { font-size: 18px; margin: 0 0 2px; }
.toa-topper-exam { color: var(--toa-primary); font-weight: 600; font-size: 14px; }
.toa-topper-quote { color: var(--toa-muted); font-size: 13px; font-style: italic; margin-top: 10px; }

/* ---------- Feature / advantage grid ---------- */
.toa-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.toa-feature { background: #fff; border: 1px solid var(--toa-line); border-radius: var(--toa-radius); padding: 28px; transition: .18s; }
.toa-feature:hover { border-color: var(--toa-accent); box-shadow: var(--toa-shadow-sm); }
.toa-feature-ico { width: 54px; height: 54px; border-radius: 14px; background: var(--toa-primary-50); color: var(--toa-primary); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.toa-feature h3 { font-size: 19px; }
.toa-feature p { color: var(--toa-muted); font-size: 14px; margin: 0; }

/* ---------- Testimonials ---------- */
.toa-tst { background: #fff; border: 1px solid var(--toa-line); border-radius: var(--toa-radius); padding: 26px; }
.toa-tst-stars { color: var(--toa-accent); letter-spacing: 2px; margin-bottom: 10px; }
.toa-tst-text { font-size: 15px; color: var(--toa-ink); }
.toa-tst-who { margin-top: 14px; font-weight: 600; }
.toa-tst-who span { display: block; color: var(--toa-muted); font-weight: 400; font-size: 13px; }

/* ---------- Accordion / FAQ ---------- */
.toa-accordion { max-width: 820px; margin: 0 auto; }
.toa-accordion-item { background: #fff; border: 1px solid var(--toa-line); border-radius: var(--toa-radius-sm); margin-bottom: 12px; overflow: hidden; }
.toa-accordion-q { width: 100%; text-align: left; background: none; border: 0; padding: 18px 22px; font-size: 16px; font-weight: 600; color: var(--toa-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.toa-acc-icon { font-size: 22px; color: var(--toa-accent); transition: transform .2s; flex-shrink: 0; }
.toa-accordion-item.is-open .toa-acc-icon { transform: rotate(45deg); }
.toa-accordion-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; color: var(--toa-muted); }
.toa-accordion-item.is-open .toa-accordion-a { padding: 0 22px 20px; max-height: 600px; }

/* ---------- CTA band ---------- */
.toa-cta-band { background: linear-gradient(120deg, var(--toa-dark), var(--toa-dark-2)); color: #fff; border-radius: var(--toa-radius); padding: 48px; text-align: center; position: relative; overflow: hidden; }
.toa-cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); }
.toa-cta-band p { color: #ecdcc9; max-width: 620px; margin: 0 auto 24px; }
.toa-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.toa-form { display: flex; flex-direction: column; gap: 14px; }
.toa-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.toa-form input, .toa-form select, .toa-form textarea {
	width: 100%; padding: 13px 15px; border: 1px solid var(--toa-line); border-radius: var(--toa-radius-sm);
	font-family: inherit; font-size: 15px; background: #fff; color: var(--toa-ink); transition: border-color .15s;
}
.toa-form input:focus, .toa-form select:focus, .toa-form textarea:focus { outline: none; border-color: var(--toa-accent); box-shadow: 0 0 0 3px rgba(245,158,11,.15); }
.toa-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; }
.toa-form-status { margin: 0; font-weight: 600; font-size: 14px; min-height: 18px; }
.toa-form-status.is-ok { color: #1a9c5b; }
.toa-form-status.is-err { color: #c0392b; }
.toa-form.is-loading button { opacity: .65; pointer-events: none; }

/* ---------- Page hero / breadcrumb ---------- */
.toa-page-hero { background: linear-gradient(120deg, var(--toa-dark), var(--toa-dark-2)); color: #fff; padding: 54px 0; position: relative; overflow: hidden; }
.toa-page-hero::after { content: ""; position: absolute; right: -80px; bottom: -100px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(245,158,11,.25), transparent 70%); border-radius: 50%; }
.toa-page-hero h1 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); margin: 8px 0 0; position: relative; }
.toa-page-hero p { color: #ecdcc9; margin: 10px 0 0; max-width: 640px; }
.toa-breadcrumb { font-size: 14px; color: #e2cfba; }
.toa-breadcrumb a { color: #e2cfba; }
.toa-breadcrumb a:hover { color: var(--toa-accent); }
.toa-breadcrumb span { margin: 0 6px; opacity: .6; }

/* ---------- Layout: content + sidebar ---------- */
.toa-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
.toa-layout.has-sidebar { grid-template-columns: minmax(0,1fr) 320px; }
.toa-sidebar .toa-widget { background: var(--toa-bg-alt); border: 1px solid var(--toa-line); border-radius: var(--toa-radius); padding: 22px; margin-bottom: 24px; }
.toa-sidebar h3 { font-size: 18px; margin-bottom: 14px; }
.toa-sidebar ul { list-style: none; }
.toa-sidebar li { padding: 8px 0; border-bottom: 1px solid var(--toa-line); }
.toa-sidebar li:last-child { border-bottom: 0; }

/* ---------- Filter bar ---------- */
.toa-filterbar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.toa-filter-chip { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--toa-line); background: #fff; color: var(--toa-ink); font-weight: 500; font-size: 14px; cursor: pointer; }
.toa-filter-chip:hover, .toa-filter-chip.is-active { background: var(--toa-primary); color: #fff; border-color: var(--toa-primary); }

/* ---------- Single batch ---------- */
.toa-single-batch-hero { background: linear-gradient(120deg, var(--toa-dark), var(--toa-dark-2)); color: #fff; padding: 48px 0; }
.toa-single-grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 40px; align-items: start; }
.toa-enroll-box { background: #fff; border: 1px solid var(--toa-line); border-radius: var(--toa-radius); padding: 26px; box-shadow: var(--toa-shadow); position: sticky; top: 100px; }
.toa-enroll-box .toa-price-now { font-size: 32px; }
.toa-prose h2 { font-size: 26px; margin-top: 32px; }
.toa-prose h3 { font-size: 20px; margin-top: 24px; }
.toa-prose ul { padding-left: 0; list-style: none; margin: 0 0 1em; }
.toa-prose ul li { padding: 7px 0 7px 30px; position: relative; }
.toa-prose ul li::before { content: "✓"; position: absolute; left: 0; color: var(--toa-accent); font-weight: 800; }
.toa-checklist { list-style: none; }
.toa-checklist li { padding: 8px 0 8px 30px; position: relative; }
.toa-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--toa-accent); font-weight: 800; }

/* ---------- Article ---------- */
.toa-article { max-width: 820px; margin: 0 auto; }
.toa-article .toa-card-media { aspect-ratio: 16/8; border-radius: var(--toa-radius); margin-bottom: 26px; }
.toa-article-meta { color: var(--toa-muted); font-size: 14px; margin-bottom: 18px; }
.toa-article-content { font-size: 17px; line-height: 1.8; }
.toa-article-content p { margin-bottom: 1.2em; }
.toa-share { display: flex; gap: 10px; margin: 30px 0; }
.toa-mcq { background: var(--toa-bg-alt); border: 1px solid var(--toa-line); border-radius: var(--toa-radius); padding: 22px; margin: 24px 0; }
.toa-mcq h4 { margin-top: 0; }
.toa-mcq ol { margin: 0 0 16px 18px; }
.toa-mcq-q { font-weight: 600; margin-bottom: 8px; }

/* ---------- Pagination ---------- */
.toa-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.toa-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border-radius: 10px; border: 1px solid var(--toa-line); background: #fff; font-weight: 600; }
.toa-pagination .page-numbers.current { background: var(--toa-primary); color: #fff; border-color: var(--toa-primary); }
.toa-pagination .page-numbers:hover { border-color: var(--toa-accent); color: var(--toa-accent); }

/* ---------- Contact ---------- */
.toa-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.toa-contact-cards { display: grid; gap: 16px; margin-bottom: 24px; }
.toa-contact-card { display: flex; gap: 14px; align-items: flex-start; background: var(--toa-bg-alt); border: 1px solid var(--toa-line); border-radius: var(--toa-radius); padding: 18px; }
.toa-contact-card .ico { font-size: 22px; }
.toa-map iframe, .toa-map { width: 100%; min-height: 300px; border: 0; border-radius: var(--toa-radius); }
.toa-card-pad { background: #fff; border: 1px solid var(--toa-line); border-radius: var(--toa-radius); padding: 30px; box-shadow: var(--toa-shadow-sm); }

/* Contact — icon tiles + map */
.toa-contact-tile { display: flex; gap: 16px; align-items: flex-start; padding: 16px 18px; border: 1px solid var(--toa-line); border-radius: var(--toa-radius); margin-bottom: 14px; transition: all .16s ease; background: #fff; }
.toa-contact-tile:hover { border-color: var(--toa-primary); box-shadow: var(--toa-shadow-sm); transform: translateX(3px); }
.toa-ct-ico { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; background: var(--toa-primary-50); color: var(--toa-primary); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.toa-ct-ico.is-wa { background: #e7f9ee; }
.toa-contact-tile strong { display: block; color: var(--toa-heading); font-size: 15px; margin-bottom: 2px; }
.toa-contact-tile a, .toa-contact-tile span { color: var(--toa-muted); font-size: 14px; }
.toa-contact-tile a:hover { color: var(--toa-primary); }
.toa-contact-social { display: flex; align-items: center; gap: 12px; margin-top: 18px; font-weight: 600; color: var(--toa-heading); }
.toa-contact-social .toa-social a { background: var(--toa-primary-50); color: var(--toa-primary); }
.toa-contact-social .toa-social a:hover { background: var(--toa-primary); color: #fff; }
.toa-contact-form-card { border-top: 4px solid var(--toa-accent); }
.toa-map-wrap { margin-top: 40px; border-radius: var(--toa-radius); overflow: hidden; border: 1px solid var(--toa-line); box-shadow: var(--toa-shadow-sm); }
.toa-map-wrap iframe { display: block; width: 100%; min-height: 360px; border: 0; }
.toa-map-empty { min-height: 200px; display: flex; align-items: center; justify-content: center; background: var(--toa-bg-alt); color: var(--toa-muted); padding: 20px; text-align: center; }

/* ---------- Footer ---------- */
.toa-footer { background: var(--toa-dark); color: #d8cabb; padding-top: 60px; }
.toa-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 44px; }
.toa-footer h3, .toa-footer h4 { color: #fff; }
.toa-footer-brand { font-size: 22px; }
.toa-footer-col h4 { font-size: 16px; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.toa-footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--toa-accent); border-radius: 3px; }
.toa-footer-col ul { list-style: none; }
.toa-footer-col li { padding: 6px 0; }
.toa-footer a { color: #d8cabb; }
.toa-footer a:hover { color: var(--toa-accent); }
.toa-footer-about p { font-size: 14px; }
.toa-footer-about .toa-social { margin-top: 16px; }
.toa-footer-contact .toa-btn { margin-top: 14px; }
.toa-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; font-size: 13px; }
.toa-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.toa-footer-bottom p { margin: 0; }
.toa-legal a { margin-left: 16px; }

/* ---------- WhatsApp float ---------- */
.toa-whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 250; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.5); transition: transform .18s; }
.toa-whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Utility ---------- */
.toa-text-center { text-align: center; }
.toa-mt-0 { margin-top: 0; }
.toa-empty { text-align: center; color: var(--toa-muted); padding: 60px 20px; }
.toa-notice { background: #fff7e6; border: 1px solid #f0d28a; border-radius: var(--toa-radius); padding: 18px 22px; color: #8a6d1a; }

/* ---------- Hero carousel ---------- */
.toa-carousel { position: relative; background: var(--toa-primary); overflow: hidden; }
/* Decorative layers so an image-less slide still looks designed (not a flat void). */
.toa-carousel::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background:
		radial-gradient(620px circle at 88% 18%, rgba(245,158,11,.20), transparent 60%),
		radial-gradient(520px circle at 8% 92%, rgba(56,120,210,.28), transparent 60%),
		repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 22px);
}
.toa-carousel-track { position: relative; z-index: 2; }
.toa-slide { position: relative; min-height: 420px; display: flex; align-items: center; padding: 40px 0; background-size: cover; background-position: center; }
.toa-slide:not(.has-img) { background: linear-gradient(120deg, var(--toa-dark) 0%, #B8470A 55%, var(--toa-dark-2) 100%); }
.toa-slide.has-img::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,31,58,.86) 0%, rgba(11,31,58,.6) 55%, rgba(11,31,58,.35) 100%); }
.toa-slide-inner { position: relative; z-index: 2; max-width: 640px; padding: 50px 0; color: #fff; }
.toa-align-center .toa-slide-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.toa-align-right .toa-slide-inner { margin-left: auto; text-align: right; }
.toa-slide-head { color: #fff; font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 14px; }
.toa-slide-sub { color: #ecdcc9; font-size: 18px; margin-bottom: 24px; }
.toa-slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.toa-align-center .toa-slide-actions { justify-content: center; }
.toa-align-right .toa-slide-actions { justify-content: flex-end; }
.toa-carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.18); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; transition: background .15s; }
.toa-carousel-arrow:hover { background: var(--toa-accent); color: #1a1206; }
.toa-carousel-arrow.prev { left: 18px; }
.toa-carousel-arrow.next { right: 18px; }
.toa-carousel-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.toa-carousel-dot { width: 11px; height: 11px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer; padding: 0; }
.toa-carousel-dot.is-active { background: var(--toa-accent); width: 28px; border-radius: 999px; }

/* ---------- Exam pill strip ---------- */
.toa-exam-strip { background: var(--toa-bg-alt); border-top: 1px solid var(--toa-line); border-bottom: 1px solid var(--toa-line); margin-top: 30px; }
.toa-exam-strip-inner { display: flex; align-items: center; gap: 14px; padding: 16px 20px; flex-wrap: wrap; }
.toa-exam-strip-label { font-weight: 700; color: var(--toa-primary); white-space: nowrap; }
.toa-exam-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.toa-exam-pill { padding: 7px 16px; border-radius: 999px; background: var(--toa-primary-50); color: var(--toa-primary); font-weight: 600; font-size: 14px; }
.toa-exam-pill:hover { background: var(--toa-accent); color: #1a1206; }

/* ---------- Test-series spotlight ---------- */
.toa-spotlight { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: center; background: linear-gradient(120deg, var(--toa-dark), var(--toa-dark-2)); border-radius: 20px; padding: 40px; color: #fff; position: relative; overflow: hidden; }
.toa-spotlight::after { content: ""; position: absolute; right: -90px; top: -90px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(245,158,11,.28), transparent 70%); border-radius: 50%; }
.toa-spotlight-text { position: relative; z-index: 2; }
.toa-spotlight-text h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); }
.toa-spotlight-text p { color: #ecdcc9; }
.toa-spotlight-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.toa-spotlight-actions .toa-btn-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.toa-spotlight-actions .toa-btn-outline:hover { border-color: var(--toa-accent); color: var(--toa-accent); }
.toa-spotlight-cards { position: relative; z-index: 2; display: grid; gap: 14px; }
.toa-spotlight-cards .toa-series-card { background: #fff; }

/* ---------- Faculty cards ---------- */
.toa-faculty-card { text-align: center; align-items: center; padding-bottom: 20px; }
.toa-faculty-photo { width: 100%; aspect-ratio: 1/1; background: var(--toa-primary-50); position: relative; }
.toa-faculty-photo img { width: 100%; height: 100%; object-fit: cover; }
.toa-faculty-photo .toa-thumb-fallback { font-size: 56px; }
.toa-faculty-body { padding: 18px 16px 0; }
.toa-faculty-body h3 { font-size: 18px; margin: 0 0 4px; }
.toa-faculty-desig { display: block; color: var(--toa-primary); font-weight: 600; font-size: 14px; }
.toa-faculty-exp { display: block; color: var(--toa-muted); font-size: 13px; margin-top: 2px; }

/* ---------- Test series / test rows ---------- */
.toa-pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.toa-pill.is-free { background: #e6f7ee; color: #1a9c5b; }
.toa-pill.is-paid { background: #fff7e6; color: #b7791f; }
.toa-test-list { display: flex; flex-direction: column; gap: 14px; }
.toa-test-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid var(--toa-line); border-radius: var(--toa-radius); padding: 18px 22px; }
.toa-test-row h3 { margin: 0 0 6px; font-size: 18px; }
.toa-test-row-meta { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--toa-muted); margin: 0; }

/* ---------- Welcome / about intro ---------- */
.toa-welcome { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; }
.toa-welcome-text h2 { font-size: clamp(26px, 3vw, 36px); }
.toa-welcome-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.toa-welcome-card { background: #fff; border: 1px solid var(--toa-line); border-radius: var(--toa-radius); padding: 24px 18px; text-align: center; box-shadow: var(--toa-shadow-sm); }
.toa-welcome-card.alt { background: var(--toa-primary-50); border-color: transparent; }
.toa-welcome-card:nth-child(2) { transform: translateY(18px); }
.toa-welcome-card:nth-child(3) { transform: translateY(-18px); }
.toa-welcome-ico { font-size: 30px; display: block; margin-bottom: 8px; }
.toa-welcome-card strong { display: block; font-size: 30px; color: var(--toa-primary); line-height: 1; }
.toa-welcome-card span { font-size: 13px; color: var(--toa-muted); }

/* ---------- Courses by exam (category cards) ---------- */
.toa-cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.toa-cat-card { background: #fff; border: 1px solid var(--toa-line); border-radius: var(--toa-radius); padding: 24px 14px; text-align: center; transition: all .18s ease; display: block; }
.toa-cat-card:hover { transform: translateY(-5px); box-shadow: var(--toa-shadow); border-color: var(--toa-primary); }
.toa-cat-ico { font-size: 34px; display: block; margin-bottom: 10px; }
.toa-cat-card h3 { font-size: 15px; margin: 0 0 4px; }
.toa-cat-count { font-size: 12px; color: var(--toa-muted); }

/* ---------- How it works (steps) ---------- */
.toa-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.toa-step { background: #fff; border: 1px solid var(--toa-line); border-radius: var(--toa-radius); padding: 30px 22px 24px; text-align: center; position: relative; }
.toa-step-num { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 38px; height: 38px; border-radius: 50%; background: var(--toa-primary); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(226,100,15,.35); }
.toa-step-ico { font-size: 34px; display: block; margin: 8px 0 10px; }
.toa-step h3 { font-size: 17px; }
.toa-step p { color: var(--toa-muted); font-size: 14px; margin: 0; }

/* ---------- Free resources ---------- */
.toa-resource { background: #fff; border: 1px solid var(--toa-line); border-radius: var(--toa-radius); padding: 26px 22px; display: flex; flex-direction: column; gap: 8px; transition: all .18s ease; border-top: 4px solid var(--toa-accent); }
.toa-resource:hover { transform: translateY(-5px); box-shadow: var(--toa-shadow); }
.toa-resource-ico { font-size: 32px; }
.toa-resource h3 { font-size: 17px; margin: 4px 0 0; }
.toa-resource p { color: var(--toa-muted); font-size: 14px; margin: 0; }
.toa-resource .toa-readmore { margin-top: auto; }

/* ---------- Community band ---------- */
.toa-community { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; background: linear-gradient(120deg, var(--toa-primary-700), var(--toa-primary)); border-radius: 20px; padding: 40px 44px; color: #fff; position: relative; overflow: hidden; }
.toa-community::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%); border-radius: 50%; }
.toa-community-text { position: relative; z-index: 2; max-width: 640px; }
.toa-community-text h2 { color: #fff; margin: 6px 0 8px; }
.toa-community-text p { color: rgba(255,255,255,.9); margin: 0; }
.toa-community-actions { position: relative; z-index: 2; display: flex; gap: 12px; flex-wrap: wrap; }

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1024px) {
	.toa-hero-inner { grid-template-columns: 1fr; gap: 28px; padding: 50px 0 60px; }
	.toa-single-grid { grid-template-columns: 1fr; }
	.toa-enroll-box { position: static; }
	.toa-grid-4 { grid-template-columns: repeat(3, 1fr); }
	.toa-footer-grid { grid-template-columns: 1fr 1fr; }
	.toa-layout.has-sidebar { grid-template-columns: 1fr; }
	.toa-spotlight { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	.toa-primary-nav { display: none; }
	.toa-hamburger { display: flex; }
	.toa-quick { grid-template-columns: repeat(2, 1fr); margin-top: 26px; }
	.toa-grid-3, .toa-grid-4, .toa-grid-2 { grid-template-columns: repeat(2, 1fr); }
	.toa-features { grid-template-columns: repeat(2, 1fr); }
	.toa-stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
	.toa-contact-grid { grid-template-columns: 1fr; }
	.toa-topbar-left a:nth-child(2) { display: none; }
	.toa-slide { min-height: 380px; }
	.toa-spotlight { padding: 28px; }
	.toa-test-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
	.toa-section { padding: 50px 0; }
	.toa-grid-3, .toa-grid-4, .toa-grid-2, .toa-features { grid-template-columns: 1fr; }
	.toa-form-row { grid-template-columns: 1fr; }
	.toa-footer-grid { grid-template-columns: 1fr; }
	.toa-cta-band { padding: 32px 22px; }
	.toa-nav-cta .toa-btn-accent { display: none; }
	.toa-hero h1 { font-size: 30px; }
	.toa-logo-name { font-size: 16px; }
	.toa-footer-bottom-inner { justify-content: center; text-align: center; }
	.toa-legal a { margin: 0 8px; }
}

/* New homepage sections — responsive */
@media (max-width: 1024px) {
	.toa-welcome { grid-template-columns: 1fr; gap: 30px; }
	.toa-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
	.toa-steps { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
	.toa-community { flex-direction: column; align-items: flex-start; text-align: left; padding: 30px; }
}
@media (max-width: 560px) {
	.toa-cat-grid { grid-template-columns: repeat(2, 1fr); }
	.toa-steps { grid-template-columns: 1fr; }
	.toa-welcome-aside { grid-template-columns: 1fr 1fr; }
	.toa-welcome-card:nth-child(2), .toa-welcome-card:nth-child(3) { transform: none; }
}
