:root {
	color-scheme: light;
}

html:has(body[data-theme="dark"]) {
	color-scheme: dark;
}

/* Font Awesome font-display override for faster text rendering */
@font-face {
	font-family: 'Font Awesome 5 Free';
	font-display: swap;
	font-weight: 900;
}
@font-face {
	font-family: 'Font Awesome 5 Free';
	font-display: swap;
	font-weight: 400;
}
@font-face {
	font-family: 'Font Awesome 5 Brands';
	font-display: swap;
	font-weight: 400;
}

/* Accessibility: Skip link */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: #2e5fd9;
	color: #fff;
	padding: 8px 16px;
	z-index: 10000;
	text-decoration: none;
	font-weight: 600;
	border-radius: 0 0 4px 0;
}

.skip-link:focus {
	top: 0;
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* Accessibility: Screen reader only */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.gradient-text {
	background: linear-gradient(-220deg, #3c5fec, #4284fb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

[data-theme="dark"] .gradient-text {
	background: linear-gradient(-220deg, #6daae0, #9fc0e0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* CTA Button Styles */
.cta-button {
	display: inline-block;
	background: linear-gradient(135deg, #1f4ec3, #2e5fd9);
	color: #fff !important;
	padding: 12px 24px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none !important;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(31, 78, 195, 0.35);
	border: 2px solid transparent;
}

.cta-button:hover {
	background: linear-gradient(135deg, #1f4ec3, #2e5fd9);
	box-shadow: 0 8px 28px rgba(31, 78, 195, 0.6);
	transform: translateY(-3px);
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.35);
}

[data-theme="dark"] .cta-button {
	box-shadow: 0 4px 18px rgba(91, 154, 255, 0.5);
}

[data-theme="dark"] .cta-button:hover {
	box-shadow: 0 8px 30px rgba(91, 154, 255, 0.75);
	border-color: rgba(139, 181, 255, 0.6);
}

.cta-button i {
	margin-right: 8px;
}

/* Secondary CTA in Hero */
.secondary-cta {
	color: rgba(255, 255, 255, 0.9) !important;
	font-size: 15px;
	text-decoration: none !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	padding-bottom: 2px;
	transition: all 0.3s ease;
}

.secondary-cta:hover {
	color: #fff !important;
	border-bottom-color: #fff;
}

.secondary-cta i {
	margin-right: 6px;
}

/* Video Caption */
.video-caption {
	text-align: center;
	color: #2e5fd9;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.video-caption i {
	margin-right: 8px;
}

[data-theme="dark"] .video-caption {
	color: #5b9aff;
}

/* Bouncing Arrow */
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-8px);
	}
	60% {
		transform: translateY(-4px);
	}
}

.blueArrow {
	display: inline-block;
	color: #3f71f3;
	font-size: 24px;
	animation: bounce 2s ease infinite;
}

[data-theme="dark"] .blueArrow {
	color: #5b9aff;
}

/* New Badge */
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

.new-badge {
	background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
	color: white;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 0.7em;
	font-weight: bold;
	margin-left: 8px;
	position: relative;
	display: inline-block;
	animation: pulse 2s infinite;
}

/* Mobile Navigation Separators */
@media (max-width: 767px) {
	.navbar-collapse .navbar-nav .nav-item {
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		padding: 8px 0;
	}

	.navbar-collapse .navbar-nav .nav-item:last-child {
		border-bottom: none;
	}

	.navbar-collapse .navbar-nav .nav-link {
		padding: 8px 15px;
	}
}


canvas {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.interactive-element {
	z-index: 10;
}


.add-flex {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
	width: 100%;
}

.add1 {
	border: 2px solid #3f71f3;
	border-radius: 10px;
	padding: 15px;
	position: relative;
	width: 100%;
	min-width: 200px;
	transition: all 0.3s ease;
	background: white;
}

.banner-right .add-flex .add1 h3,
.add-row1 .add-flex .add1 h3 {
	color: #2e5fd9 !important;
	font-weight: 500;
}

section.add a,
footer.footer a {
	color: #2e5fd9;
}

[data-theme="dark"] section.add a,
[data-theme="dark"] footer.footer a {
	color: #5b9aff;
}

@media screen and (max-width: 768px) {

	.banner-right .add-flex,
	.add-row1 .add-flex {
		flex-direction: column;
		padding: 0 15px;
	}

	.banner-right .add1,
	.add-row1 .add1 {
		min-width: 100%;
		max-width: 100%;
	}
}

@media screen and (min-width: 1200px) {
	.add1 {
		min-width: 250px;
		max-width: 300px;
	}

	.add-flex {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* 5-item row layout for bottom tools section on desktop */
@media screen and (min-width: 992px) {
	.add-row1 .add-flex-5 {
		display: flex;
		justify-content: center;
		gap: 20px;
		margin-bottom: 25px;
		flex-wrap: nowrap;
	}

	.add-row1 .add-flex-5 .adds {
		flex: 1 1 auto;
		max-width: 240px;
	}

	.add-row1 .add-flex-5 .add1 {
		min-width: unset;
		max-width: unset;
		padding: 20px 18px;
	}

	.add-row1 .add-flex-5 .add1 h3 {
		font-size: 15px;
		white-space: nowrap;
	}

	.add-row1 .add-flex-5 .add1 .tool-icon {
		font-size: 20px;
		margin-right: 10px;
	}

	.add-row1 .add-flex-5 .add1 img.arrow {
		width: 20px;
		height: auto;
	}
}

/* Medium screens - 3 per row */
@media screen and (min-width: 769px) and (max-width: 991px) {
	.add-row1 .add-flex-5 {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
		margin-bottom: 25px;
	}

	.add-row1 .add-flex-5 .adds {
		flex: 0 0 30%;
		max-width: 300px;
	}

	.add-row1 .add-flex-5 .add1 {
		padding: 18px 15px;
	}

	.add-row1 .add-flex-5 .add1 h3 {
		font-size: 15px;
	}
}

/* Mobile - stack vertically (inherit from .add-flex behavior) */
@media screen and (max-width: 768px) {
	.add-row1 .add-flex-5 {
		display: flex;
		flex-direction: column;
		padding: 0 15px;
		gap: 18px;
		margin-bottom: 25px;
	}

	.add-row1 .add-flex-5 .adds {
		width: 100%;
	}

	.add-row1 .add-flex-5 .add1 {
		padding: 18px 15px;
	}

	.add-row1 .add-flex-5 .add1 h3 {
		font-size: 16px;
	}

	.add-row1 .add-flex-5 .add1 .tool-icon {
		font-size: 18px;
	}
}

/* Ensure colors match original .add-flex styling */
.add-row1 .add-flex-5 .add1 {
	background: white;
	border: 2px solid #4284fb;
}

.add-row1 .add-flex-5 .add1 h3 {
	color: #2e5fd9 !important;
	font-weight: 500;
}

[data-theme="dark"] .add-row1 .add-flex-5 .add1 {
	background-color: #181b2d;
	border-color: #4284fb;
}

[data-theme="dark"] .add-row1 .add-flex-5 .add1 h3 {
	color: #9fc0e0 !important;
}


.password {
	background-color: #f8f9fa;
	padding: 40px 0;
}

.password .container {
	border: none;
	border-radius: 0;
	padding: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	background: #f8f8f8;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	max-width: 1400px;
}


[data-theme="dark"] .password {
	background-color: #0e0f19;

}

[data-theme="dark"] .password .container {
	background: #181b2d;

	box-shadow: 0 2px 4px rgba(255, 255, 255, 0.05);
}

.password-row {
	margin-top: 20px;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0px;
	padding: 0px;
	background: #0e1016 !important;
	font-family: "Poppins", sans-serif !important;
}

.ring {
	-webkit-animation: ring 5s .8s ease-in-out infinite;
	-webkit-transform-origin: 50% 4px;
	-moz-animation: ring 5s .8s ease-in-out infinite;
	-moz-transform-origin: 50% 4px;
	animation: ring 5s .8s ease-in-out infinite;
	transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
	0% {
		-webkit-transform: rotateZ(0);
	}

	1% {
		-webkit-transform: rotateZ(30deg);
	}

	3% {
		-webkit-transform: rotateZ(-28deg);
	}

	5% {
		-webkit-transform: rotateZ(34deg);
	}

	7% {
		-webkit-transform: rotateZ(-32deg);
	}

	9% {
		-webkit-transform: rotateZ(30deg);
	}

	11% {
		-webkit-transform: rotateZ(-28deg);
	}

	13% {
		-webkit-transform: rotateZ(26deg);
	}

	15% {
		-webkit-transform: rotateZ(-24deg);
	}

	17% {
		-webkit-transform: rotateZ(22deg);
	}

	19% {
		-webkit-transform: rotateZ(-20deg);
	}

	21% {
		-webkit-transform: rotateZ(18deg);
	}

	23% {
		-webkit-transform: rotateZ(-16deg);
	}

	25% {
		-webkit-transform: rotateZ(14deg);
	}

	27% {
		-webkit-transform: rotateZ(-12deg);
	}

	29% {
		-webkit-transform: rotateZ(10deg);
	}

	31% {
		-webkit-transform: rotateZ(-8deg);
	}

	33% {
		-webkit-transform: rotateZ(6deg);
	}

	35% {
		-webkit-transform: rotateZ(-4deg);
	}

	37% {
		-webkit-transform: rotateZ(2deg);
	}

	39% {
		-webkit-transform: rotateZ(-1deg);
	}

	41% {
		-webkit-transform: rotateZ(1deg);
	}

	43% {
		-webkit-transform: rotateZ(0);
	}

	100% {
		-webkit-transform: rotateZ(0);
	}
}

@-moz-keyframes ring {
	0% {
		-moz-transform: rotate(0);
	}

	1% {
		-moz-transform: rotate(30deg);
	}

	3% {
		-moz-transform: rotate(-28deg);
	}

	5% {
		-moz-transform: rotate(34deg);
	}

	7% {
		-moz-transform: rotate(-32deg);
	}

	9% {
		-moz-transform: rotate(30deg);
	}

	11% {
		-moz-transform: rotate(-28deg);
	}

	13% {
		-moz-transform: rotate(26deg);
	}

	15% {
		-moz-transform: rotate(-24deg);
	}

	17% {
		-moz-transform: rotate(22deg);
	}

	19% {
		-moz-transform: rotate(-20deg);
	}

	21% {
		-moz-transform: rotate(18deg);
	}

	23% {
		-moz-transform: rotate(-16deg);
	}

	25% {
		-moz-transform: rotate(14deg);
	}

	27% {
		-moz-transform: rotate(-12deg);
	}

	29% {
		-moz-transform: rotate(10deg);
	}

	31% {
		-moz-transform: rotate(-8deg);
	}

	33% {
		-moz-transform: rotate(6deg);
	}

	35% {
		-moz-transform: rotate(-4deg);
	}

	37% {
		-moz-transform: rotate(2deg);
	}

	39% {
		-moz-transform: rotate(-1deg);
	}

	41% {
		-moz-transform: rotate(1deg);
	}

	43% {
		-moz-transform: rotate(0);
	}

	100% {
		-moz-transform: rotate(0);
	}
}

@keyframes ring {
	0% {
		transform: rotate(0);
	}

	1% {
		transform: rotate(30deg);
	}

	3% {
		transform: rotate(-28deg);
	}

	5% {
		transform: rotate(34deg);
	}

	7% {
		transform: rotate(-32deg);
	}

	9% {
		transform: rotate(30deg);
	}

	11% {
		transform: rotate(-28deg);
	}

	13% {
		transform: rotate(26deg);
	}

	15% {
		transform: rotate(-24deg);
	}

	17% {
		transform: rotate(22deg);
	}

	19% {
		transform: rotate(-20deg);
	}

	21% {
		transform: rotate(18deg);
	}

	23% {
		transform: rotate(-16deg);
	}

	25% {
		transform: rotate(14deg);
	}

	27% {
		transform: rotate(-12deg);
	}

	29% {
		transform: rotate(10deg);
	}

	31% {
		transform: rotate(-8deg);
	}

	33% {
		transform: rotate(6deg);
	}

	35% {
		transform: rotate(-4deg);
	}

	37% {
		transform: rotate(2deg);
	}

	39% {
		transform: rotate(-1deg);
	}

	41% {
		transform: rotate(1deg);
	}

	43% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(0);
	}
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
a,
ul,
li {
	margin: 0px;
	padding: 0px;
}

.banner-row .p2 {
	border-bottom: 1px solid #fff;
	padding-bottom: 2px;
	margin: 15px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-family: "Poppins", sans-serif;
	font-weight: normal;
	font-size: 18px;
	color: #fff;
	line-height: 35px;
}

.navbar-dark .navbar-nav .nav-link {
	font-size: 20px;
	color: #fff;
}


li>a:after {
	content: '';
	display: block;
	height: 1.5px;
	background: #Fff;
	transform: scaleX(0);
	transition: transform .3s;
}

li>a:hover:after {
	transform: scaleX(1);
	transition: transform .3s;
}

a {
	text-decoration: none !important;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-ms-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

a:hover {
	text-decoration: underline;
	font-weight: bold;
}

p a {
	text-decoration: underline !important;
}

ul {
	list-style-type: none;
}

.clear {
	clear: both;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
	display: block;
	max-width: 100%;
	height: auto;
}

.grid {
	margin: 0px auto;
	width: 1645px;
	padding: 0px 15px;
}


.banner {
	margin: 0px 0px 0px 0px;
	padding: 50px 0px 120px 0px;
	background: linear-gradient(-220deg, #3c5fec, #376fdd);
	overflow: hidden;
	width: 100%;
	border-bottom: 2px solid whitesmoke;
}


.menu {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.menu-row {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

a.logo {
	margin: 0px 0px 0px 30px;
	padding: 0px 0px 0px 0px;
	font-size: 24px;
	color: #ffffff;
	font-weight: bold;
	font-family: "Helvetica Neue";
}

a.logo:hover {
	color: #ffffff;
	border-bottom: 2px solid #fff;

}

.menu-row ul {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.menu-row ul li {
	margin: 0px 60px 0px 0px;
	padding: 0px 0px 0px 0px;
	float: left;
}

.menu-row ul li a {
	margin: 0px 0px 0px 0px;
	padding: 0px 10px 15px 10px;
	font-weight: normal;
	font-size: 20px;
	color: #ffffff;
	border-bottom: 2px solid transparent;
}

.menu-row ul li a:hover {
	border-bottom: 2px solid #fff;
}

.menu-row ul li.last {
	margin: 0px 0px 0px 0px;
}

.menu-row ul li.last a:hover {
	border-bottom: 2px solid transparent;
}

i.bx {
	font-size: 26px;
}


.banner-row {
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 40px 0px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

/* Index page specific: allow wrapping for responsive layout */
.banner-row:has(.add-row) {
	flex-wrap: wrap;
	gap: 30px;
}

.banner-left {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	max-width: 700px;
	width: 100%;
	flex: 1 1 450px;
}

.banner-text {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.banner-text h1 {
	margin: 0px 0px 15px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	font-size: 48px;
	color: #ffffff;
}

.banner-text p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #ffffff;
	line-height: 36px;
}

.mail-box {
	margin: 30px 0px 10px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
}

input.name {
	margin: 0px 0px 0px 0px;
	padding: 0px 15px 0px 20px;
	font-weight: normal;
	font-size: 20px;
	color: #3a4b5e;
	line-height: 60px;
	border-radius: 3px;
	width: calc(100% - 120px);
}

input.check-btn {
	margin: 0px 0px 0px 18px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #fff;
	text-align: center;
	line-height: 60px;
	border: 2px solid #ccc;
	border-radius: 3px;
	background: #28a745;
	width: 120px;
	display: block;
}

input.check-btn:hover {
	color: #fff;
	background: #218828;
}

img.play-icon {
	margin: 0px 0px 0px 0px;
}

img.bnr-right {
	margin: 0px 0px 0px 0px;
}

.banner-right {
	margin: 0px;
	padding: 80px 0px 0px 0px;
	max-width: 700px;
	width: 100%;
	flex: 1 1 450px;
}

/* Divider line - only for index pages (banner-row containing .add-row) */
.banner-row:has(.add-row)::after {
	content: "";
	width: 1px;
	height: 300px;
	max-height: 70%;
	background-color: white;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 1199px) {
	.banner-row:has(.add-row)::after {
		display: none;
	}
}

/* Index page specific: smaller tool boxes at medium-large screens */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
	.banner-right.add-row {
		padding-top: 40px;
	}

	.banner-right.add-row .add1 {
		min-width: 150px;
		padding: 12px 10px;
	}

	.banner-right.add-row .add1 h3 {
		font-size: 14px;
	}
}

.password {
	margin: 0px 0px 0px 0px;
	padding: 50px 0px 50px 0px;
	background: #fff;
	overflow: hidden;
	width: 100%;
}

.password-row {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.password-left {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width: 810px;
}

.password-text {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.password-text h2 {
	margin: 0px 0px 40px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	font-size: 36px;
	color: #3a4b5e;
}

.password-text p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #3a4b5e;
	line-height: 32px;
}

.password-text p.last {
	margin: 25px 0px 0px 0px;
}

a.view {
	margin: 20px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: 500;
	font-size: 20px;
	color: #417ff9;
	display: block;
}

.password-right {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

img.pass {
	margin: 0px 0px 0px 0px;
	padding-left: 80px;
}

.video-container {
	position: relative;
	display: inline-block;
	margin: 0px 0px 0px 0px;
	padding-left: 80px;
}


.guid {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 100px 0px;
	background: #fff;
	overflow: hidden;
	width: 100%;
}

.guid h2 {
	margin: 0px 0px 45px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	font-size: 36px;
	color: #3a4b5e;
	text-align: center;
}

.guid-row {
	margin: 0px 0px 0px 0px;
	padding: 30px;
	border-radius: 20px;
	border: 1px solid #707070;
}

img.code {
	margin: 0px auto 0px auto;
	display: block;
}

ul.list-group {
	margin: 0px 0px 0px 0px;
	padding: 10px;
	flex-direction: inherit;
	background: #ebedef;
	border-radius: 40px;
	width: max-content;
}

ul.list-group li {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	float: left;
}

ul.list-group li a {
	margin: 0px 0px 0px 0px;
	padding: 0px 30px 0px 30px;
	font-size: 16px;
	color: #929ca6;
	font-weight: 500;
	text-align: center;
	display: block;
	width: 100%;
	line-height: 42px;
	border-radius: 40px !important;
	background: transparent;
	border: none;
}

ul.list-group li a:hover {
	color: #fff;
	background: #3a4b5e !important;
}

.list-group-item.active {
	z-index: 2;
	color: #fff;
	background: #3a4b5e !important;
	border: none;
}

ul.list-group li.last {
	margin: 0px 0px 0px 10px;
}

.tab-content {
	margin: 25px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.tab-content p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 20px;
	line-height: 28px;
	color: #616f7e;
	font-weight: normal;
}

.footer {
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 20px 0px;
	background: #fff;
	overflow: hidden;
	width: 100%;
	border-top: 1px solid #ebedef;
}

.footer .container {
	max-width: 90% !important;
	width: 90% !important;
}

.footer-row {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-row p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: 500;
	font-size: 13px;
	color: #3a4b5e;
}

.footer-row ul {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.footer-row ul li {
	margin: 0px 10px 0px 0px;
	padding: 0px 0px 0px 0px;
	float: left;
}

.footer-row ul li a {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	display: block;
	background: #d8dbdf;
	width: 40px;
	line-height: 40px;
	border-radius: 3px;
}

.footer-row ul li a:hover {
	color: #fff;
	background: #d8dbdf;
}

.footer-row ul li.last {
	margin: 0px 0px 0px 0px;
}


img.bnr-right2 {
	display: none;
}

img.pass2 {
	display: none;
}

.mo-menu {
	display: none;
}

@media (max-width: 1700px) and (min-device-width: 280px) {
	.grid {
		width: 100%;
		padding: 0px 15px;
	}
}

@media (max-width: 1199px) and (min-device-width: 992px) {
	.footer-row {
		display: block;
	}

	.footer-row p {
		text-align: center;
	}

	.footer-row ul {
		margin: 20px auto 0px auto;
		width: max-content;
	}
}

@media (max-width: 991px) and (min-device-width: 768px) {

	.menu-row ul li {
		margin: 0px 30px 0px 0px;
	}


	.banner-row {
		display: block;
	}

	.banner-left {
		display: block;
		width: 100%;
	}

	.banner-text {
		margin: 110px 0px 0px 0px;
		text-align: center;
	}

	.banner-text h1 {
		font-size: 43px;
	}

	img.bnr-right2 {
		display: block;
		margin: 0px auto;
	}

	img.bnr-right {
		display: none;
	}

	.banner-right {
		display: none;
	}
}

/* Index page specific: hide tools panel and stack layout earlier (at 1199px) */
@media (max-width: 1199px) and (min-device-width: 768px) {
	/* Only stack banner-row when it contains the tools panel (index pages) */
	.banner-row:has(.add-row) {
		display: block;
	}

	.banner-row:has(.add-row) .banner-left {
		display: block;
		width: 100%;
	}

	.banner-row:has(.add-row) .banner-text {
		text-align: center;
	}

	.banner-right.add-row {
		display: none;
	}
}

/* Tablet breakpoint (991px) - applies to all pages */
@media (max-width: 991px) and (min-device-width: 768px) {
	img.pass2 {
		margin: 0px 0px 40px 0px;
		display: block;
	}

	img.pass {
		display: none;
	}

	.password-row {
		flex-direction: column;
	}

	.password-left {
		width: 100%;
		order: 2;
	}

	.password-right {
		width: 100%;
		order: 1;
		margin-bottom: 30px;
	}

	.password-right video.pass {
		display: block;
		max-width: 100%;
		height: auto !important;
		padding-left: 0;
		margin: 0 auto;
	}

	.password-right .video-container {
		padding-left: 0;
		width: 100%;
		display: block;
	}

	.password-text {
		text-align: center;
	}

	.password {
		padding: 75px 0px 70px 0px;
	}

	.footer-row {
		display: block;
	}

	.footer-row p {
		text-align: center;
	}

	.footer-row ul {
		margin: 20px auto 0px auto;
		width: max-content;
	}
}

@media (max-width: 767px) and (min-device-width: 280px) {

	.menu-row ul li {
		margin: 0px 30px 0px 0px;
	}

	.banner {
		padding: 20px 0px 60px 0px;
	}

	.banner-row {
		display: block;
	}

	.banner-left {
		display: block;
		width: 100%;
	}

	.banner-text {
		margin: 110px 0px 0px 0px;
		text-align: center;
	}

	.banner-text h1 {
		font-size: 27px;
	}

	.banner-text p {
		font-size: 15px;
		line-height: 26px;
	}

	img.bnr-right2 {
		display: block;
		margin: 0px auto;
	}

	img.bnr-right {
		display: none;
	}

	.banner-right {
		display: none;
	}

	input.name {
		padding: 0px 15px 0px 15px;
		font-size: 14px;
		width: 70%;
	}

	input.check-btn {
		width: 100px;
		font-size: 14px;
	}


	.password-text h2 {
		margin: 0px 0px 20px 0px;
		font-size: 27px;
	}

	.password-text p {
		font-size: 15px;
		line-height: 22px;
	}

	.password-text p.last {
		margin: 15px 0px 0px 0px;
	}

	.guid h2 {
		margin: 0px 0px 35px 0px;
		font-size: 30px;
	}

	img.pass2 {
		margin: 0px 0px 40px 0px;
		display: block;
	}

	img.pass {
		display: none;
	}

	.password-row {
		flex-direction: column;
	}

	.password-left {
		width: 100%;
		order: 2;
	}

	.password-right {
		width: 100%;
		order: 1;
		margin-bottom: 30px;
	}

	.password-right video.pass {
		display: block;
		max-width: 100%;
		height: auto !important;
		padding-left: 0;
		margin: 0 auto;
	}

	.password-right .video-container {
		padding-left: 0;
		width: 100%;
		display: block;
	}

	.password-text {
		text-align: center;
	}

	.password {
		padding: 55px 0px 40px 0px;
	}


	.footer-row {
		display: block;
	}

	.footer-row p {
		text-align: center;
	}

	.footer-row ul {
		margin: 20px auto 0px auto;
		width: max-content;
	}
}

@media (max-width: 767px) and (min-device-width: 280px) {
	.mo-menu {
		display: block;
	}

	.menu {
		display: none;
	}


	.mo-menu {
		display: block;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
	}

	.mo-menu .main {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 0;
	}


	.mo-menu .main .logo-block {
		width: 20%;
	}

	.mo-menu .main .logo-block a img {
		width: 100%;
	}


	.mnu {
		margin: 0;
		padding: 0px 0px 0px 0px;
		width: 50px;
		float: right;
	}

	.offcanvas-end {
		width: 250px;
	}

	.offcanvas-header {
		background: var(--accent-color);
	}

	.offcanvas-body {
		background: var(--accent-color);
	}

	button#first {
		margin: 0px 0px 0px 0px;
		padding: 8px 0px 8px 0px;
		background: #fff;
		width: 100%;
	}

	.btn-check:focus+.btn,
	.btn:focus {
		outline: 2px solid #3f71f3;
		outline-offset: 2px;
		box-shadow: none !important;
	}

	.offcanvas-header .btn-close {
		background-color: #fff;
		opacity: 1;
		width: 25px;
		height: 25px;
	}


	span.mid {
		margin: 5px auto 5px auto !important;
	}

	#main {
		transition: margin-left 0.5s;
	}

	.texts {
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
	}

	ul.menus {
		display: block;
		margin: 20px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
	}

	ul.menus li {
		margin: 0px 0px 20px 0px;
		padding: 0px 0px 0px 0px;
	}

	ul.menus li.last {
		margin: 0px 0px 0px 0px;
	}

	ul.menus li a {
		font-size: 18px;
		font-weight: 400;
		color: var(--white-color);
		display: block;
		border-bottom: 2px solid transparent;
	}

	ul.menus li a.active {
		color: #fac809;
		border-bottom: 2px solid #fac809;
	}

	ul.menus li a:hover {
		color: #fac809;
		border-bottom: 2px solid #fac809;
	}

	ul.menus li.last {
		margin: 0px 0px 0px 0px;
	}

	.offcanvas-body .btn {
		width: 80%;
		line-height: 45px;
		font-size: 16px;
		color: var(--white-color);
		font-weight: 600;
		background-color: var(--accent-color);
		border-radius: 5px;
		display: block;
	}

	.offcanvas-body .btn:hover {
		background-color: #ffd61f;
	}

	.offcanvas {
		position: absolute !important;
		bottom: inherit !important;
		z-index: var(--bs-offcanvas-zindex);
		display: flex;
		flex-direction: column;
		max-width: 230px !important;
		color: var(--bs-offcanvas-color);
		visibility: hidden;
		background-color: var(--bs-offcanvas-bg);
		background-clip: padding-box;
		outline: 0;
		transition: transform 0.3s ease-in-out;
		height: 290px;
		top: 68px !important;
		right: 31px !important;
		border-radius: 15px;
	}

	.dropdown-toggle::after {
		display: inline-block;
		margin-left: .255em;
		vertical-align: .255em;
		content: "";
		border-top: .3em solid;
		border-right: .3em solid transparent;
		border-bottom: 0;
		border-left: .3em solid transparent;
		border-bottom: 1px solid white;
		padding-bottom: 3px;
	}

	.dropdown-toggle:focus {
		outline: 2px solid rgba(255, 255, 255, 0.8);
		outline-offset: 2px;
		box-shadow: none !important;
		border-bottom: 1px solid white;
		padding-bottom: 3px;
	}

	ul.dropdown-menu {
		inset: 6px 0px auto auto !important;
	}

	.dropdown-item {
		border-bottom: 1px solid white;
		padding-bottom: 3px;
	}

	.dropdown-item:hover {
		color: #fac809 !important;
		border-bottom: 2px solid #fac809 !important;
		border-bottom: 1px solid white;
		padding-bottom: 3px;
	}

	ul.dropdown-menu li.last .dropdown-item:hover {
		border-bottom: 1px solid white;
		padding-bottom: 3px;
	}
}


.banner-text p.last {
	margin: 15px 0px 0px 0px;
}


.follow {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background: #fff;
	overflow: hidden;
	width: 100%;
}

.follow-row {
	margin: 0px 0px 0px 0px;
	padding: 40px;
	background: #f8f8f8;
	overflow: hidden;
	border-radius: 15px;
}

.follow-flex {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	column-count: 4;
	column-gap: 18px;
}

.follow1 {
	margin: 0px 0px 0px 0px;
	padding: 35px 25px;
	width: 100%;
	border: none;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	position: relative;
	overflow: hidden;
}

.follow1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3f71f3, #5b8aff);
	opacity: 0;
	transition: opacity 300ms ease;
}

.follow1:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.follow1:hover::before {
	opacity: 1;
}

/* Stat Icons */
.stat-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	transition: transform 300ms ease;
}

.follow1:hover .stat-icon {
	transform: scale(1.1);
}

/* Color-coded stat cards */
.stat-breaches .stat-icon {
	background: linear-gradient(135deg, #ff6b6b, #ff8787);
	color: #fff;
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.stat-records .stat-icon {
	background: linear-gradient(135deg, #3f71f3, #5b8aff);
	color: #fff;
	box-shadow: 0 4px 12px rgba(63, 113, 243, 0.3);
}

.stat-emails .stat-icon {
	background: linear-gradient(135deg, #a855f7, #c084fc);
	color: #fff;
	box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.stat-passwords .stat-icon {
	background: linear-gradient(135deg, #10b981, #34d399);
	color: #fff;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Stat number styling */
.follow1 .stat-number {
	font-weight: 700;
	color: #2c3e50;
	margin: 10px 0;
	font-size: 1.5em;
}

.follow1 h3 {
	color: #64748b;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.85em;
}


.follow-row p {
	margin: 25px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #3a4b5e;
	text-align: center;
}

.follow-row p a {
	color: #2e5fd9;
}

[data-theme="dark"] .follow-row p a {
	color: #5b9aff;
}

.stats-context {
	font-size: 1.1em;
	font-weight: 500;
	color: #3f71f3;
	margin: 20px 0 10px 0;
	font-style: italic;
}

[data-theme="dark"] .stats-context {
	color: #5b9aff;
}

.add {
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 120px 0px;
	background: #fff;
	overflow: hidden;
	width: 100%;
}

.add .container {
	max-width: 1400px;
}

.add h2 {
	margin: 0px 0px 40px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 40px;
	color: #3a4b5e;
	font-weight: 500;
	text-align: center;
}

.add-row {
	margin: 0px 0px 0px 0px;
	padding: 40px;
	background: whitesmoke;
	border-radius: 15px;
}

.add-row1 {
	margin: 0px 0px 0px 0px;
	padding: 40px;
	background: #f8f8f8;
	border-radius: 15px;
}

.add-flex {
	margin: 0px 0px 20px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	column-count: 3;
	column-gap: 20px;
}

a.adds {
	width: 100%;
}

.add1 {
	margin: 0px 0px 0px 0px;
	padding: 22px 18px 22px 18px;
	width: 100%;
	border: 2px solid #4284fb;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-ms-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
	position: relative;
}

.add1:hover {
	box-shadow: 0px 0px 15px 0px rgba(17, 17, 239, 0.25);
	border: 2px solid transparent;
}

.add1 .tooltip-text {
	visibility: hidden;
	width: 240px;
	background-color: #005ce6;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 8px;

	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;

	opacity: 0;
	transition: opacity 0.3s;
}

/* Tooltip arrow */
.add1 .tooltip-text::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #ff0 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.add1:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
}

[data-theme="dark"] .add1:hover {
	box-shadow: 0px 0px 15px 0px rgba(248, 248, 251, 0.25);
	border: 2px solid transparent;
}

[data-theme="dark"] .password {
	margin: 0px 0px 0px 0px;
	padding: 50px 0px 50px 0px;
	background: #181b2d;
	overflow: hidden;
	width: 100%;
}

.add1 h3 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 20px;
	color: #2e5fd9;
	font-weight: 500;
}

img.arrow {
	margin: 0px 0px 0px 0px;
	filter: invert(44%) sepia(69%) saturate(2254%) hue-rotate(206deg) brightness(100%) contrast(97%);
}

.tool-icon {
	font-size: 18px;
	color: #4284fb;
	margin-right: 10px;
	flex-shrink: 0;
}

.add1 h3 {
	flex-grow: 1;
	text-align: left;
}

.add1:hover .tool-icon {
	transform: scale(1.1);
	transition: transform 0.3s ease;
}

[data-theme="dark"] .tool-icon {
	color: #5b9aff;
}

.add1:hover img.arrow {
	-webkit-animation: mover 300ms 4 alternate;
	animation: mover 300ms 4 alternate;
}

@-webkit-keyframes mover {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-10px);
	}
}

@keyframes mover {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-10px);
	}
}

.add11 {
	margin: 0px 0px 0px 0px;
	border: none;
}

.add11:hover {
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
	border: 0px solid transparent;
}

.add-flex2 {
	margin: 0px 0px 0px 0px;
}

.add p {
	margin: 20px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #3a4b5e;
	text-align: center;
}

.add p a {
	color: #2e5fd9;
	text-decoration: underline !important;
}

[data-theme="dark"] .add p a {
	color: #5b9aff;
}


@media (max-width: 1199px) and (min-device-width: 992px) {
	/******* follow **/

	.follow-flex {
		display: block;
	}

	.follow1 {
		padding: 15px;
	}

	.stat-icon {
		width: 55px;
		height: 55px;
		font-size: 26px;
	}
}

@media (max-width: 991px) and (min-device-width: 768px) {
	/******* follow **/

	.follow-flex {
		display: block;
	}

	.follow1 {
		padding: 20px;
	}

	.stat-icon {
		width: 55px;
		height: 55px;
		font-size: 26px;
	}


	.add1 {
		padding: 16px 10px 16px 10px;
	}

	.add1 h3 {
		font-size: 15px;
	}
}

@media (max-width: 767px) and (min-device-width: 280px) {

	.follow-row {
		padding: 20px;
	}

	.follow-flex {
		display: block;
		column-count: 1;
		column-gap: 0;
	}

	.follow1 {
		margin: 0px 0px 20px 0px;
		padding: 25px 15px;
	}

	.stat-icon {
		width: 50px;
		height: 50px;
		font-size: 24px;
		margin: 0 auto 15px;
	}

	.follow1 .stat-number {
		margin: 8px 0;
		font-size: 24px;
		text-align: center;
	}

	.follow1 h3 {
		font-size: 0.8em;
	}


	.add {
		padding: 50px 0px 50px 0px;
	}

	.add h2 {
		margin: 0px 0px 20px 0px;
		font-size: 30px;
	}

	.add-row {
		padding: 20px;
	}

	.add-flex {
		margin: 0px 0px 0px 0px;
		display: block;
		column-count: 1;
		column-gap: 0;
	}

	.add1 {
		margin: 0px 0px 20px 0px;
		padding: 16px 10px 16px 10px;
	}

	.add1 h3 {
		font-size: 15px;
	}

	.add p {
		margin: 20px 0px 0px 0px;
		font-size: 14px;
	}

	.add11 {
		display: none;
	}
}


.banner3 {
	margin: 0px 0px 0px 0px;
	padding: 50px 0px 60px 0px;
	background: linear-gradient(-220deg, #3c5fec, #376fdd);
	overflow: hidden;
	width: 100%;
}


.banner-flex {
	margin: 80px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.banner-flex h2 {
	margin: 0px 0px 88px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 48px;
	color: #f8f8f8;
	font-weight: bold;
	text-align: center;
}

.prize-row {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	column-count: 3;
	column-gap: 20px;
}

.prize1 {
	margin: 0px 0px 0px 0px;
	padding: 50px 50px 50px 50px;
	width: 100%;
	background: #ebe6fe;
	border-radius: 20px;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-ms-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

.prize1:hover {
	margin: -40px 0px 0px 0px;
	padding: 90px 50px 50px 50px;
}

.prize1-box {
	margin: 0px auto 25px auto;
	padding: 0px 0px 0px 0px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: #d4c9fd;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-ms-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

.prize1:hover .prize1-box {
	background: #c2a9fc;
}

.prize1-box h4 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 64px;
	color: #844ef9;
	font-weight: bold;
	text-align: center;
	display: flex;
	align-items: center;
	font-style: italic;
}

.prize1-box h4 span {
	font-size: 35px;
	font-weight: 500;
}

.prize1 h5 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 28px;
	color: #3a4b5e;
	font-weight: bold;
	text-align: center;
}

.prize1 p {
	margin: 10px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 20px;
	color: #3a4b5e;
	font-weight: normal;
	text-align: center;
}

img.cup {
	margin: 0px auto;
	display: block;
}


.lists {
	margin: 0px 0px 0px 0px;
	padding: 30px 0px 0px 0px;
	overflow: hidden;
	width: 100%;
}

.lists-row {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.lists1 {
	margin: 0px 0px 20px 0px;
	padding: 25px 30px;
	background: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-ms-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

@-webkit-keyframes mover {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}

@keyframes mover {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}

.lists1-left {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	align-items: center;
}

.lists1-left h4 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 32px;
	color: #844ef9;
	font-weight: bold;
	display: flex;
	align-items: center;
	font-style: italic;
}

.lists1-left h4 span {
	font-size: 20px;
	font-weight: normal;
}

.lists1-left h5 {
	margin: 0px 0px 0px 65px;
	padding: 0px 0px 0px 0px;
	font-size: 24px;
	color: #3a4b5e;
	font-weight: 500;
}

.lists1 p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 24px;
	color: #89939e;
	font-weight: 500;
}


.achive {
	margin: 0px 0px 0px 0px;
	padding: 80px 0px 145px 0px;
	background: #f8f8f8;
	width: 100%;
	overflow: hidden;
}

.achive h2 {
	margin: 0px 0px 44px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	font-size: 36px;
	color: #3a4b5e;
	text-align: center;
}

.achive-row {
	margin: 0px 0px 0px 0px;
	padding: 35px;
	border: 1px solid #707070;
	border-radius: 10px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.achive-row ul {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.achive-row ul.one {
	width: 160px;
}

.achive-row ul.two {
	width: 340px;
}

.achive-row ul.three {
	width: 425px;
}

.achive-row ul.five {
	width: 425px;
}

.achive-row ul li {
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 10px 0px;
	font-size: 22px;
	color: #616f7e;
	font-weight: normal;
	border-bottom: 1px solid #f8f8f8;
}

.achive-row ul li.head {
	padding: 0px 0px 5px 0px;
	font-size: 22px;
	color: #3a4b5e;
	font-weight: bold;
	border-bottom: 0px solid #f8f8f8;
}

.achive-row ul li.last {
	margin: 0px 0px 0px 0px;
}


.achive-row2 {
	display: none;
}

@media (max-width: 1199px) and (min-device-width: 992px) {

	.achive-row ul.one {
		width: 15%;
	}

	.achive-row ul.two {
		width: 35%;
	}

	.achive-row ul.three {
		width: 35%;
	}

	.achive-row ul.five {
		width: 15%;
	}
}

@media (max-width: 991px) and (min-device-width: 768px) {

	.prize-row {
		column-gap: 15px;
	}

	.prize1 {
		padding: 30px 20px 30px 20px;
	}

	.prize1:hover {
		margin: -40px 0px 0px 0px;
		padding: 70px 20px 30px 20px;
	}

	.prize1-box {
		margin: 0px auto 25px auto;
		width: 180px;
		height: 180px;
	}

	.prize1-box h4 {
		font-size: 44px;
	}

	.prize1 h5 {
		font-size: 17px;
	}

	.prize1 p {
		margin: 6px 0px 0px 0px;
		font-size: 15px;
	}

	.achive {
		padding: 50px 0px 75px 0px;
	}

	.achive h2 {
		font-size: 29px;
	}

	.achive-row ul.one {
		width: 7%;
	}

	.achive-row ul.two {
		width: 40%;
	}

	.achive-row ul.three {
		width: 36%;
	}

	.achive-row ul.five {
		width: 15%;
	}
}

@media (max-width: 767px) and (min-device-width: 280px) {

	.banner3 {
		padding: 20px 0px 60px 0px;
	}

	.banner-flex {
		margin: 50px 0px 0px 0px;
	}

	.banner-flex h2 {
		margin: 0px 0px 58px 0px;
		font-size: 38px;
	}


	.prize-row {
		column-gap: 0;
		display: block;
		column-count: 1;
	}

	.prize1 {
		margin: 0px 0px 20px 0px;
		padding: 30px 20px 30px 20px;
	}

	.prize1:hover {
		margin: -10px 0px 20px 0px;
		padding: 50px 20px 30px 20px;
	}

	.prize1-box {
		margin: 0px auto 25px auto;
		width: 180px;
		height: 180px;
	}

	.prize1-box h4 {
		font-size: 44px;
	}

	.prize1 h5 {
		font-size: 17px;
	}

	.prize1 p {
		margin: 6px 0px 0px 0px;
		font-size: 15px;
	}


	.lists1 {
		margin: 0px 0px 20px 0px;
		padding: 15px 15px;
		display: block;
		text-align: center;
	}

	.lists1-left {
		display: block;
	}

	.lists1-left h4 {
		margin: 0px auto;
		display: block;
	}

	.lists1-left h5 {
		margin: 0px 0px 0px 0px;
	}

	.achive {
		padding: 50px 0px 75px 0px;
	}

	.achive h2 {
		font-size: 22px;
		margin: 0px 0px 34px 0px;
	}

	.achive-row {
		padding: 0px;
		display: none;
	}

	.achive-row2 {
		display: block;
		overflow: hidden;
	}

	.achive-row ul.one {
		width: 100%;
		text-align: center;
	}

	.achive-row ul.onee {
		background: #f4f4f4;
	}

	.achive-row ul li.head {
		padding: 10px 0px 10px 0px;
		border-bottom: 1px solid #f8f8f8;
	}

	.achive-row ul li.last {
		border: none;
	}

	.banner-row .p2 {
		border-bottom: 1px solid #fff;
		padding-bottom: 2px;
		margin: 15px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		font-family: "Poppins", sans-serif;
		font-weight: normal;
		font-size: 18px;
		color: #fff;
		line-height: 35px;
	}

	.banner-row .banner-left .banner-text .p2 {
		border-bottom: 1px solid #fff;
		padding-bottom: 2px;
		margin: 15px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		font-family: "Poppins", sans-serif;
		font-weight: normal;
		font-size: 18px;
		color: #fff;
		line-height: 35px;
	}

	.banner-row p2 a {
		font-weight: bold;
	}
}

[data-theme="dark"] {
	background-color: #0e0f19 !important;
	color: #9fc0e0;
}

[data-theme="dark"] .password-text h2 {
	margin: 0px 0px 40px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	font-size: 36px;
	color: #9fc0e0;
}

[data-theme="dark"] .guid {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 100px 0px;
	background: #0e0f19;
	overflow: hidden;
	width: 100%;
	color: #9fc0e0;
}

[data-theme="dark"] .guid h2 {
	margin: 0px 0px 45px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	font-size: 36px;
	color: #9fc0e0;
	text-align: center;
}

[data-theme="dark"] .bg-light {
	background-color: #333 !important;
}

[data-theme="dark"] .navbar-toggler-icon {
	color: #fff;
}


[data-theme="dark"] .bg-white {
	background-color: #000 !important;
}

[data-theme="dark"] .bg-black {
	background-color: #eee !important;
}

[data-theme="dark"] .xon {
	background-color: #0e0f19;
}

[data-theme="dark"] .searchMe {
	background-color: #0e0f19;
}

[data-theme="dark"] .add-row {
	background-color: #181b2d;
	color: #9fc0e0;
}

[data-theme="dark"] .add-row1 {
	background-color: #181b2d;
	color: #9fc0e0;
}

[data-theme="dark"] .add1 {
	background-color: #181b2d;
	color: #9fc0e0;
	border-color: #4284fb;
}

[data-theme="dark"] .add1:hover {
	box-shadow: 0px 0px 15px 0px rgba(248, 248, 251, 0.25);
	border: 2px solid transparent;
}

[data-theme="dark"] .add1 h3 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 20px;
	color: #9fc0e0;
	font-weight: 500;
}

[data-theme="dark"] .password-text p {
	margin: 0px 0px 0px 0px;
	padding: 50px 0px 50px 0px;
	color: #9fc0e0;
	overflow: hidden;
	width: 100%;
	background-color: #181b2d;
	align: justify-content
}


[data-theme="dark"] .add {
	color: #fff;

	background-color: #0e0f19;
}

[data-theme="dark"] .follow {
	color: #9fc0e0;

	background-color: #0e0f19;
}

[data-theme="dark"] .follow-row {
	color: #9fc0e0;
	overflow: hidden;

	background-color: #181b2d;
}

[data-theme="dark"] .follow1 {
	color: #9fc0e0;
	background-color: #1a1f3a;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .follow1:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .follow1 .stat-number {
	color: #ffffff;
}

[data-theme="dark"] .follow1 h3 {
	color: #9fc0e0;
}

[data-theme="dark"] .footer {
	color: #9fc0e0;

	background-color: #0e0f19;
}

[data-theme="dark"] .password-row {
	color: #9fc0e0;
	background-color: #181b2d;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

[data-theme="dark"] .guid-row {
	margin: 0px 0px 0px 0px;
	padding: 30px;
	border-radius: 20px;
	border: 1px solid #707070;
	color: #9fc0e0;
	background-color: #181b2d;
}

[data-theme="dark"] .guid-row pre {
	margin: 0px 0px 0px 0px;
	padding: 30px;
	border-radius: 20px;
	color: #9fc0e0;
	background-color: #181b2d;
}

[data-theme="dark"] .password {
	color: #9fc0e0;
	background-color: #181b2d;
	margin: 0px 0px 40px 0px;
	padding: 0px 0px 0px 0px;
	overflow: hidden;
	width: 100%;
}

[data-theme="dark"] .about2 {
	background-color: #181b2d;
	color: #9fc0e0;
}

[data-theme="dark"] .about2 p {
	color: #9fc0e0;
}

[data-theme="dark"] .panel-body {
	color: #9fc0e0;
	background-color: #0e0f19;
}

[data-theme="dark"] td {
	color: #9fc0e0;
	background-color: #0e0f19;
}

[data-theme="dark"] th {
	color: #9fc0e0;
	background-color: #0e0f19;
}

[data-theme="dark"] .about2 ul li a {
	color: #9fc0e0;
}

[data-theme="dark"] .about1 {
	background-color: #181b2d;
	color: #9fc0e0;
}

[data-theme="dark"] .about1 pre {
	color: #9fc0e0;
}

[data-theme="dark"] .banner-text h1 {
	margin: 0px 0px 15px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	//	font-size: 48px;
	color: #9fc0e0;
}

[data-theme="dark"] .banner-text p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #9fc0e0;
	line-height: 36px;
}

[data-theme="dark"] .follow-row p {
	margin: 25px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #9fc0e0;
	text-align: center;
}

[data-theme="dark"] .add p {
	margin: 25px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #9fc0e0;
	text-align: center;
}

[data-theme="dark"] .footer-row p {
	margin: 25px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 12px;
	color: #9fc0e0;
	text-align: center;
}

.modal-header-success {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #3d8b3d;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-warning {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #b06d09;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-danger {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #d9534f;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-info {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #1f7f9c;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-primary {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #428bca;
	-webkit-border-top-left-radius: 5px;
}

/* Fix modal header centering */
#hhead {
	display: block !important;
	text-align: center;
	position: relative;
}

#hhead .close {
	position: absolute;
	right: 15px;
	top: 15px;
	color: #fff;
	opacity: 0.8;
}

#hhead .close:hover {
	opacity: 1;
}

.modal-dialog {
	max-width: 800px !important;
	margin: 30px auto;
}

.modal-body {
	position: relative;
	padding: 0px;
}

/* Prevent modal from growing too tall with many breach results */
#thedudalModal .modal-body {
	max-height: 60vh;
	overflow-y: auto;
}


[data-theme="dark"] .about1 p {
	color: #9fc0e0;
}

[data-theme="dark"] .about1 ul li a {
	color: #9fc0e0;
}

[data-theme="dark"] .main-footer {
	background-color: #0e0f19;
}

[data-theme="dark"] .banner {
	background-color: #181b2d;
	background: #181b2d;
}

@media only screen and (max-width: 1600px) {
	#chart {
		width: 100% !important;
		height: auto !important;
	}
}

@media only screen and (max-width: 991px) {
	#chart {
		width: 100% !important;
		height: auto !important;
	}

	div.tooltip {
		width: 250px !important;
		left: 40% !important;
		padding: 10px !important;
	}
}

@media only screen and (max-width: 767px) {

	div.tooltip {
		left: 25% !important;
	}

}

.arrow {
	border-width: 0 6px 6px 0;
	display: inline-block;
	padding: 6px;
	font-family: "Poppins", sans-serif;
	font-weight: normal;
	font-size: 12px;
}

.down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

#edhu:focus,
#recipient-name:focus {
	outline: none;
}

[data-theme="dark"] .banner-right .add-flex .add1 h3,
[data-theme="dark"] .add-row1 .add-flex .add1 h3 {
	color: #9fc0e0 !important;
}

.footer-link {
	font-size: 16px;

}

@media screen and (max-width: 768px) {
	.footer-link {
		font-size: 14px;

		margin: 0 5px;

	}
}

@media screen and (max-width: 480px) {
	.footer-link {
		font-size: 12px;

	}
}

.modern-search-container {
	display: flex;
	max-width: 800px;
	width: 90%;
	margin: 0 auto;
	background: #fff;
	border-radius: 50px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.modern-search-input {
	flex: 1;
	border: 2px solid transparent;
	padding: 16px 28px;
	font-size: 18px;
	letter-spacing: 0.5px;
	border-radius: 50px 0 0 50px;
	outline: none;
	background: transparent;
	font-family: 'Poppins', sans-serif;
}

.modern-search-input:focus {
	border-color: #3f71f3;
	outline: none;
}

/* Glow pulse — animates opacity only (composited; no paint each frame) */
@keyframes subtle-pulse {
	0%, 100% { opacity: 0.4; }
	50%      { opacity: 1; }
}

.modern-search-button {
	border: none;
	background: linear-gradient(135deg, #1f4ec3, #2e5fd9);
	color: #fff;
	padding: 18px 35px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 0 50px 50px 0;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Poppins', sans-serif;
	min-width: 140px;
	box-shadow: 0 4px 12px rgba(63, 113, 243, 0.25);
	position: relative;
	isolation: isolate;
}

.modern-search-button::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: 0 5px 18px rgba(255, 255, 255, 0.5), 0 0 25px rgba(255, 255, 255, 0.3);
	opacity: 0.4;
	animation: subtle-pulse 2.5s ease-in-out infinite;
	pointer-events: none;
	z-index: -1;
}

.modern-search-button:hover {
	background: linear-gradient(135deg, #1f4ec3, #2d5cd4);
	box-shadow: 0 6px 20px rgba(63, 113, 243, 0.4);
}

.modern-search-button:hover::before {
	animation: none;
	opacity: 0;
}

.modern-search-button:active {
	transform: scale(0.98);
}

/* Hero Alert CTA */
.hero-alert-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 16px;
}

.hero-alert-divider {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.8em;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-alert-link {
	color: #ffffff;
	font-size: 1em;
	font-weight: 600;
	text-decoration: none;
	padding: 10px 20px;
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 25px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hero-alert-link:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: #ffffff;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
}

.hero-alert-link:focus {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.hero-alert-link i {
	font-size: 1em;
	transition: transform 0.3s ease;
}

.hero-alert-link:hover i {
	animation: ring 5s 0.8s ease-in-out infinite;
	transform-origin: 50% 4px;
}

@media (max-width: 576px) {
	.hero-alert-cta {
		margin-top: 14px;
		gap: 4px;
	}

	.hero-alert-divider {
		font-size: 0.75em;
	}

	.hero-alert-link {
		font-size: 0.9em;
		padding: 8px 16px;
	}
}

[data-theme="dark"] .hero-alert-link {
	border-color: rgba(66, 132, 251, 0.85);
}

[data-theme="dark"] .hero-alert-link:hover {
	background: rgba(66, 132, 251, 0.2);
	border-color: #4284fb;
}

[data-theme="dark"] .modern-search-container {
	background: #1e2235;
}

[data-theme="dark"] .modern-search-input {
	background-color: #181b2d;
	color: #9fc0e0;
	border: 2px solid #2a2f4a;
}

[data-theme="dark"] .modern-search-input::placeholder {
	color: #6daae0;
	opacity: 0.7;
}

[data-theme="dark"] .modern-search-button {
	background: linear-gradient(135deg, #1f4ec3, #2e5fd9);
	box-shadow: 0 4px 12px rgba(66, 132, 251, 0.3);
}

[data-theme="dark"] .modern-search-button::before {
	box-shadow: 0 5px 18px rgba(63, 113, 243, 0.45), 0 0 25px rgba(91, 138, 255, 0.3);
}

[data-theme="dark"] .modern-search-button:hover {
	background: linear-gradient(135deg, #1f4ec3, #2d5cd4);
	box-shadow: 0 6px 20px rgba(66, 132, 251, 0.5);
}

@media (prefers-reduced-motion: reduce) {
	.modern-search-button::before { animation: none; opacity: 0; }
}

[data-theme="dark"] .modern-search-input:focus {
	background-color: #1e2235;
	border-color: #4284fb;
	outline: none;
}


@media (max-width: 767px) {
	.modern-search-container {
		flex-direction: column;
		background: transparent;
		box-shadow: none;
		margin: 0 auto;
	}

	.modern-search-input {
		width: 100%;
		border-radius: 50px;
		background: #fff;
		margin-bottom: 10px;
		box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
		text-align: center;
	}

	.modern-search-button {
		width: 100%;
		border-radius: 50px;
		box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	}

	.banner-text a {
		margin-top: 20px;
	}
}


.banner-text a {
	display: block;
	text-align: center;
	margin-top: 15px;
}

.banner-text .p2 {
	display: inline-block;
	border-bottom: 1px solid #fff;
	padding-bottom: 2px;
	color: #fff;
	transition: all 0.3s ease;
}

.banner-text p2:hover {
	opacity: 0.9;
}


[data-theme="dark"] .modal-content {
	background-color: #181b2d;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .modal-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background-color: #1e2235;
}

[data-theme="dark"] .modal-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background-color: #1e2235;
}

[data-theme="dark"] .modal-title {
	color: #9fc0e0;
}

[data-theme="dark"] .form-control-label {
	color: #9fc0e0;
}

[data-theme="dark"] .form-control {
	background-color: #242842;
	border: 1px solid #3f71f3;
	color: #9fc0e0;
}

[data-theme="dark"] .form-control:disabled {
	background-color: #1e2235;
	color: #6daae0;
	border: 1px solid rgba(63, 113, 243, 0.5);
}

[data-theme="dark"] .form-control:focus {
	background-color: #2a2f4a;
	border-color: #4284fb;
	box-shadow: 0 0 0 2px rgba(66, 132, 251, 0.3);
	color: #9fc0e0;
}


[data-theme="dark"] .modal-footer .btn-primary {
	background-color: #2c5cd8;
	border-color: #2c5cd8;
	color: #fff;
}

[data-theme="dark"] .modal-footer .btn-primary:hover {
	background-color: #2450bd;
	border-color: #2450bd;
	box-shadow: 0 0 10px rgba(66, 132, 251, 0.3);
}

[data-theme="dark"] .modal-footer .btn-success {
	background-color: #157347;
	border-color: #157347;
	color: #fff;
}

[data-theme="dark"] .modal-footer .btn-success:hover {
	background-color: #126039;
	border-color: #126039;
	box-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}


[data-theme="dark"] .modal .close {
	color: #9fc0e0;
	text-shadow: none;
	opacity: 0.8;
}

[data-theme="dark"] .modal .close:hover {
	color: #fff;
	opacity: 1;
}


.modal.fade .modal-dialog {
	transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
	transform: none;
}

#alertMeModal .modal-dialog {
	max-width: 560px !important;
}

#alertMeModal .modal-content {
	border: 0;
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(20, 39, 78, 0.25);
	overflow: hidden;
}

#alertMeModal #h2head {
	display: flex;
	align-items: center;
	gap: 14px;
	position: relative;
	padding: 22px 28px;
	color: #14274e;
	border-bottom: 1px solid rgba(31, 78, 195, 0.08);
}

#alertMeModal #h2head .modal-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	color: #14274e;
}

#alertMeModal .alertme-subtitle {
	margin: 2px 24px 0 0;
	font-size: 0.85rem;
	line-height: 1.4;
	color: #44598a;
}

#alertMeModal .alertme-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	color: #fff;
}

#alertMeModal #h2head .close {
	position: absolute;
	top: 14px;
	right: 16px;
	margin: 0;
	padding: 4px 8px;
	font-size: 1.4rem;
	line-height: 1;
	color: #44598a;
	text-shadow: none;
	opacity: 0.8;
}

#alertMeModal #h2head .close:hover,
#alertMeModal #h2head .close:focus {
	color: #14274e;
	opacity: 1;
}

#alertMeModal .modal-header-primary {
	background: linear-gradient(135deg, #eef3fe, #f7faff);
}

#alertMeModal .modal-header-primary .alertme-icon {
	background: linear-gradient(135deg, #1f4ec3, #2e5fd9);
}

#alertMeModal .modal-header-success {
	background: linear-gradient(135deg, #e6f6ea, #f3fbf5);
}

#alertMeModal .modal-header-success .alertme-icon {
	background: linear-gradient(135deg, #1e7e34, #28a745);
}

#alertMeModal .modal-header-danger {
	background: linear-gradient(135deg, #fdecec, #fef7f7);
}

#alertMeModal .modal-header-danger .alertme-icon {
	background: linear-gradient(135deg, #b02a37, #d9534f);
}

#alertMeModal .modal-body {
	padding: 24px 28px 8px;
}

#alertMeModal .form-control-label {
	font-weight: 600;
	font-size: 0.9rem;
	color: #14274e;
	margin-bottom: 6px;
}

#alertMeModal .form-control {
	height: auto;
	padding: 12px 14px;
	font-size: 1rem;
	border: 1px solid #c9d6ef;
	border-radius: 10px;
}

#alertMeModal .form-control:focus {
	border-color: #2e5fd9;
	box-shadow: 0 0 0 3px rgba(46, 95, 217, 0.18);
}

#alertMeModal .form-control::placeholder {
	color: #64708d;
}

.alertme-status {
	margin: 0 0 12px;
	padding: 12px 14px;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #2c4270;
	background: #f2f6fe;
	border: 1px solid rgba(31, 78, 195, 0.12);
	border-radius: 10px;
}

.alertme-trust {
	margin: 0 0 16px;
	font-size: 0.8rem;
	line-height: 1.5;
	color: #5a6b8c;
}

.alertme-sender {
	font-family: SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
	font-size: 0.95em;
	color: #2c4270;
	background: #eef3fe;
	padding: 1px 6px;
	border-radius: 6px;
	overflow-wrap: anywhere;
}

#alertMeModal .modal-footer {
	border-top: 0;
	padding: 0 28px 26px;
}

#alertMeModal .modal-footer .btn {
	width: 100%;
	margin: 0;
	padding: 12px 24px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 50px;
}

#alertMeModal .modal-footer .btn-primary {
	background: linear-gradient(135deg, #1f4ec3, #2e5fd9);
	border: 0;
	box-shadow: 0 4px 15px rgba(31, 78, 195, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#alertMeModal .modal-footer .btn-primary:hover:not(:disabled) {
	background: linear-gradient(135deg, #1f4ec3, #2e5fd9);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(31, 78, 195, 0.45);
}

#alertMeModal .modal-footer .btn-primary:focus {
	box-shadow: 0 0 0 3px rgba(46, 95, 217, 0.35);
}

#alertMeModal .modal-footer .btn-primary:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
}

#alertMeModal .modal-footer .btn-success {
	background: #1e7e34;
	border: 0;
}

#alertMeModal .modal-footer .btn-success:hover,
#alertMeModal .modal-footer .btn-success:focus {
	background: #186429;
}

@media (max-width: 575px) {
	#alertMeModal #h2head {
		padding: 18px 20px;
	}

	#alertMeModal .modal-body {
		padding: 20px 20px 4px;
	}

	#alertMeModal .modal-footer {
		padding: 0 20px 22px;
	}
}

[data-theme="dark"] #alertMeModal .modal-content {
	background-color: #181b2d;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] #alertMeModal #h2head {
	color: #d6e4f5;
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] #alertMeModal #h2head .modal-title {
	color: #d6e4f5;
}

[data-theme="dark"] #alertMeModal .alertme-subtitle {
	color: #9fc0e0;
}

[data-theme="dark"] #alertMeModal #h2head .close {
	color: #9fc0e0;
}

[data-theme="dark"] #alertMeModal #h2head .close:hover,
[data-theme="dark"] #alertMeModal #h2head .close:focus {
	color: #fff;
}

[data-theme="dark"] #alertMeModal .modal-header-primary {
	background: linear-gradient(135deg, #1c2440, #181b2d);
}

[data-theme="dark"] #alertMeModal .modal-header-success {
	background: linear-gradient(135deg, #16301f, #181b2d);
}

[data-theme="dark"] #alertMeModal .modal-header-danger {
	background: linear-gradient(135deg, #391d20, #181b2d);
}

[data-theme="dark"] #alertMeModal .form-control-label {
	color: #9fc0e0;
}

[data-theme="dark"] #alertMeModal .form-control {
	background-color: #242842;
	border-color: #3f71f3;
	color: #d6e4f5;
}

[data-theme="dark"] #alertMeModal .form-control::placeholder {
	color: #7f9cc4;
}

[data-theme="dark"] .alertme-status {
	background: #1e2235;
	border-color: rgba(63, 113, 243, 0.35);
	color: #9fc0e0;
}

[data-theme="dark"] .alertme-trust {
	color: #8aa7c7;
}

[data-theme="dark"] .alertme-sender {
	color: #9fc0e0;
	background: #242842;
}

/* Footer Styles */
.footer-columns {
	display: flex;
	justify-content: space-between;
	margin: 0 0 30px 0;
	gap: 60px;
	text-align: left;
	padding: 0 40px;
}

.footer-group {
	flex: 1;
	min-width: 0;
}

.footer-group h3 {
	color: #2c3e50 !important;
	font-size: 0.95em !important;
	margin-bottom: 15px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	opacity: 1 !important;
}

.footer-group a.footer-link {
	display: block;
	margin-bottom: 8px;
	padding: 6px 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
	color: #4a5568;
}

.footer-group a.footer-link:hover {
	opacity: 1;
	background-color: rgba(63, 113, 243, 0.15);
	padding-left: 14px;
	color: #3f71f3 !important;
}

.social-icon {
	width: 14px;
	height: 14px;
	vertical-align: middle;
	fill: #3f71f3;
	margin-right: 6px;
}

.footer-links-wrapper {
	display: block;
}

@media (max-width: 768px) {
	.footer-columns {
		flex-direction: column;
		text-align: left;
		gap: 0;
		padding: 0;
	}

	.footer-group {
		border-bottom: 1px solid #ebedef;
	}

	.footer-group h3 {
		cursor: pointer;
		padding: 15px 20px;
		margin: 0 !important;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.footer-group h3::after {
		content: '+';
		font-size: 20px;
		font-weight: 300;
		transition: transform 0.3s ease;
	}

	.footer-group.active h6::after {
		content: '−';
	}

	.footer-group .footer-links-wrapper {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		padding: 0 20px;
	}

	.footer-group.active .footer-links-wrapper {
		max-height: 300px;
		padding: 0 20px 15px 20px;
	}

	.footer-group a.footer-link {
		text-align: left;
	}

	.footer-group a.footer-link:hover {
		padding-left: 10px;
		background-color: rgba(63, 113, 243, 0.15);
	}
}

[data-theme="dark"] .footer-group {
	border-bottom-color: #2a2d40;
}

/* Dark mode support for footer */
[data-theme="dark"] .footer-group h3 {
	color: #ffffff !important;
}

[data-theme="dark"] .footer-group a.footer-link:hover {
	background-color: rgba(63, 113, 243, 0.2);
}

[data-theme="dark"] .social-icon {
	fill: #6daae0;
}

/* Modal body padding — responsive */
#mbody {
	padding: 32px 40px;
}

@media (max-width: 767px) {
	#mbody {
		padding: 24px 16px;
	}
}

/* Email/Breach alert rows — flexbox instead of float */
#data_email,
#data_breach {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}

#data_email .badge,
#data_breach .badge {
	white-space: normal;
	word-break: break-all;
	text-align: right;
	max-width: 100%;
}

/* Dark mode — Bootstrap alert overrides (index page) */
[data-theme="dark"] .alert-primary {
	background-color: #1a2744;
	border-color: #2a3f6e;
	color: #9fc0e0;
}

[data-theme="dark"] .alert-success {
	background-color: #152535;
	border-color: #254560;
	color: #a0c8d8;
}

[data-theme="dark"] .alert-danger {
	background-color: #251a30;
	border-color: #452a55;
	color: #d0a8c0;
}

/* Search results modal — mobile text sizing */
@media (max-width: 767px) {
	#hhead {
		padding: 20px 16px !important;
	}

	#thedudalModalLabel {
		font-size: 1.1rem;
		line-height: 1.3;
	}

	#thedudalModalLabel .fa-2x {
		font-size: 1.3em;
	}

	#mbody .alert {
		font-size: 0.85rem;
		padding: 10px 12px;
	}

	#mbody .badge {
		font-size: 0.8rem;
	}

	#alert_ .btn {
		margin-bottom: 10px;
		font-size: 0.85rem;
	}
}

/* ===================================================
   CRO V2 Additions — Scoped under body.v2
   =================================================== */

/* Hero: Single-column centered layout */
body.v2 .banner-center {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
	padding: 0 20px;
}

body.v2 .banner {
	min-height: calc(100vh - 60px);
	display: flex;
	flex-direction: column;
	padding-bottom: 24px;
}

body.v2 .banner .grid {
	flex: 1;
	display: flex;
	flex-direction: column;
}

body.v2 .banner-row {
	display: block;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
}

body.v2 .banner-row::after {
	display: none;
}

body.v2 .banner-text h1 {
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 12px;
	white-space: nowrap;
}

body.v2 .banner-text .hero-subheadline {
	font-size: 19px;
	line-height: 30px;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 8px;
}

/* Trust Bar */
.trust-bar {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 10px;
	margin: 18px auto 0;
	padding: 0;
	background: none;
	font-size: 13px;
}

.trust-bar-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	font-weight: 400;
	white-space: nowrap;
}

.trust-bar-item i {
	color: #6fdc8c;
	font-size: 13px;
}

/* Dot separator between trust items */
.trust-bar-item + .trust-bar-item::before {
	content: "\00b7";
	margin-right: 2px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 18px;
	line-height: 1;
}

[data-theme="dark"] .trust-bar {
	background: rgba(66, 132, 251, 0.12);
}

[data-theme="dark"] .trust-bar-item {
	color: rgba(159, 192, 224, 0.95);
}

[data-theme="dark"] .trust-bar-item i {
	color: #34d399;
}

@media (max-width: 767px) {
	.trust-bar {
		flex-wrap: wrap;
		justify-content: center;
		gap: 4px 8px;
	}

	.trust-bar-item {
		font-size: 12px;
	}

	body.v2 .banner-text h1 {
		font-size: 22px;
		white-space: normal;
	}

	body.v2 .banner {
		min-height: auto;
	}

	body.v2 .banner-row {
		display: block;
		padding: 20px 0;
	}

	body.v2 .banner-text .hero-subheadline {
		font-size: 15px;
		line-height: 24px;
	}

	body.v2 .banner-row {
		padding: 30px 0 0 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	body.v2 .banner-text h1 {
		font-size: 30px;
		white-space: normal;
	}
}

/* Social Proof Bar */
.social-proof-bar {
	background: #f0f4ff;
	padding: 22px 0;
	text-align: center;
	border-bottom: 1px solid #e2e8f0;
}

.social-proof-items {
	display: flex;
	justify-content: center;
	gap: clamp(60px, 12vw, 160px);
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.social-proof-item a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.social-proof-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #3a4b5e;
	font-size: 15px;
	font-weight: 500;
}

.social-proof-item i {
	color: #3f71f3;
	font-size: 18px;
}

[data-theme="dark"] .social-proof-bar {
	background: #141729;
	border-bottom-color: #2a2d40;
}

[data-theme="dark"] .social-proof-item {
	color: #9fc0e0;
}

[data-theme="dark"] .social-proof-item i {
	color: #5b9aff;
}

.social-proof-item .proof-short {
	display: none;
}

@media (max-width: 767px) {
	.social-proof-items {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-evenly;
		gap: 14px 32px;
		align-items: center;
	}

	.social-proof-item {
		font-size: 14px;
	}

	.social-proof-item .proof-full {
		display: none;
	}

	.social-proof-item .proof-short {
		display: inline;
	}
}

/* Benefit Cards (How It Works) */
.benefit-cards-section {
	padding: 60px 0;
}

.benefit-cards-section .container {
	max-width: 1100px;
}

.benefit-cards-section h2 {
	text-align: center;
	margin-bottom: 10px;
}

.benefit-video {
	text-align: center;
	margin-bottom: 40px;
}

.benefit-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 36px;
}

.benefit-card {
	background: #fff;
	border-radius: 12px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	border: 1px solid #e8ecf0;
}

.benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card-wide {
	grid-column: 1 / -1;
}

.benefit-cards-4 {
	grid-template-columns: repeat(4, 1fr);
}

.benefit-card-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #fff;
	background: linear-gradient(135deg, #3f71f3, #5b8aff);
	box-shadow: 0 4px 12px rgba(63, 113, 243, 0.25);
}

.benefit-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 10px;
}

.benefit-card p {
	font-size: 15px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

.benefit-cta {
	text-align: center;
}

.benefit-cta .cta-subtext {
	display: block;
	margin-top: 10px;
	color: #475569;
	font-size: 14px;
}

[data-theme="dark"] .benefit-card {
	background: #1a1f3a;
	border-color: #2a2d40;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .benefit-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .benefit-card h3 {
	color: #ffffff;
}

[data-theme="dark"] .benefit-card p {
	color: #9fc0e0;
}

[data-theme="dark"] .benefit-cta .cta-subtext {
	color: #9fc0e0;
}

@media (max-width: 767px) {
	.benefit-cards {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.benefit-card {
		padding: 24px 20px;
	}

	.benefit-cards-section {
		padding: 40px 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.benefit-cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.benefit-cards-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Stats Section CTA */
.stats-cta {
	margin-top: 30px;
}

.stats-cta .cta-button {
	font-size: 17px;
	padding: 14px 32px;
}

/* Tool Subtitles */
.tool-subtitle {
	display: block;
	font-size: 12px;
	color: #64748b;
	font-weight: 400;
	margin-top: 2px;
	line-height: 1.4;
	white-space: normal;
}

[data-theme="dark"] .tool-subtitle {
	color: #7a9ab8;
}

body.v2 .add1 h3 {
	display: flex;
	flex-direction: column;
	gap: 2px;
	white-space: normal !important;
}

/* Override nowrap on the 5-column desktop layout for v2 */
@media screen and (min-width: 992px) {
	body.v2 .add-row1 .add-flex-5 .add1 h3 {
		white-space: normal;
		font-size: 14px;
		line-height: 1.3;
	}

	body.v2 .add-row1 .add-flex-5 .adds {
		max-width: 260px;
	}
}

/* Footer Final CTA */
.footer-final-cta {
	text-align: center;
	padding: 40px 20px 30px;
	border-bottom: 1px solid #ebedef;
	margin-bottom: 30px;
}

.footer-final-cta h2 {
	font-size: 24px;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 18px;
}

.footer-final-cta .cta-button {
	font-size: 17px;
	padding: 14px 32px;
}

.footer-final-cta .footer-alert-link {
	display: block;
	margin-top: 14px;
	font-size: 15px;
	color: #2c5cc7;
	text-decoration: underline;
}

.footer-final-cta .footer-alert-link:hover,
.footer-final-cta .footer-alert-link:focus {
	color: #1e449c;
}

[data-theme="dark"] .footer-final-cta {
	border-bottom-color: #2a2d40;
}

[data-theme="dark"] .footer-final-cta h2 {
	color: #ffffff;
}

[data-theme="dark"] .footer-final-cta .footer-alert-link {
	color: #9fc0e0;
}

[data-theme="dark"] .footer-final-cta .footer-alert-link:hover,
[data-theme="dark"] .footer-final-cta .footer-alert-link:focus {
	color: #c4dbef;
}

@media (max-width: 767px) {
	.footer-final-cta h2 {
		font-size: 20px;
	}

	.footer-final-cta .cta-button {
		font-size: 15px;
		padding: 12px 24px;
	}
}

/* Updated Stats Context for V2 */
body.v2 .stats-context {
	font-size: 1.05em;
	font-weight: 500;
	color: #3a4b5e;
	margin: 20px 0 5px 0;
	font-style: normal;
	line-height: 1.6;
}

[data-theme="dark"] body.v2 .stats-context {
	color: #9fc0e0;
}

/* Trust bar legal links */
.trust-legal-link {
	color: rgba(255, 255, 255, 0.95) !important;
	text-decoration: underline !important;
}

.trust-legal-link:hover {
	color: #fff !important;
}

[data-theme="dark"] .trust-legal-link {
	color: rgba(159, 192, 224, 0.95) !important;
}

/* Hero Social Proof (inline in banner) */
.hero-social-proof {
	display: flex;
	justify-content: center;
	gap: 28px;
	margin-top: 16px;
	padding-top: 14px;
	padding-bottom: 6px;
}

.hero-proof-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	font-weight: 500;
}

.hero-proof-item i {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

[data-theme="dark"] .hero-proof-item {
	color: rgba(159, 192, 224, 0.9);
}

[data-theme="dark"] .hero-proof-item i {
	color: rgba(91, 154, 255, 0.8);
}

@media (max-width: 767px) {
	.hero-social-proof {
		flex-direction: column;
		gap: 8px;
		align-items: center;
	}

	.hero-proof-item {
		font-size: 12px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.hero-social-proof {
		gap: 18px;
	}

	.hero-proof-item {
		font-size: 12px;
	}
}

/* Hero Benefit Cards (above the fold) */
.hero-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.hero-benefit {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	padding: 16px;
	text-align: left;
}

.hero-benefit-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #fff;
	background: rgba(255, 255, 255, 0.15);
	flex-shrink: 0;
}

.hero-benefit-text strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 3px 0;
}

.hero-benefit-text p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
	line-height: 1.4;
}

[data-theme="dark"] .hero-benefit {
	background: rgba(66, 132, 251, 0.1);
	border-color: rgba(66, 132, 251, 0.25);
}

[data-theme="dark"] .hero-benefit-icon {
	background: rgba(66, 132, 251, 0.2);
}

@media (max-width: 767px) {
	.hero-benefits {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.hero-benefit {
		padding: 12px;
	}

	.hero-benefit-icon {
		width: 34px;
		height: 34px;
		font-size: 14px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.hero-benefits {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}
}

/* Hero Quick Tools Grid */
.hero-tools {
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-tools h2 {
	font-size: 22px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 14px;
}

.hero-tools-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 960px;
	margin: 0 auto;
}

.hero-tool-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.12);
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-radius: 10px;
	padding: 16px 20px;
	color: #fff;
	text-decoration: none !important;
	transition: all 0.3s ease;
	font-size: 15px;
	font-weight: 500;
	position: relative;
}

.hero-tool-card:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	color: #fff;
	text-decoration: none;
}

.hero-tool-card i {
	font-size: 20px;
	flex-shrink: 0;
	width: 24px;
	text-align: center;
}

.hero-tool-card .hero-tool-label {
	flex-grow: 1;
}

/* Arrow chevron on hero tool cards */
.hero-tool-card .hero-tool-arrow {
	margin-left: auto;
	flex-shrink: 0;
	opacity: 0.7;
	transition: all 0.3s ease;
	font-size: 12px;
}

.hero-tool-card:hover .hero-tool-arrow {
	opacity: 1;
	animation: mover 300ms 4 alternate;
}

/* Tooltip on hero tool cards */
.hero-tool-card .hero-tool-tip {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	background: #005ce6;
	color: #fff;
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 400;
	white-space: nowrap;
	z-index: 10;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.hero-tool-card .hero-tool-tip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #005ce6 transparent transparent transparent;
}

.hero-tool-card:hover .hero-tool-tip {
	visibility: visible;
	opacity: 1;
}

[data-theme="dark"] .hero-tools {
	border-top-color: rgba(66, 132, 251, 0.25);
}

[data-theme="dark"] .hero-tool-card {
	background: rgba(66, 132, 251, 0.1);
	border-color: rgba(66, 132, 251, 0.3);
}

[data-theme="dark"] .hero-tool-card:hover {
	background: rgba(66, 132, 251, 0.22);
	border-color: rgba(66, 132, 251, 0.5);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
	.hero-tools-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.hero-tool-card {
		font-size: 14px;
		padding: 12px 16px;
	}

	.hero-tools h2 {
		font-size: 18px;
	}

	.hero-tool-card .hero-tool-tip {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.hero-tools-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
}

/* Bottom tools: equal-height cards */
body.v2 .add-row1 .add-flex-5 {
	align-items: stretch;
}

body.v2 .add-row1 .add-flex-5 .adds {
	display: flex;
}

body.v2 .add-row1 .add-flex-5 .add1 {
	flex: 1;
	display: flex;
	align-items: center;
}

/* Desktop 5-col: hide subtitle to keep cards uniform */
@media screen and (min-width: 992px) {
	body.v2 .add-row1 .add-flex-5 .tool-subtitle {
		display: none;
	}
}

/* Tablet/mobile: show subtitle, cards stack so height is fine */
@media screen and (max-width: 991px) {
	body.v2 .add-row1 .add1 h3 .tool-subtitle {
		display: block;
	}
}

/* Hero record/breach count highlights */
.hero-metric {
	font-weight: 700;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.15);
	padding: 1px 6px;
	border-radius: 4px;
}

[data-theme="dark"] .hero-metric {
	background: rgba(66, 132, 251, 0.2);
	color: #ffffff;
}

/* ===================================================
   WCAG AA Focus Styles
   =================================================== */

/* CTA buttons (light backgrounds) */
.cta-button:focus {
	outline: 3px solid #3f71f3;
	outline-offset: 2px;
}

/* Hero tool cards (dark banner background) */
.hero-tool-card:focus {
	outline: 3px solid #fff;
	outline-offset: 2px;
}

/* Search button (dark banner background) */
.modern-search-button:focus {
	outline: 3px solid #fff;
	outline-offset: 2px;
}

/* Tool cards in free tools section (light background) */
.adds:focus {
	outline: none;
}

.adds:focus .add1 {
	outline: 3px solid #3f71f3;
	outline-offset: 2px;
}

/* Footer links */
.footer-link:focus {
	outline: 2px solid #3f71f3;
	outline-offset: 2px;
}

/* Scroll-to-top CTA buttons */
.scroll-to-top:focus {
	outline: 3px solid #3f71f3;
	outline-offset: 2px;
}

/* Dark mode focus overrides */
[data-theme="dark"] .cta-button:focus,
[data-theme="dark"] .scroll-to-top:focus {
	outline-color: #5b9aff;
}

[data-theme="dark"] .adds:focus .add1 {
	outline-color: #5b9aff;
}

[data-theme="dark"] .footer-link:focus {
	outline-color: #5b9aff;
}

[data-theme="dark"] .hero-tool-card:focus {
	outline-color: #5b9aff;
}

/* Navigation links (dark banner background) */
.navbar-nav .nav-link:focus {
	outline: 2px solid rgba(255, 255, 255, 0.9);
	outline-offset: 2px;
}

/* Language dropdown toggle */
.dropdown-toggle:focus {
	outline: 2px solid rgba(255, 255, 255, 0.9);
	outline-offset: 2px;
}

/* Language dropdown items */
.dropdown-item:focus {
	outline: 2px solid #3f71f3;
	outline-offset: -2px;
	background-color: #e8ecf0;
}

/* Dark mode toggle switch */
.custom-control-input:focus ~ .custom-control-label::before {
	box-shadow: 0 0 0 3px rgba(63, 113, 243, 0.5);
	border-color: #3f71f3;
}

[data-theme="dark"] .dropdown-item:focus {
	background-color: #2a2d40;
	outline-color: #5b9aff;
}

[data-theme="dark"] .custom-control-input:focus ~ .custom-control-label::before {
	box-shadow: 0 0 0 3px rgba(91, 154, 255, 0.5);
	border-color: #5b9aff;
}

/* =============================================
   Breach Modal — Tag/Pill Styling
   ============================================= */

.breach-intro {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.breach-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.breach-tag {
	display: inline-block;
	padding: 5px 14px;
	font-size: 13px;
	font-weight: 500;
	color: #c62828;
	background-color: #fdecea;
	border: 1px solid #f5c6cb;
	border-radius: 20px;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.breach-tag:hover,
.breach-tag:focus {
	background-color: #c62828;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 2px 6px rgba(198, 40, 40, 0.3);
	outline: none;
}

.breach-tag:focus {
	outline: 2px solid #c62828;
	outline-offset: 2px;
}

.breach-action {
	font-size: 14px;
	font-weight: 600;
	color: #b71c1c;
	background-color: #fff3e0;
	border-left: 4px solid #e65100;
	padding: 10px 14px;
	border-radius: 4px;
	margin-top: 4px;
}

.breach-action i {
	margin-right: 6px;
	color: #e65100;
}

/* Dark mode — breach modal tags */
[data-theme="dark"] .breach-intro {
	color: #d0d4dc;
}

[data-theme="dark"] .breach-tag {
	color: #ef9a9a;
	background-color: rgba(198, 40, 40, 0.2);
	border-color: rgba(239, 154, 154, 0.3);
}

[data-theme="dark"] .breach-tag:hover,
[data-theme="dark"] .breach-tag:focus {
	background-color: #c62828;
	color: #fff;
	border-color: #c62828;
}

[data-theme="dark"] .breach-tag:focus {
	outline-color: #ef9a9a;
}

[data-theme="dark"] .breach-action {
	color: #ef9a9a;
	background-color: rgba(230, 81, 0, 0.15);
	border-left-color: #ff8a65;
}

[data-theme="dark"] .breach-action i {
	color: #ff8a65;
}

/* Dark mode — breach modal backgrounds */
[data-theme="dark"] .modal-header-danger {
	background-color: #b71c1c;
}

[data-theme="dark"] .modal-header-success {
	background-color: #1b5e20;
}

[data-theme="dark"] .modal-header-primary {
	background-color: #1a2744;
}

/* Reduced motion: disable all animations for users who prefer it */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Windows High Contrast / forced-colors support */
@media (forced-colors: active) {
	.cta-button,
	.modern-search-button,
	.hero-tool-card,
	.benefit-card,
	.add1,
	.follow1 {
		border: 2px solid ButtonText;
	}

	.cta-button:focus,
	.modern-search-button:focus,
	.modern-search-input:focus,
	.hero-tool-card:focus,
	.nav-link:focus,
	.footer-link:focus,
	.breach-tag:focus {
		outline: 2px solid Highlight;
		outline-offset: 2px;
	}

	.skip-link:focus {
		outline: 2px solid Highlight;
	}
}

/* FAQ Section */
.faq-section {
	background: #fff;
	padding: 60px 0 40px;
	overflow: hidden;
	width: 100%;
}

.faq-section h2 {
	margin: 0 0 10px;
	font-size: 40px;
	font-weight: 500;
	text-align: center;
}

.faq-subtitle {
	text-align: center;
	color: #5a6a7a;
	font-size: 18px;
	margin-bottom: 35px;
}

.faq-accordion {
	max-width: 800px;
	margin: 0 auto;
}

.faq-card {
	background: #f8f9fa;
	border-radius: 12px;
	margin-bottom: 12px;
	border: 1px solid #e8ecf1;
	transition: box-shadow 0.3s ease;
}

.faq-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-card-header {
	padding: 0;
}

.faq-toggle {
	width: 100%;
	background: none;
	border: none;
	padding: 18px 22px;
	font-size: 17px;
	font-weight: 600;
	color: #2c3e50;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-family: inherit;
	line-height: 1.4;
}

.faq-toggle:hover {
	color: #3f71f3;
}

.faq-toggle:focus {
	outline: 2px solid #3f71f3;
	outline-offset: -2px;
	border-radius: 12px;
}

.faq-toggle-icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
	color: #3f71f3;
	font-size: 14px;
}

.faq-toggle:not(.collapsed) .faq-toggle-icon {
	transform: rotate(180deg);
}

.faq-divider {
	margin: 0 22px;
	border: 0;
	border-top: 1px solid #e0e5ec;
}

.faq-card-body {
	padding: 16px 22px 20px;
	font-size: 15px;
	line-height: 1.7;
	color: #4a5568;
}

.faq-card-body a {
	color: #2e5fd9;
	text-decoration: underline !important;
}

.faq-card-body a:hover {
	color: #1f4ec3;
}

/* FAQ Dark Mode */
[data-theme="dark"] .faq-section {
	background-color: #0e0f19;
}

[data-theme="dark"] .faq-subtitle {
	color: #9fc0e0;
}

[data-theme="dark"] .faq-card {
	background: #1a1f3a;
	border-color: #2a3050;
}

[data-theme="dark"] .faq-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .faq-toggle {
	color: #e2e8f0;
}

[data-theme="dark"] .faq-toggle:hover {
	color: #6daae0;
}

[data-theme="dark"] .faq-toggle:focus {
	outline-color: #6daae0;
}

[data-theme="dark"] .faq-toggle-icon {
	color: #6daae0;
}

[data-theme="dark"] .faq-divider {
	border-top-color: #2a3050;
}

[data-theme="dark"] .faq-card-body {
	color: #b0c4d8;
}

[data-theme="dark"] .faq-card-body a {
	color: #6daae0;
}

[data-theme="dark"] .faq-card-body a:hover {
	color: #9fc0e0;
}

/* FAQ Responsive */
@media screen and (max-width: 768px) {
	.faq-section {
		padding: 40px 0 30px;
	}

	.faq-section h2 {
		font-size: 28px;
	}

	.faq-subtitle {
		font-size: 15px;
		padding: 0 10px;
	}

	.faq-toggle {
		font-size: 15px;
		padding: 16px 18px;
	}

	.faq-card-body {
		padding: 14px 18px 18px;
		font-size: 14px;
	}

	.faq-divider {
		margin: 0 18px;
	}
}

/* Event Announcement Strip (bold dark banner) */
.event-strip {
	padding: 32px 0;
	background: #ffffff;
}

[data-theme="dark"] .event-strip {
	background: #0e0f19;
}

.event-strip .container {
	max-width: 1100px;
}

.event-strip-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	background: linear-gradient(135deg, #10152a 0%, #1f2a4d 100%);
	border: 1px solid rgba(245, 158, 11, 0.35);
	border-radius: 14px;
	padding: 26px 30px;
	box-shadow: 0 12px 34px rgba(8, 11, 24, 0.28);
}

.event-strip-text {
	flex: 1;
	min-width: 0;
}

.event-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: #fcd34d;
	text-transform: uppercase;
	margin-bottom: 11px;
}

.event-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #f59e0b;
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
	animation: event-pulse 2s ease-in-out infinite;
}

.event-badge {
	display: inline-block;
	background: #f59e0b;
	color: #1a1206;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	padding: 3px 8px;
	border-radius: 5px;
}

@keyframes event-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
	}
	50% {
		box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.event-dot {
		animation: none;
	}
}

.event-title {
	font-size: 21px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 7px;
	line-height: 1.3;
}

.event-desc {
	font-size: 15px;
	color: #cbd5e1;
	margin: 0 0 5px;
	line-height: 1.5;
}

.event-meta {
	font-size: 13px;
	color: #9fb3c8;
	margin: 0;
	letter-spacing: 0.02em;
}

.event-cta {
	flex-shrink: 0;
	background: #f59e0b !important;
	color: #1a1206 !important;
	box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35) !important;
	padding: 12px 22px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	white-space: nowrap;
}

.event-cta:hover {
	background: #fbbf24 !important;
	color: #1a1206 !important;
	transform: translateY(-2px);
}

.event-cta i {
	margin-left: 6px;
	margin-right: 0 !important;
	font-size: 12px;
}

@media (max-width: 767px) {
	.event-strip {
		padding: 24px 0;
	}

	.event-strip-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 22px;
		gap: 18px;
	}

	.event-title {
		font-size: 18px;
	}

	.event-cta {
		width: 100%;
		text-align: center;
	}
}

.nav-login {
	background: #fff;
	color: #2149c4 !important;
	border-radius: 999px;
	padding: 8px 22px !important;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	transition: background 0.2s ease;
}

.nav-login:hover,
.nav-login:focus {
	background: #dbe7ff;
	color: #16348c !important;
	text-decoration: none;
}

[data-theme="dark"] .nav-login {
	background: #e2e8f0;
	color: #16348c !important;
}

.nav-link.xon-nav-tip {
	position: relative;
}

.nav-link.xon-nav-tip::before {
	content: "";
	position: absolute;
	top: calc(100% + 0px);
	right: 28px;
	display: block;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 8px solid #23272f;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
	pointer-events: none;
	z-index: 2100;
}

.nav-link.xon-nav-tip::after {
	content: attr(data-tip);
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	display: block;
	width: 260px;
	height: auto;
	box-sizing: border-box;
	background: #23272f;
	color: #ffffff;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 10px 24px rgba(20, 24, 60, 0.35);
	text-align: center;
	white-space: normal;
	overflow-wrap: break-word;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
	pointer-events: none;
	z-index: 2100;
}

.nav-link.xon-nav-tip:hover::before,
.nav-link.xon-nav-tip:focus::before,
.nav-link.xon-nav-tip:hover::after,
.nav-link.xon-nav-tip:focus::after {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 767px) {
	.nav-link.xon-nav-tip::before,
	.nav-link.xon-nav-tip::after {
		display: none;
	}
}

.result-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0 0 12px 0;
	padding: 12px 16px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 15px;
	text-align: left;
}

.result-row:empty {
	display: none;
}

.result-row-label {
	font-weight: 700;
}

.result-row-value {
	font-weight: 500;
	overflow-wrap: anywhere;
	text-align: right;
}

.result-row-count {
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.result-row-status {
	font-weight: 600;
}

.result-row-primary {
	background-color: #cce5ff;
	border-color: #b8daff;
	color: #004085;
}

.result-row-danger {
	background-color: #f8d7da;
	border-color: #f5c6cb;
	color: #721c24;
}

.result-row-success {
	background-color: #d4edda;
	border-color: #c3e6cb;
	color: #155724;
}


.breach-showall {
	display: block;
	margin: 4px auto 14px auto;
	padding: 8px 20px;
	background: #c62828;
	border: none;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.breach-showall:hover,
.breach-showall:focus {
	background: #7f1d1d;
	color: #fff;
}

.breach-showall:focus-visible {
	outline: 2px solid #7f1d1d;
	outline-offset: 2px;
}

.breach-tag:hover,
.breach-tag:focus {
	text-decoration: underline;
}

.breach-tag-year {
	font-weight: 400;
}

[data-theme="dark"] .result-row-primary {
	background-color: #1a2744;
	border-color: #2a3f6e;
	color: #9fc0e0;
}

[data-theme="dark"] .result-row-danger {
	background-color: #251a30;
	border-color: #452a55;
	color: #d0a8c0;
}

[data-theme="dark"] .result-row-success {
	background-color: #152535;
	border-color: #254560;
	color: #a0c8d8;
}


[data-theme="dark"] .breach-showall {
	background: #c62828;
	color: #fff;
}

[data-theme="dark"] .breach-showall:hover,
[data-theme="dark"] .breach-showall:focus {
	background: #f5b7b1;
	color: #251a30;
}

[data-theme="dark"] .breach-showall:focus-visible {
	outline-color: #f5b7b1;
}
