/* ============================================================
   LIVEYE — Bootstrap 5.3 Custom Theme Layer
   Sits ON TOP of bootstrap.min.css. Overrides accent colours,
   adds Liveye fonts, ticker, placeholder system, and a few
   bespoke components (hero, blog-featured, timeline).
   ============================================================ */

/* ── BRAND COLOUR TOKENS (override Bootstrap defaults) ── */


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*:root {*/
/*	--bs-primary: #00e5ff;*/
/*	--bs-primary-rgb: 0, 229, 255;*/
/*	--bs-link-color: #00e5ff;*/
/*	--bs-link-hover-color: #66efff;*/
/*	--bs-body-bg: #080a0f;*/
/*	--bs-body-color: #e8eaf0;*/
/*	--bs-border-color: #1e2430;*/
/*	--bs-secondary-bg: #0e1117;*/
/*	--bs-tertiary-bg: #141820;*/

/*	--liveye-accent: #ff3d57;*/
/*	--liveye-accent2: #ff3d57;*/
/*	--liveye-accent3: #fff;*/
/*	--liveye-muted: #6b7280;*/
/*}*/

/* ── TYPOGRAPHY ── */
body {
	font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
	background: var(--bs-body-bg);
	color: var(--bs-body-color);
	font-size: 16px;
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.font-heading {
	font-family: 'Syne', 'DM Sans', system-ui, sans-serif;
	font-weight: 800;
	letter-spacing: -0.02em;
}

h1 em,
.display-1 em,
.display-2 em,
.display-3 em {
	font-style: normal;
	background: linear-gradient(135deg, var(--liveye-accent), var(--liveye-accent3));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ── BUTTONS ── */
.btn-primary {
	--bs-btn-bg: #f12527;
	--bs-btn-color: #fff;
	--bs-btn-border-color: #00e5ff;
	--bs-btn-hover-bg: #33ebff;
	--bs-btn-hover-color: #000;
	--bs-btn-hover-border-color: #33ebff;
	--bs-btn-active-bg: #00c7e0;
	--bs-btn-active-border-color: #00c7e0;
	font-weight: 600;
}

.btn-primary:hover {
	box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
}

.btn-outline-primary {
	--bs-btn-color: #fff;
	--bs-btn-border-color: #fff;
	--bs-btn-hover-bg: rgba(0, 229, 255, 0.08);
	--bs-btn-hover-color: #00e5ff;
	--bs-btn-hover-border-color: #00e5ff;
}

/* ── NAVBAR LOGO ── */
.navbar-brand {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: -0.03em;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.navbar-brand img {
	width: 150px;
}

.navbar-brand .brand-accent {
	color: var(--liveye-accent);
}

.navbar-brand .logo-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--liveye-accent);
	animation: lv-pulse 2s infinite;
}

.navbar {
	backdrop-filter: blur(18px);
	background: rgba(8, 10, 15, 0.85) !important;
}

/* ── ANIMATIONS ── */
@keyframes lv-pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4);
	}

	50% {
		opacity: 0.8;
		transform: scale(1.2);
		box-shadow: 0 0 0 6px rgba(0, 229, 255, 0);
	}
}

@keyframes lv-ticker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes lv-float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

/* Scroll reveal */
.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── SECTION LABEL ── */
.section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--liveye-accent);
	margin-bottom: 1rem;
}

.section-label::before {
	content: '';
	width: 24px;
	height: 2px;
	background: var(--liveye-accent);
}

/* ── HERO ── */
.hero {
	position: relative;
	padding: 8rem 0 5rem;
	overflow: hidden;
	border-bottom: 1px solid var(--bs-border-color);
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0, 229, 255, 0.07) 0%, transparent 70%),
		radial-gradient(ellipse 40% 60% at 20% 80%, rgba(123, 94, 248, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
	pointer-events: none;
}

.hero>.container {
	position: relative;
	z-index: 1;
}

.live-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 229, 255, 0.08);
	border: 1px solid rgba(0, 229, 255, 0.2);
	color: var(--liveye-accent);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.35rem 0.9rem;
	border-radius: 100px;
}

.live-tag .live-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--liveye-accent2);
	animation: lv-pulse 1.5s infinite;
}

/* Floating cards on hero */
.float-card {
	background: var(--bs-secondary-bg);
	border: 1px solid var(--bs-border-color);
	border-radius: 10px;
	padding: 0.75rem 1rem;
	font-size: 0.78rem;
	white-space: nowrap;
	backdrop-filter: blur(12px);
	animation: lv-float 4s ease-in-out infinite;
}

.float-card .fc-label {
	color: var(--liveye-muted);
	font-size: 0.7rem;
}

.float-card .fc-value {
	color: #fff;
	font-weight: 600;
	margin-top: 1px;
}

.float-card .live-dot-green {
	width: 6px;
	height: 6px;
	background: #22c55e;
	border-radius: 50%;
	display: inline-block;
	margin-right: 5px;
	animation: lv-pulse 2s infinite;
}

/* ── TICKER ── */
.ticker-bar {
	background: var(--bs-secondary-bg);
	border-top: 1px solid var(--bs-border-color);
	border-bottom: 1px solid var(--bs-border-color);
	padding: 0.75rem 0;
	overflow: hidden;
}

.ticker-track {
	display: flex;
	gap: 3rem;
	animation: lv-ticker 30s linear infinite;
	width: max-content;
	white-space: nowrap;
}

.ticker-item {
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--liveye-muted);
}

.ticker-item .badge-key {
	color: var(--liveye-accent);
	font-weight: 700;
	margin-right: 0.4rem;
}

.ticker-sep {
	color: var(--bs-border-color);
}

/* ══════════════════════════════════════════════════════
   IMAGE PLACEHOLDER SYSTEM
   Plain <img> tags wrapped in Bootstrap .ratio.
   While src is empty/missing, the parent shows a
   dashed placeholder. As soon as the image loads,
   .img-loaded is added and the placeholder hides.
   ══════════════════════════════════════════════════════ */
.lv-img {
	position: relative;
	background: var(--bs-tertiary-bg);
	border: 2px dashed var(--bs-border-color);
	border-radius: 12px;
	overflow: hidden;
}

.lv-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	transition: opacity .25s;
}

.lv-img.img-loaded img {
	opacity: 1;
}

.lv-img.img-loaded {
	border-style: solid;
}

.lv-img .ph {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .35rem;
	color: var(--liveye-muted);
	text-align: center;
	pointer-events: none;
	transition: opacity .2s;
}

.lv-img.img-loaded .ph {
	opacity: 0;
}

.lv-img .ph i {
	font-size: 1.75rem;
	opacity: 0.5;
}

.lv-img .ph .ph-label {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.72rem;
}

.lv-img .ph .ph-size {
	font-size: 0.68rem;
	color: #3a4255;
}

.lv-img:hover {
	border-color: var(--liveye-accent);
}

/* ══════════════════════════════════════════════════════
   PRODUCT CARD
   ══════════════════════════════════════════════════════ */
.product-card {
	background: var(--bs-secondary-bg);
	border: 1px solid var(--bs-border-color);
	border-radius: 12px;
	padding: 1.75rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all .2s;
	text-decoration: none;
}

.product-card:hover {
	background: var(--bs-tertiary-bg);
	border-color: rgba(0, 229, 255, 0.25);
	transform: translateY(-3px);
}

.product-card .pc-tag {
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--liveye-accent);
	font-weight: 700;
	margin-bottom: 0.4rem;
}

.product-card .pc-title {
	font-family: 'Syne', sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
}

.product-card .pc-desc {
	font-size: 0.85rem;
	color: var(--liveye-muted);
	line-height: 1.6;
	flex: 1;
}

.product-card .pc-link {
	margin-top: 1rem;
	color: var(--liveye-accent);
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
}

.product-card.featured {
	background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), var(--bs-secondary-bg));
	position: relative;
}

.featured-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--liveye-accent2);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.3rem 0.75rem;
	border-radius: 4px;
	z-index: 2;
}

/* ── USE-CASE CARDS ── */
.uc-card {
	background: var(--bs-secondary-bg);
	border: 1px solid var(--bs-border-color);
	border-radius: 12px;
	padding: 1.5rem;
	height: 100%;
	transition: all .25s;
	position: relative;
	overflow: hidden;
}

.uc-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--liveye-accent), var(--liveye-accent3));
	transform: scaleX(0);
	transition: transform .3s;
}

.uc-card:hover {
	transform: translateY(-4px);
	border-color: rgba(243, 33, 42, 0.62);
}

.uc-card:hover::after {
	transform: scaleX(1);
}

.uc-card .uc-icon {
	font-size: 40px;
	color: var(--liveye-accent);
	margin-bottom: 0.75rem;
}

/* ── INDUSTRY TILE (image background) ── */
.industry-tile {
	position: relative;
	border: 1px solid var(--bs-border-color);
	border-radius: 16px;
	overflow: hidden;
	min-height: 320px;
	display: flex;
	align-items: flex-end;
	padding: 2rem;
	text-decoration: none;
	color: #fff;
	transition: all .25s;
}

.industry-tile .lv-img {
	position: absolute;
	inset: 0;
	border: none;
	border-radius: 0;
}

.industry-tile::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(8, 10, 15, 0.95) 100%);
	z-index: 1;
}

.industry-tile .it-body {
	position: relative;
	z-index: 2;
}

.industry-tile:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 229, 255, 0.4);
	color: #fff;
}

/* ── TIMELINE (about page) ── */
.timeline {
	position: relative;
	padding-left: 2.5rem;
	max-width: 720px;
	margin: 0 auto;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 6px;
	bottom: 6px;
	width: 1px;
	background: linear-gradient(180deg, var(--liveye-accent), var(--liveye-accent3), transparent);
}

.tl-item {
	position: relative;
	padding-bottom: 2.5rem;
}

.tl-item:last-child {
	padding-bottom: 0;
}

.tl-item::before {
	content: '';
	position: absolute;
	left: -2.5rem;
	top: 6px;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: var(--bs-body-bg);
	border: 2px solid var(--liveye-accent);
	box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
}

.tl-year {
	font-family: 'Syne', sans-serif;
	font-size: 0.85rem;
	font-weight: 800;
	color: var(--liveye-accent);
	letter-spacing: 0.05em;
	margin-bottom: 0.4rem;
}

/* ── STAT CELL ── */
.stat-big {
	font-family: 'Syne', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, var(--liveye-accent), var(--liveye-accent3));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stat-label-sm {
	margin-top: 0.5rem;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--liveye-muted);
}

/* ── CTA BANNER ── */
.cta-banner {
	background: var(--bs-secondary-bg);
	border: 1px solid var(--bs-border-color);
	border-radius: 20px;
	padding: 3rem;
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
}

.cta-banner>* {
	position: relative;
	z-index: 1;
}

/* ── FOOTER ── */
footer.lv-footer {
	border-top: 1px solid var(--bs-border-color);
	padding: 4rem 0 2rem;
	background: var(--bs-body-bg);
}

.lv-footer h5 {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 1.25rem;
}

.lv-footer a {
	color: var(--liveye-muted);
	text-decoration: none;
	transition: color .15s;
}

.lv-footer a:hover {
	color: var(--bs-body-color);
}

.lv-footer .footer-col a {
	display: block;
	font-size: 16px;
	margin-bottom: 0.65rem;
}

.lv-footer .footer-bottom {
	border-top: 1px solid var(--bs-border-color);
	padding-top: 1.5rem;
	margin-top: 2.5rem;
	font-size: 18px;
	color: var(--liveye-muted);
}

.lv-footer .footer-bottom a {
	color: var(--liveye-accent);
}

.social-link {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	border: 1px solid var(--bs-border-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--liveye-muted);
	font-size: 0.95rem;
	transition: all .2s;
}

.social-link:hover {
	border-color: var(--liveye-accent);
	color: var(--liveye-accent);
}

/* ── DROPDOWN POLISH ── */
.dropdown-menu {
	background: var(--bs-secondary-bg);
	border: 1px solid var(--bs-border-color);
	border-top: 2px solid var(--liveye-accent);
	border-radius: 0 0 8px 8px;
	padding: 0.5rem 0;
}

.dropdown-menu .dropdown-header {
	font-size: 0.65rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--liveye-muted);
	font-family: 'Syne', sans-serif;
	padding: 0.5rem 1.25rem 0.25rem;
}

.dropdown-item {
	color: #9aa0b0;
	font-size: 0.85rem;
	padding: 0.45rem 1.25rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
	background: rgba(0, 229, 255, 0.06);
	color: var(--liveye-accent);
}

/* ── SPEC TABLE ── */
.spec-table {
	--bs-table-bg: var(--bs-secondary-bg);
	--bs-table-color: var(--bs-body-color);
	--bs-table-border-color: var(--bs-border-color);
	border-radius: 12px;
	overflow: hidden;
}

.spec-table th {
	width: 30%;
	color: var(--liveye-muted);
	font-weight: 500;
	background: var(--bs-tertiary-bg) !important;
}

/* ── FAQ accordion override ── */
.accordion {
	--bs-accordion-bg: var(--bs-secondary-bg);
	--bs-accordion-border-color: var(--bs-border-color);
	--bs-accordion-color: var(--bs-body-color);
	--bs-accordion-active-color: var(--liveye-accent);
	--bs-accordion-active-bg: var(--bs-secondary-bg);
	--bs-accordion-btn-focus-border-color: var(--liveye-accent);
	--bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(0, 229, 255, 0.15);
}

.accordion-button {
	font-family: 'Syne', sans-serif;
	font-weight: 600;
}

/* ── PAGE HEADER ── */
.page-header {
	position: relative;
	padding: 8rem 0 4rem;
	overflow: hidden;
	border-bottom: 1px solid var(--bs-border-color);
}

.page-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 60% at 80% 30%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
		radial-gradient(ellipse 40% 50% at 20% 90%, rgba(123, 94, 248, 0.07) 0%, transparent 60%);
	pointer-events: none;
}

.page-header>.container {
	position: relative;
	z-index: 1;
}

/* ── BLOG CARDS ── */
.blog-card {
	background: var(--bs-secondary-bg);
	border: 1px solid var(--bs-border-color);
	border-radius: 14px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all .25s;
	text-decoration: none;
	color: inherit;
}

.blog-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 229, 255, 0.3);
}

.blog-card .lv-img {
	border: none;
	border-radius: 0;
}

.blog-card .bc-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-card .bc-meta {
	font-size: 0.72rem;
	color: var(--liveye-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.75rem;
}

.blog-card .bc-cat {
	color: var(--liveye-accent);
	font-weight: 600;
}

.blog-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.blog-card p {
	font-size: 0.85rem;
	color: var(--liveye-muted);
	line-height: 1.6;
	flex: 1;
}

/* ── FILTER PILLS ── */
.pill {
	padding: 0.45rem 1.1rem;
	background: var(--bs-secondary-bg);
	border: 1px solid var(--bs-border-color);
	border-radius: 100px;
	color: #b0b8c8;
	font-size: 0.8rem;
	font-weight: 500;
	text-decoration: none;
	transition: all .2s;
}

.pill:hover {
	border-color: var(--liveye-accent);
	color: var(--liveye-accent);
}

.pill.active {
	background: var(--liveye-accent);
	color: #000;
	border-color: var(--liveye-accent);
	font-weight: 600;
}

/* ── HELPERS ── */
.text-muted-soft {
	color: #fff;
	font-size: 17px;
}

.bg-surface {
	background: var(--bs-secondary-bg) !important;
}

.bg-surface2 {
	background: var(--bs-tertiary-bg) !important;
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 768px) {
	.hero {
		padding-top: 6rem;
	}

	.float-card {
		display: none;
	}
}


.contact-information h6 {
  font-size: 20px !important;
  padding: 20px 0 0 0;
}
.contact-form h3 {
	text-transform: uppercase;
}
.contact-information a {
	text-decoration: none;
	color: #fff !important;
}
.uc-card h6 {
  font-size: 18px;
  font-family: "Poppins";
  padding: 10px 0;
}

nav li a {
	font-size: 18px!important;
}