:root {
 --primary-green: #0C7A5A;
 --primary-green-hover: #095f46;
 --secondary-gold: #F4B400;
 --bg-color: #F8FAFC;
 --text-color: #1F2937;
 --text-muted: #6B7280;
 --white: #FFFFFF;
}
body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	overflow-x: hidden;
}
/*
 * Cookie consent
 * The component is fixed to the viewport and works independently of
 * Bootstrap or any other CSS framework used by the website.
 */
.cookie-consent {
	position: fixed;
	right: 20px;
	bottom: 20px;
	left: 20px;
	z-index: 1100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: min(680px, calc(100% - 40px));
	margin-left: auto;
	padding: 18px 20px;
	color: #fff;
	background: #1f2937;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 16px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .24);
}
.cookie-consent[hidden] {
	display: none;
}
.cookie-consent__message {
	margin: 0;
	font-size: .95rem;
	line-height: 1.5;
}
.cookie-consent__button {
	flex: 0 0 auto;
	min-width: 70px;
	padding: 10px 20px;
	color: #fff;
	font: inherit;
	font-weight: 700;
	background: #0c7a5a;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color .2s ease, transform .2s ease;
}
.cookie-consent__button:hover {
	background: #095f46;
	transform: translateY(-1px);
}
.cookie-consent__button:focus-visible {
	outline: 3px solid #f4b400;
	outline-offset: 3px;
}
@media (max-width: 575px) {
	.cookie-consent {
		right: 12px;
		bottom: 12px;
		left: 12px;
		width: calc(100% - 24px);
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
		padding: 16px;
	}
	.cookie-consent__button {
		width: 100%;
	}
}
/* Utility Classes */
        .rounded-20 {
	border-radius: 20px !important;
}
.text-primary-green {
	color: var(--primary-green) !important;
}
.bg-primary-green {
	background-color: var(--primary-green) !important;
}
.bg-custom-light {
	background-color: var(--bg-color);
}
.custom-shadow {
	box-shadow: 0 10px 30px rgba(12, 122, 90, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}
.custom-shadow-sm {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
/* Buttons */
        .btn-green {
	background-color: var(--primary-green);
	color: var(--white);
	border-radius: 12px;
	padding:0px;
	padding: 10px 24px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
}
.navbar .btn-green {
	padding:0px;
}
.btn-green:hover {
	background-color: var(--primary-green-hover);
	color: var(--white);
	transform: translateY(-1px);
}
.btn-gold {
	background-color: var(--secondary-gold);
	color: var(--text-color);
	border-radius: 12px;
	padding: 10px 24px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
}
.btn-gold:hover {
	background-color: #dfa400;
	color: var(--text-color);
	transform: translateY(-1px);
}
.btn-outline-custom {
	border-radius: 12px;
	padding:0px;
	font-weight: 600;
	color: var(--text-color);
	transition: all 0.3s ease;
}
.btn-outline-custom:hover {
}
/* Navbar */
        .navbar {
	padding: 20px 0;
	background-color: rgba(248, 250, 252, 0.9);
	backdrop-filter: blur(10px);
	z-index: 1000;
}
.navbar-brand {
	font-weight: 800;
	font-size: 1.4rem;
	color: var(--primary-green);
	display: flex;
	align-items: center;
	gap: 8px;
}
.nav-link {
	font-weight: 500;
	color: var(--text-color) !important;
	margin: 0 10px;
}
.nav-link:hover {
	color: var(--primary-green) !important;
}
.navbar {
	border-bottom: 1px solid rgba(12, 122, 90, .08);
	box-shadow: 0 8px 30px rgba(31, 41, 55, .04);
}
.navbar .nav-link {
	position: relative;
	padding: .65rem .8rem !important;
	border-radius: 10px;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
	background: rgba(12, 122, 90, .08);
	color: var(--primary-green) !important;
}
.navbar .nav-link.active::after {
	content: "";
	position: absolute;
	left: 25%;
	right: 25%;
	bottom: 3px;
	height: 2px;
	border-radius: 2px;
	background: var(--secondary-gold);
}
.navbar .nav-cta {
	padding: 10px 20px;
	color: #fff !important;
}
.navbar .navbar-collapse {
	position: relative;
}
.navbar .navbar-actions {
	flex: 0 0 auto;
}
.skip-link {
	position: fixed;
	z-index: 9999;
	top: 8px;
	left: 8px;
	padding: 8px 12px;
	background: #fff;
	color: var(--primary-green);
}
.help-topic-card {
	display: block;
	padding: 28px;
	background: #fff;
	border-radius: 20px;
	color: var(--text-color);
	text-decoration: none;
}
.accordion-button:not(.collapsed) {
	color: var(--primary-green);
	background: rgba(12, 122, 90, .06);
	box-shadow: none;
}
@media (max-width: 991px) {
	.navbar-collapse {
		margin-top: 14px;
		padding: 14px;
		background: #fff;
		border-radius: 16px;
		box-shadow: 0 16px 35px rgba(31, 41, 55, .1);
	}
	.navbar .nav-link.active::after { display: none; }
	.navbar .navbar-actions .nav-cta {
		display: block;
		width: 100%;
		text-align: center;
	}
}
/* Hero Section */
        .hero-section {
	padding: 140px 0 80px 0;
	background: radial-gradient(circle at 80% 20%, rgba(12, 122, 90, 0.08) 0%, rgba(248, 250, 252, 0) 50%), radial-gradient(circle at 10% 80%, rgba(244, 180, 0, 0.05) 0%, rgba(248, 250, 252, 0) 50%);
}
.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--text-color);
}
.hero-search-box {
	background: var(--white);
	border-radius: 20px;
	padding: 16px;
	box-shadow: 0 15px 40px rgba(12, 122, 90, 0.06);
	border: 1px solid rgba(12, 122, 90, 0.08);
}
.search-divider {
	width: 1px;
	background-color: #E5E7EB;
	height: 40px;
}
 @media (max-width: 991px) {
 .hero-title {
 font-size: 2.5rem;
}
 .search-divider {
 display: none;
}
}
/* Phone Mockup Styling */
        .mockup-container {
	position: relative;
	max-width: 310px;
	margin: 0 auto;
}
.phone-mockup {
	background: #111;
	border-radius: 40px;
	padding: 12px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border: 4px solid #333;
}
.phone-screen {
	background: var(--bg-color);
	border-radius: 32px;
	overflow: hidden;
	aspect-ratio: 9 / 19.5;
	border: 1px solid #222;
}
/* Categories Section */
        .category-card {
	background-color: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.03);
	border-radius: 20px;
	padding: 24px 16px;
	text-align: center;
	transition: all 0.3s ease;
	text-decoration: none;
	color: var(--text-color);
	display: block;
}
.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(12, 122, 90, 0.08);
	border-color: rgba(12, 122, 90, 0.15);
	color: var(--primary-green);
}
.category-emoji {
	font-size: 2rem;
	margin-bottom: 12px;
	display: inline-block;
}
/* Featured Scroll Container */
        .scroll-container {
	display: flex;
	overflow-x: auto;
	gap: 24px;
	padding: 15px 5px 25px 5px;
	scrollbar-width: none; /* Firefox */
}
 .scroll-container::-webkit-scrollbar {
 display: none; /* Safari & Chrome */
}
/* Product Cards */
        .product-card {
	background-color: var(--white);
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.04);
	min-width: 280px;
	max-width: 280px;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
}
.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
#featured-carousel .product-card {
	min-width: 0;
	max-width: none;
}
#featured-carousel .owl-stage {
	display: flex;
}
#featured-carousel .owl-item,
#featured-carousel .item {
	display: flex;
	height: auto;
}
#featured-carousel .item {
	width: 100% !important;
	flex: 1 1 100%;
}
#featured-carousel .product-card {
	width: 100% !important;
	flex: 1 1 100%;
	height: 100%;
}
#featured-carousel .owl-stage-outer {
	padding-left: 0;
	padding-right: 0;
}
.wishlist-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #EF4444;
	cursor: pointer;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.badge-new {
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: var(--secondary-gold);
	color: var(--text-color);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	z-index: 10;
}
.badge-verified {
	background-color: rgba(12, 122, 90, 0.1);
	color: var(--primary-green);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
}
.product-img-wrapper {
	height: 180px;
	background-color: #F1F5F9;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.product-img {
	max-height: 100%;
	max-width: 100%;
	object-fit: cover;
}
/* Timeline / How It Works */
        .timeline-step {
	position: relative;
	text-align: center;
}
.timeline-number {
	width: 50px;
	height: 50px;
	background-color: var(--white);
	color: var(--primary-green);
	border: 2px solid var(--primary-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
	margin: 0 auto 15px auto;
	position: relative;
	z-index: 2;
}
 .timeline-step:not(:last-child)::after {
 content: '';
 position: absolute;
 top: 25px;
 left: 50%;
 width: 100%;
 height: 2px;
 background-color: #E2E8F0;
 z-index: 1;
}
 @media (max-width: 767px) {
 .timeline-step:not(:last-child)::after {
 display: none;
}
 .timeline-step {
 margin-bottom: 30px;
}
}
/* Become Host Section */
        .become-host-bg {
	background-color: var(--primary-green);
	color: var(--white);
	border-radius: 24px;
	padding: 60px;
	overflow: hidden;
	position: relative;
}
.become-host-circle {
	position: absolute;
	right: -100px;
	bottom: -100px;
	width: 350px;
	height: 350px;
	border-radius: 50%;
	background: rgba(244, 180, 0, 0.1);
}
/* Footer */
        footer {
	background-color: var(--white);
	border-top: 1px solid #E2E8F0;
	color: var(--text-color);
}
.footer-link {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.2s ease;
}
.footer-link:hover {
	color: var(--primary-green);
}
.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--bg-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--text-color);
	margin-right: 10px;
	transition: all 0.3s ease;
	text-decoration: none;
}
.social-icon:hover {
	background-color: var(--primary-green);
	color: var(--white);
}
img {
	max-width:100%;
	height:auto;
}
.images-box img {
	width: 40%;
}
/* Custom Scroll ki CSS ko isse replace karein */
.product-card {
	width: 100%; /* Owl carousel matches width dynamically */
	background-color: var(--white);
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.04);
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
	margin-bottom: 10px; /* shadow clipping se bachne ke liye */
}
.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
/* Premium Process Timeline Styles */
.process-timeline-wrapper {
	position: relative;
	padding: 20px 0;
}

/* Connecting Line for Large Screens (Desktop) */
@media (min-width: 992px) {
 .process-timeline-wrapper::before {
 content: '';
 position: absolute;
 top: 85px; /* Center with the icon box */
 left: 10%;
 right: 10%;
 height: 2px;
 background-image: linear-gradient(to right, rgba(12, 122, 90, 0.1) 0%, rgba(12, 122, 90, 0.4) 50%, rgba(12, 122, 90, 0.1) 100%);
 background-size: 100% 100%;
 z-index: 1;
}
}
/* Card Styling */
.process-card {
	background: #FFFFFF;
	border: 1px solid rgba(12, 122, 90, 0.06);
	border-radius: 24px;
	padding: 35px 24px;
	text-align: center;
	position: relative;
	z-index: 2;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	height: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
/* Floating Light Background Number */
.process-badge {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 2.2rem;
	font-weight: 800;
	color: rgba(12, 122, 90, 0.40); /* Soft watermark style */
	line-height: 1;
	user-select: none;
	transition: color 0.3s ease;
}
/* Icon Box Design */
.process-icon-box {
	width: 64px;
	height: 64px;
	background-color: rgba(12, 122, 90, 0.40);
	color: #0C7A5A;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	transition: all 0.3s ease;
}
/* Hover Animations */
.process-card:hover {
	transform: translateY(-8px);
	border-color: rgba(12, 122, 90, 0.25);
	box-shadow: 0 20px 40px rgba(12, 122, 90, 0.08);
}
.process-card:hover .process-icon-box {
	background-color: #0C7A5A;
	color: #FFFFFF;
	transform: rotate(5deg) scale(1.05);
}
.process-card:hover .process-badge {
	color: rgba(244, 180, 0, 0.15); /* Changes watermark color to subtle gold on hover */
}
/* Premium Testimonial Card Styling */
.testimonial-card {
	background-color: #FFFFFF;
	border: 1px solid rgba(12, 122, 90, 0.05);
	border-radius: 24px;
	padding: 35px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	height: 100%;
	display: flex;
	flex-direction: column;
}
.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(12, 122, 90, 0.06);
	border-color: rgba(12, 122, 90, 0.15);
}
/* Quote Watermark Icon */
.quote-icon-bg {
	position: absolute;
	bottom: 20px;
	right: 30px;
	font-size: 5rem;
	color: rgba(12, 122, 90, 0.04);
	line-height: 1;
	pointer-events: none;
}
.testimonial-text {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #4B5563;
	font-style: italic;
	position: relative;
	z-index: 2;
	flex: 1;
}
#reviews-carousel .owl-stage {
	display: flex;
}
#reviews-carousel .owl-item {
	display: flex;
	height: auto;
}
#reviews-carousel .item {
	width: 100%;
	padding: 4px 2px 10px;
}
@media (max-width: 575px) {
	.testimonial-card {
		padding: 24px 20px;
	}
	.testimonial-card .stars-rating {
		white-space: nowrap;
		font-size: .85rem;
	}
	.testimonial-card .badge {
		margin-left: 10px;
	}
}
/* Avatar Styling */
.testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 1.1rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
/* Customizing Owl Carousel Pagination Dots */
#reviews-carousel .owl-dots {
	margin-top: 35px !important;
	text-align: center;
}
#reviews-carousel .owl-dot span {
	width: 10px !important;
	height: 10px !important;
	margin: 5px 6px !important;
	background: #D1D5DB !important;
	border-radius: 50% !important;
	transition: all 0.3s ease !important;
	display: inline-block;
}
#reviews-carousel .owl-dot.active span {
	background: #0C7A5A !important;
	width: 28px !important; /* Elegant stretched pill shape for active dot */
	border-radius: 5px !important;
}
 * Smartphone Bezel Mockup Design */ .phone-mockup-wrapper {
 position: relative;
 max-width: 280px;
 margin: 0 auto;
}
.smart-phone-frame {
	width: 270px;
	height: 581px;
	position: relative;
	overflow: hidden;
	padding: 2px;
}
/* Slide Content Container */
.app-screen-slide {
	width: 100%;
	height: 496px; /* Perfect screen fit */
	border-radius: 32px;
	overflow: hidden;
	padding-top: 35px; /* Offset for dynamic island notch */
	box-sizing: border-box;
}
.screen-header {
	background-color: #FFFFFF;
	padding: 10px;
	border-bottom: 1px solid #F1F5F9;
}
.mini-search-bar {
	background-color: #F1F5F9;
	border-radius: 8px;
	padding: 6px 10px;
	font-size: 8px;
	color: var(--text-muted);
	text-align: left;
}
/* App Download Button Styling */
.btn-store-download {
	background-color: #1F2937;
	color: #FFFFFF;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 14px;
	padding: 10px 18px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.btn-store-download:hover {
	background-color: #0C7A5A;
	color: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(12, 122, 90, 0.15);
}
.store-icon {
	font-size: 1.8rem;
}
.store-subtext {
	font-size: 9px;
	text-transform: uppercase;
	opacity: 0.8;
	line-height: 1;
	letter-spacing: 0.5px;
}
.store-title {
	font-size: 14px;
	font-weight: 700;
}
/* Customize Dots on Smartphone Carousel */
#app-screens-carousel .owl-dots {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	margin-top: 0 !important;
	z-index: 5;
}
#app-screens-carousel .owl-dot span {
	width: 6px !important;
	height: 6px !important;
	background: rgba(0, 0, 0, 0.25) !important;
}
#app-screens-carousel .owl-dot.active span {
	background: #0C7A5A !important;
	width: 15px !important;
}
/* Base Style for Store Buttons */
.btn-store-download {
	border-radius: 14px;
	padding: 10px 18px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	border: none;
}
/* Green Color Customizer */
.btn-store-green {
	background-color: #0C7A5A;
	color: #FFFFFF !important;
	box-shadow: 0 4px 15px rgba(12, 122, 90, 0.15);
}
.btn-store-green:hover {
	background-color: #095f46;
	color: #FFFFFF !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(12, 122, 90, 0.25);
}
/* Yellow/Gold Color Customizer */
.btn-store-gold {
	background-color: #F4B400;
	color: #1F2937 !important; /* Dark text for better readability on light backgrounds */
	box-shadow: 0 4px 15px rgba(244, 180, 0, 0.15);
}
.btn-store-gold:hover {
	background-color: #dfa400;
	color: #1F2937 !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(244, 180, 0, 0.25);
}
/* Icons and Subtext Styling */
.store-icon {
	font-size: 1.8rem;
}
.store-subtext {
	font-size: 9px;
	text-transform: uppercase;
	opacity: 0.85;
	line-height: 1;
	letter-spacing: 0.5px;
}
.store-title {
	font-size: 14px;
	font-weight: 700;
}
/* Hero Section Enhancements */
.hero-section {
	background: radial-gradient(circle at 90% 10%, rgba(12, 122, 90, 0.05) 0%, rgba(248, 250, 252, 0) 60%), radial-gradient(circle at 10% 90%, rgba(244, 180, 0, 0.03) 0%, rgba(248, 250, 252, 0) 50%);
	padding: 150px 0 100px 0;
}
.premium-hero-badge {
	background-color: rgba(12, 122, 90, 0.08);
	color: #0C7A5A;
	border: 1px solid rgba(12, 122, 90, 0.15);
	padding: 8px 16px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 0.85rem;
}
.text-gradient-green {
	background: linear-gradient(135deg, #0C7A5A 0%, #15B383 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/* Glassmorphism Search Bar Widget */
.hero-search-wrapper {
	background: #FFFFFF;
	border: 1px solid rgba(12, 122, 90, 0.08);
	border-radius: 24px;
	padding: 12px 16px;
	box-shadow: 0 15px 40px rgba(12, 122, 90, 0.05);
}
.search-input-group {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 6px 12px;
}
.search-input-group i {
	font-size: 1.3rem;
}
.search-label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 2px;
}
.search-field {
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
	padding: 0 !important;
	font-weight: 600;
	color: var(--text-color);
	font-size: 14px;
}
.btn-green-search {
	background-color: #0C7A5A;
	color: white;
	border: none;
	border-radius: 16px;
	padding: 14px 20px;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
}
.btn-green-search:hover {
	background-color: #095f46;
	transform: scale(1.02);
}
 @media (min-width: 768px) {
 .border-end-md {
 border-right: 1px solid #E2E8F0;
}
}
/* Mockup Layout & floating animation */
.mockup-container {
	position: relative;
	z-index: 3;
	display: inline-block;
}
.mockup-img {
	max-height: 600px;
	object-fit: contain;
}

/* Float Animation */
@keyframes heroFloat {
 0% {
transform: translateY(0px);
}
 50% {
transform: translateY(-12px);
}
 100% {
transform: translateY(0px);
}
}
.hero-floating-mockup {
	animation: heroFloat 6s ease-in-out infinite;
}
/* Glowing background behind mockup */
.mockup-glow-bg {
	position: absolute;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(12, 122, 90, 0.12) 0%, rgba(244, 180, 0, 0.08) 50%, rgba(255, 255, 255, 0) 70%);
	border-radius: 50%;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/* Floating Badge Cards */
.floating-badge-card {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(8px);
	border-radius: 16px;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: absolute;
	z-index: 5;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}
.badge-icon-circle {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}
.badge-left {
	bottom: 20%;
	left: -40px;
}
.badge-right {
	top: 15%;
	right: -45px;
}
 @media (max-width: 991px) {
 .floating-badge-card {
 display: none; /* Mobile me layout clean rakhne ke liye hide kiya hai */
}
}
/* Premium Contact Section Styles */
.premium-contact-card {
	background-color: #FFFFFF;
	border: 1px solid rgba(12, 122, 90, 0.05);
	border-radius: 24px;
	padding: 35px 24px;
	text-align: center;
	height: 100%;
	position: relative;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
/* Card Hover State */
.premium-contact-card:hover {
	transform: translateY(-6px);
	border-color: rgba(12, 122, 90, 0.15);
	box-shadow: 0 15px 35px rgba(12, 122, 90, 0.06);
}
/* Accent border highlight on QR/WhatsApp card */
.premium-contact-card.border-accent-gold {
	border-color: rgba(244, 180, 0, 0.2);
}
.premium-contact-card.border-accent-gold:hover {
	border-color: rgba(244, 180, 0, 0.4);
}
/* Icon Design */
.contact-icon-circle {
	width: 54px;
	height: 54px;
	background-color: rgba(12, 122, 90, 0.05);
	color: #0C7A5A;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin: 0 auto 20px auto;
	transition: all 0.3s ease;
}
.premium-contact-card:hover .contact-icon-circle {
	background-color: #0C7A5A;
	color: #FFFFFF;
	transform: scale(1.05);
}
/* Action Links & Buttons */
.action-card-link {
	color: #0C7A5A;
	font-weight: 600;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.2s ease;
}
.action-card-link:hover {
	color: #095f46;
	letter-spacing: 0.5px;
}
.btn-contact-action {
	background-color: #0C7A5A;
	color: #FFFFFF !important;
	border-radius: 12px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.2s ease;
	border: none;
}
.btn-contact-action:hover {
	background-color: #095f46;
	transform: translateY(-1px);
}
/* Gold Button overrides for Call Us */
.btn-gold-action {
	background-color: #F4B400;
	color: #1F2937 !important;
}
.btn-gold-action:hover {
	background-color: #dfa400;
}
/* Live Support Status Badge */
.live-support-badge {
	position: absolute;
	top: 15px;
	right: 20px;
	background-color: rgba(244, 180, 0, 0.1);
	color: #dfa400;
	font-size: 10px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
/* Pulsing dot animation */
.pulse-dot {
	width: 6px;
	height: 6px;
	background-color: #F4B400;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 0 rgba(244, 180, 0, 0.4);
	animation: goldPulse 1.5s infinite;
}
 @keyframes goldPulse {
 0% {
 box-shadow: 0 0 0 0px rgba(244, 180, 0, 0.7);
}
 70% {
 box-shadow: 0 0 0 6px rgba(244, 180, 0, 0);
}
 100% {
 box-shadow: 0 0 0 0px rgba(244, 180, 0, 0);
}
}
/* QR Code Scan Frame */
.contact-qr-frame {
	width: 120px;
	height: 120px;
	border: 2px dashed rgba(12, 122, 90, 0.2);
	border-radius: 16px;
	padding: 8px;
	margin: 0 auto;
	background: #FFFFFF;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.qr-image {
	max-width: 100px;
	max-height: 100px;
	border-radius: 8px;
}
.btn-outline-custom a {
	color:#000;
	text-decoration:none;
	padding: 10px 24px;
	display:block;
}
.btn-green a {
	color:#fff;
	text-decoration:none;
	padding: 10px 24px;
	display:block;
}
.slider-prev-btn {
	padding: 15px 15px;
}
.slider-next-btn {
	padding: 15px 15px;
}
/* Premium Stat Cards Styling */
.premium-stat-card {
	background-color: #FFFFFF;
	border: 1px solid rgba(12, 122, 90, 0.05);
	border-radius: 24px;
	padding: 35px 24px;
	position: relative;
	overflow: hidden;
	height: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* Hover effect on cards */
.premium-stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(12, 122, 90, 0.06);
	border-color: rgba(12, 122, 90, 0.15);
}
/* Icons Box */
.stat-icon-box {
	width: 50px;
	height: 50px;
	background-color: rgba(12, 122, 90, 0.05);
	color: #0C7A5A;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}
.premium-stat-card:hover .stat-icon-box {
	background-color: #0C7A5A;
	color: #FFFFFF;
	transform: scale(1.05);
}
/* Typography Enhancements */
.stat-number {
	font-size: 2.3rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 8px;
	letter-spacing: -1px;
}
.stat-label {
	font-size: 14px;
	font-weight: 600;
	color: #6B7280; /* Muted slate grey */
	margin-bottom: 0;
}
/* Bottom Dynamic Accent Lines */
.stat-hover-bar {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 30px; /* Initially narrow */
	height: 3px;
	border-radius: 3px 3px 0 0;
	transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Grow accent line on card hover */
.premium-stat-card:hover .stat-hover-bar {
	width: 100px;
}
/* Color codes mapping */
.bg-accent-gold {
	background-color: #F4B400 !important;
}
/* Premium Categories Card Grid Styling */
.premium-category-card {
	background-color: #FFFFFF;
	border: 1px solid rgba(12, 122, 90, 0.05);
	border-radius: 24px;
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
	height: 100%;
}
/* Hover States on Category Card */
.premium-category-card:hover {
	transform: translateY(-6px);
	border-color: rgba(12, 122, 90, 0.2);
	box-shadow: 0 15px 35px rgba(12, 122, 90, 0.07);
}
/* Emoji Circular Badge */
.category-emoji-badge {
	width: 60px;
	height: 60px;
	background-color: rgba(12, 122, 90, 0.04);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}
.premium-category-card:hover .category-emoji-badge {
}
/* Category Title & Item Count Styles */
.premium-category-card h6 {
	font-size: 19px;
	font-weight: 700;
	transition: color 0.3s ease;
	color: #212529;
}
.premium-category-card:hover h6 {
	color: #0C7A5A !important;
}
.category-count {
	font-size: 11px;
	color: #94A3B8; /* Muted Slate Blue */
	font-weight: 500;
	display: block;
	margin-top: 2px;
}
/* View All Categories Button Link */
.btn-view-all-custom {
	color: #0C7A5A;
	border: 1px solid rgba(12, 122, 90, 0.15);
	background-color: #FFFFFF;
	border-radius: 14px;
	padding: 10px 22px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.btn-view-all-custom:hover {
	background-color: #0C7A5A;
	color: #FFFFFF !important;
	border-color: #0C7A5A;
}
.btn-view-all-custom i {
	transition: transform 0.2s ease;
}
.btn-view-all-custom:hover i {
	transform: translateX(4px); /* Arrow animations */
}
.logo {
	width: 10%;
}
.navbar .logo {
	width: auto;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
}
.navbar .logo img {
	display: block;
	width: 190px;
	max-width: none;
	height: auto;
}
@media (max-width: 575px) {
	.navbar {
		padding: 12px 0;
	}
	.navbar .logo img {
		width: 155px;
	}
	.navbar .navbar-toggler {
		flex: 0 0 auto;
		padding: 6px 9px;
	}
}
footer a.logo {
	width: 20%;
}
footer a.logo img {
	width:40%;
}
.footer-store-buttons {
	flex-wrap: nowrap;
}
.footer-store-buttons .btn-store-download {
	flex: 1 1 0;
	min-width: 0;
	max-width: 175px;
	padding: 9px 11px;
	gap: 8px;
	white-space: nowrap;
}
.footer-store-buttons .btn-store-download > span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
}
.footer-store-buttons .store-icon {
	flex: 0 0 auto;
	font-size: 1.5rem;
}
.footer-store-buttons .store-subtext {
	display: block;
	font-size: 7px;
	letter-spacing: .2px;
}
.footer-store-buttons .store-title {
	display: block;
	font-size: 12px;
	line-height: 1.2;
}
@media (max-width: 360px) {
	.footer-store-buttons .btn-store-download {
		padding-inline: 8px;
		gap: 6px;
	}
	.footer-store-buttons .store-title {
		font-size: 11px;
	}
}












/* Utility Classes */
.rounded-20 {
	border-radius: 20px !important;
}
.rounded-24 {
	border-radius: 24px !important;
}
.text-primary-green {
	color: var(--primary-green) !important;
}
.bg-primary-green {
	background-color: var(--primary-green) !important;
}
.custom-shadow {
	box-shadow: 0 10px 30px rgba(12, 122, 90, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}


/* Policy Content Layout */
.policy-header {
	padding: 160px 0 60px 0;
	background: radial-gradient(circle at 90% 10%, rgba(12, 122, 90, 0.05) 0%, rgba(248, 250, 252, 0) 60%);
}
.policy-sidebar {
	position: sticky;
	top: 110px;
	z-index: 10;
}
.sidebar-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	color: var(--text-muted);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 12px;
	transition: all 0.2s ease;
}
.sidebar-link:hover, .sidebar-link.active {
	color: var(--primary-green);
	background-color: rgba(12, 122, 90, 0.06);
}
.policy-card {
	background-color: var(--white);
	border: 1px solid rgba(12, 122, 90, 0.05);
	padding: 40px;
}
.policy-section {
	scroll-margin-top: 120px;
}
.policy-section h4 {
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 16px;
}
.policy-section p, .policy-section li {
	color: #4B5563;
	line-height: 1.7;
	font-size: 0.98rem;
}
.policy-section ul {
	padding-left: 20px;
	margin-bottom: 20px;
}
.policy-section li {
	margin-bottom: 8px;
}

/* Contact Area Inside Policy */
.contact-highlight {
	background-color: rgba(12, 122, 90, 0.03);
	border-left: 4px solid var(--primary-green);
	border-radius: 0 16px 16px 0;
	padding: 24px;
}















/* Terms Content Layout */
.terms-header {
	padding: 160px 0 60px 0;
	background: radial-gradient(circle at 90% 10%, rgba(12, 122, 90, 0.05) 0%, rgba(248, 250, 252, 0) 60%);
}
.terms-sidebar {
	position: sticky;
	top: 110px;
	z-index: 10;
}
.sidebar-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	color: var(--text-muted);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 12px;
	transition: all 0.2s ease;
}
.sidebar-link:hover, .sidebar-link.active {
	color: var(--primary-green);
	background-color: rgba(12, 122, 90, 0.06);
}
.terms-card {
	background-color: var(--white);
	border: 1px solid rgba(12, 122, 90, 0.05);
	padding: 40px;
}
.terms-section {
	scroll-margin-top: 120px;
}
.terms-section h4 {
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 16px;
}
.terms-section p, .terms-section li {
	color: #4B5563;
	line-height: 1.7;
	font-size: 0.98rem;
}
.terms-section ul {
	padding-left: 20px;
	margin-bottom: 20px;
}
.terms-section li {
	margin-bottom: 8px;
}

/* Highlighted Warning/Info Area */
.legal-alert {
	background-color: rgba(244, 180, 0, 0.04);
	border-left: 4px solid var(--secondary-gold);
	border-radius: 0 16px 16px 0;
	padding: 24px;
}















/* Support Hero Section */
.support-hero {
	padding: 160px 0 80px 0;
	background: radial-gradient(circle at 90% 10%, rgba(12, 122, 90, 0.06) 0%, rgba(248, 250, 252, 0) 60%),
	            radial-gradient(circle at 10% 90%, rgba(244, 180, 0, 0.04) 0%, rgba(248, 250, 252, 0) 50%);
}
.search-box-wrapper {
	max-width: 600px;
	margin: 0 auto;
}
.search-box-input {
	border: 1px solid rgba(12, 122, 90, 0.15) !important;
	border-radius: 18px !important;
	padding: 16px 20px 16px 50px !important;
	font-weight: 500;
	box-shadow: 0 10px 25px rgba(12, 122, 90, 0.04) !important;
}
.search-icon {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--primary-green);
	font-size: 1.2rem;
}

/* Quick Help Cards */
.help-topic-card {
	background-color: var(--white);
	border: 1px solid rgba(12, 122, 90, 0.05);
	border-radius: 20px;
	padding: 30px 20px;
	transition: all 0.3s ease;
	text-decoration: none;
	color: var(--text-color);
	display: block;
}
.help-topic-card:hover {
	transform: translateY(-5px);
	border-color: rgba(12, 122, 90, 0.15);
	box-shadow: 0 15px 35px rgba(12, 122, 90, 0.06);
	color: var(--primary-green);
}
.topic-icon-circle {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background-color: rgba(12, 122, 90, 0.05);
	color: var(--primary-green);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}
.help-topic-card:hover .topic-icon-circle {
	background-color: var(--primary-green);
	color: var(--white);
}

/* FAQ Accordion Styling */
.faq-accordion .accordion-item {
	border: 1px solid rgba(12, 122, 90, 0.05) !important;
	border-radius: 16px !important;
	margin-bottom: 16px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}
.faq-accordion .accordion-button {
	font-weight: 600;
	color: var(--text-color);
	padding: 20px;
}
.faq-accordion .accordion-button:not(.collapsed) {
	background-color: rgba(12, 122, 90, 0.03);
	color: var(--primary-green);
	box-shadow: none;
}
.faq-accordion .accordion-button::after {
	font-family: "bootstrap-icons" !important;
	content: "\f282" !important;
	background: none !important;
	transform: none !important;
	color: var(--text-muted);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
	content: "\f286" !important;
	color: var(--primary-green);
}

/* Premium Form Elements */
.support-form-card {
	background-color: var(--white);
	border: 1px solid rgba(12, 122, 90, 0.05);
	padding: 40px;
}
.form-input-custom {
	border: 1px solid rgba(12, 122, 90, 0.1) !important;
	border-radius: 12px !important;
	padding: 12px 16px !important;
	font-weight: 500;
}
.form-input-custom:focus {
	border-color: var(--primary-green) !important;
	box-shadow: 0 0 0 4px rgba(12, 122, 90, 0.08) !important;
}

/* Live Support Status Badge */
.live-support-badge {
	position: absolute;
	top: 15px;
	right: 20px;
	background-color: rgba(244, 180, 0, 0.1);
	color: #dfa400;
	font-size: 10px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.pulse-dot {
	width: 6px;
	height: 6px;
	background-color: #F4B400;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 0 rgba(244, 180, 0, 0.4);
	animation: goldPulse 1.5s infinite;
}
 @keyframes goldPulse {
 0% {
  box-shadow: 0 0 0 0px rgba(244, 180, 0, 0.7);
 }
 70% {
  box-shadow: 0 0 0 6px rgba(244, 180, 0, 0);
 }
 100% {
  box-shadow: 0 0 0 0px rgba(244, 180, 0, 0);
 }
}

/* Contact QR Area */
.premium-contact-card {
	background-color: #FFFFFF;
	border: 1px solid rgba(12, 122, 90, 0.05);
	border-radius: 24px;
	padding: 35px 24px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.contact-qr-frame {
	width: 120px;
	height: 120px;
	border: 2px dashed rgba(12, 122, 90, 0.2);
	border-radius: 16px;
	padding: 8px;
	margin: 0 auto;
	background: #FFFFFF;
}
.qr-image {
	max-width: 100px;
	max-height: 100px;
	border-radius: 8px;
}
