/* Animation states for scroll-triggered animations */
.animate-slide-up {
	opacity: 0;
	transform: translateY(40px);
}

.animate-slide-up.animate-in {
	animation: slideUp 600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in {
	opacity: 0;
}

.animate-fade-in.animate-in {
	animation: fadeIn 500ms ease-in-out forwards;
}

.animate-scale-up {
	opacity: 0;
	transform: scale(0.95);
}

.animate-scale-up.animate-in {
	animation: scaleUp 600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideUp {
	from {
	opacity: 0;
	transform: translateY(40px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
	opacity: 0;
	}
	to {
	opacity: 1;
	}
}

@keyframes scaleUp {
	from {
	opacity: 0;
	transform: scale(0.95);
	}
	to {
	opacity: 1;
	transform: scale(1);
	}
}

/* Staggered animation delays */
.stagger-0 {
	animation-delay: 0ms;
}

.stagger-1 {
	animation-delay: 100ms;
}

.stagger-2 {
	animation-delay: 200ms;
}

.stagger-3 {
	animation-delay: 300ms;
}

.stagger-4 {
	animation-delay: 400ms;
}

.stagger-5 {
	animation-delay: 500ms;
}

/* FAQ accordion animation */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 300ms ease-in-out;
}

[data-faq-item].expanded .faq-answer {
	max-height: 500px;
}

.faq-icon {
	transition: transform 300ms ease-in-out;
}

[data-faq-item].expanded .faq-icon {
	transform: rotate(180deg);
}

/* Smooth transitions */
.transition-smooth {
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slider animation */
[data-benefits-slider] {
	transition: transform 500ms ease-out;
}

/* Hover effects */
.hover-lift {
	transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}

.hover-lift:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Focus states */
:focus-visible {
	outline: 2px solid #7C3AED;
	outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.01ms !important;
	scroll-behavior: auto !important;
	}
}

/* Scroll-linked pinch animation for phone images */
/* Handled via JavaScript scroll listener for smooth parallax effect */

/* Ensure phone containers have no background */
[data-scroll-close-image] {
	background: transparent !important;
}

[data-scroll-close-image] img {
	background: transparent !important;
}


/* Hide scrollbar while keeping scroll functionality */
.scrollbar-hide {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;     /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
	display: none;  /* Chrome, Safari and Opera */
}


/* Scrolling digit counter animation */
.number-digit-2 {
	line-height: 1;
	display: block;
	height: auto;
}

.single-counter-wrap {
	display: inline-flex;
	flex-direction: column;
	overflow: hidden;
	height: 100%;
}

.summery-counter-wrap {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	overflow: hidden;
}

/* Trigger animation on scroll */
.single-counter-wrap.animate-in {
	animation: none;
}

/* Savings card animations */
.single-saving-card-wrap {
	transition: transform 300ms ease-out, box-shadow 300ms ease-out;
}

.single-saving-card-wrap:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}


/* Saving card icon wrappers */
.saving-card-icon-wrap-2 {
	background-color: #d988ff;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	display: flex;
	flex-shrink: 0;
}

.saving-card-icon-wrap-2._1 {
	background-color: #d988ff;
}

.saving-card-icon-wrap-2._2 {
	background-color: #61bdff;
}

.saving-card-icon-wrap-2._3 {
	background-color: #efbf04;
}

.saving-card-icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Getting Started Section */
.helps-container {
	max-width: 745px;
	margin-left: auto;
	margin-right: auto;
}

.help-img-wrapper {
	background-color: #f6f7f9;
	border-radius: 16px;
	justify-content: center;
	align-items: flex-end;
	padding-top: 24px;
	padding-left: 24px;
	padding-right: 24px;
	display: flex;
	overflow: hidden;
}

/* Store Logo Styling */
.store-logo {
	max-width: 59.6%;
	vertical-align: middle;
	display: inline-block;
}

/* Store Logo Card Heights */
.single-store-logo-wrap.small {
	height: 151px;
}

.single-store-logo-wrap.long {
	height: 177px;
}

/* Floating Bubble Animation */
@keyframes float {
	0%, 100% {
	transform: translateY(0px);
	}
	50% {
	transform: translateY(-20px);
	}
}

.float-bubble {
	animation: float 2s ease-in-out infinite;
}

.float-bubble-slow {
	animation: float 3s ease-in-out infinite;
}

.float-bubble-slower {
	animation: float 4s ease-in-out infinite;
}

/* Directional Slide Animations */
.animate-slide-up {
	opacity: 0;
	transform: translateY(40px);
}

.animate-slide-down {
	opacity: 0;
	transform: translateY(-40px);
}

.animate-slide-left {
	opacity: 0;
	transform: translateX(40px);
}

.animate-slide-right {
	opacity: 0;
	transform: translateX(-40px);
}

/* Animation In States */
.animate-slide-up.animate-in {
	animation: slideUp 600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-down.animate-in {
	animation: slideDown 600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-left.animate-in {
	animation: slideLeft 600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-right.animate-in {
	animation: slideRight 600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Keyframe Animations */
@keyframes slideDown {
	from {
	opacity: 0;
	transform: translateY(-40px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}

@keyframes slideLeft {
	from {
	opacity: 0;
	transform: translateX(40px);
	}
	to {
	opacity: 1;
	transform: translateX(0);
	}
}

@keyframes slideRight {
	from {
	opacity: 0;
	transform: translateX(-40px);
	}
	to {
	opacity: 1;
	transform: translateX(0);
	}
}


/* Testimonial Section Styling */
.testimonial-bg-wrapper {
	box-sizing: border-box;
}

.testimonial-reviews-flex {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.single-testimonial-wrap {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	opacity: 1;
	transform-style: preserve-3d;
}

.single-testimonial-wrap.left {
	align-items: flex-start;
}

.single-testimonial-wrap.right {
	align-items: flex-end;
}

.testimonial-details-wrap {
	width: 100%;
	background-color: #FAE6FF;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-right-radius: 24px;
	margin-bottom: 16px;
	padding: 25px 32px;
}

.testimonial-details-wrap._2 {
	background-color: #e3e8ef;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 24px;
}

.testimonial-details {
	font-size: 1.125rem;
	line-height: 1.6;
	color: inherit;
	margin: 0;
}

.testimonial-author-wrap {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: 100%;
}

.testimonial-author-wrap.right {
	justify-content: flex-end;
}

.testimonial-author-img {
	flex-shrink: 0;
	object-fit: cover;
}

.testimonial-author-info-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.testimonial-author-name {
	color: #7b1cfa;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
}

.testimonial-author-designation {
	font-size: 0.875rem;
	line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.testimonial-bg-wrapper {
	padding: 32px 24px;
	max-width: 100%;
	}

	.testimonial-details {
	font-size: 1rem;
	}

	.single-testimonial-wrap.right {
	align-items: flex-start;
	}

	.testimonial-author-wrap.right {
	justify-content: flex-start;
	}
}


/* FAQ Section Styling */
.section.faq {
	padding-top: 0;
	padding-bottom: 100px;

	position: relative;
	overflow: hidden;
}

.faq-wrapper {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
.faq-wrapper {
	z-index: 1;
	background-color: #7b1cfb;
	background-image: url(https://cdn.prod.website-files.com/682f553e31a49c15f49f4c12/682f553f31a49c15f49f4cf1_Faq-BG-Border.png);
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 24px;
	padding: 104px 15px 120px;
	position: relative;
}
.faq-line-left,
.faq-line-right {
	position: absolute;
	top: 0;
	width: 300px;
	height: 300px;
	opacity: 0.1;
	z-index: 0;
}


.faq-line-left {
	z-index: -1;
	max-width: 40%;
	/* height: 70%; */
	position: absolute;
	inset: 90px auto auto 0%;
}
.faq-line-right {
	z-index: -1;
	max-width: 38%;
	position: absolute;
	inset: auto 0% 65px auto;
}

.faq-container {
	position: relative;
	z-index: 1;
}

.section-title-wrapper {
	text-align: center;
	margin-bottom: 10px;
}

.section-title-wrap.faq {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.section-title-2.white._2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #000;
	margin: 0;
	line-height: 1.2;
}

@media (max-width: 768px) {
	.section-title-2.white._2 {
	font-size: 1.875rem;
	}
}

.faq-flex-wrap-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
}

.single-faq-wrap-2 {
	background-color: #B07C0A;
	border-radius: 12px;
	overflow: hidden;
	transition: all 300ms ease-out;
}

.single-faq-wrap-2:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(163, 143, 251, 0.3);
}

.faq-question-wrap-2 {
	cursor: pointer;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 300ms ease-out;
}

.faq-question-wrap-2:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.faq-question-flex-wrap-2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 16px;
}

.faq-question-2 {
	font-size: 1.125rem;
	font-weight: 600;
	color: white;
	margin: 0;
	flex: 1;
	text-align: left;
}

.faq-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	transition: transform 300ms ease-out;
}

.faq-arrow {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity 300ms ease-out;
}

.single-faq-wrap-2.expanded .faq-icon-wrap {
	transform: rotate(180deg);
}

.faq-ans-wrapper-2 {
	max-height: 0;
	overflow: hidden;
	transition: max-height 300ms ease-out;
	background-color: rgba(255, 255, 255, 0.05);
}

.single-faq-wrap-2.expanded .faq-ans-wrapper-2 {
	max-height: 500px;
}

.faq-ans-wrap-2 {
	padding: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer-2 {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

@media (max-width: 768px) {
	.section.faq {
	padding-bottom: 60px;
	}

	.faq-container {
	padding: 40px 16px;
	}

	.section-title-wrapper {
	margin-bottom: 40px;
	}

	.faq-question-wrap-2 {
	padding: 16px;
	}

	.faq-question-2 {
	font-size: 1rem;
	}

	.faq-ans-wrap-2 {
	padding: 16px;
	}

	.faq-answer-2 {
	font-size: 0.9375rem;
	}
}

.container-faq {
	max-width: 1267px;
	margin-left: auto;
	margin-right: auto;
	/* padding-left: 15px;
	padding-right: 15px; */
}


/* Blog Section Styling */
.section.blog {
	padding: 80px 20px;
	background-color: #ffffff;
}

.section-title-wrapper {
	text-align: center;
	margin-bottom: 60px;
}

.section-title-wrap.blog {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #111827;
	margin: 0;
	line-height: 1.2;
}

@media (max-width: 768px) {
	.section-title {
	font-size: 1.875rem;
	}
}

.blog-collection-list-wrapper {
	margin-bottom: 40px;
}

.blog-collection {
	width: 100%;
}

.blog-grid-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	margin-bottom: 40px;
}

.blog-grid-wrap.home-page {
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

@media (max-width: 768px) {
	.blog-grid-wrap {
	grid-template-columns: 1fr;
	gap: 24px;
	}
}

.single-blog-wrap {
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
	transition: all 300ms ease-out;
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
}

.single-blog-wrap:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog-contents-wrap {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.blog-img-wrap {
	display: block;
	width: 100%;
	height: 240px;
	overflow: hidden;
	background-color: #f3f4f6;
	text-decoration: none;
}

.blog-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease-out;
}

.single-blog-wrap:hover .blog-img {
	transform: scale(1.05);
}

.blog-details-wrap {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px;
	gap: 12px;
}

.blog-info-wrap {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 0.875rem;
}

.blog-cat-wrap {
	flex: 1;
}

.blog-category {
	display: inline-block;
	padding: 6px 12px;
	background-color: #f3f4f6;
	border-radius: 20px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #6b7280;
	margin: 0;
}

.blog-date-wrap {
	white-space: nowrap;
}

.blog-date {
	font-size: 0.875rem;
	color: #9ca3af;
	margin: 0;
}

.blog-post-title-wrap {
	text-decoration: none;
	display: block;
}

.blog-post-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
	margin: 0;
	line-height: 1.4;
	transition: color 300ms ease-out;
}

.single-blog-wrap:hover .blog-post-title {
	color: #7c3aed;
}

.blog-post-details {
	font-size: 0.9375rem;
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

.blog-button-wrapper {
	display: flex;
	justify-content: center;
}

.primary-button {
	display: inline-block;
	text-decoration: none;
	padding: 12px 25px;
	background-color: #7c3aed;
	color: white;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 300ms ease-out;
	border: 2px solid #7c3aed;
}

.primary-button:hover {
	background-color: #6d28d9;
	border-color: #6d28d9;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(124, 58, 237, 0.3);
}

.primary-button-flex {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.primary-button-flex.purple {
	color: white;
}

.primary-button-text-wrap {
	display: flex;
	align-items: center;
}

.primary-button-text {
	font-size: 1rem;
	font-weight: 600;
}

@media (max-width: 768px) {
	.section.blog {
	padding: 60px 16px;
	}

	.section-title-wrapper {
	margin-bottom: 40px;
	}

	.blog-details-wrap {
	padding: 16px;
	}

	.blog-post-title {
	font-size: 1.125rem;
	}
}


/* CTA Section Styling */
.section.cta {
	padding: 120px 0px 0px;
	background-color: #ffffff;
	position: relative;
	overflow: hidden;
}

.cta-flex-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.cta-flex-wrap {
	grid-template-columns: 1fr;
	gap: 40px;
	}
}

.split-content {
	display: flex;
	flex-direction: column;
}

.cta-content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.section-title-wrapper.mb-60 {
	margin-bottom: 40px;
}

.section-title-wrap.cta {
	text-align: left;
}

.section-title-wrap.cta .section-title {
	color: #111827;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

@media (max-width: 768px) {
	.section-title-wrap.cta .section-title {
	font-size: 1.875rem;
	}
}

.cta-details {
	font-size: 1.125rem;
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
	max-width: 500px;
}

.cta-button-wrapper {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.cta-button-wrapper .primary-button {
	display: inline-flex;
	text-decoration: none;
	transition: all 300ms ease-out;
}

.cta-button-wrapper .primary-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.primary-button-flex-app {
	background-color: #ffffff;
	color: #6b7280;
	text-transform: capitalize;
	border-radius: 100px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 18px 24px;
	font-size: 16px;
	font-weight: 700;
	line-height: 100%;
	display: flex;
	position: relative;
	overflow: hidden;
}

.primary-button-flex-app.gray-bordered {
	border: 1px solid #e5e7eb;
	padding-top: 14px;
	padding-bottom: 14px;
}

.cta-btn-icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.primary-button-text {
	font-size: 1rem;
	font-weight: 600;
}

.cta-image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.cta-mobile {
	width: 100%;
	max-width: 400px;
	height: auto;
	object-fit: contain;
}

@media (max-width: 768px) {
	.section.cta {
	padding: 60px 16px;
	}

	.cta-flex-wrap {
	gap: 30px;
	}

	.section-title-wrap.cta .section-title {
	font-size: 1.5rem;
	}

	.cta-details {
	font-size: 1rem;
	}

	.cta-button-wrapper {
	gap: 12px;
	}

	.cta-button-wrapper .primary-button {
	padding: 10px 16px;
	font-size: 0.9375rem;
	}

	.cta-btn-icon {
	width: 18px;
	height: 18px;
	}
}


/* Footer Styling */
.footer-wrapper {
	background-color: #000;
	text-color: #fff;
	
	/* padding: 60px 20px; */
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-top-wrap {
	background-color: #000000;
	border-radius: 24px;
	padding: 120px 0px 70px 71px;
	margin-bottom: 40px;
}

.footer-top-container {
	width: 100%;
}

.footer-top-flex-wrap {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
}


.section.team-members, .section.career, .section.mission, .section.features, .section.feature-benefits {
	padding-bottom: 0;
}
.section {
	padding-top: 120px;
	padding-bottom: 120px;
}
@media (max-width: 768px) {
	.section {
	padding-top: 30px;
	padding-bottom: 120px;
}
	.footer-top-wrap {
	background-color: #000000;
	border-radius: 0px;
padding: 51px 0px 86px 24px;
	margin-bottom: 40px;
}
	.footer-top-flex-wrap {
	grid-template-columns: 1fr;
	gap: 40px;
	}
}

.footer-details-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-logo-wrap {
	display: inline-block;
	text-decoration: none;
}

.footer-logo {
	width: 100%;
	max-width: 234px;
	height: auto;
	object-fit: contain;
}

.footer-logo-wrap .flex {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-logo-wrap .w-8 {
	width: 32px;
	height: 32px;
	background-color: white;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.footer-logo-wrap .text-white {
	color: white;
	font-size: 1.125rem;
	font-weight: 700;
}

.footer-details {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0;
}

.footer-links-content-wrap {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.footer-links-flex-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

@media (max-width: 768px) {
	.footer-links-flex-wrapper {
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	}
}

@media (max-width: 480px) {
	.footer-links-flex-wrapper {
	grid-template-columns: 1fr;
	}
}

.footer-links-single-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links-title {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	text-transform: capitalize;
}

.footer-links-flex {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-link {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 300ms ease-out;
}

.footer-link:hover {
	color: #ffffff;
}

.footer-social-link-wrapper {
	display: flex;
	flex-direction: row;
	gap: 40px;
	justify-content: flex-start;
	align-items: center;
	overflow: clip;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link-text {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #ffffff;
}

.footer-social-links-flex {
	display: flex;
	gap: 12px;
	align-items: center;
}

.single-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	text-decoration: none;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	transition: all 300ms ease-out;
}

.single-social-link:hover {
	background-color: rgba(255, 255, 255, 0.2);
	color: #ffffff;
	transform: translateY(-2px);
}

.footer-bottom-wrapper {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(211, 172, 74, 0.2);
}

.footer-copyright-text {
	font-size: 0.875rem;
	color: #fff;
	margin: 0;
}

.copyright-link {
	color: #fff;
	text-decoration: none;
	transition: color 300ms ease-out;
}

.copyright-link:hover {
	color: #6d28d9;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.footer-wrapper {
	padding: 40px 0px;
	}

	.footer-top-flex-wrap {
	gap: 30px;
	}

	.footer-links-flex-wrapper {
	gap: 20px;
	}

	.footer-social-link-wrapper {
	padding-top: 16px;
	}
}

/* Mobile Menu Styling */
[data-mobile-menu] {
	display: none !important;
}

[data-mobile-menu].active {
	display: block !important;
}

/* Ensure mobile menu is hidden on desktop */
@media (min-width: 768px) {
	[data-mobile-menu] {
	display: none !important;
	}
}


/* Benefits Section Styling */
.benefits-flex-wrapper {
	grid-column-gap: 24px;
	grid-row-gap: 24px;
	flex-flow: column;
	display: flex;
}

.single-benefit-wrapper {
	z-index: 1;
	background-color: #dbffe7;
	background-image: url('https://cdn.prod.website-files.com/682f553e31a49c15f49f4c12/682f553f31a49c15f49f4cf1_Faq-BG-Border.png');
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 24px;
	padding-top: 48px;
	padding-left: 48px;
	padding-right: 48px;
	position: relative;
	overflow: clip;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.single-benefit-wrapper._1 {
	background-color: #e2faff;
}

.single-benefit-wrapper._2 {
	background-color: #fff6e4;
}

.single-benefit-wrapper._3 {
	background-color: #fae6ff;
}

.single-benefit-wrapper.in-features {
	padding-left: 80px;
	padding-right: 80px;
	position: sticky;
	top: 120px;
}

.single-benefit-wrapper.in-features._1 {
	background-color: #FFE5CC;
}

.single-benefit-wrapper.in-features._2 {
	background-color: #FFE5CC;
}

.single-benefit-wrapper.in-features._3,
.single-benefit-wrapper.in-features._3.pt {
	background-color: #FFE5CC;
}

.benefit-grid-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: flex-start;
}

.benefit-grid-wrap.in-features._2 {
	/* grid-template-columns: 1fr 1fr; */
		margin-left: auto;
}

.benefit-content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.benefit-grid-wrap.in-features {
	max-width: 1016px;
	display: flex;
}
.benefit-content-wrapper.in-features {
	max-width: 416px;
}
.benefit-content-wrapper {
	margin-top: 25px;
	margin-bottom: 25px;
}
.benefit-title {
	margin-bottom: 2px;
	font-family: Inter Tight, sans-serif;
	font-size: 36px;
	font-weight: 600;
	line-height: 48px;
	color: #111827;

}

.benefit-details {
	
color: #364152;
	margin-bottom: 32px;
	font-family: Inter Tight, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
}

.benefit-image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 16px;
}

.benefit-image {
	width: 400px;
	height: auto;
	object-fit: cover;
	display: block;
}

.benefit-spiral {
	z-index: -1;
	max-width: 42%;
	position: absolute;
	inset: auto 0 21px auto;
}

.benefit-spiral._2 {
	left: 0;
	right: auto;
}

img {
	vertical-align: middle;
	max-width: 100%;
	display: inline-block;
	border: 0;
}

@media (max-width: 768px) {
	.benefits-flex-wrapper {
	gap: 16px; 
	padding-left: 10px;
	padding-right: 10px;
	flex-direction: column;
	}

	.single-benefit-wrapper {
	display: flex;
	flex-direction: column;
	padding-left: 24px !important;
	padding-right: 24px !important;
	position: relative !important;
	top: auto !important;
	}

	.benefit-grid-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
	grid-template-columns: 1fr;
	}

	.benefit-image-wrapper {
	order: -1;
	width: 100%;
	min-height: 1
	00px;
	overflow: hidden;
	object-fit: contain;
	}

	.benefit-image-wrapper img {
	max-width: 250px;
	height: auto;
	min-height: 150px;
	object-fit: cover;
	}

	.benefit-content-wrapper {
	order: 1;
	width: 100%;
	}

	.benefit-spiral {
	display: none !important;
	}

	.benefit-title {
	font-size: 1.25rem;
	}

	.benefit-details {
	font-size: 0.9375rem;
	}
}


/* Active Navigation Link Styling */
[data-nav-link].text-neutral-900 {
	color: rgb(23, 23, 23);
	font-weight: 600;
	position: relative;
}

[data-nav-link].text-neutral-900::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--primary-500, #f7b914);
	border-radius: 1px;
}
