@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Martian+Mono:wght@300;400;500;600;700&display=swap');

*,
:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

@font-face {
	font-family: Century-Gothic-Bold;
	src: url(../fonts/Century-Gothic-Bold.otf);
}

@font-face {
	font-family: Century-Gothic;
	src: url(../fonts/Century-Gothic.otf);
}

:root {
	--animation-duration-horizontal: 1s;
	--animation-duration-vertical: 1s;
	--animation-delay: 1s;

	/* Obserion Brand Identity System Variables */
	--color-bg: #01010B;
	--color-primary: #9559F7;
	--color-accent: #C1FF12;
	--color-danger: #E63946;
	--color-text-main: #FFFFFF;
	--color-text-muted: rgba(255, 255, 255, 0.6);
	--color-glass-bg: rgba(255, 255, 255, 0.03);
	--color-glass-border: rgba(149, 89, 247, 0.2);
	--color-glass-border-hover: rgba(149, 89, 247, 0.5);
	--font-primary: 'Outfit', 'Inter', 'Century-Gothic', sans-serif;
	--font-secondary: 'Inter', sans-serif;
	--font-mono: 'Martian Mono', monospace;
}

body,
html {
	font-size: 100%;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	background-color: var(--color-bg);
	color: var(--color-text-main);
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-family: var(--font-primary);
	scroll-behavior: smooth;
	text-rendering: optimizeLegibility;
}

/* GPU-accelerated smooth transitions for modals and panels */
.modal.fade .modal-dialog {
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.modal-backdrop {
	transition: opacity 0.2s ease !important;
}

/* Smoother scrollbar styling */
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-track {
	background: rgba(1, 1, 11, 0.5);
}
::-webkit-scrollbar-thumb {
	background: rgba(149, 89, 247, 0.4);
	border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
	background: rgba(149, 89, 247, 0.7);
}

/* Selection styling */
::selection {
	background: rgba(149, 89, 247, 0.35);
	color: #fff;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
	color: #fff;
	font-weight: 700;
	letter-spacing: -0.02em;
}

h1 {
	font-size: 5rem;
	font-weight: 800;
}

h2 {
	font-size: 2.75rem;
	font-weight: 700;
}

h3 {
	font-size: 2rem;
	margin-top: 0.5em;
}

h4 {
	font-size: 1.75rem;
}

h5 {
	font-size: 1.55rem;
	font-weight: 500;
}

h6 {
	font-size: 1.25rem;
	font-weight: 500;
}

p {
	font-family: var(--font-primary);
	font-weight: 400;
	font-size: 1.15rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}

p a {
	color: var(--color-primary);
	text-decoration: none;
}

p a:hover {
	color: #fff;
}

.content-wrapper {
	max-width: 1440px;
	margin: 0 auto;
	padding: 1em;
}

/* NAVIGATION & BRANDING */
.navbar-custom {
	background-color: transparent;
	transition: all 0.4s ease;
	padding: 1rem 2rem;
	z-index: 1030;
}

.navbar-scrolled {
	background-color: rgba(11, 12, 16, 0.9) !important;
	backdrop-filter: blur(20px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	border-bottom: 1px solid rgba(123, 47, 190, 0.15);
	padding: 0.6rem 2rem;
}

.navbar-brand {
	display: flex;
	align-items: center;
	font-weight: 800;
	font-size: 1.6rem;
	letter-spacing: -0.5px;
	color: #fff !important;
}

.navbar-brand img {
	height: 38px;
	margin-right: 0.5rem;
	transition: transform 0.3s ease;
}

.navbar-brand:hover img {
	transform: scale(1.05);
}

.navbar-nav {
	border: 1px solid var(--color-glass-border);
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(10px);
	border-radius: 100px;
	padding: 0.4rem 1.5rem;
}

.nav-link {
	color: var(--color-text-muted) !important;
	padding: 0.5rem 1rem !important;
	margin: 0 0.25rem;
	border-radius: 50px;
	font-weight: 500;
	transition: all 0.3s ease !important;
}

.nav-link:hover, 
.nav-link.active {
	color: #fff !important;
	background: rgba(255, 255, 255, 0.05);
}

.dropdown-mega {
	position: static;
}

.dropdown-menu.mega-menu {
	width: 95%;
	max-width: 1200px;
	left: 0;
	right: 0;
	margin: 0.5rem auto 0 auto;
	border: 1px solid var(--color-glass-border);
	border-radius: 1.5rem;
	padding: 2rem;
	background: rgba(11, 12, 16, 0.95);
	backdrop-filter: blur(25px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	animation: fadeInDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.dropdown-menu.mega-menu:not(.show) {
	display: none;
}

.dropdown-menu.mega-menu a {
	display: block;
	text-decoration: none;
	color: var(--color-text-muted);
	margin-bottom: 0.6rem;
	font-weight: 500;
	transition: all 0.2s ease;
}

.dropdown-menu.mega-menu a:hover {
	color: var(--color-primary);
	padding-left: 5px;
}

.nav-pills .nav-link.active {
	background-color: var(--color-primary) !important;
	color: #ffffff !important;
	border: none;
	border-radius: 30px !important;
	padding: 0.8rem 1.5rem;
}

.nav-pills .nav-link {
	color: var(--color-text-muted);
	border-radius: 30px;
	padding: 0.8rem 1.5rem;
	transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.03);
}

/* HERO SECTION & CAROUSEL */
.hero {
	background-image: linear-gradient(rgba(11, 12, 16, 0.6), rgba(11, 12, 16, 0.85)), url(../images/hero-gif.gif);
	background-size: cover;
	background-position: center;
	display: flex;
	height: 100vh;
	min-height: 800px;
	width: 100%;
	padding-top: 6rem;
	position: relative;
}

.hero-left {
	width: 55%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 3rem 1rem;
	color: white;
}

.hero-right {
	width: 45%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-inner {
	background: rgba(255, 255, 255, 0.01) !important;
	border: 1px solid var(--color-glass-border) !important;
	backdrop-filter: blur(15px);
	border-radius: 2rem !important;
	padding: 3rem 2rem !important;
}

.carousel-control-prev,
.carousel-control-next {
	width: 45px;
	height: 45px;
	background: rgba(123, 47, 190, 0.15);
	border: 1px solid rgba(123, 47, 190, 0.3);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
	opacity: 0.7;
}

.carousel-control-prev { left: -15px; }
.carousel-control-next { right: -15px; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	opacity: 1;
	box-shadow: 0 0 15px rgba(149, 89, 247, 0.4);
}

.carousel-indicators {
	bottom: -40px;
}

.carousel-indicators [button] {
	background-color: var(--color-primary) !important;
}

/* BUTTONS */
.hero-first-btn, 
.my-nav-btn {
	color: #ffff;
	background-color: var(--color-primary);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.9rem 2rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(149, 89, 247, 0.3);
}

.my-nav-btn {
	padding: 0.6rem 1.4rem;
}

.hero-first-btn:hover, 
.my-nav-btn:hover {
	transform: translateY(-2px);
	background-color: #9240DF;
	box-shadow: 0 8px 25px rgba(123, 47, 190, 0.5);
}

.hero-second-btn {
	color: #ffff;
	background-color: #2FD350;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.9rem 2rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(47, 211, 80, 0.3);
}

.hero-second-btn:hover {
	transform: translateY(-2px);
	background-color: #26b543;
	box-shadow: 0 8px 25px rgba(47, 211, 80, 0.5);
}

/* MODERN INFINITE TICKER (REPLACES MARQUEE) */
.ticker-wrap {
	width: 100%;
	overflow: hidden;
	background-color: var(--color-primary);
	padding: 0.8rem 0;
	box-shadow: 0 4px 20px rgba(123, 47, 190, 0.3);
	margin: 3rem 0;
}

.ticker-content {
	display: flex;
	white-space: nowrap;
	animation: tickerAnim 25s linear infinite;
}

.ticker-item {
	display: inline-block;
	padding: 0 3rem;
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	font-family: var(--font-primary);
	text-transform: uppercase;
	letter-spacing: 2px;
}

@keyframes tickerAnim {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

.page-diver {
	background-color: rgba(255, 255, 255, 0.07);
	width: 100%;
	margin: 5rem auto;
	height: 1px;
}

/* MODULAR CARDS & BENTO SYSTEM */
.custom-card {
	background-color: #01010B;
	color: #fff;
	border-radius: 2rem;
	padding: 2.5rem;
	text-align: left;
	height: 100%;
	border: 1px solid var(--color-glass-border);
	margin-top: 2rem;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-card:hover {
	transform: translateY(-5px);
	border-color: var(--color-glass-border-hover);
	box-shadow: 0 15px 40px -10px rgba(149, 89, 247, 0.25);
}

.custom-card h3 {
	color: var(--color-primary);
}

.custom-card-2 {
	background-color: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(10px);
	color: #fff;
	border-radius: 2rem;
	padding: 3rem 2.5rem;
	text-align: left;
	height: 100%;
	border: 1px solid var(--color-glass-border);
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-card-2:hover {
	transform: translateY(-5px);
	border-color: var(--color-glass-border-hover);
	box-shadow: 0 15px 40px -10px rgba(149, 89, 247, 0.25);
}

.custom-card-2 h4 {
	font-weight: 700;
	color: #fff;
}

/* OBSERION CORE CARD SYSTEM WITH CONTRAST MASK */
.obserion-section1, 
.obserion-section2, 
.obserion-section3, 
.obserion-section4 {
	position: relative;
	background-color: rgba(149, 89, 247, 0.05) !important;
	border: 1px solid var(--color-glass-border) !important;
	border-radius: 2rem !important;
	overflow: hidden;
	cursor: pointer;
	padding: 0 !important;
	margin-top: 2rem;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.obserion-section1:hover, 
.obserion-section2:hover, 
.obserion-section3:hover, 
.obserion-section4:hover {
	transform: translateY(-5px);
	border-color: var(--color-glass-border-hover) !important;
	box-shadow: 0 20px 45px -10px rgba(149, 89, 247, 0.35) !important;
}

.obserion-card-mask {
	background: rgba(1, 1, 11, 0.75);
	backdrop-filter: blur(6px);
	padding: 2.5rem 2rem;
	width: 100%;
	height: 100%;
	border-radius: 2rem;
	z-index: 5;
	position: relative;
	transition: all 0.4s ease;
}

.obserion-section1:hover .obserion-card-mask,
.obserion-section2:hover .obserion-card-mask,
.obserion-section3:hover .obserion-card-mask,
.obserion-section4:hover .obserion-card-mask {
	background: rgba(1, 1, 11, 0.55);
}

.obserion-section1 h3, .obserion-section2 h3, .obserion-section3 h3, .obserion-section4 h3 {
	color: #fff;
	font-weight: 800;
}

.obserion-section1 h5, .obserion-section2 h5, .obserion-section3 h5, .obserion-section4 h5 {
	color: var(--color-primary);
	font-weight: 600;
}

.obserion-section1 p, .obserion-section2 p, .obserion-section3 p, .obserion-section4 p {
	color: var(--color-text-muted);
	margin-top: 1rem;
	opacity: 1 !important; /* Force visible */
}

/* Background image placement */
.obserion-section1::before { background-image: url(../images/EDGE.png); }
.obserion-section2::before { background-image: url(../images/intel.png); }
.obserion-section3::before { background-image: url(../images/sim.png); }
.obserion-section4::before { background-image: url(../images/cortex.png); }

.obserion-section1::before, 
.obserion-section2::before, 
.obserion-section3::before, 
.obserion-section4::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.35;
	width: 75%;
	height: 75%;
	z-index: 1;
	transition: all 0.4s ease;
}

.obserion-section1:hover::before, 
.obserion-section2:hover::before, 
.obserion-section3:hover::before, 
.obserion-section4:hover::before {
	opacity: 0.5;
	transform: translate(-50%, -50%) scale(1.05);
}

/* PERFORMANCE HIGHLIGHTS */
.performance_card {
	padding: 2.5rem 2rem;
	border-radius: 2rem;
	background: rgba(255, 255, 255, 0.01);
	border: 1px solid var(--color-glass-border);
	width: 100%;
	margin: 1.5rem auto;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.performance_card h3 {
	color: var(--color-primary);
	font-weight: 800;
	font-size: 2.2rem;
	margin-top: 1rem;
}

.performance_card h6 {
	color: #fff;
	font-weight: 600;
}

.performance_card img {
	width: 60px;
	height: auto;
}

.performance_card:hover {
	transform: translateY(-5px);
	border-color: var(--color-glass-border-hover);
	box-shadow: 0 15px 40px -10px rgba(123, 47, 190, 0.3);
	background: rgba(255, 255, 255, 0.02);
}

/* MEET OBIRIS BULLET POINTS */
.custom-card-2 p {
	font-size: 1.05rem;
	margin-bottom: 0.8rem;
}

.custom-card-2 p i.bi-check-circle-fill {
	color: var(--color-accent) !important;
	margin-right: 0.5rem;
}

.custom-card-2 p i.bi-circle-fill {
	font-size: 0.5rem;
	color: var(--color-primary);
	vertical-align: middle;
	margin-right: 0.8rem;
}

/* TESTIMONIALS */
.testimonial-card {
	border: 1px solid var(--color-glass-border) !important;
	background: rgba(255, 255, 255, 0.01) !important;
	backdrop-filter: blur(10px);
	border-radius: 2rem;
	padding: 3rem 2.5rem;
	margin-top: 2rem;
	height: 100%;
	transition: all 0.4s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	border-color: var(--color-glass-border-hover) !important;
	box-shadow: 0 15px 40px -10px rgba(123, 47, 190, 0.25) !important;
}

.testimonial-card h6 {
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.6;
	color: #e0e0e0;
	font-style: italic;
}

.testimonial-divider {
	width: 100%;
	margin: 2rem auto;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.05);
}

.testimonial-bottom {
	display: flex;
	align-items: center;
}

.testimonial-card img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid var(--color-primary);
	object-fit: cover;
}

.testimonial-bottom h6 {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	margin: 0;
}

.testimonial-bottom p {
	font-size: 0.85rem;
	margin: 0;
	color: var(--color-text-muted);
}

/* LEAD CAPTURE FORM */
.demo-form input,
.demo-form select,
.demo-form textarea {
	padding: 1rem 1.5rem;
	background-color: rgba(255, 255, 255, 0.02) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 12px !important;
	margin-top: 1rem;
	color: #fff !important;
	font-family: var(--font-primary) !important;
	font-size: 1.05rem;
	transition: all 0.3s ease !important;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.35) !important;
}

.demo-form input:focus,
.demo-form textarea:focus {
	background-color: rgba(255, 255, 255, 0.04) !important;
	border-color: var(--color-primary) !important;
	box-shadow: 0 0 15px rgba(149, 89, 247, 0.25) !important;
	outline: none !important;
}

.quote-send2 input[type="submit"] {
	background: var(--color-primary) !important;
	width: 100%;
	border: none !important;
	border-radius: 50px !important;
	padding: 1rem 2.5rem !important;
	font-family: var(--font-primary);
	color: #fff !important;
	font-size: 1.15rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(149, 89, 247, 0.3);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.quote-send2 input[type="submit"]:hover {
	transform: translateY(-2px);
	background-color: #8343e8 !important;
	box-shadow: 0 8px 25px rgba(149, 89, 247, 0.5);
}

/* PREMIUM FOOTER */
.premium-footer {
	background-color: #02020f;
	border-top: 1px solid rgba(149, 89, 247, 0.15);
	padding: 5rem 0 2rem 0;
	margin-top: 8rem;
	color: var(--color-text-muted);
}

.footer-col-title {
	color: #fff;
	font-family: var(--font-primary);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
	letter-spacing: 1.5px;
}

.footer-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links-list li {
	margin-bottom: 0.8rem;
}

.footer-links-list a {
	color: var(--color-text-muted);
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.footer-links-list a:hover {
	color: var(--color-primary);
	padding-left: 5px;
}

.footer-bottom {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-socials {
	display: flex;
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	color: #fff;
	transition: all 0.3s ease;
}

.footer-socials a:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(123, 47, 190, 0.4);
}

/* PREMIUM MODALS & Z-INDEX ISOLATION */
.modal {
	z-index: 1060 !important;
}

.modal-dialog {
	z-index: 1070 !important;
}

.modal-backdrop {
	background-color: rgba(1, 1, 11, 0.85) !important;
	backdrop-filter: blur(10px);
	z-index: 1040 !important;
}

.modal-content {
	background: rgba(7, 7, 17, 0.95) !important;
	backdrop-filter: blur(25px);
	border: 1px solid rgba(123, 47, 190, 0.25) !important;
	border-radius: 2rem !important;
	box-shadow: 0 20px 50px rgba(123, 47, 190, 0.2) !important;
	color: #fff !important;
	padding: 1rem;
}

.modal-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
	padding-bottom: 1rem;
}

.modal-header h3, 
.modal-header h1.modal-title {
	font-size: 1.6rem !important;
	font-weight: 700;
	color: #fff !important;
}

.btn-close {
	filter: invert(1) grayscale(1) brightness(2);
	opacity: 0.8;
}

.btn-close:hover {
	opacity: 1;
}

/* KEYFRAMES & MICRO-ANIMATIONS */
.moving-svg-1 {
	animation: moveUpDownn1 5s ease-in-out infinite;
}

@keyframes moveUpDownn1 {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.moving-svg-2 {
	animation: moveUpDownn2 4s ease-in-out infinite;
}

@keyframes moveUpDownn2 {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

/* RESPONSIVE LAYOUT MEDIA QUERIES */
@media (max-width: 1199.98px) {
	.navbar-custom {
		background-color: rgba(11, 12, 16, 0.95);
		padding: 1rem;
	}
	.navbar-nav {
		border: none;
		background: transparent;
		padding: 1rem 0;
	}
	.nav-link {
		margin: 0.2rem 0;
	}
	.dropdown-menu.mega-menu {
		width: 100%;
		border-radius: 1rem;
		padding: 1.5rem;
	}
	.hero {
		display: block;
		height: auto;
		min-height: 800px;
		padding-top: 10rem;
		padding-bottom: 4rem;
	}
	.hero-left {
		width: 100%;
		padding: 1rem;
		margin-bottom: 4rem;
	}
	.hero-right {
		width: 100%;
		margin-left: 0;
	}
	.carousel-control-prev { left: 0px; }
	.carousel-control-next { right: 0px; }
}

@media (max-width: 767.98px) {
	h1 { font-size: 3rem; }
	h2 { font-size: 2.2rem; }
	.nav-pills .nav-link {
		padding: 0.6rem 1rem;
	}
	.custom-card-2 {
		padding: 2rem 1.5rem;
	}
	.hero-first-btn, .hero-second-btn {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	h1 { font-size: 2.5rem; }
	h2 { font-size: 1.9rem; }
	.obserion-card-mask {
		padding: 2rem 1.2rem;
	}
}

/* Glassmorphic Premium Table Styling */
.my-transparent-table {
	background: rgba(255, 255, 255, 0.01) !important;
	backdrop-filter: blur(15px);
	border: 1px solid var(--color-glass-border) !important;
	border-radius: 1.5rem !important;
	overflow: hidden;
	color: #fff !important;
	box-shadow: 0 15px 40px -10px rgba(123, 47, 190, 0.15);
}

.my-transparent-table th,
.my-transparent-table td {
	padding: 1.2rem 1.5rem !important;
	vertical-align: middle !important;
	border-color: rgba(123, 47, 190, 0.1) !important;
	font-family: var(--font-primary);
}

.my-transparent-table thead th {
	background-color: rgba(123, 47, 190, 0.08) !important;
	color: #fff !important;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.95rem;
	letter-spacing: 1px;
	border-bottom: 2px solid rgba(123, 47, 190, 0.2) !important;
}

.my-transparent-table tbody tr:hover {
	background-color: rgba(255, 255, 255, 0.02) !important;
}

.my-transparent-table tr td:nth-child(2) {
	background-color: rgba(245, 166, 35, 0.01) !important; /* Muted accent highlight for Obserion column */
}

.my-transparent-table img {
	width: 22px;
	height: auto;
}

/* ==========================================================================
   Cyber Scanning Terminal & Report Card Layout Styles
   ========================================================================== */

/* Neon Cyber Scanning Terminal */
.cyber-terminal {
	background-color: #0B0C10 !important;
	border: 1px solid rgba(123, 47, 190, 0.4);
	box-shadow: 0 0 20px rgba(123, 47, 190, 0.2), inset 0 0 15px rgba(0, 0, 0, 0.8);
	border-radius: 8px;
	padding: 1.5rem;
	font-family: 'Martian Mono', monospace;
	font-size: 0.85rem;
	color: #a5f3fc; /* Cyan-blue terminal text */
	height: 350px;
	overflow-y: auto;
	position: relative;
	margin: 1rem 0;
	scrollbar-width: thin;
	scrollbar-color: rgba(123, 47, 190, 0.4) rgba(0, 0, 0, 0.5);
}

.cyber-terminal::-webkit-scrollbar {
	width: 6px;
}
.cyber-terminal::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.5);
}
.cyber-terminal::-webkit-scrollbar-thumb {
	background-color: rgba(123, 47, 190, 0.4);
	border-radius: 10px;
}

.terminal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(123, 47, 190, 0.2);
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
}

.terminal-dots {
	display: flex;
	gap: 6px;
}

.terminal-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.terminal-dot.red { background-color: #ef4444; }
.terminal-dot.yellow { background-color: #eab308; }
.terminal-dot.green { background-color: #22c55e; }

.terminal-title {
	letter-spacing: 1px;
}

.terminal-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.terminal-log {
	margin: 0;
	line-height: 1.4;
	opacity: 0;
	transform: translateY(5px);
	animation: logFadeIn 0.3s forwards ease;
}

@keyframes logFadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.terminal-log.info { color: #a5f3fc; }
.terminal-log.warning { color: #fde047; }
.terminal-log.danger { color: #f87171; }
.terminal-log.success { color: #4ade80; }
.terminal-log.accent { color: #F5A623; }

/* Animated Cursor */
.terminal-cursor {
	display: inline-block;
	width: 8px;
	height: 15px;
	background-color: #a5f3fc;
	margin-left: 4px;
	animation: cursorBlink 1s infinite steps(2, start);
	vertical-align: middle;
}

@keyframes cursorBlink {
	to { visibility: hidden; }
}

/* Premium B2B Security Report Card (Printable) */
.report-card {
	background: #0B0C10 !important;
	border: 1px solid rgba(123, 47, 190, 0.2);
	border-radius: 12px;
	padding: 2.5rem;
	color: #fff;
	font-family: var(--font-secondary);
	position: relative;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
	overflow: hidden;
}

/* Decorative background glowing orb */
.report-card::before {
	content: '';
	position: absolute;
	top: -150px;
	right: -150px;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(123, 47, 190, 0.15) 0%, rgba(11, 12, 16, 0) 70%);
	pointer-events: none;
	border-radius: 50%;
}

.report-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	border-bottom: 2px solid rgba(123, 47, 190, 0.2);
	padding-bottom: 1.5rem;
	margin-bottom: 2rem;
}

.report-logo-section {
	display: flex;
	align-items: center;
	gap: 12px;
}

.report-logo-text {
	font-family: var(--font-primary);
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: 2px;
	color: #fff;
}

.report-meta-section {
	text-align: right;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
}

.report-title-block {
	text-align: center;
	margin-bottom: 2.5rem;
}

.report-title-block h3 {
	font-family: var(--font-primary);
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #fff;
}

.report-title-block p {
	font-size: 0.9rem;
	color: var(--color-accent);
	font-weight: 600;
	letter-spacing: 1px;
}

.report-score-row {
	display: flex;
	align-items: center;
	justify-content: space-around;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(123, 47, 190, 0.1);
	border-radius: 8px;
	padding: 1.5rem 1rem;
	margin-bottom: 2.5rem;
}

.score-metric {
	text-align: center;
}

.score-number {
	font-size: 2.8rem;
	font-weight: 800;
	font-family: var(--font-primary);
	line-height: 1;
	margin-bottom: 0.3rem;
	text-shadow: 0 0 10px rgba(123, 47, 190, 0.3);
}
.score-number.critical { color: #ef4444; }
.score-number.warning { color: #eab308; }
.score-number.secure { color: #F5A623; text-shadow: 0 0 15px rgba(245, 166, 35, 0.3); }

.score-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 1px;
}

.report-sections {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}

.report-sec {
	border-left: 3px solid rgba(123, 47, 190, 0.5);
	padding-left: 1.2rem;
}

.report-sec h5 {
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 1rem;
	color: #fff;
	margin-bottom: 0.5rem;
}

.report-sec p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
	margin: 0;
}

.report-sec ul {
	margin: 0.5rem 0 0 0;
	padding-left: 1.2rem;
}

.report-sec li {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.3rem;
	line-height: 1.4;
}

.report-sec li strong {
	color: #fff;
}

.report-footer-seal {
	margin-top: 3rem;
	padding-top: 1.2rem;
	border-top: 1px solid rgba(123, 47, 190, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
}

.report-footer-seal img {
	opacity: 0.6;
	transition: opacity 0.3s;
}

.report-footer-seal:hover img {
	opacity: 1;
}

/* PDF Print Optimizations - Sleek Minimalist Dark Cybersecurity Theme */
@media print {
	.report-card {
		box-shadow: none !important;
		border: 1px solid rgba(123, 47, 190, 0.3) !important;
		padding: 2.5rem !important;
		background: #0B0C10 !important;
		color: #ffffff !important;
		-webkit-print-color-adjust: exact !important;
		print-color-adjust: exact !important;
	}
	
	.report-card::before {
		display: block !important;
		background: radial-gradient(circle, rgba(123, 47, 190, 0.15) 0%, rgba(11, 12, 16, 0) 70%) !important;
	}
	
	.report-logo-text {
		color: #ffffff !important;
	}
	
	.report-meta-section {
		color: rgba(255, 255, 255, 0.6) !important;
	}
	
	.report-title-block h2 {
		color: #ffffff !important;
	}
	
	.report-sec h5 {
		color: #ffffff !important;
	}
	
	.report-sec p, .report-sec li {
		color: rgba(255, 255, 255, 0.7) !important;
	}
	
	.report-sec li strong {
		color: #ffffff !important;
	}
	
	/* Keep dark table styling and code boxes beautifully rendered in print */
	.table-dark {
		background-color: #03030c !important;
		color: #ffffff !important;
	}
	
	.badge {
		-webkit-print-color-adjust: exact !important;
		print-color-adjust: exact !important;
	}
}

/* ============================================
   POLISH: Terminal, Scan UI, & Micro-animations
   ============================================ */

/* Terminal log lines entrance animation */
.terminal-log {
	animation: terminalFadeIn 0.2s ease-out both;
	margin: 0;
	padding: 2px 0;
	font-size: 0.82rem;
	line-height: 1.5;
	font-family: 'Martian Mono', 'Courier New', monospace;
}

@keyframes terminalFadeIn {
	from { opacity: 0; transform: translateX(-8px); }
	to   { opacity: 1; transform: translateX(0); }
}

.terminal-log.info    { color: rgba(255, 255, 255, 0.75); }
.terminal-log.success { color: #4ade80; }
.terminal-log.warning { color: #F5A623; }
.terminal-log.danger  { color: #E63946; }
.terminal-log.accent  { color: #c1ff12; }

/* Blinking terminal cursor */
.terminal-cursor {
	display: inline-block;
	width: 8px;
	height: 14px;
	background: var(--color-accent);
	margin-left: 4px;
	vertical-align: middle;
	animation: cursorBlink 0.8s steps(2) infinite;
}

@keyframes cursorBlink {
	0%, 100% { opacity: 1; }
	50%      { opacity: 0; }
}

/* Cyber terminal container */
.cyber-terminal {
	background: rgba(3, 3, 12, 0.8);
	border: 1px solid rgba(123, 47, 190, 0.25);
	border-radius: 12px;
	padding: 1.2rem;
	max-height: 320px;
	overflow-y: auto;
	font-family: 'Martian Mono', monospace;
	scroll-behavior: smooth;
}

/* Modal scan form inputs glow effect */
.modal-body input[type="text"],
.modal-body input[type="email"],
.modal-body input[type="tel"],
.modal-body input[type="url"] {
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(123, 47, 190, 0.25) !important;
	color: #fff !important;
	border-radius: 10px !important;
	padding: 0.7rem 1rem !important;
	transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
	font-family: var(--font-primary) !important;
}

.modal-body input:focus {
	border-color: var(--color-primary) !important;
	box-shadow: 0 0 0 3px rgba(123, 47, 190, 0.15) !important;
	outline: none !important;
}

/* Scan submit button pulse animation */
.btn-scan-trigger {
	position: relative;
	overflow: hidden;
}

.btn-scan-trigger::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: 0 0 0 0 rgba(123, 47, 190, 0.5);
	animation: scanPulse 2s ease-in-out infinite;
}

@keyframes scanPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(123, 47, 190, 0.4); }
	50%      { box-shadow: 0 0 0 8px rgba(123, 47, 190, 0); }
}

/* Report card entrance animation */
#waf_report_panel,
#security_report_panel {
	animation: reportSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes reportSlideIn {
	from { opacity: 0; transform: translateY(15px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Score number styling */
.score-number {
	font-family: 'Martian Mono', monospace;
	font-weight: 800;
	font-size: 2.5rem;
	transition: color 0.3s ease;
}
.score-number.secure  { color: #4ade80; }
.score-number.warning { color: #F5A623; }
.score-number.critical { color: #E63946; }

/* Report action buttons hover lift */
#waf_btn_download,
#waf_btn_email,
#waf_btn_reset,
#download_email_pdf_btn {
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#waf_btn_download:hover,
#waf_btn_email:hover,
#download_email_pdf_btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(123, 47, 190, 0.3);
	border-color: var(--color-primary) !important;
}

/* Section fade-in on scroll (supplement AOS) */
section {
	will-change: opacity, transform;
}

/* Loading spinner brand color */
.spinner-border {
	color: var(--color-accent) !important;
}