:root {
	--primary: #6c4cf1;
	--primary-dark: #4a2fd4;
	--secondary: #00d4ff;
	--accent: #ff4ecd;
	--accent-orange: #ff8c42;
	--dark: #0a0a1a;
	--light: #f8f9ff;
	--surface: #ffffff;
	--text-primary: #1a1a2e;
	--text-secondary: #64648c;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

* {
	font-family: "Inter", sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ==========================================
           PRELOADER STYLE 
           ========================================== */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff; /* Loader screen background color */
	z-index: 99999; /* Ensures it sits on top of navbar/everything */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease, vertical-align 0.5s ease;
}

/* The Spinner Ring */
.loader-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid rgba(79, 70, 229, 0.15); /* Light indigo track */
	border-top-color: #4f46e5; /* Primary accent color */
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

/* Optional Loading Text */
.loader-text {
	margin-top: 15px;
	font-family: "Segoe UI", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #4f46e5;
	letter-spacing: 1px;
	text-transform: uppercase;
	animation: pulse 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes pulse {
	0%,
	100% {
		opacity: 0.6;
	}
	50% {
		opacity: 1;
	}
}

/* Class added via JS to smoothly hide the preloader */
.fade-out {
	opacity: 0 !important;
	pointer-events: none; /* Prevents user interaction blocks after hiding */
}

body {
	background: var(--light);
	color: var(--text-primary);
	overflow-x: hidden;
}

section {
	padding: 40px 0;
}

@media (min-width: 768px) {
	section {
		padding: 100px 0;
	}
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(
		135deg,
		rgba(108, 76, 241, 0.08),
		rgba(0, 212, 255, 0.08)
	);
	color: var(--primary);
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 16px;
	border: 1px solid rgba(108, 76, 241, 0.12);
}
.section-badge-video {
	border-color: rgba(255, 255, 255, 0.1) !important;
	color: rgba(255, 255, 255, 0.8) !important;
	background: rgba(255, 255, 255, 0.05) !important;
}
.section-title {
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 16px;
	color: var(--text-primary);
}
.video-section .section-title span {
	background: linear-gradient(90deg, #00d4ff, #fff) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
}
.video-section .section-subtitle {
	color: rgba(255, 255, 255, 0.5) !important;
}
@media (max-width: 768px) {
	.section-title {
		font-size: 1.9rem;
	}
}

.section-subtitle {
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 600px;
}

.gradient-text {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.btn-primary-custom {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	border: none;
	padding: 14px 32px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.btn-primary-custom:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(108, 76, 241, 0.4);
	color: #fff;
}

.btn-secondary-custom {
	border-color: rgba(255, 255, 255, 0.15);
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	padding: 14px 32px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s;
	text-decoration: none;
}

.btn-secondary-custom:hover {
	background: rgba(108, 76, 241, 0.12);
	color: var(--primary);
}

.navbar {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: all 0.3s;
	padding: 12px 0;
	border-bottom: 1px solid transparent;
	z-index: 1050;
}

.navbar.scrolled {
	padding: 8px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-link {
	color: var(--text-primary) !important;
	font-weight: 500;
	font-size: 0.9rem;
	padding: 8px 16px !important;
	border-radius: 8px;
	transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary) !important;
	background: rgba(108, 76, 241, 0.05);
}

.header-logo {
	height: 45px;
	width: auto;
	object-fit: contain;
}

.hero {
	min-height: 80vh;
	margin-top: 76px;
	background: var(--dark);
	color: #fff;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 50px 0px;
}

.hero::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(108, 76, 241, 0.15),
		transparent 70%
	);
	top: -200px;
	right: -100px;
}

.hero::after {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
	bottom: -150px;
	left: -100px;
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.03) 1px,
			transparent 1px
		),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
}

.hero h1 {
	font-size: 3.8rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.4rem;
	}
}

.hero .lead {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.8;
	margin: 24px 0 36px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 24px;
}

.hero-badge .pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #25d366;
	animation: pulse-anim 2s infinite;
}

@keyframes pulse-anim {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.5);
	}
}

.hero-img-wrap {
	position: relative;
	z-index: 2;
}

.hero-img-wrap img {
	width: 100%;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.hero-float {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 14px;
	padding: 14px 20px;
	z-index: 3;
	animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

.hero-float.left {
	bottom: 20%;
	left: -30px;
}

.hero-float.right {
	top: 15%;
	right: -20px;
}

.trust-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 32px;
}

.trust-avatars {
	display: flex;
}

.trust-avatars img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid var(--dark);
	margin-left: -10px;
}

.trust-avatars img:first-child {
	margin-left: 0;
}

.trust-text {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
}

.trust-text strong {
	color: #fff;
}

.stats-bar {
	background: var(--surface);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding: 40px 0;
}

.stat-item {
	text-align: center;
	padding: 10px 20px;
}

.stat-item h3 {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 4px;
}

.stat-item p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin: 0;
}

.feature-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s;
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(108, 76, 241, 0.1);
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin-bottom: 20px;
	color: #fff;
}

.feature-icon.purple {
	background: linear-gradient(135deg, #6c4cf1, #8b6ff5);
}

.feature-icon.blue {
	background: linear-gradient(135deg, #00a8e8, #00d4ff);
}

.feature-icon.pink {
	background: linear-gradient(135deg, #ff4ecd, #ff79e0);
}

.feature-icon.orange {
	background: linear-gradient(135deg, #ff8c42, #ffab76);
}

.feature-card h5 {
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 10px;
}

.feature-card p {
	color: var(--text-secondary);
	font-size: 0.92rem;
	line-height: 1.7;
	margin: 0;
}

.features-section {
	background: var(--surface);
}
.features-img {
	box-shadow: var(--shadow-lg);
}
.feature-check {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-check:last-child {
	border-bottom: none;
}

.feature-check-icon {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: linear-gradient(
		135deg,
		rgba(108, 76, 241, 0.1),
		rgba(0, 212, 255, 0.1)
	);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0.85rem;
}

.feature-check h6 {
	font-weight: 600;
	margin-bottom: 2px;
	font-size: 0.95rem;
}

.feature-check p {
	color: var(--text-secondary);
	font-size: 0.88rem;
	margin: 0;
}

.video-section {
	background: linear-gradient(
		135deg,
		var(--dark) 0%,
		#1a1346 50%,
		#0a0a2e 100%
	);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.video-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		rgba(255, 255, 255, 0.03) 1px,
		transparent 1px
	);
	background-size: 30px 30px;
}

.video-wrapper {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-wrapper video {
	width: 100%;
	display: block;
	height: auto;
}

.pricing-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: all 0.4s;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	border: none;
	transform: scale(1.03);
}

.pricing-card.featured:hover {
	transform: scale(1.03) translateY(-4px);
}

.pricing-card .plan-name {
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}
.plan-name.plan-starter {
	color: var(--primary);
}
.plan-name.plan-prof {
	color: rgba(255, 255, 255, 0.8);
}
.plan-name.plan-enterprise {
	color: var(--primary);
}
.pricing-card .price {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 4px;
}

.pricing-card .price small {
	font-size: 0.95rem;
	font-weight: 400;
	opacity: 0.7;
}

.pricing-card .plan-desc {
	font-size: 0.88rem;
	opacity: 0.7;
	margin-bottom: 24px;
}

.pricing-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.pricing-card ul li {
	padding: 10px 0;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pricing-card .btn-plan {
	width: 100%;
	padding: 14px;
	border-radius: 12px;
	font-weight: 600;
	border: none;
	transition: all 0.3s;
	cursor: pointer;
}
.btn-plan-professional {
	background: #fff;
	color: var(--primary);
	font-weight: 700;
}

.pricing-card.featured .badge-pop {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--accent-orange), var(--accent));
	color: #fff;
	padding: 6px 20px;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}
.testimonials {
	background: var(--light);
}
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.testimonial-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 32px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.testimonial-card:hover {
	box-shadow: var(--shadow-md);
	border-color: rgba(108, 76, 241, 0.1);
}

.testimonial-card .stars {
	color: #ffb800;
	font-size: 0.9rem;
	margin-bottom: 16px;
}

.testimonial-card .quote {
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-card .user-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-card .user-info img {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	object-fit: cover;
}

.testimonial-card .user-info h6 {
	font-weight: 600;
	margin: 0;
	font-size: 0.9rem;
}

.testimonial-card .user-info span {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.contact-section {
	background: var(--surface);
}
.contact-section .feature-icon {
	width: 48px;
	height: 48px;
	font-size: 1.1rem;
	border-radius: 12px;
}

.contact-form-card {
	background: var(--light);
	border-radius: var(--radius-xl);
	padding: 40px;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.custom-input {
	background: #fff;
	border: 1.5px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 13px 18px;
	font-size: 0.92rem;
	transition: all 0.3s;
	width: 100%;
	font-family: "Inter", sans-serif;
}

.custom-input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(108, 76, 241, 0.08);
	outline: none;
}

.custom-input::placeholder {
	color: #b0b0c8;
}

.custom-input.is-invalid {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.invalid-feedback {
	display: none;
	font-size: 0.82rem;
	margin-top: 6px;
	color: #ef4444;
}

.is-invalid + .invalid-feedback {
	display: block;
}

.partners-section {
	background: var(--light);
	border-top: 1px solid rgba(0, 0, 0, 0.04);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.partner-logo {
	filter: grayscale(100%);
	opacity: 0.4;
	transition: all 0.3s;
	max-height: 45px;
}

.partner-logo:hover {
	filter: none;
	opacity: 1;
}
.partners-section p {
	letter-spacing: 2px;
	font-size: 0.8rem;
}

.faq-section .accordion-item {
	border: 1px solid rgba(0, 0, 0, 0.05) !important;
	border-radius: 14px !important;
	margin-bottom: 12px;
	overflow: hidden;
	background: var(--surface);
}

.faq-section .accordion-button {
	font-weight: 600;
	font-size: 0.95rem;
	padding: 20px 24px;
	background: transparent;
	box-shadow: none !important;
	color: var(--text-primary);
}

.faq-section .accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
}

.faq-section .accordion-body {
	padding: 0 24px 20px;
	color: var(--text-secondary);
	font-size: 0.92rem;
	line-height: 1.8;
}

.legal-section {
	background: var(--surface);
}

.legal-section.alt {
	background: var(--light);
}

.legal-card {
	background: var(--surface);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: var(--radius-lg);
	padding: 34px;
	box-shadow: var(--shadow-md);
}

.legal-card h5 {
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 12px;
	color: var(--text-primary);
}

.legal-card p,
.legal-card li {
	color: var(--text-secondary);
	font-size: 0.92rem;
	line-height: 1.8;
}

.legal-card p:last-child,
.legal-list li:last-child {
	margin-bottom: 0;
}

.legal-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.legal-list li {
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
}

.legal-card a {
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
}

.legal-card a:hover {
	color: var(--primary-dark);
}

.legal-list i {
	color: var(--primary);
	margin-top: 4px;
	flex-shrink: 0;
}

.cta-section-outer {
	padding: 0 0 100px;
}
.cta-section {
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--primary-dark) 50%,
		#2a1a6e 100%
	);
	color: #fff;
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-xl);
	padding: 80px 40px;
	text-align: center;
}

.cta-section::before {
	content: "";
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent);
	top: -100px;
	right: -100px;
}
.cta-section p {
	opacity: 0.8;
	max-width: 500px;
	margin: 0 auto 30px;
}
.cta-section .btn {
	background: #fff;
	color: var(--primary);
	font-weight: 700;
	padding: 14px 36px;
	border-radius: 12px;
	font-size: 1rem;
}
.offer-detail-sec {
	font-size: 0.9rem;
	opacity: 0.75;
}
footer {
	background: var(--dark);
	color: rgba(255, 255, 255, 0.6);
	padding: 40px 0 24px;
}
@media (min-width: 768px) {
	footer {
		padding: 80px 0 24px;
	}
}

footer h5 {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 20px;
}

footer a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: all 0.3s;
	font-size: 0.9rem;
}

footer a:hover {
	color: var(--secondary);
}

footer ul {
	list-style: none;
	padding: 0;
}

footer ul li {
	margin-bottom: 10px;
}

.social-icons a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	color: #fff;
	transition: all 0.3s;
}

.social-icons a:hover {
	background: var(--primary);
	transform: translateY(-2px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 25px;
	padding-top: 24px;
	font-size: 0.85rem;
}
@media (min-width: 768px) {
	.footer-bottom {
		margin-top: 50px;
	}
}
.waabizx-footer-info {
	line-height: 1.8;
}
.demo-left-card {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	padding: 40px;
}
.modal-muted-text {
	opacity: 0.7;
}
.modal-content {
	border-radius: var(--radius-xl);
	border: none;
	overflow: hidden;
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: rgba(108, 76, 241, 0.3);
	border-radius: 3px;
}
