/* =========================================================================
   AB Modern Homepage — Premium Product-Style Redesign
   Loaded ONLY on the front page. Combines glassmorphism, mesh gradients,
   live autocomplete elements, and interactive layouts.
   ========================================================================= */

#ab-home {
	/* Modern Theme Tokens */
	--ab-navy: #081225;
	--ab-navy-soft: #0f2245;
	--ab-indigo: #1e1b4b;
	--ab-blue: #2563eb;
	--ab-blue-hover: #1d4ed8;
	--ab-orange: #ea580c;
	--ab-orange-soft: rgba(234, 88, 12, 0.08);
	--ab-accent: #f97316;
	--ab-accent-hover: #ea580c;
	--ab-ink: #0f172a;
	--ab-muted: #64748b;
	--ab-line: #e2e8f0;
	--ab-bg-alt: #f8fafc;
	--ab-radius-lg: 20px;
	--ab-radius-md: 12px;
	--ab-radius-sm: 8px;
	--ab-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
	--ab-shadow-hover: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 8px 16px -8px rgba(15, 23, 42, 0.08);
	--ab-font: "Inter", ui-sans-serif, system-ui, sans-serif;
	
	font-family: var(--ab-font);
	color: var(--ab-ink);
	background: #fff;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;

	/* Breakout of theme container */
	width: auto;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* Headings typography reset for Anton */
#ab-home h1,
#ab-home h2 {
	font-family: "Anton", Impact, sans-serif;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

#ab-home .ab-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

#ab-home .ab-eyebrow {
	color: var(--ab-accent);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 12px;
}
#ab-home .ab-eyebrow-light { color: #ffedd5; }

#ab-home .ab-h1 {
	font-size: clamp(36px, 5vw, 56px);
	line-height: 1.08;
	margin: 0 0 20px;
	color: #fff;
}
#ab-home .ab-accent {
	background: linear-gradient(135deg, #ffedd5, var(--ab-accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

#ab-home .ab-h2 {
	font-size: clamp(26px, 3.2vw, 36px);
	line-height: 1.15;
	margin: 0 0 8px;
	color: var(--ab-navy);
}
#ab-home .ab-h2-light { color: #fff; }

/* ---------- 1. HERO SECTION WITH SEARCH ---------- */
#ab-home .ab-hero {
	/* Modern Mesh Gradient + Overlay Scrim */
	background: radial-gradient(at 0% 0%, var(--ab-indigo) 0px, transparent 50%),
		radial-gradient(at 100% 100%, var(--ab-navy) 0px, transparent 50%),
		linear-gradient(160deg, rgba(8, 18, 37, 0.96) 0%, rgba(15, 34, 69, 0.92) 100%),
		url('images/hero-campus.jpg') center / cover no-repeat;
	padding: 100px 0 120px;
	text-align: center;
	position: relative;
	overflow: visible;
}

#ab-home .ab-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
	pointer-events: none;
	animation: slowPulse 8s infinite alternate;
}

@keyframes slowPulse {
	0% { opacity: 0.5; }
	100% { opacity: 1; }
}

#ab-home .ab-hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 20;
}

#ab-home .ab-hero-sub {
	color: #94a3b8;
	font-size: clamp(16px, 2vw, 19px);
	line-height: 1.6;
	max-width: 60ch;
	margin: 0 auto 40px;
}

/* ---------- 2. HERO SEARCH GROUP ---------- */
#ab-home .ab-hero-search-wrapper {
	position: relative;
	width: 100%;
	max-width: 640px;
	margin: 0 auto 24px;
}

#ab-home .ab-search-input-group {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-radius: 9999px;
	padding: 6px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

#ab-home .ab-search-input-group:focus-within {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0 20px 50px -10px rgba(37, 99, 235, 0.3), 0 0 0 4px rgba(37, 99, 235, 0.15);
	transform: scale(1.01);
}

#ab-home .ab-search-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 20px;
	color: rgba(255, 255, 255, 0.6);
}

#ab-home .ab-search-icon svg {
	width: 20px;
	height: 20px;
}

#ab-home #ab-hero-search-input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	padding: 12px 14px;
	min-width: 0;
}

#ab-home #ab-hero-search-input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

#ab-home .ab-search-submit-btn {
	background: linear-gradient(135deg, var(--ab-accent), var(--ab-accent-hover));
	color: #fff;
	border: none;
	outline: none;
	padding: 12px 24px;
	border-radius: 9999px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.25s ease;
	box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

#ab-home .ab-search-submit-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(234, 88, 12, 0.45);
}

#ab-home .ab-search-submit-btn svg {
	width: 16px;
	height: 16px;
	transition: transform 0.2s ease;
}

#ab-home .ab-search-submit-btn:hover svg {
	transform: translateX(2px);
}

/* ---------- 3. AUTOCOMPLETE SUGGESTIONS ---------- */
#ab-home .ab-search-suggestions-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.25);
	z-index: 1000;
	overflow: hidden;
	display: none;
	text-align: left;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	max-height: 420px;
	overflow-y: auto;
}

#ab-home .ab-search-loading {
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: var(--ab-muted);
	font-size: 14px;
}

#ab-home .ab-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid var(--ab-line);
	border-top-color: var(--ab-blue);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

#ab-home .ab-search-results-section {
	border-bottom: 1px solid var(--ab-line);
}
#ab-home .ab-search-results-section:last-of-type {
	border-bottom: none;
}

#ab-home .ab-search-results-header {
	font-size: 11px;
	font-weight: 800;
	color: var(--ab-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 14px 20px 6px;
	background: rgba(248, 250, 252, 0.6);
}

#ab-home .ab-search-results-list {
	padding: 6px 0;
}

#ab-home .ab-dropdown-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 20px;
	text-decoration: none !important;
	color: var(--ab-ink) !important;
	transition: all 0.15s ease;
}

#ab-home .ab-dropdown-item:hover,
#ab-home .ab-dropdown-item.is-hovered {
	background: rgba(37, 99, 235, 0.05);
}

#ab-home .ab-item-badge {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	padding: 4px 8px;
	border-radius: 9999px;
	white-space: nowrap;
	flex-shrink: 0;
}

#ab-home .badge-tool { background: rgba(37, 99, 235, 0.1); color: var(--ab-blue); }
#ab-home .badge-review { background: rgba(234, 88, 12, 0.1); color: var(--ab-orange); }
#ab-home .badge-counselling { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }
#ab-home .badge-article { background: rgba(100, 116, 139, 0.1); color: var(--ab-muted); }

#ab-home .ab-item-details {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

#ab-home .ab-item-title {
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#ab-home .ab-item-desc {
	font-size: 12px;
	color: var(--ab-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#ab-home .ab-search-no-results {
	padding: 24px;
	text-align: center;
	color: var(--ab-muted);
	font-size: 14px;
}

#ab-home .ab-search-no-results strong {
	color: var(--ab-ink);
}

/* ---------- 4. HERO QUICKLINK TAGS ---------- */
#ab-home .ab-hero-quicklinks {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

#ab-home .ab-quicklinks-label {
	color: rgba(255, 255, 255, 0.45);
	font-size: 13.5px;
	margin-right: 4px;
}

#ab-home .ab-quicklink-tag {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8) !important;
	text-decoration: none !important;
	padding: 6px 14px;
	border-radius: 9999px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.2s ease;
}

#ab-home .ab-quicklink-tag:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
	color: #fff !important;
	transform: translateY(-1px);
}

/* ---------- 5. EXAM QUICK LINKS BAR ---------- */
#ab-home .ab-section-quicklinks {
	padding: 0;
	margin-top: -30px;
	position: relative;
	z-index: 10;
}

#ab-home .ab-quicklinks {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

#ab-home .ab-quick {
	background: #fff;
	border: 1px solid var(--ab-line);
	border-radius: var(--ab-radius-md);
	padding: 20px 14px;
	text-align: center;
	text-decoration: none !important;
	color: var(--ab-ink) !important;
	box-shadow: var(--ab-shadow);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

#ab-home .ab-quick:hover {
	box-shadow: var(--ab-shadow-hover);
	transform: translateY(-4px);
	border-color: var(--ab-blue);
}

#ab-home .ab-quick-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ab-orange-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	transition: transform 0.3s ease;
}

#ab-home .ab-quick:hover .ab-quick-icon {
	transform: scale(1.1) rotate(6deg);
}

#ab-home .ab-quick-icon svg {
	width: 20px;
	height: 20px;
	stroke: var(--ab-orange);
}

#ab-home .ab-quick-label {
	font-weight: 700;
	font-size: 14px;
}

#ab-home .ab-quick-sub {
	font-size: 11px;
	color: var(--ab-muted);
}

/* ---------- 6. COMMON SECTION HEADINGS ---------- */
#ab-home .ab-section {
	padding: 80px 0;
}

#ab-home .ab-section-alt {
	background: var(--ab-bg-alt);
}

#ab-home .ab-section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

#ab-home .ab-section-sub {
	color: var(--ab-muted);
	margin: 6px 0 0;
	font-size: 15px;
	max-width: 500px;
}

#ab-home .ab-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ab-blue) !important;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none !important;
	white-space: nowrap;
	transition: all 0.2s ease;
}

#ab-home .ab-link-arrow svg {
	width: 14px;
	height: 14px;
	transition: transform 0.2s ease;
}

#ab-home .ab-link-arrow:hover {
	color: var(--ab-blue-hover) !important;
}

#ab-home .ab-link-arrow:hover svg {
	transform: translateX(4px);
}

/* ---------- 7. CARD GRID SYSTEM ---------- */
#ab-home .ab-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

#ab-home .ab-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--ab-line);
	border-radius: var(--ab-radius-lg);
	padding: 30px;
	text-decoration: none !important;
	color: var(--ab-ink) !important;
	box-shadow: var(--ab-shadow);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

#ab-home .ab-card:hover {
	box-shadow: var(--ab-shadow-hover);
	transform: translateY(-5px);
	border-color: rgba(15, 23, 42, 0.12);
}

/* ---------- 8. PREDICTOR SUITE CARDS ---------- */
#ab-home .ab-predictor-card {
	border-top: 4px solid var(--accent-color, var(--ab-blue));
}

#ab-home .ab-predictor-card h3 {
	font-family: var(--ab-font);
	font-size: 20px;
	font-weight: 800;
	margin: 14px 0 6px;
}

#ab-home .ab-predictor-card p {
	font-size: 14.5px;
	color: var(--ab-muted);
	line-height: 1.6;
	margin: 0 0 24px;
	flex-grow: 1;
}

#ab-home .ab-card-icon {
	width: 46px;
	height: 46px;
	border-radius: var(--ab-radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
}

#ab-home .ab-card-icon svg {
	width: 22px;
	height: 22px;
}

#ab-home .ab-badge {
	position: absolute;
	top: 30px;
	right: 30px;
	background: var(--ab-orange);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
}

#ab-home .ab-card-cta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--ab-blue);
	transition: all 0.2s ease;
}

#ab-home .ab-card-cta svg {
	width: 14px;
	height: 14px;
	transition: transform 0.2s ease;
}

#ab-home .ab-card:hover .ab-card-cta {
	color: var(--ab-blue-hover);
}

#ab-home .ab-card:hover .ab-card-cta svg {
	transform: translateX(4px);
}

/* ---------- 9. COLLEGE REVIEW CARDS ---------- */
#ab-home .ab-college-card {
	padding: 0;
}

#ab-home .ab-college-thumb {
	width: 100%;
	aspect-ratio: 16/10;
	overflow: hidden;
	position: relative;
	background: var(--ab-bg-alt);
}

#ab-home .ab-college-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

#ab-home .ab-college-card:hover .ab-college-thumb img {
	transform: scale(1.06);
}

#ab-home .ab-thumb-fallback {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ab-muted);
}

#ab-home .ab-thumb-fallback svg {
	width: 48px;
	height: 48px;
}

#ab-home .ab-college-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

#ab-home .ab-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

#ab-home .ab-stars {
	display: flex;
	gap: 2px;
	color: #fbbf24; /* Amber star fill */
}

#ab-home .ab-star-icon {
	width: 14px;
	height: 14px;
}

#ab-home .ab-rating-num {
	font-size: 13px;
	font-weight: 700;
	color: var(--ab-ink);
}

#ab-home .ab-college-card h3 {
	font-family: var(--ab-font);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.4;
	margin: 0 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

#ab-home .ab-college-card p {
	font-size: 13.5px;
	color: var(--ab-muted);
	line-height: 1.55;
	margin: 0 0 20px;
	flex-grow: 1;
}

/* ---------- 10. TIMELINE DATES UPDATES ---------- */
#ab-home .ab-timeline-section {
	position: relative;
}

#ab-home .ab-timeline-container {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

#ab-home .ab-timeline-line {
	position: absolute;
	left: 31px;
	top: 10px;
	bottom: 10px;
	width: 2px;
	background: var(--ab-line);
}

#ab-home .ab-timeline-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

#ab-home .ab-timeline-item {
	position: relative;
	padding-left: 80px;
	display: block;
	text-decoration: none !important;
	color: var(--ab-ink) !important;
}

#ab-home .ab-timeline-node {
	position: absolute;
	left: 12px;
	top: 4px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--ab-line);
	color: var(--ab-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: all 0.25s ease;
}

#ab-home .ab-timeline-item:hover .ab-timeline-node {
	border-color: var(--ab-blue);
	color: var(--ab-blue);
	background: rgba(37, 99, 235, 0.05);
	transform: scale(1.05);
}

#ab-home .ab-timeline-node svg {
	width: 18px;
	height: 18px;
}

#ab-home .ab-timeline-card {
	background: #fff;
	border: 1px solid var(--ab-line);
	border-radius: var(--ab-radius-md);
	padding: 24px;
	box-shadow: var(--ab-shadow);
	transition: all 0.25s ease;
}

#ab-home .ab-timeline-item:hover .ab-timeline-card {
	box-shadow: var(--ab-shadow-hover);
	border-color: rgba(15, 23, 42, 0.1);
}

#ab-home .ab-timeline-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

#ab-home .ab-timeline-date {
	font-size: 13px;
	color: var(--ab-muted);
	font-weight: 500;
}

#ab-home .ab-live-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(34, 197, 94, 0.1);
	color: #16a34a;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 9999px;
}

#ab-home .ab-pulse-dot {
	width: 6px;
	height: 6px;
	background: #22c55e;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
	animation: pulseGreen 1.6s infinite;
}

@keyframes pulseGreen {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
	70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

#ab-home .ab-timeline-card h3 {
	font-family: var(--ab-font);
	font-size: 17px;
	font-weight: 800;
	margin: 0 0 6px;
	line-height: 1.4;
}

#ab-home .ab-timeline-card p {
	font-size: 13.5px;
	color: var(--ab-muted);
	line-height: 1.55;
	margin: 0 0 14px;
}

#ab-home .ab-timeline-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ab-blue);
	transition: all 0.2s ease;
}

#ab-home .ab-timeline-link svg {
	width: 12px;
	height: 12px;
	transition: transform 0.2s ease;
}

#ab-home .ab-timeline-item:hover .ab-timeline-link {
	color: var(--ab-blue-hover);
}

#ab-home .ab-timeline-item:hover .ab-timeline-link svg {
	transform: translateX(3px);
}

/* ---------- 11. TESTIMONIAL REVIEWS ---------- */
#ab-home .ab-review-card h3 {
	font-family: var(--ab-font);
	font-size: 16px;
	font-weight: 800;
	margin: 10px 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

#ab-home .ab-review-card p {
	font-size: 13.5px;
	color: var(--ab-muted);
	line-height: 1.55;
	margin: 0 0 20px;
	flex-grow: 1;
}

#ab-home .ab-card-quote-icon {
	position: absolute;
	top: -10px;
	right: 18px;
	font-size: 72px;
	color: rgba(15, 23, 42, 0.04);
	font-family: Georgia, serif;
	line-height: 1;
	pointer-events: none;
	user-select: none;
}

#ab-home .ab-review-stars {
	display: flex;
	gap: 2px;
	color: #fbbf24;
}

#ab-home .ab-review-stars svg {
	width: 14px;
	height: 14px;
}

/* ---------- 12. MOBILE APP CTA & SMARTPHONE MOCKUP ---------- */
#ab-home .ab-app-cta {
	background: radial-gradient(circle at 100% 0%, var(--ab-indigo) 0%, transparent 40%),
		linear-gradient(135deg, var(--ab-navy) 0%, var(--ab-navy-soft) 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

#ab-home .ab-app-cta-card {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 48px;
	align-items: center;
}

#ab-home .ab-app-cta-sub {
	color: #94a3b8;
	font-size: 17px;
	line-height: 1.6;
	margin: 0 0 32px;
}

#ab-home .ab-app-stats {
	display: flex;
	gap: 36px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}

#ab-home .ab-app-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

#ab-home .ab-app-stat .num {
	font-family: "Anton", sans-serif;
	font-size: 28px;
	color: #fff;
	line-height: 1;
}

#ab-home .ab-app-stat .lbl {
	color: #64748b;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

#ab-home .ab-btn-playstore {
	background: #0f172a;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff !important;
	text-decoration: none !important;
	padding: 10px 22px;
	border-radius: var(--ab-radius-md);
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: all 0.2s ease;
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

#ab-home .ab-btn-playstore:hover {
	transform: translateY(-2px);
	border-color: rgba(255,255,255,0.3);
	box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

#ab-home .ab-btn-playstore svg {
	width: 24px;
	height: 24px;
}

#ab-home .ab-btn-playstore .btn-lbl {
	display: flex;
	flex-direction: column;
	text-align: left;
}

#ab-home .ab-btn-playstore .btn-lbl .small {
	font-size: 9px;
	color: rgba(255,255,255,0.6);
	font-weight: 600;
}

#ab-home .ab-btn-playstore .btn-lbl .large {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
}

/* Smartphone CSS visual mockup */
#ab-home .ab-app-cta-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

#ab-home .ab-app-visual-mockup {
	width: 230px;
	height: 460px;
	border-radius: 36px;
	background: #0f172a;
	border: 8px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 30px 80px rgba(0,0,0,0.5);
	position: relative;
	padding: 10px;
	display: flex;
	flex-direction: column;
}

#ab-home .mockup-header {
	height: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}

#ab-home .mockup-header .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
}

#ab-home .mockup-header .speaker {
	width: 32px;
	height: 4px;
	border-radius: 2px;
	background: rgba(255,255,255,0.15);
}

#ab-home .mockup-screen {
	flex: 1;
	background: #f1f5f9; /* Light gray theme matching app */
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255,255,255,0.05);
}

#ab-home .screen-navbar {
	background: #000000; /* Solid black nav */
	padding: 10px 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #ffffff;
}

#ab-home .screen-navbar .hamburger-icon {
	font-size: 12px;
	color: #ffffff;
}

#ab-home .screen-navbar .brand {
	color: #ffffff;
	font-size: 10.5px;
	font-weight: 850;
	letter-spacing: 0.04em;
}

#ab-home .screen-navbar .spacer-nav {
	width: 12px;
}

#ab-home .screen-body {
	flex: 1;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	overflow-y: auto;
}

#ab-home .screen-body::-webkit-scrollbar {
	display: none;
}

#ab-home .app-profile-card {
	background: #ffffff;
	border-radius: 8px;
	padding: 8px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#ab-home .profile-pic {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--ab-line);
	margin-bottom: 4px;
}

#ab-home .profile-name {
	font-size: 9px;
	font-weight: 750;
	color: #000000;
	margin: 0 0 4px;
}

#ab-home .social-row {
	display: flex;
	gap: 6px;
	justify-content: center;
}

#ab-home .soc-icon {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
}
#ab-home .soc-icon.yt { background: #ef4444; }
#ab-home .soc-icon.ig { background: #db2777; }
#ab-home .soc-icon.ln { background: #2563eb; }
#ab-home .soc-icon.web { background: #475569; }
#ab-home .soc-icon.fb { background: #1d4ed8; }

#ab-home .app-action-btn {
	background: #f25e24; /* Vivid Orange matching app */
	color: #ffffff;
	font-size: 7px;
	font-weight: 800;
	text-align: center;
	padding: 5px;
	border-radius: 5px;
	box-shadow: 0 1.5px 3px rgba(242, 94, 36, 0.15);
}

#ab-home .app-section-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 2px;
}

#ab-home .app-section-title span {
	font-size: 9px;
	font-weight: 800;
	color: #000000;
}

#ab-home .app-section-title .title-underline {
	width: 14px;
	height: 2px;
	background: #000000;
	margin-top: 1px;
}

#ab-home .app-grid-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
}

#ab-home .app-grid-card {
	background: #ffffff;
	border-radius: 6px;
	padding: 6px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#ab-home .app-grid-card span {
	font-size: 7.5px;
	font-weight: 700;
	color: #334155;
	margin-top: 3px;
}

#ab-home .card-icon {
	font-size: 10px;
}
#ab-home .card-icon.star { color: #081225; }
#ab-home .card-icon.grad { color: #081225; }

/* ---------- 13. RESPONSIVE MEDIA QUERIES ---------- */
@media (max-width: 1024px) {
	#ab-home .ab-quicklinks {
		grid-template-columns: repeat(3, 1fr);
	}
	#ab-home .ab-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	#ab-home .ab-app-cta-card {
		grid-template-columns: 1fr;
		gap: 36px;
		text-align: center;
	}
	#ab-home .ab-app-stats {
		justify-content: center;
	}
	#ab-home .ab-app-visual-mockup {
		height: 420px;
	}
}

@media (max-width: 767px) {
	#ab-home .ab-hero {
		padding: 60px 0 80px;
	}
	#ab-home .ab-hero-search-wrapper {
		max-width: 100%;
	}
	#ab-home .ab-search-input-group {
		padding: 4px;
	}
	#ab-home .ab-search-icon {
		padding-left: 12px;
	}
	#ab-home #ab-hero-search-input {
		font-size: 15px;
		padding: 8px 8px;
	}
	#ab-home .ab-search-submit-btn {
		padding: 10px 18px;
	}
	#ab-home .ab-quicklinks {
		grid-template-columns: repeat(2, 1fr);
	}
	#ab-home .ab-timeline-line {
		left: 21px;
	}
	#ab-home .ab-timeline-item {
		padding-left: 54px;
	}
	#ab-home .ab-timeline-node {
		left: 4px;
		width: 34px;
		height: 34px;
	}
}

@media (max-width: 580px) {
	#ab-home .ab-card-grid {
		grid-template-columns: 1fr;
	}
	#ab-home .ab-quicklinks {
		grid-template-columns: repeat(2, 1fr);
	}
	#ab-home .ab-section-head {
		margin-bottom: 24px;
	}
	#ab-home .ab-link-arrow {
		margin-top: -10px;
	}
	#ab-home .ab-app-stats {
		gap: 20px;
	}
	#ab-home .ab-app-cta-visual {
		display: none; /* Hide device mockup on very small mobile screens */
	}
	#ab-home .ab-app-buttons {
		display: flex;
		justify-content: center;
	}
}

/* Hide redundant author and calendar icon metadata on listing cards */
.entry-meta .byline,
.entry-meta .author,
.entry-meta .posted-on:before {
	display: none !important;
}

/* =========================================================================
   TOP ENGINEERING EXAMS CARD SECTION
   ========================================================================= */

#ab-home .ab-exams-section {
	padding: 80px 0;
	background: #ffffff;
}

#ab-home .ab-exam-card {
	padding: 0;
}

#ab-home .ab-exam-thumb {
	width: 100%;
	aspect-ratio: 16/10;
	overflow: hidden;
	position: relative;
	background: var(--ab-bg-alt);
}

#ab-home .ab-exam-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#ab-home .ab-exam-card:hover .ab-exam-thumb img {
	transform: scale(1.06);
}

#ab-home .ab-exam-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

#ab-home .ab-exam-tag {
	font-size: 10px;
	font-weight: 850;
	text-transform: uppercase;
	color: var(--ab-blue);
	margin-bottom: 8px;
	letter-spacing: 0.05em;
	display: inline-block;
}

#ab-home .ab-exam-card h3 {
	font-family: var(--ab-font);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.4;
	margin: 0 0 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--ab-ink);
}

#ab-home .ab-exam-card p {
	font-size: 13.5px;
	color: var(--ab-muted);
	line-height: 1.55;
	margin: 0 0 20px;
	flex-grow: 1;
}

/* =========================================================================
   HOMEPAGE HERO FEATURED CTA BANNER
   ========================================================================= */

#ab-home .ab-hero-featured-cta {
	margin-top: 32px;
	display: flex;
	justify-content: center;
	width: 100%;
}

#ab-home .ab-featured-banner-card {
	display: flex;
	align-items: center;
	gap: 20px;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 16px 24px;
	text-decoration: none !important;
	color: #ffffff !important;
	max-width: 680px;
	width: 100%;
	text-align: left;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#ab-home .ab-featured-banner-card:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(96, 165, 250, 0.35); /* Glow border */
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

#ab-home .cta-live-indicator {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(34, 197, 94, 0.15);
	border: 1px solid rgba(34, 197, 94, 0.3);
	color: #4ade80;
	font-size: 9px;
	font-weight: 850;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	flex-shrink: 0;
}

#ab-home .cta-pulse-dot {
	width: 6px;
	height: 6px;
	background: #22c55e;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
	animation: pulseGreen 1.6s infinite;
}

#ab-home .cta-card-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

#ab-home .cta-card-title {
	font-size: 14.5px;
	font-weight: 800;
	color: #ffffff;
}

#ab-home .cta-card-subtitle {
	font-size: 12.5px;
	color: #94a3b8;
	line-height: 1.4;
}

#ab-home .cta-card-btn {
	background: var(--ab-blue);
	color: #ffffff !important;
	font-size: 11.5px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 8px 16px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	transition: all 0.2s ease;
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

#ab-home .ab-featured-banner-card:hover .cta-card-btn {
	background: #1d4ed8;
	box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
}

/* Responsive banner */
@media (max-width: 640px) {
	#ab-home .ab-featured-banner-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 20px;
	}
	#ab-home .cta-card-btn {
		width: 100%;
		justify-content: center;
	}
}

/* Header Navigation Highlight for APPLY */
#primary-menu .ab-menu-apply-item a {
	color: #ef4444 !important; /* Standout red */
	font-family: inherit !important;
	font-size: inherit !important;
	font-weight: 700 !important; /* Bold but compatible with theme customizer font loads */
	text-transform: uppercase !important;
	letter-spacing: inherit !important;
}

#primary-menu .ab-menu-apply-item a:hover {
	color: #dc2626 !important;
}



