:root {
	--color-white: #fff;
	--color-black: #000;
	--color-grey-dark: #333;
	--color-grey: #555;
	--color-grey-light: #999;
	--font-main: 'Open Sans', sans-serif;
	--transition-speed: 0.3s;
}

/* Utility classes */
.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

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

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

.mt-10 {
	margin-top: 10px;
}

/* Global Styles */
body {
	font-family: 'Roboto', "Arial", "Microsoft YaHei", sans-serif;
	background-color: #f4f7fc; /* Neutral background */
	color: var(--color-grey-dark);
	margin: 0;
	padding: 0;
	text-align: center;
}

/* Hero Section */
.hero {
	background: linear-gradient(90deg, #FF2400, #FFD700);
	/* Red to Gold gradient */
	color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px 10%;
}

.hero-content {
	flex: 1;
	text-align: left; /* Left-aligned text */
}

.hero h1 {
	font-size: 2.5em;
	margin-bottom: 10px;
}

.hero p {
	font-size: 1.2em;
	margin-bottom: 20px;
}

.hero .btn {
	background: white;
	color: #FF2400; /* Red text for contrast */
	padding: 12px 20px;
	font-size: 1em;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: var(--transition-speed);
}

.hero .btn:hover {
	background: #FFC300; /* Bright Yellow on hover */
	color: white;
}

.hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-image img {
	max-width: 80%;
	height: auto;
	border-radius: 10px;
}

/* Contact Form */
.container {
	max-width: 600px;
	background: white;
	padding: 30px;
	margin: 50px auto;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
	text-align: center;
	color: #003366; /* Deep Blue for headings */
}

form {
	display: flex;
	flex-direction: column;
}

label {
	font-weight: bold;
	margin-top: 10px;
	color: var(--color-grey-dark);
}

input, textarea {
	padding: 10px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1em;
}

textarea {
	height: 100px;
}

button {
	background: #FF2400; /* Red for primary action */
	color: white;
	border: none;
	padding: 12px;
	margin-top: 15px;
	font-size: 1em;
	border-radius: 5px;
	cursor: pointer;
	transition: var(--transition-speed);
}

button:hover {
	background: #FFD700; /* Gold on hover */
	color: #000000;
}

#contact-form {
	display: none;
	opacity: 0;
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: opacity 0.5s ease-in-out;
}

#contact-form-container {
	display: none; /* Initially hidden */
	position: fixed;
	bottom: 50px;
	right: 20px;
	background: white;
	padding: 20px;
	border: 1px solid #ccc;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
	transform: translateY(20px);
	width: 300px; /* Adjust form width */
}

.fade-in {
	display: block !important;
	opacity: 1 !important;
	transform: translateY(0);
}

/* reCAPTCHA */
.g-recaptcha {
	margin: 15px 0;
}

/* Responsive Design */
@media ( max-width : 768px) {
	.hero {
		flex-direction: column;
		text-align: center;
	}
	.hero-content, .hero-image {
		flex: none;
		width: 100%;
	}
	.hero h1 {
		font-size: 2em;
	}
	.hero p {
		font-size: 1em;
	}
	.container {
		width: 90%;
		padding: 20px;
	}
	.hero-image img {
		max-width: 90%;
	}
}

/* Updated style_qwen.css to include two sections below the header */

/* General Styles */

/* Header Styles */
.header {
	background: linear-gradient(135deg, #FF0000, #FFD700);
	color: white;
	text-align: center;
	padding: 20px 0;
}

/* New Sections Below Header */
.trusted-brands {
	text-align: center;
	padding: 40px 0;
	background-color: #f9f9f9;
}

.trusted-brands h2 {
	font-size: 24px;
	font-weight: bold;
	color: var(--color-black);
}

.brand-logos {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
}

.brand-logos img {
	width: 100px;
	height: auto;
	filter: grayscale(100%);
}

.customer-count {
	margin-top: 10px;
	font-size: 16px;
	color: #666;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Use 2 columns for desktop */
    gap: 40px; /* Space between feature items */
    padding: 40px 20px;
    background-color: var(--color-white);
    max-width: 1200px; /* Optional: Limit width for better alignment */
    margin: 0 auto; /* Center the section */
}

.feature-item {
    display: flex;
    flex-direction: column; /* Stack icon and content vertically */
    align-items: center; /* Center-align items inside the feature item */
    text-align: center; /* Center-align text */
    max-width: 300px; /* Limit width for better alignment */
    margin: 0 auto; /* Center each feature item within its grid cell */
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for cards */
    transition: transform 0.3s ease; /* Hover effect */
}

.feature-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.feature-icon {
    font-size: 40px; /* Increase icon size */
    margin-bottom: 15px; /* Add spacing between icon and content */
    color: #0073e6; /* Optional: Add a color to the icons */
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.2); /* Slightly enlarge the icon on hover */
    color: #005bb5; /* Change color on hover */
}

.feature-content h3 {
    font-size: 20px; /* Increase heading size */
    margin-bottom: 10px; /* Add spacing between heading and paragraph */
    font-weight: bold;
    color: #333;
}

.feature-content p {
    font-size: 14px; /* Adjust paragraph text size */
    line-height: 1.5; /* Improve readability */
    color: #666; /* Softer color for paragraphs */
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .feature-item {
        max-width: 100%; /* Full width on mobile */
    }
}

/* Updated CSS to match the design scheme */

/* Align labels and inputs properly */
.signup-form label {
	display: block;
	width: auto;
	font-weight: bold;
	margin-bottom: 5px;
}

.signup-form input, .signup-form textarea {
	width: 100%;
	padding: 8px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
}

.signup-form textarea {
	resize: vertical;
	min-height: 80px;
}

/* Fix button alignment */
.signup-form button {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	font-weight: bold;
	background: black;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.signup-form button:hover {
	background: #333;
}

#show-contact-form {
	width: auto; /* Prevents full width */
	max-width: 200px; /* Adjust as needed */
	display: inline-block; /* Keeps it compact */
	margin-top: 20px; /* Spacing below the heading */
	padding: 10px 20px; /* Better spacing */
	text-align: center; /* Centers text */
}

/* Footer Styles */
.footer {
	background-color: #f8f8f8;
	padding: 40px 0;
	text-align: center;
	font-size: 14px;
	color: #666;
}

.footer a {
	color: #333;
	text-decoration: none;
	margin: 0 10px;
}

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

.footer .social-icons {
	margin-top: 10px;
}

.footer .social-icons a {
	display: inline-block;
	margin: 0 5px;
	color: #666;
	font-size: 18px;
}

.footer .social-icons a:hover {
	color: #000;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
}

.newsletter {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter .input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter .subscribe-btn {
    background-color: #FF2400; /* Red from css1 */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.newsletter .subscribe-btn:hover {
    background-color: #FFD700; /* Gold on hover */
}

.message {
    margin-top: 15px;
    font-size: 1rem;
}

.message.success {
    color: green;
}

.message.error {
    color: red;
}

/* Heading Styles */
.main-heading {
	font-size: 2.5em;
	font-weight: bold;
	text-align: center;
	color: var(--color-grey-dark);
	margin-bottom: 20px;
}

.text-content {
	font-size: 1.2em;
	text-align: center;
	color: #666;
	margin-bottom: 40px;
}

/* Team Section */
.team {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.member {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
	width: 250px;
}

.member img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 10px;
}

.member h3 {
	font-size: 1.5em;
	color: var(--color-grey-dark);
	margin-bottom: 5px;
}

.member p {
	font-size: 1em;
	color: #777;
	margin-bottom: 10px;
}

.member a {
	display: inline-block;
	text-decoration: none;
	background: #0077b5;
	color: white;
	padding: 8px 15px;
	border-radius: 5px;
	font-size: 0.9em;
}

.member a:hover {
	background: #005f8e;
}

/* Advisors Section */
#advisors {
	text-align: center;
	padding: 40px 0;
}

#advisors p {
	font-size: 1.2em;
	color: var(--color-grey);
}

/* Philosophy Section */
#philosophy {
	background: #f8f8f8;
	padding: 50px 0;
	text-align: center;
}

#philosophy p {
	font-size: 1.2em;
	color: #444;
	max-width: 800px;
	margin: auto;
}

/* Responsive Design */
@media ( max-width : 768px) {
	.team {
		flex-direction: column;
		align-items: center;
	}
	.member {
		width: 80%;
	}
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--color-white); /* adjust as needed */
	padding: 10px 0; /* reduce vertical padding */
	border-bottom: 1px solid #ddd;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* .container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
} */
.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.navbar .logo img {
	height: 40px; /* reduce logo height */
	object-fit: contain;
}

.logo {
	font-size: 1.5em;
	font-weight: bold;
	color: black;
	text-decoration: none;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 1rem;
	margin: 0;
	padding: 0;
}

.nav-links li {
	display: inline-block;
	font-size: 16px;
	position: relative; /* Needed for dropdown positioning */
}

.nav-links li:not(:last-child)::after {
	content: "|";
	margin: 0 10px;
	color: #aaa;
}

.nav-links a {
	text-decoration: none;
	color: black;
	font-weight: 500;
	font-size: 1em;
}

.nav-links li a {
	font-family: "Noto Sans SC", "Microsoft YaHei", "SimHei", sans-serif;
	letter-spacing: 0.5px; /* Slight spacing for better readability */
	word-spacing: 1px; /* Improve word separation */
	font-weight: 500; /* Keeps text balanced */
	position: relative;
}

.nav-links a:hover {
	color: #0077b5;
}

.nav-links li a:hover::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--color-grey-dark);
	color: var(--color-white);
	padding: 4px 8px;
	border-radius: 4px;
	white-space: nowrap;
	font-size: 12px;
	opacity: 0.9;
	z-index: 10;
}

.problem-solution-container {
	max-width: 1200px;
	margin: auto;
	padding: 60px 20px;
}

.section-heading {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
	color: var(--color-grey-dark);
}

.section-subheading {
	font-size: 1.5rem;
	font-weight: 600;
	color: #444;
	margin-bottom: 20px;
	text-align: center;
}

/* Grid Layout for Problem & Solution */
.problem-solution-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	align-items: flex-start;
}

.problem-section, .solution-section {
	flex: 1;
	min-width: 300px;
	background: #f9f9f9;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
}

.problem-section:hover, .solution-section:hover {
	transform: translateY(-5px);
}

.problem-section h2, .solution-section h2 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #ff4d4d;
	margin-bottom: 15px;
}

.solution-section h2 {
	color: #28a745; /* Green for solution */
}

/* Key Problems & Features */
.key-points {
	list-style: none;
	padding-left: 0;
}

.key-points li {
	font-size: 1.2rem;
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.key-points li::before {
	content: "✔";
	color: #007bff;
	font-size: 1.5rem;
	margin-right: 10px;
}

/* Call-to-Action */
.call-to-action {
	text-align: center;
	margin-top: 50px;
}

.call-to-action p {
	font-size: 1.3rem;
	font-weight: 600;
	color: #222;
	margin-bottom: 20px;
}

.call-to-action a {
	display: inline-block;
	padding: 12px 25px;
	background: #007bff;
	color: var(--color-white);
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s ease-in-out;
}

.call-to-action a:hover {
	background: #0056b3;
}

/* Responsive Design */
@media ( max-width : 768px) {
	.problem-solution-wrapper {
		flex-direction: column;
	}
	.section-heading {
		font-size: 2rem;
	}
}

.problem-solution-container {
	max-width: 1200px;
	margin: auto;
	padding: 60px 20px;
}

.section-heading {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
	color: var(--color-grey-dark);
}

.section-subheading {
	font-size: 1.5rem;
	font-weight: 600;
	color: #444;
	margin-bottom: 20px;
	text-align: center;
}

/* Grid Layout for Problem & Solution */
.problem-solution-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	align-items: flex-start;
}

.problem-section, .solution-section {
	flex: 1;
	min-width: 300px;
	background: #f9f9f9;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
}

.problem-section:hover, .solution-section:hover {
	transform: translateY(-5px);
}

.problem-section h2, .solution-section h2 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #ff4d4d;
	margin-bottom: 15px;
}

.solution-section h2 {
	color: #28a745; /* Green for solution */
}

/* Key Problems & Features */
.key-points {
	list-style: none;
	padding-left: 0;
}

.key-points li {
	font-size: 1.2rem;
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.key-points li::before {
	content: "✔";
	color: #007bff;
	font-size: 1.5rem;
	margin-right: 10px;
}

/* Call-to-Action */
.call-to-action {
	text-align: center;
	margin-top: 50px;
}

.call-to-action p {
	font-size: 1.3rem;
	font-weight: 600;
	color: #222;
	margin-bottom: 20px;
}

.call-to-action a {
	display: inline-block;
	padding: 12px 25px;
	background: #007bff;
	color: var(--color-white);
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s ease-in-out;
}

.call-to-action a:hover {
	background: #0056b3;
}

/* Responsive Design */
@media ( max-width : 768px) {
	.problem-solution-wrapper {
		flex-direction: column;
	}
	.section-heading {
		font-size: 2rem;
	}
}

.how-traction-pricing-container {
	max-width: 1200px;
	margin: auto;
	padding: 60px 20px;
}

/* Section Headings */
.section-title {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
	color: var(--color-grey-dark);
}

.section-subtitle {
	font-size: 1.5rem;
	font-weight: 600;
	color: #444;
	text-align: center;
	margin-bottom: 20px;
}

/* --- HOW IT WORKS SECTION --- */
.how-it-works {
	background: #f9f9f9;
	padding: 50px 20px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.steps-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	margin-top: 30px;
}

.step {
	flex: 1;
	min-width: 280px;
	background: #ffffff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
}

.step:hover {
	transform: translateY(-5px);
}

.step h3 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #007bff;
	margin-bottom: 10px;
}

.step p {
	font-size: 1.2rem;
	color: var(--color-grey);
}

/* Call-to-Action Button */
.cta-button {
	display: inline-block;
	padding: 12px 25px;
	background: #007bff;
	color: var(--color-white);
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s ease-in-out;
	margin-top: 30px;
}

.cta-button:hover {
	background: #0056b3;
}

/* --- TRACTION SECTION --- */
.traction {
	margin-top: 60px;
}

.metrics-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-around;
	text-align: center;
}

.metric-box {
	flex: 1;
	min-width: 300px;
	background: #f9f9f9;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.metric-box h3 {
	font-size: 2rem;
	font-weight: bold;
	color: #28a745;
}

.metric-box p {
	font-size: 1.2rem;
	color: var(--color-grey);
}

/* Partner Logos */
.partner-logos {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.partner-logos img {
	height: 60px;
	filter: grayscale(100%);
	transition: filter 0.3s ease-in-out;
}

.partner-logos img:hover {
	filter: grayscale(0%);
}

/* ------ PRICING SECTION --------- */

/* Container for Centering */
.pricing-container {
	max-width: 1000px;
	margin: 50px auto;
	text-align: center;
}

/* Header Styling */
.pricing-header h2 {
	font-size: 2rem;
	font-weight: bold;
	color: #1f2937; /* Dark gray */
}

.pricing-header p {
	color: #6b7280; /* Medium gray */
	margin-bottom: 20px;
}

/* Pricing Grid Layout */
.pricing-plans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	justify-content: center;
}

/* Pricing Card Styling */
.pricing-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	border: 2px solid #e5e7eb; /* Light gray */
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effects */
.pricing-card:hover {
	transform: scale(1.05);
	box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.15);
}

/* Plan Name */
.pricing-card h3 {
	font-size: 1.2rem;
	font-weight: bold;
	color: #374151;
}

/* Price Styling */
.pricing-card .price {
	font-size: 2rem;
	font-weight: bold;
	color: #d97706; /* Orange */
	margin-top: 5px;
}

/* Features List */
.pricing-card ul {
	list-style-type: none;
	padding: 0;
	margin: 15px 0;
}

.pricing-card ul li {
	color: #4b5563;
	margin-bottom: 8px;
}

/* Highlighted Plan */
.featured {
	border: 3px solid #d97706; /* Orange border */
}

/* Button Styling */
.pricing-card button {
	background-color: #d97706;
	color: #ffffff;
	font-weight: bold;
	border: none;
	padding: 10px;
	width: 100%;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s ease-in-out;
}

.pricing-card button:hover {
	background-color: #b45309; /* Darker Orange */
}

.signup-form-container {
	display: flex;
	flex-direction: column;
	align-items: center; /* Center content horizontally */
	justify-content: center; /* Center content vertically */
	text-align: center; /* Ensures text stays centered */
	padding: 50px 0; /* Adds spacing */
	max-width: 600px; /* Limits width for a clean look */
	margin: auto; /* Centers the section */
	background: #f7faff; /* Matches the existing theme */
	border-radius: 10px; /* Optional rounded corners */
}

.signup-form-container h2 {
	margin-bottom: 20px;
}

.signup-form-container #show-contact-form {
	padding: 10px 20px;
	margin-top: 15px;
}

/* Ensure the main wrapper stacks elements vertically */
.contact-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center; /* Centers everything */
	width: 100%;
}

.contact-container {
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	width: 40%;
	margin-bottom: 20px; /* Space before the map */
}

.contact-container h2 {
	margin-bottom: 20px;
}

.contact-container input, .contact-container textarea {
	width: 100%;
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.contact-container button {
	width: 100%;
	padding: 10px;
	background: blue;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

/* Ensure the map is below the form */
.map-container {
	width: 80%;
	padding: 20px;
	margin-top: 10px;
}

.map-container h2 {
	margin-bottom: 10px;
}

.map-placeholder {
	width: 100%;
	height: 400px;
	background: #e0e0e0;
	display: flex; /* This is fine because it centers text inside */
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--color-grey);
}

/* Language Switch */
.language-switcher {
	margin-left: 20px;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.language-switcher select {
	padding: 5px;
	border-radius: 4px;
	border: 1px solid #ccc;
}

.form-close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	font-weight: bold;
	color: var(--color-grey-light);
	cursor: pointer;
	z-index: 999;
	transition: color 0.2s ease-in-out;
}

.form-close-btn:hover {
	color: var(--color-black);
}

/* Hamburger button */
.menu-icon {
	display: none;
	font-size: 26px;
	cursor: pointer;
	padding: 10px;
}

/* Hide menu by default on small screens */
#menu-toggle {
	display: none;
}

@media ( max-width : 768px) {
	.nav-links {
		display: none;
		flex-direction: column;
		background-color: white;
		width: 100%;
		position: absolute;
		top: 60px;
		left: 0;
		padding: 10px 0;
		z-index: 999;
	}
	.nav-links li {
		margin: 10px 0;
		text-align: center;
	}
	#menu-toggle:checked+.menu-icon+.nav-links {
		display: flex;
	}
	.menu-icon {
		display: block;
	}
}

/* Tooltip styling */
.nav-links a[data-tooltip] {
	position: relative;
	cursor: pointer;
}

.nav-links a[data-tooltip]::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: -1.8em;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.8);
	color: var(--color-white);
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 0.75rem;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 10;
}

.nav-links a[data-tooltip]:hover::after {
	opacity: 1;
}

.nav-links a.active {
    color: #FF2400; /* Red for active link */
    font-weight: bold;
    border-bottom: 2px solid #FF2400; /* Optional underline */
}

section {
	padding: 40px 20px;
	margin-bottom: 40px;
	background-color: #f9f9f9;
	border-radius: 8px;
}

/* Section Headings */
section h2 {
	font-size: 24px;
	font-weight: bold;
	color: var(--color-grey-dark);
	margin-bottom: 20px;
	text-align: center;
}

/* Paragraphs inside sections */
section p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-grey);
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

/* List style used in impact, values */
section ul {
	list-style: none;
	padding-left: 0;
	max-width: 800px;
	margin: 0 auto;
}

section ul li {
	font-size: 16px;
	color: var(--color-grey);
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
}

section ul li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: green;
}

/* Founder's note styling */
.founder-note {
	background-color: #eef6fa;
	border-left: 5px solid #3a8dde;
	padding: 30px 20px;
	font-style: italic;
	font-size: 16px;
	color: #333;
	max-width: 800px;
	margin: 40px auto;
	border-radius: 6px;
}

.investor-summary {
	background-color: #eaf5ff;
	border-left: 6px solid #2b6fb0;
	padding: 40px 20px;
	margin: 60px auto;
	max-width: 800px;
	border-radius: 8px;
	text-align: center;
}

.investor-summary h2 {
	font-size: 24px;
	color: #2b6fb0;
	margin-bottom: 15px;
}

.investor-summary p {
	font-size: 16px;
	color: #444;
	line-height: 1.6;
	margin-bottom: 25px;
}

.investor-summary .cta-button {
	padding: 10px 24px;
	background-color: #3a8dde;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.investor-summary .cta-button:hover {
	background-color: #2b6fb0;
}

.workflow-visual {
	padding: 50px 20px;
	background-color: #f5f9ff;
	text-align: center;
}

.workflow-visual h2 {
	font-size: 24px;
	margin-bottom: 40px;
	color: #2b6fb0;
}

.workflow-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
}

.workflow-steps .step {
	background-color: #fff;
	padding: 20px 25px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	max-width: 250px;
	transition: transform 0.3s ease;
}

.workflow-steps .step:hover {
	transform: translateY(-5px);
}

.step-number {
	background-color: #3a8dde;
	color: white;
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	font-weight: bold;
	margin: 0 auto 15px;
}

.workflow-steps p {
	font-size: 14px;
	color: #444;
	line-height: 1.5;
}

.testimonials {
	background-color: #fffaf3;
	padding: 60px 20px;
	text-align: center;
	border-top: 2px solid #ffe1a8;
}

.testimonials h2 {
	font-size: 24px;
	color: #de8d00;
	margin-bottom: 30px;
}

.testimonial-box {
	max-width: 700px;
	margin: 0 auto;
	background-color: #fff;
	border-left: 5px solid #de8d00;
	padding: 30px 25px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	border-radius: 8px;
}

.testimonial-box blockquote {
	font-size: 16px;
	color: #444;
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 15px;
}

.testimonial-author {
	font-weight: bold;
	color: #555;
	font-size: 14px;
}

.pricing-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px;
}

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

.pricing-header h2 {
	font-size: 28px;
	color: #2b6fb0;
	margin-bottom: 10px;
}

.pricing-header p {
	color: #666;
	font-size: 16px;
}

.pricing-plans {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.pricing-card {
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
	padding: 30px 25px;
	width: 300px;
	transition: transform 0.3s ease;
	text-align: center;
}

.pricing-card:hover {
	transform: translateY(-5px);
}

.pricing-card h3 {
	font-size: 20px;
	color: #3a8dde;
	margin-bottom: 15px;
}

.pricing-card .price {
	font-size: 22px;
	font-weight: bold;
	color: #2b6fb0;
	margin-bottom: 20px;
}

.pricing-card ul {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
	text-align: left;
}

.pricing-card ul li {
	margin: 8px 0;
	padding-left: 20px;
	position: relative;
	color: #444;
	font-size: 14px;
}

.pricing-card ul li::before {
	content: "✔";
	color: #28a745;
	position: absolute;
	left: 0;
}

.pricing-card button {
	padding: 10px 18px;
	background-color: #3a8dde;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.pricing-card button:hover {
	background-color: #2b6fb0;
}

.featured {
	border: 2px solid #ffae00;
	box-shadow: 0 0 20px rgba(255, 174, 0, 0.2);
	position: relative;
}

.featured::before {
	content: "Most Popular";
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #ffae00;
	color: white;
	font-size: 12px;
	font-weight: bold;
	padding: 3px 8px;
	border-radius: 6px;
}

/* ## FAQs */
.faq-section {
	padding: 60px 20px;
	background-color: #f9f9f9;
	max-width: 900px;
	margin: 0 auto;
}

.faq-section h2 {
	text-align: center;
	font-size: 26px;
	color: #2b6fb0;
	margin-bottom: 40px;
}

.faq-item {
	margin-bottom: 25px;
	padding: 20px;
	border-left: 4px solid #3a8dde;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
	font-size: 18px;
	color: #3a8dde;
	margin-bottom: 10px;
}

.faq-item p {
	font-size: 15px;
	color: #444;
	line-height: 1.6;
}

.contact-container form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-container input, .contact-container textarea {
	padding: 10px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 6px;
}

.contact-container label {
	font-weight: bold;
	font-size: 14px;
	color: #333;
}

.contact-btn {
	background-color: #3a8dde;
	color: white;
	padding: 12px;
	border: none;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.contact-btn:hover {
	background-color: #2b6fb0;
}

.map-placeholder iframe {
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.why-section, .how-section, .cta-section {
	padding: 60px 30px;
	max-width: 1100px;
	margin: 40px auto;
	text-align: center;
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Shared heading style */
.why-section h2, .how-section h2, .cta-section h2 {
	font-size: 2em;
	color: #2b3e50;
	margin-bottom: 20px;
}

/* Paragraphs */
.why-section p, .how-section p, .cta-section p {
	font-size: 1.1em;
	line-height: 1.7;
	color: #444;
	max-width: 800px;
	margin: 0 auto 40px;
}

/* CTA Button */
.cta-section .cta-button {
	padding: 12px 24px;
	font-size: 1em;
	color: white;
	background-color: #0b6cf1;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.why-section:hover, .how-section:hover, .cta-section:hover {
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	border-color: #ccc;
}

.locale-zh {
	font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC",
		sans-serif;
	font-size: 1.05em;
	line-height: 1.8;
}

.locale-zh .navbar .nav-links li a {
	font-size: 1.05em;
	padding: 10px 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.locale-zh .testimonial, .locale-zh .faq-section {
	line-height: 1.9;
	font-size: 1.1em;
	letter-spacing: 0.3px;
}

.locale-zh .faq-question {
	font-weight: 600;
}

/* ---------- ABOUT PAGE ---------- */
.about-hero {
	padding: 70px 30px;
	max-width: 1100px;
	margin: 0 auto;
	background-color: #eef4fb;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
	text-align: center;
}

.about-hero h1 {
	font-size: 2.2em;
	color: #123456;
	margin-bottom: 20px;
}

.about-hero p {
	font-size: 1.2em;
	color: #444;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
}

/* Shared about page section style */
.about-section {
	padding: 60px 20px;
	max-width: 1000px;
	margin: 40px auto;
	background-color: #fdfdfd;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	text-align: center;
}

.about-section h2 {
	font-size: 1.8em;
	margin-bottom: 16px;
	color: #2b3e50;
}

.about-section p {
	font-size: 1.05em;
	color: #444;
	line-height: 1.7;
	max-width: 850px;
	margin: 0 auto;
}

/* Optional hover effect */
.about-section:hover {
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

/* Optional bonus touch*/
@media ( max-width : 768px) {
	.about-hero h1, .about-section h2 {
		font-size: 1.5em;
	}
	.about-hero p, .about-section p {
		font-size: 1em;
	}
}

.problem-hero {
	text-align: center;
	padding: 70px 20px;
	background-color: #f3f7ff;
	border-radius: 12px;
	max-width: 1000px;
	margin: 0 auto 40px auto;
}

.problem-hero h1 {
	font-size: 2em;
	color: #1e3a5f;
	margin-bottom: 16px;
}

.problem-hero p {
	font-size: 1.2em;
	color: #444;
	line-height: 1.8;
}

.problem-section {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 50px 30px;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.problem-section h2 {
	font-size: 1.8em;
	color: #2b3e50;
	margin-bottom: 20px;
}

.problem-list {
	list-style: none;
	padding: 0;
	margin: 0 auto 30px auto;
	text-align: left;
	max-width: 700px;
}

.problem-list li {
	margin-bottom: 16px;
	font-size: 1.1em;
	line-height: 1.6;
}

.problem-list strong {
	display: inline-block;
	color: #0b6cf1;
}

.cta {
	font-size: 1.1em;
	font-weight: bold;
	color: #333;
	margin-top: 30px;
}

.solution-hero {
	padding: 70px 20px;
	background-color: #eef4ff;
	border-radius: 12px;
	text-align: center;
	max-width: 1100px;
	margin: 0 auto 50px;
}

.solution-hero h1 {
	font-size: 2.2em;
	margin-bottom: 16px;
	color: #1e3a5f;
}

.solution-hero p {
	font-size: 1.2em;
	color: #444;
	line-height: 1.8;
}

.workflow-section, .traction-section {
	max-width: 1000px;
	margin: 40px auto;
	padding: 50px 30px;
	background-color: #ffffff;
	border-radius: 10px;
	border: 1px solid #ddd;
	text-align: center;
}

.workflow-section h2, .traction-section h2 {
	font-size: 1.8em;
	margin-bottom: 30px;
	color: #2b3e50;
}

.workflow-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 30px;
}

.step {
	flex: 1 1 250px;
	background-color: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.step h3 {
	font-size: 1.2em;
	color: #0b6cf1;
	margin-bottom: 10px;
}

.step p {
	font-size: 1.05em;
	color: #444;
	line-height: 1.6;
}

.traction-list {
	list-style: none;
	padding: 0;
	max-width: 800px;
	margin: 0 auto;
}

.traction-list li {
	margin-bottom: 16px;
	font-size: 1.1em;
	line-height: 1.6;
}

.step-icon {
	font-size: 2.5em;
	color: #0b6cf1;
	margin-bottom: 12px;
	display: block;
}

.pricing-hero {
	text-align: center;
	padding: 60px 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.pricing-hero h1 {
	font-size: 2em;
	color: #1e3a5f;
}

.pricing-hero p {
	font-size: 1.1em;
	color: #444;
	margin-top: 10px;
}

.pricing-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px;
}

.plan {
	background-color: #f9f9f9;
	border-radius: 12px;
	padding: 30px 20px;
	flex: 1 1 300px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.plan:hover {
	transform: translateY(-5px);
}

.plan h2 {
	font-size: 1.5em;
	margin-bottom: 10px;
	color: #0b6cf1;
}

.plan .price {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 15px;
	color: #333;
}

.plan ul {
	list-style: none;
	padding: 0;
	font-size: 1em;
	color: #444;
}

.plan ul li {
	margin: 10px 0;
}

.community-hero, .community-preview, .community-why {
	padding: 60px 20px;
	max-width: 1000px;
	margin: 0 auto 40px;
	background-color: #f9fafe;
	border: 1px solid #ddd;
	border-radius: 12px;
	text-align: center;
}

.community-hero h1, .community-preview h2, .community-why h2 {
	font-size: 2em;
	color: #123456;
	margin-bottom: 16px;
}

.community-hero p, .community-preview ul, .community-why p {
	font-size: 1.1em;
	color: #444;
	line-height: 1.8;
}

.community-preview ul {
	list-style: none;
	padding: 0;
}

.community-preview li {
	margin: 10px 0;
}

/* Dropdown Menu */
.dropdown {
	position: relative;
}

.dropdown-menu {
	display: none; /* Hidden by default */
	position: absolute;
	top: 100%; /* Position below the parent link */
	left: 0;
	background-color: white;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid #e0e0e0;
	z-index: 1000;
	padding: 0.5rem 0;
	min-width: 200px;
	text-align: center;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu li {
	list-style: none;
}

.dropdown-menu a {
	display: block;
	padding: 10px 20px;
	text-decoration: none;
	color: #333;
	font-size: 1rem;
}

.dropdown-menu a:hover {
	background: #f9f9f9;
}

.dropdown-menu .dropdown-item {
	display: block;
	padding: 0.5rem 1rem;
	text-decoration: none;
	text-align: center; /* Center align text */
	white-space: nowrap; /* Prevent wrapping */
	font-weight: 500;
	color: #333;
}

.dropdown-menu .dropdown-divider {
	margin: 0.25rem 0;
	border-color: #e0e0e0;
}

.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus
	{
	background-color: #f8f9fa;
	color: #007bff;
	text-decoration: none;
}

/* Hide dropdown when clicking outside */
body.no-dropdown .dropdown-menu {
	display: none !important;
}

@media ( max-width : 768px) {
	.dropdown-item {
		white-space: normal;
		text-align: left;
	}
}