:root {
	--background: 240 10% 3.9%;
	--foreground: 0 0% 98%;

	--card: 240 10% 8%;
	--card-foreground: 0 0% 98%;

	--popover: 240 10% 8%;
	--popover-foreground: 0 0% 98%;

	--primary: #00A1C2;
	--primary-foreground: 0 0% 100%;

	--secondary: #c1c1c1;
	--secondary-foreground: 0 0% 100%;

	--muted: 240 10% 15%;
	--muted-foreground: 240 5% 65%;

	--accent: 190 100% 38%;
	--accent-foreground: 0 0% 100%;

	--destructive: 0 84.2% 60.2%;
	--destructive-foreground: 0 0% 98%;

	--border: 240 10% 15%;
	--input: 240 10% 15%;
	--ring: 190 100% 38%;

	--radius: 0.75rem;

	/* Custom design tokens */
	--gradient-primary: linear-gradient(135deg,
			hsl(190 100% 38%),
			hsl(190 100% 50%));
	--gradient-hero: linear-gradient(180deg,
			hsl(240 10% 3.9%),
			hsl(190 100% 15%));
	--gradient-footer: linear-gradient(270deg,
			#00404D,
			#04262E,
			#04262E,
			#00404D);
	--gradient-card: linear-gradient(135deg,
			hsl(240 10% 8% / 0.8),
			hsl(190 50% 15% / 0.5));
	--glow-primary: 0 0 40px hsl(190 100% 38% / 0.4);
	--glow-secondary: 0 0 40px hsl(280 100% 70% / 0.4);
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--branding: #00c8d4;
}

body {
    background: #09090B;
    color: #fafafa;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* Animated linear background */
body::before {
    content:'';
    position:fixed;
    inset:0;
    background: 
                radial-gradient(circle at 20% 50%, rgba(30, 43, 88, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(40, 200, 200, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(176, 38, 156, 0.1) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: gradientMove 20s ease infinite;
    z-index:-1;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
  /* @keyframes gradientMove {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-5%, -5%) rotate(120deg); }
            66% { transform: translate(5%, 5%) rotate(240deg); }
        } */


/* header.hero {
	background: linear-gradient(180deg, #012731, #000);
	padding: 120px 0;
	text-align: center;
} */
/* Decorative elements */
.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.4;
	animation: orbFloat 8s ease-in-out infinite;
	pointer-events: none;
}

.orb-1 {
	width: 300px;
	height: 300px;
	background: rgba(100, 200, 255, 0.3);
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}

.orb-2 {
	width: 250px;
	height: 250px;
	background: rgba(255, 100, 200, 0.3);
	bottom: 15%;
	right: 10%;
	animation-delay: 2s;
}

@keyframes orbFloat {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	50% {
		transform: translate(30px, 30px) scale(1.1);
	}
}

/* Sparkle effect */
@keyframes sparkle {

	0%,
	100% {
		opacity: 0;
		transform: scale(0);
	}

	50% {
		opacity: 1;
		transform: scale(1);
	}
}

.sparkle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: white;
	border-radius: 50%;
	animation: sparkle 2s ease-in-out infinite;
}

.icon-card .sparkle:nth-child(1) {
	top: 10%;
	left: 20%;
	animation-delay: 0s;
}

.icon-card .sparkle:nth-child(2) {
	top: 20%;
	right: 15%;
	animation-delay: 0.5s;
}

.icon-card .sparkle:nth-child(3) {
	bottom: 25%;
	left: 15%;
	animation-delay: 1s;
}

.hero-section h1 {
	font-size: 4rem;
	line-height: 70px;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 40px;
}

.f-20 {
	font-size: 20px;
}

p {
	color: var(--secondary);
}

.glow-text {
	background-image: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

header.hero p {
	color: var(--secondary);
	/* margin-top: 20px; */
	/* margin-bottom: 40px; */
}

.btn-main {
	background: var(--gradient-primary);
	/* border: none; */
	/* padding: 12px 30px; */
	/* border-radius: 5px; */
	color: #fff;
	/* font-weight: 600; */
}

.btn-main:hover {
	box-shadow: var(--glow-primary);
	transform: translateY(-2px);
}

.hero-header .btn-main {
	padding: 12px 30px;
}

.btn-black {
	background: #000;
	color: #fff;
	/* padding: 12px 30px; */
}

.btn-black:hover {
	background: #000;
	color: #fff;
	/* padding: 12px 30px; */
}

.bg-branding {
	background: var(--gradient-primary);
}

.nav-link {
	color: var(--secondary);
	font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
	color: var(--primary) !important;
}

.badge.bg-branding {
	color: #fff;
	font-weight: 500;
	padding: 8px 14px;
	border-radius: 30px;
	font-size: 14px;
}

.badge.badge-lg {
	font-size: 16px;
	padding: 12px 22px;
}

/* .section-title {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 10px;
} */
h1,
h2,
h3,
h4 {
	font-weight: 600;
}

.section-sub {
	text-align: center;
	opacity: 0.8;
	margin-bottom: 40px;
}

footer {
	background: var(--gradient-footer);
	padding: 50px 0 40px 0;
	/* color: #ccc; */
	/* font-size: 14px; */
}

.w-800 {
	max-width: 800px;
	margin: 0 auto;
}

.f-24 {
	font-size: 24px;
}

.f-14 {
	font-size: 14px;
}

.pricing-card-list li {
	position: relative;
	list-style: none;
	margin-top: 10px;
	line-height: 18px;
	color: #BEBEBE;
	letter-spacing: 0.004em;
	padding-left: 35px;
}

.pricing-card-list li:before {
	content: "";
	position: absolute;
	left: 7px;
	top: 2px;
	width: 20px;
	height: 20px;
}

.pricing-card-list li:before {
	background: url('../assets/check-circle.svg') no-repeat;
}

.container {
	max-width: 1120px !important;
}

.pricing-card-list li {
	line-height: 1.5;
}

.hero {
	background: url('../assets/hero-bg.png') no-repeat center center;
	background-size: cover;
	padding: 120px 0;
	text-align: center;
	/* background: linear-gradient(180deg, #012731, #000);
	padding: 120px 0;
	text-align: center; */
}

.hero-header {
	min-height: 100vh;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../assets/hero-bg.jpg');
	/* ensure correct path */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(1, 39, 49, 0.9), rgba(0, 0, 0, 0.9));
	z-index: 1;
}

.floating-dots {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 9;
	overflow: visible;
}
section {
	position: relative;
	z-index: 99;
}
.floating-dot {
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--primary);
	border-radius: 50%;
	opacity: 0.9;
	will-change: transform;
	transition: transform 0.8s ease-out;
}

/* Just blink, movement will be JS-based */
@keyframes blink {

	0%,
	100% {
		opacity: 0.9;
	}

	50% {
		opacity: 0.1;
	}
}

.floating-dot {
	animation: blink 4s infinite ease-in-out;
}

.mouse-follower {
	position: fixed;
	width: 15px;
	height: 15px;
	background: radial-gradient(circle, var(--primary), transparent);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s ease;
	mix-blend-mode: screen;
}

.mouse-follower.active {
	opacity: 0.8;
}

.hero-section .btn,
.call-to-action .btn {
	padding: 15px 40px;
}

.custom-card {
	background: #0F191D;
	backdrop-filter: blur(10px);
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.05);
	/* padding: 30px; */
}

.f-18 {
	font-size: 18px;
}

.f-32 {
	font-size: 32px;
}

.lead {
	font-size: 22px;
}

.text-branding {
	color: var(--branding);
}

.call-to-action {
	font-size: 20px;
	background: var(--gradient-footer);
}

.gradient-footer {
	background: var(--gradient-footer);
}

.site-footer {
	/* font-size: 0.9rem; */
}

.footer-links a {
	color: var(--secondary);
	text-decoration: none;
	transition: all 0.25s ease;
}

.footer-links a:hover {
	color: #fff;
	padding-left: 4px;
}

/* .social-link {
    font-size: 1.2rem;
    color: rgba(255,255,255,.8);
    transition: .2s;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-2px);
} */
.custom-bullet {
	width: 8px;
	height: 8px;
	background-color: #B25FFF;
}

.custom-bullet.bullet-success {
	background-color: #3ECF8E;
}

.custom-bullet.bullet-danger {
	background-color: #EF4444;
}

.navbar {
	background: transparent;
	transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
	background: rgba(10, 14, 22, 0.97);
	border-bottom: 1px solid rgba(27, 36, 51, 0.8);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled::after {
	opacity: 1;
}

.navbar::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(79, 124, 255, 0.3) 25%, rgba(55, 242, 216, 0.3) 75%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.footer-links {
	line-height: 2;
}

.text-copyright {
	color: var(--secondary);
}

.min-height-80 {
	min-height: 80px;
}

@media (max-width: 991px) {
	.hero-section h1 {
		font-size: 34px;
		line-height: 40px;
	}

	.lead {
		font-size: 18px;
	}

	h2 {
		font-size: 30px;
	}

	h3 {
		font-size: 30px;
	}

	.f-20 {
		font-size: 16px;
	}

	.call-to-action {
		font-size: 18px;
	}

	.f-24 {
		font-size: 18px;
	}

	.offcanvas {
		background: #0F191D;
		color: #fff;
		max-width: 80%;
	}

	/* .btn-close {
		background: #fff !important;
	} */
}

.modal-content {
	background: #0F191D;
}

.form-control,
.form-control:focus {
	background: #0D2128;
	border: 1px solid #233537;
	color: #fff;
}

.form-floating>.form-control-plaintext~label::after,
.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after {
	background-color: #0D2128;
	/* color: #fff !important; */
}

.form-floating label {
	color: #fff !important;
}

.logo-button {
	width: 230px;
	height: 160px;
	background: linear-gradient(135deg, #09090B, #00404D);
	flex-shrink: 0;

	/* Smooth, clean rounded corners */
	border-radius: 18px;

	/* Border that respects the radius */
	border: 2px solid rgba(255, 255, 255, 0.12);

	/* Ensures gradient stays inside rounded corners */
	overflow: hidden;

	/* Optional soft depth */
	box-shadow: 0 0 12px rgba(0, 128, 128, 0.25);
}

.testomonial-box {
	background-color: #0F191D;
}

.privacy-policy-section p {
	line-height: 26px;
}

.privacy-policy-section ul li {
	line-height: 28px;
}

.privacy-policy-section a {
	color: var(--primary);
	text-decoration: none;
	font-weight: bold;
}

.tradeinai-box .ai-middle-module {
	/* width: 140px; */
	height: 40px;
	background: linear-gradient(145deg, #ff6b6b, #ee5a6f);
	border-radius: 12px;
	border: 1px solid #ff8787;
	display: flex;
	align-items: center;
	justify-content: center;
	/* box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4); */
}

.case-card {
	background: radial-gradient(circle at top left,
			#141a24,
			#0a0e13 70%);
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		inset 0 0 80px rgba(0, 180, 255, 0.05),
		0 30px 80px rgba(0, 0, 0, 0.6);
}

.text-muted-custom {
	line-height: 1.7;
}

/* Updated CSS for the Go to Top button - responsive positioning */
#goToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #00c7ef; /* Cyan brand color */
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s, box-shadow 0.3s;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 199, 239, 0.4);
}

#goToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#goToTopBtn:hover {
  background-color: #00b0d4; /* Darker cyan on hover */
  box-shadow: 0 6px 20px rgba(0, 199, 239, 0.6);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  #goToTopBtn {
    width: 35px;
    height: 35px;
    bottom: 20px;
    right: 15px;
    font-size: 18px;
  }
}

@media (min-width: 991px) {
	.gt_options.gt-open {
		position: absolute !important;
		top: 54px!important;
	}
	.nturl {
		background-color: white !important;
		color: #000 !important;
	}
	.gt_float_switcher .gt_options {
		position: absolute !important;
	}
	.gt_float_switcher .gt-selected .gt-current-lang {
		/* padding: 10px 5px !important; */
	}	
}