* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}

main {
	position: relative;
}

/* font */

.inter-700 {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

.inter-600 {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

.inter-500 {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

/* Base */

.container {
	/* overflow-x: hidden; */
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
	z-index: 1;
	position: relative;
}

.section-spacer {
	padding-top: 20px;
	padding-bottom: 20px;
}

.content-spacer {
	margin-bottom: 20px;
}

.content-spacer-small {
	margin-bottom: 8px;
}
.section-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.section-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}

/* Handle sections that might overflow */
section {
	max-width: 100%;
	overflow-x: hidden;
}

/* Ensure images don't cause overflow */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Handle large text or elements */
h1,
h2,
h3,
p,
button {
	word-wrap: break-word;
}

li {
	list-style: none;
}

.divider {
	border-bottom: 1px solid #e0e0e0;
}

.font-subdued {
	color: #8b8d98;
}

.font-sub-text {
	color: #404a54;
}

.font-heading {
	color: #111;
}

.text-heading {
	font-size: 32px;
	line-height: 38px;
}
.text-heading-2 {
	font-size: 20px;
	line-height: 26px;
}
.text-sub-heading {
	font-size: 16px;
	line-height: 24px;
}
.text-paragraph {
	font-size: 14px;
	line-height: 20px;
}
.text-note {
	font-size: 12px;
	line-height: 18px;
}
.text-quote {
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 0;
}

/* Header styles */
header {
	background-color: #fff;
	color: white;
	padding: 9px 0;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
}

.logo-image {
	height: auto;
	width: 85px;
}
.button {
	background: #2563eb;
	color: white;
	border: none;
	cursor: pointer;
	text-decoration: none;
}
.header-button {
	border-radius: 7px;
	padding: 11px 14px;
	font-size: 14px;
}
.page-button {
	border-radius: 7px;
	padding: 11px 14px;
	font-size: 16px;
}

h1 {
	margin-bottom: 1rem;
}

h2 {
	margin-bottom: 1rem;
}

/* Split Section */
.split-banner .section-one {
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-items: center;
	background: #f5f5f5;
	padding: 24px 30px;
}

.split-banner .section-two {
	margin: 50px auto;
	text-align: center;
	background: #02012b;
	color: #fff;
	padding: 50px 30px;
	border-radius: 20px;
	max-width: 335px;
}

/*Uplift AI */

.uplift-section {
	margin: 40px 20px;
	&:not(:first-child) {
		border-top: solid 1px #e8e8ec;
	}
}
.uplift-content {
	max-width: 320px;
	margin: 0 auto 20px;
	padding-top: 40px;
}

.uplift-your-ai .logo {
	margin: 0 auto;
}

.uplift-section-one-images {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scroll-behavior: smooth;
	height: 48px;
}

.uplift-section-one-images img {
	flex-shrink: 0;
	height: auto;
	max-height: 100px;
	border-radius: 8px;
}

.uplift-section-one-images::-webkit-scrollbar {
	height: 0px; /* Adjust scrollbar height */
}

.uplift-section-one-images::-webkit-scrollbar-thumb {
	background: #ccc; /* Scrollbar thumb color */
	border-radius: 4px; /* Rounded scrollbar thumb */
}

.uplift-section-one-images::-webkit-scrollbar-track {
	background: #f0f0f0; /* Scrollbar track color */
}
/*Scenarios*/
.tabs {
	display: flex;
	align-items: center;
	position: relative;
}

.tabs-container {
	display: flex;
	position: relative;
	justify-content: flex-start; /* Align tabs to the left */
	overflow-x: auto; /* Enable horizontal scrolling */
	scroll-behavior: smooth; /* Smooth scrolling for better UX */
	width: 100%; /* Ensure it takes the full width */
	gap: 8px; /* Maintain spacing between tabs */
	padding-left: 20px;

	&::before,
	&::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 50px;
		pointer-events: none;
		z-index: 1;
	}

	/* &::before {
		left: 0;
		background: linear-gradient(
			to right,
			rgba(245, 245, 245, 1),
			rgba(255, 255, 255, 0)
		);
	} */

	&::after {
		right: 0;
		background: linear-gradient(
			to left,
			rgba(245, 245, 245, 1),
			rgba(255, 255, 255, 0)
		);
	}
}

.tabs-arrow {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0 10px;
	color: #333;
}

.tabs-arrow:disabled {
	color: #ccc;
	cursor: not-allowed;
}

.tabs-container::-webkit-scrollbar {
	height: 0px; /* Adjust scrollbar height */
}

.tab {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 0 0 auto; /* Prevent tabs from shrinking or growing */
	width: 162px;
	height: 81px;
	background-color: #fff;
	border: solid 1px #c8c8c9;
	border-radius: 12px;
	padding: 8px; /* Add padding for better spacing */
	cursor: pointer; /* Indicate that tabs are clickable */
}
.tab.active {
	background-color: #fef2f2;
	border: solid 1px #2563eb;
}

.scenario-card {
	background-color: #fff;
	border-radius: 12px;
	padding: 12px;
	border: solid 1px #e8e8e8;
}

.scenario-card-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.scenario-alert {
	border-left: solid 3px #ef4444;
	background-color: #fef2f2;
	color: #991b1b;
	padding: 3px 0 3px 14px;
	border-radius: 0 6px 6px 0;
}

.scenario-startegy-list-item {
	display: flex;
	align-items: center; /* Align the icon and text vertically */
	margin-bottom: 10px;
}

.scenario-startegy-list-item::before {
	content: "";
	background: url("../images/check.png") no-repeat center center;
	background-size: contain;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-right: 8px;
}

.scenario-startegy-list-item p {
	flex-grow: 1; /* Allow the paragraph to take up the remaining space */
	margin: 0; /* Remove any default margin */
}

.cta-form {
	background-color: #2563eb;
	color: white;
	padding: 50px 20px 30px;
}

.cta-form button {
	background-color: #fff;
	color: #2563eb;
	display: block !important;
	visibility: visible !important;
	width: 100% !important;
	margin-top: 10px;
}

.cta-form .form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cta-form .form button {
	order: 3; /* Ensure button appears after inputs */
}

/* Additional CTA Form Button Protection */
.cta-form .form button,
.cta-form button[type="submit"],
.cta-form button:not([type]) {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: relative !important;
	width: 100% !important;
	height: auto !important;
	min-height: 46px !important;
	background-color: #fff !important;
	color: #2563eb !important;
	border: none !important;
	border-radius: 7px !important;
	padding: 11px 14px !important;
	font-size: 16px !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	z-index: 10 !important;
}

.cta-form .form button:disabled {
	opacity: 0.7 !important;
	cursor: not-allowed !important;
}

.cta-form .form button:hover:not(:disabled) {
	background-color: #f8f9fa !important;
}

/* Button states for JS interaction */
.form button.loading,
.cta-form .form button.loading {
	opacity: 0.7;
	cursor: not-allowed;
}

.form button.success,
.cta-form .form button.success {
	background-color: #10b981 !important;
	color: #fff !important;
}

/* Footer */
footer {
	background-color: #000;
	color: white;
	padding: 30px 20px;
}
footer .logo-text {
	font-size: 40px;
	font-weight: 700;
}

.copyrights {
	border-top: solid 1px #fff;
	margin-top: 30px;
	padding-top: 12px;
}

.footer-link {
    color: white !important;
    text-decoration: underline;
}

.footer-link-separator {
    color: white;
    text-decoration: none;
}

/* Generic Styles */
.globe-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
}

.globe-r-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 110px;
}
.globe-l-bg {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 110px;
}

.relative {
	position: relative;
}

.bg-pale {
	background-color: #f9f9ff;
}
.bg-grey {
	background-color: #f5f5f5;
}

.bg-white {
	background-color: #fff;
}

input {
	background-color: #fff;
	border: solid 1px #f0f0f3;
	border-radius: 4px;
	height: 46px;
	width: 100%;
	padding: 0 8px;
}

.text-center {
	text-align: center;
}

/* Marquee Section */
.marquee-container {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 20px 0;

	&::before,
	&::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 50px;
		pointer-events: none;
		z-index: 1;
	}

	&::before {
		left: 0;
		background: linear-gradient(
			to right,
			rgba(255, 255, 255, 1),
			rgba(255, 255, 255, 0)
		);
	}

	&::after {
		right: 0;
		background: linear-gradient(
			to left,
			rgba(255, 255, 255, 1),
			rgba(255, 255, 255, 0)
		);
	}
}

.marquee-row {
	display: flex;
	position: relative;
	white-space: nowrap;
	will-change: transform;
}

.marquee-item {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	margin: 8px 10px;
	border-radius: 6px;
	background-color: #f0f0f3;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}

.marquee-item-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	margin-right: 8px;
}

/* Carousel Section */

.swiper {
	width: 100%;
	height: 640px;
	max-width: 900px;
	max-height: 100vh;
}
.swiper-button-prev:after,
.swiper-button-next:after {
	font-size: 24px !important;
}

.card {
	border-radius: 24px;
	background-color: #fff;
	/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
	padding: 30px;
	display: flex;
	gap: 16px;
	flex-direction: column;
	align-items: center;
	flex: 1 1 auto; /* Allows cards to grow and shrink equally */
	height: 100%; /* Ensures cards stretch to the container's height */
}

.card-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card-title {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	color: #222;
}

.card-subtitle {
	font-size: 16px;
	text-align: center;
	color: #666;
	line-height: 1.5;
}
.section-title {
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 12px;
	color: #222;
}

.section-content {
	font-size: 16px;
	text-align: center;
	color: #444;
	line-height: 1.5;
}

.works-section {
	width: 100%;
	background-color: #f0f5ff;
	padding: 20px;
	border-radius: 16px;
}

@media (max-width: 768px) {
	.card-title {
		font-size: 22px;
	}

	.card-subtitle {
		font-size: 15px;
	}

	.section-title {
		font-size: 18px;
	}

	.section-content {
		font-size: 14px;
	}
}
.success-modal {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10; /* Higher than the overlay */
	border-radius: 16px;
	padding: 24px 12px;
	width: 306px;
	height: 130px;
	background-color: #fff;
	opacity: 0; /* Initially hidden */
	visibility: hidden; /* Prevent interaction when hidden */
	transition: opacity 0.3s ease-in-out; /* Smooth fade-in/out */
}

.success-modal .close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

.success-modal .close:hover {
	opacity: 1;
}

.success-modal.open {
	opacity: 1; /* Fully visible */
	visibility: visible; /* Allow interaction */
	animation: slideIn 0.5s ease-out forwards; /* Slide-in animation */
}

/* Responsive */
@media (min-width: 768px) {
	.text-heading {
		font-size: 52px;
		line-height: 66px;
	}
	.text-heading-2 {
		font-size: 32px;
		line-height: 40px;
	}
	.text-sub-heading {
		font-size: 18px;
		line-height: 26px;
	}
	.text-quote {
		font-size: 52px;
		line-height: 57px;
		margin-bottom: 0;
	}
	.banner .container {
		max-width: 900px;
	}
	.email-listing .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-top: 50px;
		max-width: 900px;
		gap: 60px;
	}
	.email-listing .container .column {
		width: 60%;
	}

	@keyframes slideIn {
		from {
			transform: translate(-50%, calc(-50% + 20px)); /* Start slightly below */
			opacity: 0; /* Fully transparent */
		}
		to {
			transform: translate(-50%, -50%); /* End at the original position */
			opacity: 1; /* Fully visible */
		}
	}
	.overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
		z-index: 5;
		opacity: 0; /* Initially hidden */
		visibility: hidden; /* Prevent interaction when hidden */
		transition: opacity 0.3s ease-in-out; /* Smooth fade-in/out */
		cursor: pointer; /* Pointer cursor for better UX */
	}

	.overlay.open {
		opacity: 1; /* Fully visible */
		visibility: visible; /* Allow interaction */
	}
	.party {
		max-width: 28px;
		margin-bottom: 10px;
	}
	.close {
		align-self: flex-end; /* Align the close button to the right */
		cursor: pointer; /* Optional: Add a pointer cursor for better UX */
	}
	.features {
		max-width: 900px;
		margin: 50px auto;
		padding-top: 50px;
		border: solid 1px #e8e8ec;
	}
	.marquee-container {
		margin-top: 30px;
	}
	.split-banner {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.split-banner .section-two {
		margin: 0;
		max-width: 100%;
		display: flex;
		align-items: center;
		border-radius: 0;
	}
	.section-50,
	.section-30 {
		padding: 0;
	}
	.slider-section {
		padding: 30px 0;
	}
	.slider-section h2 {
		max-width: 600px;
		margin: 0 auto;
	}
	.carousel-container {
		max-width: 900px;
		margin: 0 auto;

		&::before,
		&::after {
			content: "";
			position: absolute;
			top: 0;
			bottom: 0;
			width: 100px;
			pointer-events: none;
			z-index: 1;
		}

		&::before {
			left: 0;
			background: linear-gradient(
				to right,
				rgba(245, 245, 245, 0.8),
				rgba(255, 255, 255, 0)
			);
		}

		&::after {
			right: 0;
			background: linear-gradient(
				to left,
				rgba(245, 245, 245, 0.8),
				rgba(255, 255, 255, 0)
			);
		}
	}
	.card {
		min-width: calc(50% - 50px);
		flex: 0 0 calc(50% - 50px);
	}
	.uplift-your-ai {
		max-width: 900px;
		margin: 50px auto;
		border: solid 1px #e8e8ec;
		padding-top: 50px;
	}
	.uplift-your-ai .sections {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.uplift-section {
		margin: 0;
		padding: 20px 20px;
		border: solid 1px #e8e8ec;
	}
	.uplift-section:first-child {
		grid-column: span 2;
		border-top: none;
	}
	.uplift-section:first-child .uplift-content {
		padding-top: 0;
		max-width: 600px;
		text-align: center;
	}
	.uplift-your-ai .image-section {
		max-width: 550px;
		margin: 0 auto;
	}
	.scenario-content-container {
		max-width: 900px;
		min-height: 950px;
		padding: 50px 0 30px;
		margin: 0 auto;
		position: relative;
	}
	.tab {
		width: 248px;
	}
	.tabs-container {
		padding: 0;
	}
	.tabs-arrow {
		display: block;
	}
	.scenario-group {
		padding: 0 20px;
	}
	.scenario-alert {
		padding: 12px 16px;
	}
	.cta-form .cta-content {
		max-width: 900px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 100px;
	}
	.cta-form p {
		text-align: left;
	}
	.cta-form .form {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
}
