

:root {
	--brand: #fab92b;
	--brand-dark: #c6930d;
	--bg-soft: #fffdf5;
	--text: #222;
	--muted: #666;
	--radius: 14px;
	--shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	--heading-color: #c6930d;
}
body {
			/* font-family: "Inter", sans-serif; */
			font-family: "Roboto", sans-serif;
			background-color: #fff;
		}
.heading{
	color:var(--heading-color)
}

		.navbar {
			background-color: #fff;
			/* box-shadow: 0 0 10px rgba(0,0,0,0.05); */
			box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
			border-radius: 32px;
			padding: 0 10px;
		}

		.navbar-brand {
			font-weight: 700;
			color: #ffc107 !important;
			font-size: 1.6rem;
		}

		.btn-green {
			background-color: #ffc107;
			color: #fff;
			border-radius: 30px;
			font-weight: 500;
			padding: 10px 25px;
		}

		.btn-green:hover {
			background-color: #fff;
			color: #ffc107;
			border: 1.5px solid #ffc107;
		}

		.btn-outline-green {
			border: 1.5px solid #ffc107;
			color: #ffc107;
			border-radius: 30px;
			font-weight: 500;
			padding: 10px 25px;
		}

		.btn-outline-green:hover {
			background-color: #ffc107;
			color: #fff;
		}

		.hero-section {
			padding: 7rem 0 2rem 0;
		}

		.hero-heading {
			font-size: 2.8rem;
			font-weight: 600;
			line-height: 1.3;
		}

		.hero-text {
			color: #6c757d;
			font-size: 1rem;
			margin-top: 20px;
			margin-bottom: 15px;
			font-weight: 400;
		}

		.icon-text {
			font-size: 0.9rem;
			color: #6c757d;
			display: flex;
			gap: 5px;
			align-items: center;
			flex-wrap: wrap;
			margin-bottom: 20px;
		}

		.icon-text span {
			display: flex;
			align-items: center;
			gap: 5px;
			font-size: 14px;
			font-weight: 500;
		}

		.hero-img {
			width: 100%;
			max-width: 550px;
			border-radius: 10px;
			box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
		}

		.trusted-section {
			background-color: #fff;
		}

		.brand-logo {
			max-height: 60px;
			transition: transform 0.2s ease;
		}

		.brand-logo:hover {
			transform: scale(1.05);
		}

		.testimonial-section {
			background-color: #f8f9fa;
		}

		.review-card {
			background: #fff;
			border-radius: 20px;
			max-width: 700px;
		}

		.carousel-control-prev-icon,
		.carousel-control-next-icon {
			filter: invert(1);
		}

		.features-section {
			background: #f8f9fa;
		}

		.feature-card {
			border-radius: 15px;
			transition: transform 0.2s ease, box-shadow 0.2s ease;
		}

		.feature-card:hover {
			transform: translateY(-5px);
			box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
		}

		.features-demo {
			background-color: #f8fdf9;
		}

		.demo-card {
			position: relative;
			transition: all 0.3s ease;
		}

		.demo-card:hover {
			transform: translateY(-6px);
			box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
		}

		.play-btn {
			position: absolute;
			bottom: 29%;
			right: 15px;
			font-size: 24px;
			width: 42px;
			height: 30px;
			line-height: 18px;
			text-align: center;
		}

		.faq-section {
			background: #f9f9f9;
		}

		.accordion-button {
			background-color: #fff !important;
			border-radius: 12px !important;
			font-weight: 500;
			box-shadow: none !important;
		}

		.accordion-button:not(.collapsed) {
			color: #ffc107;
			background-color: #ffc10717 !important;
		}

		.accordion-item {
			border-radius: 12px !important;
		}

		.cta-section {
			background-color: #fff;
			padding: 80px 20px 40px;
			text-align: center;
		}

		.cta-container {
			display: flex;
			align-items: center;
			justify-content: space-between	;
			flex-wrap: wrap;
			gap: 40px;
		}

		.install-btn {
			background-color: #ffc107;
			color: #fff;
			border: none;
			padding: 10px 30px;
			border-radius: 50px;
			font-weight: 600;
			font-size: 15px;
			cursor: pointer;
			display: flex;
			align-items: center;
			gap: 6px;
			transition: 0.3s;
		}

		.install-btn:hover {
			background-color: #ffc107;
		}

		.cta-text h2 {
			color: #ffc107;
			font-size: 22px;
			font-weight: 700;
			margin-bottom: 10px;
			text-align: left;
		}

		.cta-text p {
			color: #222;
			font-size: 16px;
			text-align: left;
			margin: 0;
		}

		/* Footer Section */
		.footer {
			background-color: #f7f7f7;
			padding: 30px 20px;
			text-align: center;
			position: relative;
		}

		.footer-links {
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
			gap: 30px;
			margin-bottom: 10px;
		}

		.footer-links a {
			color: #000;
			font-weight: 500;
			text-decoration: none;
			transition: 0.3s;
		}

			.footer-links a:hover {
				color: #ffc107c4;
			}

		.footer-copy {
			color: #555;
			font-size: 14px;
			margin-top: 10px;
		}

		/* Back to top button */
		.back-to-top {
			position: absolute;
			right: 40px;
			bottom: 25px;
			background-color: #ccc;
			border: none;
			border-radius: 50%;
			width: 36px;
			height: 36px;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			transition: 0.3s;
		}

		.back-to-top:hover {
			background-color: #999;
		}

		.back-to-top i {
			font-size: 20px;
			color: #fff;
		}

		ul li {
			padding: 5px 0;
			font-size: 15px;
		}

		@media screen and (max-width: 991px) {
			.hero-heading {
				font-size: 1.8rem;
				text-align: center;
			}

			.hero-text {
				text-align: center;
			}

			.hero-img {
				margin-bottom: 20px;
			}

			.icon-text {
				justify-content: center;
			}

			.btns {
				justify-content: center;
			}
		}
/*policy-page*/
.policy-page{
	padding-top:90px;
}
.policy-hero {
	background: linear-gradient(120deg,var(--brand),#ffe69b);
	border-bottom: 3px solid var(--brand-d);
	padding: 70px 0 40px;
	text-align: center;
	color: #111;
}

	.policy-hero h1 {
		font-weight: 800;
		letter-spacing: -.02em;
		font-size: 36px;
		margin: 0 0 8px
	}

	.policy-hero .meta {
		color: #2b2b2b;
		font-size: 14px
	}

/* Body layout */
.policy-body {
	margin: 48px auto
}

.policy-intro {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 22px 22px;
	margin: 0 0 24px;
}

.policy-section {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 22px 22px;
	margin: 0 0 18px;
	transition: transform .12s ease, box-shadow .2s ease;
}

	.policy-section:hover {
		transform: translateY(-3px);
		box-shadow: 0 16px 32px rgba(0,0,0,.08)
	}

	/* Headings + list */
	.policy-section h2 {
		font-size: 22px;
		margin: 0 0 10px;
		font-weight: 800;
		color: #1f2937
	}

	.policy-section p {
		color: var(--muted);
		margin: 0 0 10px
	}

	.policy-section ul, .policy-section ol {
		margin: 6px 0 0 18px
	}

	.policy-section li {
		margin: 6px 0
	}

.policy-kicker {
	display: inline-block;
	padding: 4px 10px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 999px;
	font-size: 12px;
	color: #6b7280
}


.policy-page a {
	color: #1f2937;
	text-underline-offset: 3px
}

	.policy-page a.brand {
		color: #000;
		text-decoration: underline;
		color: var(--brand-d);
		font-weight: 700
	}

	.policy-page a:focus-visible {
		outline: 3px solid rgba(250,185,43,.35);
		border-radius: 8px
	}

/* Responsive */
@media (max-width:720px) {
	.policy-hero {
		padding: 54px 0 26px
	}

		.policy-hero h1 {
			font-size: 28px
		}
}

/*contact-page*/
.contact-page {
/*	font-family: "Poppins", system-ui, sans-serif;*/
	color: var(--text);
	background: #fff;
}

.hero {
	text-align: center;
	padding: 80px 20px 40px;
	background: linear-gradient(120deg, var(--brand) 0%, #ffe69b 100%);
	color: #111;
	border-bottom: 4px solid var(--brand-dark);
}

	.hero h1 {
		font-size: 36px;
		font-weight: 800;
		margin-bottom: 10px;
	}

	.hero .subtitle {
		font-size: 16px;
		color: #333;
	}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	max-width: 1100px;
	margin: 60px auto;
	padding: 0 20px;
}

@media (max-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr;
		margin-top: 30px;
	}
}

.contact-card,
.contact-form {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 30px 35px;
	transition: transform 0.2s ease, box-shadow 0.3s ease;
}

	.contact-card:hover,
	.contact-form:hover {
		transform: translateY(-4px);
		box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
	}

	.contact-card h2,
	.contact-form h2 {
		color: #ffc107;
		font-weight: 700;
		margin-bottom: 12px;
		font-size: 20px;
	}

	.contact-card p,
	.contact-form p {
		color: var(--muted);
		line-height: 1.6;
	}

	.contact-card a {
		color: #ffc107;
		text-decoration: none;
		font-weight: 600;
	}

		.contact-card a:hover {
			text-decoration: underline;
		}

.form-group {
	margin-bottom: 18px;
}

	.form-group label {
		display: block;
		margin-bottom: 5px;
		font-weight: 600;
	}

	.form-group input,
	.form-group textarea {
		width: 100%;
		padding: 12px 14px;
		border: 1px solid #ddd;
		border-radius: var(--radius);
		font-size: 14px;
		transition: border-color 0.2s, box-shadow 0.2s;
	}

		.form-group input:focus,
		.form-group textarea:focus {
			border-color: var(--brand);
			box-shadow: 0 0 0 3px rgba(250, 185, 43, 0.2);
			outline: none;
		}

.btn-submit {
	background: var(--brand);
	color: #111;
	font-weight: 700;
	border: none;
	padding: 12px 24px;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
}

	.btn-submit:hover {
		background: var(--brand-dark);
		transform: translateY(-1px);
	}

	.btn-submit:active {
		transform: translateY(0);
	}
.register-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg,#fffdf0,#fff5cc);
}

.register-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 40px;
    max-width: 420px;
    width: 100%;
}

    .register-card h4 {
        font-weight: 800;
        color: #1f2937;
    }

.form-control {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 10px 14px;
    box-shadow: none;
}

    .form-control:focus {
        border-color: #fab92b;
        box-shadow: 0 0 0 3px rgba(250,185,43,.25);
    }

.btn-warning {
    background: #fab92b;
    border: none;
}

    .btn-warning:hover {
        background: #e6a61f;
    }

.btn-primary {
    background: #111827;
    border: none;
    text-decoration: unset !important;
}

    .btn-primary:hover {
        background: #2d3748;
    }

.toggle-pass {
    position: absolute;
    top: 72%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 13px;
    color: #888;
    cursor: pointer;
    user-select: none;
}

.password-rules {
    font-size: 13px;
    color: #6b7280;
}

.invalid-text {
    color: #dc3545;
}

.valid-text {
    color: #198754;
}

#otpSection input {
    text-align: center;
    font-weight: 700;
    letter-spacing: 3px;
}
