:root {
	--primary-color: #10b981;
	--primary-dark: #04654b;
	--body-color: #1f2937;
	--light-bg: #ffffff;
	--custom-orange: #f2ad1b;
	--feature-bg: #262626;
	--light-green: #f6fffd;
	--primary-red: #ff3e1d;
	--secondary-red: #ff6b6b;
	--text-dark: #1d2939;
	--google-btn-bg: #fff;
	--input-border: #d0d5dd;
}

html {
	font-size: 16px !important;
}

@media (max-width: 1024px) {
	html {
		font-size: 15px !important;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 14px !important;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 13px !important;
	}
}

/* Base Styles */
body {
	font-family: 'Inter', sans-serif;
	color: var(--body-color);
	background-color: var(--light-bg);
	padding-top: 4.75rem;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	position: relative;
}
.white-bg-1 {
	width: 100%;
	height: 1852px;
	position: absolute;
	top: 0;
	opacity: 0.4;
	z-index: -1;
	background-color: var(--light-bg);
}
.light-green-bg-2 {
	width: 100%;
	height: 3400px;
	position: absolute;
	top: 1852px;
	z-index: -1;
	background-color: #e1f2ee;
	opacity: 0.4;
}

@media (max-width: 1024px) {
	.light-green-bg-2 {
		height: 4410px;
	}
}

.container {
	max-width: 90rem;
	margin: auto;
	z-index: 2;
}

/* Buttons */
.btn-primary {
	background-color: var(--primary-dark);
	border-color: var(--primary-dark);
	padding: 0.9rem 1.5rem !important;
	max-width: fit-content;
	transition: transform ease-in-out 0.3s !important;
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	border-color: var(--primary-dark);
}

.btn-link {
	color: #1f2937;
	text-decoration: none;
}

.btn-outline-primary {
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-action {
	color: var(--body-color);
	border-radius: 1.25rem;
	border: 0.1875rem solid var(--custom-orange);
	cursor: pointer;
	padding: 0.7rem 1.1rem;
	background: var(--light-bg);
}

.btn-scale-hover {
	transition: transform 0.3s ease-in-out;
}

.btn-scale-hover:hover {
	transform: scale(1.05);
	transition: transform 0.3s ease-in-out;
}

.btn-outline-primary:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}
/* Navbar */
.navbar {
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
	padding: 0.75rem 1rem;
	background-color: var(--light-bg);
	z-index: 3;
}
.triomes-logo {
	height: 50px;
}

.navbar-brand {
	font-weight: 600;
	display: flex;
	align-items: center;
}

.navbar-toggler {
	border: none;
	background-color: var(--body-color);
}

.navbar-toggler-icon {
	color: white;
	fill: white;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNGRkZGRkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1tZW51Ij48bGluZSB4MT0iNCIgeDI9IjIwIiB5MT0iMTIiIHkyPSIxMiIvPjxsaW5lIHgxPSI0IiB4Mj0iMjAiIHkxPSI2IiB5Mj0iNiIvPjxsaW5lIHgxPSI0IiB4Mj0iMjAiIHkxPSIxOCIgeTI9IjE4Ii8+PC9zdmc+');
}

.navbar-nav {
	gap: 2rem;
	flex-wrap: wrap;
}

.navbar-nav .nav-link {
	color: var(--body-color);
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--primary-color);
}

.btn-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	padding: 0.5rem 1rem;
}

.btn-primary {
	color: white;
	background-color: var(--primary-dark);
	border: none;
	padding: 0.5rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: background-color ease-in-out 0.3s;
}

.btn-primary:hover {
	background-color: var(--primary-color);
}

/* Center Alignment */
.navbar-collapse {
	justify-content: space-between; /* Centers the nav links */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
	.navbar-collapse div {
		justify-content: center !important;
		flex-direction: column !important;
		margin: auto;
		width: fit-content;
		text-align: center;
		margin-top: 2rem;
	}
	.navbar-collapse div > .btn-link {
		min-width: 100% !important;
	}
}
@media (max-width: 768px) {
	.navbar-nav {
		flex-direction: column;
		text-align: center;
	}

	.navbar-nav .nav-link {
		padding: 0.5rem;
	}

	.btn-link,
	.btn-primary {
		width: 100%;
		margin: 0.25rem 0;
	}
	.triomes-logo {
		height: 40px;
	}
}
/* Hero Section */
.hero-section {
	/* padding-top: 5.5rem; */
	z-index: 2;
}
.hero-section .hero-content {
	padding: 6rem 0;
}

.hero-section p {
	width: 50%;
	text-align: center;
	margin: auto;
	font-weight: 400;
	color: black;
}

.hero-section-image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 80rem;
	margin: 1rem auto;
	margin-bottom: 0;
}
.hero-section-image img {
	width: 100%;
}

.hero-section h1 span {
	color: var(--primary-color);
}

.text-primary {
	color: var(--primary-color) !important;
}

.businesses-section {
	padding-bottom: 2rem;
	max-width: 100vw;
	overflow: hidden;
	z-index: 2;
}
.businesses-section .heading-wrapper {
	background-color: var(--light-green);
}
.businesses-section h2 {
	font-size: 1.5rem;
	width: 50%;
	font-weight: 500;
	padding: 1.5rem;
	text-align: center;
	font-family: 'Rubik', sans-serif;
	margin: auto;
}
.businesses-section .businesses {
	padding: 1rem;
	display: flex;
	gap: 2rem;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	animation: scroll-right 50s linear infinite;
	max-width: 100%; /* set max-width to 100% of viewport width */
	overflow-x: hidden; /* hide horizontal overflow scrollbar */
}

.businesses .img-wrapper {
	width: 15rem;
	height: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.5rem;
	overflow: hidden;
	background-color: transparent;
	backdrop-filter: blur(10px);
	cursor: pointer;
}

@keyframes scroll-right {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(100%);
	}
}

.businesses .img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0.8;
	mix-blend-mode: multiply; /* merge the image with the background */
	filter: grayscale(0.5) contrast(1.2); /* apply a filter */
}

/* Features Section */
.features-section {
	margin: 0 5rem;
	z-index: 2;
}

.features-section .container {
	padding: 3rem;
	border-radius: 2.8rem;
	background-color: var(--feature-bg);
}

.text-white {
	color: var(--light-bg);
}

.features-wrapper {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
	padding: 0.625rem;
}

.feature-card {
	background-color: #ffffff;
	border: 0.0625rem solid #e5e7eb;
	border-radius: 1.8rem;
	box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
	padding: 2.2rem;
	width: 100%;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: left;
	height: 26rem;
	aspect-ratio: 420 / 445;
	cursor: pointer;
	transition: transform ease-in-out 0.2s;
}

.features-section h2 {
	font-size: 2.8rem;
	font-weight: bold;
	max-width: 80%;
	margin: auto;
}

.feature-card h3 {
	font-size: 1.8rem;
	font-weight: bold;
}

.feature-card p {
	font-size: 1.3rem;
	font-weight: 400;
}

.feature-card:hover {
	transform: scale(1.008);
	transition: transform ease-in-out 0.2s;
}

@media (max-width: 1440px) {
	.features-section {
		margin: 0 3rem;
	}
	.feature-card {
		padding: 1.75rem;
	}
}
@media (max-width: 1290px) {
	.features-section {
		margin: 0 2rem;
	}
	.features-section .container {
		padding: 2.4rem;
	}
	.features-section h2 {
		font-size: 2.4rem;
	}
	.features-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.feature-card {
		padding: 1.4rem;
	}
	.icon-wrapper .icon {
		width: 3rem;
	}
}

@media (max-width: 1080px) {
	.businesses-section h2 {
		width: 80%;
	}
}
@media (max-width: 768px) {
	.features-section .container {
		padding: 1.8rem;
		border-radius: 1.8rem;
	}
	.feature-card {
		padding: 1.5rem;
		border-radius: 1.2rem;
	}
	.features-section h2 {
		font-size: 1.2rem;
		min-width: 100%;
	}
	.feature-card h3 {
		font-size: 1.6rem;
	}
	.businesses-section h2 {
		width: 100%;
		font-size: 1.3rem;
	}
}

@media (max-width: 640px) {
	.feature-card:first-of-type {
		margin-top: 0 !important;
	}
	.features-wrapper {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

/* Icon Wrapper */
.icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6.25rem;
	aspect-ratio: 1 / 1;
	background-color: var(--custom-orange);
	border-radius: 50%;
	margin-bottom: 1.5rem;
}

/* Base styles */
.productivity-section {
	padding: 2rem 1rem;
	overflow: hidden;
}

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

.productivity-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	justify-content: center;
}

/* Responsive column layouts */
.image-col,
.text-col {
	flex: 1 1 100%;
}

.productivity-dashboard {
	width: 100%;
	height: auto;
	aspect-ratio: 770 / 511;
	object-fit: contain;
}

/* Typography */
.text-col h2 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.text-col h4 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.text-col h6 {
	font-size: 1rem;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	font-size: 1rem;
	margin-bottom: 1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 2rem;
}

.feature-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.375rem; /* Matches SVG size (22px) */
	height: 1.375rem;
	background: url('/assets/icons/check.svg') no-repeat center;
	background-size: contain;
}

.feature-list i {
	color: var(--primary-color);
	margin-right: 0.5rem;
}

.innovation-section {
	background: var(--body-color);
	position: relative;
}
.innovation-section .container {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-top: 6rem;
}
.innovation-section .container h2 {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--light-bg);
	margin-bottom: 4rem;
}
.innovation-section .container img {
	margin-bottom: -6.5rem;
}
@media (max-width: 768px) {
	.innovation-section .container {
		padding-top: 3rem;
	}
	.innovation-section .container h2 {
		font-size: 2rem;
		margin-bottom: 2.5rem;
	}
}
.mt-10rem {
	margin-top: 10rem;
}

/* Testimonials Section */

.testimonials-container {
	width: 100%;
	margin: auto;
	margin: 6rem 0;
	padding: 2rem 0;
}

.testimonial-content {
	background: white;
	padding: 3rem;
	border-radius: 1rem;
	text-align: center;
	margin-bottom: 4rem;
	transition: opacity 0.3s ease;
}

.testimonial-text {
	font-size: 1.7rem;
	line-height: 1.6em;
	color: var(--feature-bg);
	width: 100%;
	margin: 0 auto;
	font-family: 'Rubik';
	font-weight: 500;
	padding: 5rem 0;
}

.profiles-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	padding: 0 1rem;
}

.profile {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: white;
	padding: 1rem 2rem;
	border-radius: 100px;
	cursor: pointer;
	transition: transform 0.3s ease;
	min-width: 200px;
}

.profile.active {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-image {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.profile-info {
	display: flex;
	flex-direction: column;
}

.profile-name {
	font-weight: 600;
	color: #333;
}

.profile-title {
	font-size: 0.875rem;
	color: #666;
}

.company-logo {
	max-height: 24px;
	width: auto;
}

@media (max-width: 768px) {
	.testimonial-content {
		padding: 2rem 1rem;
	}

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

	.profiles-container {
		flex-direction: column;
		gap: 1rem;
	}

	.profile {
		width: 100%;
		justify-content: center;
	}
}

/* FAQ Style */
.faq-section {
	background-color: var(--light-bg);
	padding-top: 1rem;
}

.faq-header {
	text-align: center;
	margin-bottom: 40px;
}

.faq-header h1 {
	font-size: 32px;
	color: #333;
	margin-bottom: 12px;
	font-family: 'Arimo', sans-serif;
	font-weight: 900;
	border-bottom: 4px solid var(--primary-dark);
	width: 100px;
	margin: auto;
	padding-bottom: 1.1rem;
}

.faq-header p {
	color: #666;
	font-size: 16px;
	font-family: 'Rubik';
	width: 30%;
	margin: auto;
	margin-top: 1.1rem;
}

.faq-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.faq-item {
	background: var(--light-bg);
	border: 4px solid var(--custom-orange);
	border-radius: 3.5rem;
	overflow: hidden;
	padding: 0 3rem;
	width: 100%;
	margin: auto;
}
.faq-item.active {
	border-radius: 2.3rem !important;
}

.faq-question {
	width: 100%;
	padding: 1rem 1.5rem;
	background: none;
	border: none;
	text-align: left;
	font-size: 16px;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'Rubik';
}

.faq-question::after {
	content: '+';
	font-size: 2.5rem;
	color: var(--primary-dark);
}

.faq-answer {
	display: none;
	padding: 0 20px 20px;
	color: #666;
	line-height: 1.5;
}

.faq-item.active .faq-question::after {
	content: '−';
	font-size: 2.5rem;
	color: var(--primary-dark);
}

.faq-item.active .faq-answer {
	display: block;
}

.faq-learn-more {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 1rem auto;
}

.learn-more:hover {
	background-color: #0a6048;
}

.call-to-action {
	height: 20rem;
	margin-top: 5rem;
	display: grid;
	place-items: center;
	background: radial-gradient(circle, var(--primary-dark), var(--feature-bg));
}

@media (max-width: 1290px) {
	.faq-header p {
		width: 100%;
	}
	.faq-item {
		width: 100%;
		padding: 0;
	}
}

/* Media queries for responsiveness */
@media (max-width: 580px) {
	.faq-list {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 768px) {
	.productivity-wrapper {
		flex-wrap: nowrap;
	}

	.image-col {
		flex: 1 1 50%;
	}

	.text-col {
		flex: 1 1 50%;
	}

	.text-col h2 {
		font-size: 1.2rem;
	}

	.text-col h4 {
		font-size: 1rem;
	}

	.text-col h6 {
		font-size: 1rem;
	}

	.feature-list li {
		font-size: 0.8rem;
	}
}

@media (min-width: 1024px) {
	.productivity-section {
		padding: 5rem 2rem;
	}

	.productivity-wrapper {
		gap: 4rem;
	}

	.text-col h2 {
		font-size: 1.6rem;
	}

	.text-col h4 {
		font-size: 1.3rem;
	}

	.text-col h6 {
		font-size: 1.25rem;
	}

	.feature-list li {
		font-size: 1.25rem;
	}
}

/* Footer */
.footer {
	padding-top: 5rem;
	padding-bottom: 2.5rem;
	background-color: var(--light-bg);
}
.footer .container {
	margin-bottom: 5rem;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.footer h5 {
	margin-bottom: 1.5rem;
	color: var(--primary-dark);
}

.footer ul li {
	margin-bottom: 0.75rem;
}

.footer a {
	color: var(--feature-bg);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer a:hover {
	text-decoration: underline;
}

.footer .footer-bar {
	width: 95%;
	border-top: 1px solid var(--feature-bg);
	padding: 1rem;
	margin: auto;
}
.footer .footer-bar .wrap {
	flex-direction: row;
	gap: 1.5rem;
	align-items: center;
	max-width: 50rem;
	margin: auto;
	display: flex;
}

.footer .footer-bar p {
	font-family: 'Inter';
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 30.26px;
	text-align: left;
	color: var(--feature-bg);
}
.footer .footer-bar .image-wrap {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	justify-content: space-between;
	width: 4rem;
	align-items: center;
}
.footer-bar .image-wrap img {
	object-fit: contain;
	cursor: pointer;
	max-width: 100%;
}
@media (max-width: 768px) {
	.footer .footer-bar .wrap {
		flex-direction: column;
		justify-content: space-around;
	}
	.footer .footer-bar .image-wrap {
		width: 100%;
	}
	.footer-bar .image-wrap img {
		max-width: 4.5rem;
	}
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.hero-section p {
		width: 80%;
		margin-bottom: 1.4rem !important;
	}

	.testimonial-authors {
		flex-direction: column;
		align-items: center;
	}
}

.legal-bar {
	background-color: #222;
	color: #fff;
	padding: 10px 20px;
	font-size: 0.875rem;
}

.legal-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.legal-text {
	margin: 0;
	line-height: 1.5;
	flex: 1;
}

.legal-links {
	display: flex;
	gap: 15px;
}

.legal-link {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.legal-link:hover {
	border-bottom-color: #fff;
}

@media (max-width: 768px) {
	.legal-container {
		flex-direction: column;
		text-align: center;
	}

	.legal-links {
		justify-content: center;
		margin-top: 10px;
	}
}

/* Utility Classes */
.rounded-4 {
	border-radius: 1rem;
}

.shadow {
	box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
}

.absolute-center {
	position: absolute;
	left: 0;
	right: 0;
	margin-inline: auto;
	width: fit-content;
}

.yellow-triangle {
	width: 0;
	height: 0;
	border-left: 1.3rem solid transparent;
	border-right: 1.3rem solid transparent;
	border-bottom: 2.3rem solid var(--custom-orange);
	transform: rotate(90deg);
	cursor: pointer;
}

/* Footer Collapses Styles */

/* Hide collapses and icons by default */
.toggle-content {
	display: block !important;
}
.toggle-icon {
	display: none;
}

/* Apply collapsible behavior only on screens < 450px */
@media (max-width: 992px) {
	.toggle-content {
		display: none !important; /* Hide by default */
	}

	.toggle-header {
		cursor: pointer;
	}

	.toggle-icon {
		display: inline-block;
	}

	/* Show content when expanded (Bootstrap handles this) */
	.toggle-content.collapse.show {
		display: block !important;
	}
}
