/*
Template Name: AI Assistant - AI Chat Interface Website HTML Template
Author: Pillarix
Author URI: https://wrapmarket.com/shop/pillarix
Version: 1.0
*/

/* Header Styles */
/* Account Section */
/* Profile Section */
/* Notifications Section */
/* Responsive Styles */
/* Hero Section */
/* Jobs Section */
/* Process Section */
/* CTA Section */
/* Diversity Section */
/* CSS from community.html */
/* Community Section */
/* Categories Section */
/* Featured Discussions */
/* Top Contributors */
/* Upcoming Events */
/* Community Stats */
/* Tooltip */
/* Context Menu */
/* Emoji Picker */
/* Login Section */
/* CSS from signup.html */
/* Signup Section */
/* Form Validation */
/* CSS from support.html */
/* Support Categories */
/* Contact Section */
/* Resources Section */
/* Footer */
/* Mobile Menu */


:root {
	--primary-color: #6366f1;
	--primary-light: #818cf8;
	--primary-dark: #4f46e5;
	--secondary-color: #10b981;
	--dark-color: #1e293b;
	--light-color: #f8fafc;
	--gray-color: #94a3b8;
	--border-color: #e2e8f0;
	--danger-color: #ef4444;
	--warning-color: #f59e0b;
	--info-color: #3b82f6;
	--code-bg: #f1f5f9;
	--code-color: #334155;
	--sidebar-width: 320px;
	--sidebar-collapsed-width: 80px;
	--header-height: 70px;
	--footer-height: 80px;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
  font-family: "Inter", sans-serif;
	background-color: #f1f5f9;
	color: var(--dark-color);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	height: 100vh;
	overflow-x: hidden;
}
a{
    text-decoration: none;
}
.header {
	background-color: white;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	left: 0;
	right: 0;
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--dark-color);
	text-decoration: none;
}

.logo i {
	color: var(--primary-color);
	font-size: 1.5rem;
}

.nav-links {
	display: flex;
	gap: 12px;
}

.nav-link {
	color: var(--dark-color);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	padding: 8px 12px;
	border-radius: 6px;
	transition: all 0.2s;
}

.nav-link:hover {
	background-color: #f1f5f9;
	color: var(--primary-color);
}

.nav-link.active {
	background-color: #eff6ff;
	color: var(--primary-color);
}

.user-menu {
	position: relative;
	display: flex;
	gap: 10px;
	transition: all 0.3s ease;
}

.user-button {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	padding: 8px 12px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
}

.user-button:hover {
	background-color: #f1f5f9;
}

.user-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	background-color: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark-color);
	font-weight: 600;
	border: 2px solid var(--border-color);
}

.user-name {
	font-weight: 600;
	font-size: 0.9rem;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--dark-color);
	cursor: pointer;
}

.account-section {
	flex: 1;
	padding: 40px 20px;
}

.account-container {
	max-width: 1000px;
	margin: 0 auto;
}

.account-header {
	margin-bottom: 30px;
}

.account-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--dark-color);
}

.account-subtitle {
	font-size: 1rem;
	color: var(--gray-color);
}

.account-tabs {
	display: flex;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 30px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.account-tabs::-webkit-scrollbar {
	display: none;
}

.account-tab {
	padding: 12px 20px;
	font-weight: 500;
	color: var(--gray-color);
	border-bottom: 2px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s;
}

.account-tab:hover {
	color: var(--dark-color);
}

.account-tab.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
}

.account-content {
	display: none;
}

.account-content.active {
	display: block;
	animation: fadeIn 0.3s ease-out;
}

.account-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	padding: 30px;
	margin-bottom: 24px;
}

.card-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--dark-color);
	display: flex;
	align-items: center;
	gap: 10px;
}

.card-title i {
	color: var(--primary-color);
	font-size: 1.3rem;
}

.profile-header {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 30px;
}

.profile-avatar-wrapper {
	position: relative;
}

.profile-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid white;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.avatar-upload {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 32px;
	height: 32px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.avatar-upload input[type="file"] {
	display: none;
}

.profile-info {
	flex: 1;
}

.profile-name {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.profile-email {
	color: var(--gray-color);
	margin-bottom: 8px;
}

.profile-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background-color: #ecfdf5;
	color: var(--secondary-color);
	border-radius: 100px;
	font-size: 0.85rem;
	font-weight: 500;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	font-weight: 500;
	font-size: 0.95rem;
	margin-bottom: 8px;
	color: var(--dark-color);
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	font-size: 0.95rem;
	transition: all 0.2s;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-light);
	box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.form-text {
	font-size: 0.85rem;
	color: var(--gray-color);
	margin-top: 6px;
}

.password-input-wrapper {
	position: relative;
}

.password-toggle {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--gray-color);
	cursor: pointer;
	padding: 0;
	font-size: 1.1rem;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	border: none;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 600;
	font-size: 0.95rem;
	color: white;
	cursor: pointer;
	transition: all 0.2s;
	display: inline-flex;
	text-decoration: none;
	align-items: center;
	justify-content: center;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-outline {
	background-color: #fff;
  color: #6367f1;
  border: 2px solid #6367f1;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s;
	display: inline-flex;
	text-decoration: none;
	align-items: center;
	justify-content: center;
}

.btn-outline:hover {
	background-color: rgba(255,255,255,0.1);
	transform: translateY(-2px);
}
.btn-outline-bg {
	background-color: #6367f1;
    color: #fff;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s;
	display: inline-flex;
	text-decoration: none;
	align-items: center;
	justify-content: center;
}

.btn-outline-bg:hover {
	background-color: rgba(255,255,255,0.1);
	transform: translateY(-2px);
}

.btn-danger {
	background-color: transparent;
	color: var(--danger-color);
	border: 1px solid var(--danger-color);
	border-radius: 8px;
	padding: 12px 20px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s;
}

.btn-danger:hover {
	background-color: rgba(239,68,68,0.05);
}

.form-buttons {
	display: flex;
	gap: 12px;
	margin-top: 30px;
}

.plan-card {
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 20px;
	transition: all 0.2s;
}

.plan-card.active {
	border-color: var(--primary-color);
	box-shadow: 0 4px 12px rgba(99,102,241,0.1);
}

.plan-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 16px;
}

.plan-info {
	flex: 1;
}

.plan-name {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.plan-price {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--dark-color);
}

.plan-price span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--gray-color);
}

.plan-billing {
	font-size: 0.9rem;
	color: var(--gray-color);
}

.plan-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	background-color: #eff6ff;
	color: var(--primary-color);
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 600;
}

.plan-features {
	margin-bottom: 20px;
}

.plan-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 0.95rem;
}

.plan-feature i {
	color: var(--secondary-color);
	font-size: 1.1rem;
	flex-shrink: 0;
}

.usage-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.stat-card {
	background-color: #f8fafc;
	border-radius: 10px;
	padding: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	text-align: center;
}

.stat-title {
	font-size: 0.9rem;
	color: var(--gray-color);
	margin-bottom: 12px;
}

.stat-value {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--dark-color);
}

.stat-change {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.85rem;

    justify-content: center;
}

.stat-change.positive {
	color: var(--secondary-color);
}

.stat-change.negative {
	color: var(--danger-color);
}

.security-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	border-bottom: 1px solid var(--border-color);
}

.security-item:last-child {
	border-bottom: none;
}

.security-info {
	flex: 1;
}

.security-title {
	font-weight: 500;
	margin-bottom: 4px;
}

.security-description {
	font-size: 0.9rem;
	color: var(--gray-color);
}

.security-action {
	margin-left: 20px;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 32px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #e2e8f0;
	transition: .4s;
	border-radius: 24px;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 24px;
	width: 24px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

input:checked + .toggle-slider {
	background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
	transform: translateX(28px);
}

.connected-account {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	border-bottom: 1px solid var(--border-color);
}

.connected-account:last-child {
	border-bottom: none;
}

.account-info {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
}

.account-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.google-icon {
	color: #db4437;
}

.facebook-icon {
	color: #4267b2;
}

.twitter-icon {
	color: #1da1f2;
}

.account-details {
	flex: 1;
}

.account-name {
	font-weight: 500;
	margin-bottom: 4px;
}

.account-status {
	font-size: 0.85rem;
}

.account-status.connected {
	color: var(--secondary-color);
}

.account-status.not-connected {
	color: var(--gray-color);
}

.notification-group {
	margin-bottom: 30px;
}

.notification-group-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--dark-color);
}

.notification-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	border-bottom: 1px solid var(--border-color);
	gap: 12px;
	cursor: pointer;
	transition: all 0.2s;
}

.notification-item:last-child {
	border-bottom: none;
}

.notification-info {
	flex: 1;
}

.notification-title {
	font-weight: 600;
	margin-bottom: 4px;
	font-size: 0.9rem;
}

.notification-description {
	font-size: 0.9rem;
	color: var(--gray-color);
}

.footer {
	background-color: white;
	padding: 40px 0;
	border-top: 1px solid var(--border-color);
	margin-top: auto;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	align-items: center;
}

.footer-links {
	display: flex;
	gap: 10px;
	flex-direction: column;
}

.footer-link {
	color: var(--gray-color);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.2s;
}

.footer-link:hover {
	color: var(--primary-color);
}

.copyright {
	color: var(--gray-color);
	font-size: 0.9rem;
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	z-index: 1001;
	padding: 20px;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}

.mobile-menu.show {
	transform: translateX(0);
}

.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.mobile-menu-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--dark-color);
	cursor: pointer;
}

.mobile-nav-links {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

.mobile-nav-link {
	color: var(--dark-color);
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 10px;
}

.mobile-nav-link.active {
	color: var(--primary-color);
}

.inline-style-1 {
	width: 100%;
	position: relative;
	color: var(--secondary-color);
}

.inline-style-2 {
	background-color: #f1f5f9;
	color: #7c3aed;
}

.inline-style-3 {
	background-color: #f1f5f9;
	color: #2563eb;
}

.inline-style-4 {
	background-color: #f1f5f9;
	color: #0369a1;
}

.hero-section {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: white;
	padding: 60px 0;
	text-align: center;
	position: relative;
}

.hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.1;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	background: linear-gradient(135deg, var(--dark-color), var(--primary-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.hero-subtitle {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 30px;
	opacity: 0.9;
	color: var(--gray-color);
	line-height: 1.6;
	margin-bottom: 30px;
}

.btn-white-outline {
	background-color: transparent;
	color: white;
	border: 1px solid white;
	border-radius: 8px;
	padding: 14px 28px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s;
	display: inline-block;
	text-decoration: none;
	margin-left: 15px;
}

.btn-white-outline:hover {
	background-color: rgba(255,255,255,0.1);
	transform: translateY(-2px);
}

.mission-section {
	padding: 80px 0;
	background-color: white;
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
	max-width: 700px;
	margin: 0 auto 60px;
}

.section-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--dark-color);
	text-align: center;
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--gray-color);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.mission-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 30px;
}

.mission-card {
	background-color: #f8fafc;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s;
}

.mission-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.mission-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 2rem;
}

.mission-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--dark-color);
}

.mission-description {
	color: var(--gray-color);
	line-height: 1.6;
}

.benefits-section {
	padding: 80px 0;
	background-color: #f8fafc;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
	gap: 30px;
}

.benefit-card {
	background-color: white;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	transition: all 0.3s;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.benefit-icon {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	background-color: #eff6ff;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.benefit-content {
	flex: 1;
}

.benefit-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--dark-color);
}

.benefit-description {
	color: var(--gray-color);
	font-size: 0.95rem;
	line-height: 1.5;
}

.team-section {
	padding: 80px 0;
	background-color: white;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
	gap: 30px;
	margin-top: 50px;
}

.team-card {
	background-color: #f8fafc;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	transition: all 0.3s;
	padding: 20px;
	text-align: center;
}

.team-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.team-image {
	    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 60px;
    margin-bottom: 15px;
}



.team-name {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--dark-color);
}

.team-role {
	color: var(--primary-color);
	font-weight: 500;
	margin-bottom: 15px;
}

.team-bio {
	color: var(--gray-color);
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 15px;
}

.team-social {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.social-link {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #f1f5f9;
	color: var(--dark-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	transition: all 0.2s;
	text-decoration: none;
}

.social-link:hover {
	background-color: var(--primary-color);
	color: white;
	transform: translateY(-3px);
}

.testimonials-section {
	padding: 100px 0;
	background-color: #f8fafc;
}

.testimonials-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.testimonial-card {
	background-color: white;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	margin-bottom: 30px;
	transition: all 0.3s;
}

.testimonial-content {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--dark-color);
	margin-bottom: 24px;
	position: relative;
}

.testimonial-content::before, .testimonial-content::after {
	content: '"';
	font-size: 3rem;
	color: var(--primary-light);
	position: absolute;
	opacity: 0.3;
}

.testimonial-content::before {
	top: -20px;
	left: -10px;
	content: '"';
	font-size: 4rem;
	color: rgba(99,102,241,0.1);
	position: absolute;
	font-family: Georgia, serif;
}

.testimonial-content::after {
	bottom: -50px;
	right: -10px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.author-info {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.author-name {
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--dark-color);
}

.author-role {
	color: var(--gray-color);
	font-size: 0.9rem;
}

.jobs-section {
	padding: 80px 0;
	background-color: white;
}

.jobs-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.jobs-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--dark-color);
}

.jobs-filters {
	display: flex;
	gap: 15px;
}

.filter-button {
	background-color: #f1f5f9;
	border: none;
	border-radius: 6px;
	padding: 10px 15px;
	font-size: 0.9rem;
	color: var(--dark-color);
	cursor: pointer;
	transition: all 0.2s;
}

.filter-button:hover {
	background-color: #e2e8f0;
}

.filter-button.active {
	background-color: var(--primary-color);
	color: white;
}

.jobs-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.job-card {
	background-color: #f8fafc;
	border-radius: 12px;
	padding: 25px;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.job-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.job-info {
	flex: 1;
}

.job-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--dark-color);
}

.job-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 15px;
}

.job-meta-item {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--gray-color);
	font-size: 0.9rem;
}

.job-meta-item i {
	font-size: 1rem;
	color: var(--primary-color);
}

.job-description {
	color: var(--gray-color);
	font-size: 0.95rem;
	line-height: 1.5;
}

.job-tags {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.job-tag {
	background-color: #eff6ff;
	color: var(--primary-color);
	padding: 5px 10px;
	border-radius: 100px;
	font-size: 0.8rem;
	font-weight: 500;
}

.process-section {
	padding: 80px 0;
	background-color: #f8fafc;
}

.process-steps {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.process-steps::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 19px;
	width: 2px;
	background-color: var(--border-color);
}

.process-step {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
	position: relative;
}

.process-step:last-child {
	margin-bottom: 0;
}

.step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
	flex-shrink: 0;
	z-index: 1;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	margin: 0 auto 24px;
}

.step-content {
	flex: 1;
	padding-top: 5px;
}

.step-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--dark-color);
}

.step-description {
	color: var(--gray-color);
	line-height: 1.6;
	font-size: 1rem;
}

.cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: white;
	text-align: center;
	position: relative;
}

.cta-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.cta-subtitle {
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto 30px;
	opacity: 0.9;
}

.diversity-section {
	padding: 80px 0;
	background-color: white;
}

.diversity-content {
	max-width: 800px;
	margin: 0 auto;
}

.diversity-text {
	line-height: 1.7;
	margin-bottom: 30px;
	color: var(--gray-color);
}

.mission-card, .benefit-card, .team-card, .job-card {
	animation: fadeIn 0.5s ease-out;
}

.community-section {
	flex: 1;
	padding: 40px 20px;
}

.community-container {
	max-width: 1200px;
	margin: 0 auto;
}

.community-header {
	text-align: center;
	margin-bottom: 40px;
}

.community-title {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--dark-color);
}

.community-subtitle {
	font-size: 1.1rem;
	color: var(--gray-color);
	max-width: 700px;
	margin: 0 auto;
}

.community-search {
	max-width: 600px;
	margin: 0 auto 40px;
}

.search-form {
	display: flex;
	gap: 10px;
}

.search-input {
	flex: 1;
	padding: 15px 20px;
	border-radius: 12px;
	border: none;
	font-size: 1rem;
	transition: all 0.2s;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	width: 100%;
	background-color: #f1f5f9;
	padding-left: 50px;
}

.search-input:focus {
	outline: none;
	border-color: var(--primary-light);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	background-color: white;
}

.community-grid {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 30px;
}


.community-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	padding: 30px;
	margin-bottom: 24px;
	animation: fadeIn 0.5s ease-out;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.category-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	padding: 30px;
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
	height: 100%;
	text-align: center;
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.category-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	font-size: 1.8rem;
	color: var(--primary-color);
	background-color: #eff6ff;
	margin: 0 auto 20px;
}

.category-icon.tips {
	background: linear-gradient(135deg,#3b82f6,#1d4ed8);
}

.category-icon.showcase {
	background: linear-gradient(135deg,#10b981,#047857);
}

.category-icon.help {
	background: linear-gradient(135deg,#f59e0b,#b45309);
}

.category-icon.feedback {
	background: linear-gradient(135deg,#8b5cf6,#6d28d9);
}

.category-icon.announcements {
	background: linear-gradient(135deg,#ef4444,#b91c1c);
}

.category-icon.general {
	background: linear-gradient(135deg,#64748b,#334155);
}

.category-name {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.category-description {
	font-size: 0.95rem;
	color: var(--gray-color);
	margin-bottom: 20px;
	flex-grow: 1;
	line-height: 1.6;
}

.category-stats {
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
	color: var(--gray-color);
}

.discussion-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.discussion-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	padding: 20px;
	transition: all 0.2s;
}

.discussion-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.discussion-header {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 15px;
}

.discussion-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.discussion-info {
	flex: 1;
}

.discussion-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--dark-color);
}

.discussion-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 0.85rem;
	color: var(--gray-color);
}

.discussion-author {
	font-weight: 500;
	color: var(--primary-color);
}

.discussion-category {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	background-color: #f1f5f9;
	border-radius: 100px;
	font-size: 0.8rem;
	font-weight: 500;
}

.discussion-category.tips {
	background-color: #eff6ff;
	color: #3b82f6;
}

.discussion-category.showcase {
	background-color: #ecfdf5;
	color: #10b981;
}

.discussion-category.help {
	background-color: #fffbeb;
	color: #f59e0b;
}

.discussion-category.feedback {
	background-color: #f5f3ff;
	color: #8b5cf6;
}

.discussion-category.announcements {
	background-color: #fee2e2;
	color: #ef4444;
}

.discussion-category.general {
	background-color: #f1f5f9;
	color: #64748b;
}

.discussion-content {
	font-size: 0.95rem;
	margin-bottom: 15px;
	color: var(--dark-color);
	line-height: 1.5;
}

.discussion-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.discussion-stats {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 0.85rem;
	color: var(--gray-color);
}

.discussion-stat {
	display: flex;
	align-items: center;
	gap: 5px;
}

.discussion-stat i {
	font-size: 1rem;
}

.discussion-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.discussion-action {
	background: none;
	border: none;
	color: var(--gray-color);
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s;
	padding: 5px;
}

.discussion-action:hover {
	color: var(--primary-color);
}

.contributor-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contributor-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px 0;
}

.contributor-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.contributor-info {
	flex: 1;
}

.contributor-name {
	font-weight: 600;
	margin-bottom: 3px;
}

.contributor-role {
	font-size: 0.85rem;
	color: var(--gray-color);
}

.contributor-stats {
	text-align: right;
}

.contributor-posts {
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 3px;
}

.contributor-joined {
	font-size: 0.85rem;
	color: var(--gray-color);
}

.event-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.event-card {
	display: flex;
	gap: 15px;
	padding: 15px;
	border-radius: 10px;
	background-color: #f8fafc;
	transition: all 0.2s;
}

.event-card:hover {
	background-color: #f1f5f9;
}

.event-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 60px;
	height: 60px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.event-day {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-color);
}

.event-month {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--gray-color);
	text-transform: uppercase;
}

.event-info {
	flex: 1;
}

.event-title {
	font-weight: 600;
	margin-bottom: 5px;
}

.event-details {
	font-size: 0.85rem;
	color: var(--gray-color);
	display: flex;
	align-items: center;
	gap: 10px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 15px;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--gray-color);
}

.guidelines-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.guideline-item {
	display: flex;
	gap: 15px;
}

.guideline-icon {
	color: var(--primary-color);
	font-size: 1.2rem;
	margin-top: 2px;
}

.guideline-content {
	flex: 1;
}

.guideline-title {
	font-weight: 600;
	margin-bottom: 5px;
}

.guideline-description {
	font-size: 0.9rem;
	color: var(--gray-color);
	line-height: 1.5;
}

.pagination-container {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.pagination {
	display: flex;
	gap: 5px;
}

.page-item {
	list-style: none;
}

.page-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: white;
	color: var(--dark-color);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-link:hover {
	background-color: #f1f5f9;
}

.page-item.active .page-link {
	background-color: var(--primary-color);
	color: white;
}

.page-item.disabled .page-link {
	color: var(--gray-color);
	pointer-events: none;
}

.docs-section {
	flex: 1;
	padding: 0;
}

.docs-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
}
.docs-sidebar.show {
    display: none;
}
.docs-sidebar {
	width: 280px;
	background-color: white;
	border-right: 1px solid var(--border-color);
	height: calc(100vh);
	position: sticky;
	top: 0px;
	overflow-y: auto;
	padding: 30px 0;
	scrollbar-width: thin;
	scrollbar-color: var(--gray-color) transparent;
}

.docs-sidebar::-webkit-scrollbar {
	width: 6px;
}

.docs-sidebar::-webkit-scrollbar-track {
	background: transparent;
}

.docs-sidebar::-webkit-scrollbar-thumb {
	background-color: var(--gray-color);
	border-radius: 3px;
}

.sidebar-search {
	padding: 0 20px;
	margin-bottom: 20px;
}

.sidebar-nav {
	padding: 0 10px;
}

.sidebar-section {
	margin-bottom: 20px;
}

.sidebar-heading {
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--gray-color);
	padding: 0 10px;
	margin-bottom: 10px;
}

.sidebar-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-link {
	display: block;
	padding: 8px 10px;
	color: var(--dark-color);
	text-decoration: none;
	font-size: 0.95rem;
	border-radius: 6px;
	transition: all 0.2s;
	margin-bottom: 2px;
}

.sidebar-link:hover {
	background-color: #f1f5f9;
	color: var(--primary-color);
}

.sidebar-link.active {
	background-color: #eff6ff;
	color: var(--primary-color);
	font-weight: 500;
}

.sidebar-sublinks {
	list-style: none;
	padding-left: 20px;
	margin: 5px 0;
}

.sidebar-sublink {
	display: block;
	padding: 6px 10px;
	color: var(--dark-color);
	text-decoration: none;
	font-size: 0.9rem;
	border-radius: 6px;
	transition: all 0.2s;
	margin-bottom: 2px;
}

.sidebar-sublink:hover {
	background-color: #f1f5f9;
	color: var(--primary-color);
}

.sidebar-sublink.active {
	color: var(--primary-color);
	font-weight: 500;
}

.docs-content {
	flex: 1;
	padding: 40px;
	background-color: white;
	min-height: calc(100vh - 65px);
	animation: fadeIn 0.5s ease-out;
}

.docs-header {
	margin-bottom: 30px;
}

.docs-title {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--dark-color);
}

.docs-subtitle {
	font-size: 1.1rem;
	color: var(--gray-color);
	margin-bottom: 20px;
}

.docs-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 0.9rem;
	color: var(--gray-color);
	margin-bottom: 30px;
}

.docs-meta-item {
	display: flex;
	align-items: center;
	gap: 5px;
}

.docs-meta-item i {
	font-size: 1rem;
}

.docs-content h2 {
	font-size: 1.6rem;
	font-weight: 700;
	margin: 40px 0 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
}

.docs-content h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin: 30px 0 15px;
}

.docs-content h4 {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 25px 0 15px;
}

.docs-content p {
	margin-bottom: 20px;
	line-height: 1.6;
}

.docs-content ul, .docs-content ol {
	margin-bottom: 20px;
	padding-left: 20px;
}

.docs-content li {
	margin-bottom: 10px;
	line-height: 1.6;
}

.docs-content a {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.2s;
}

.docs-content a:hover {
	text-decoration: underline;
}

.docs-content img {
	max-width: 100%;
	border-radius: 8px;
	margin: 20px 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.docs-content blockquote {
	border-left: 4px solid var(--primary-light);
	padding: 15px 20px;
	background-color: #f8fafc;
	margin: 20px 0;
	border-radius: 0 8px 8px 0;
}

.docs-content blockquote p:last-child {
	margin-bottom: 0;
}

.docs-content pre {
	background-color: var(--code-bg);
	border-radius: 8px;
	padding: 20px;
	margin: 20px 0;
	overflow-x: auto;
	font-family: 'Fira Code', 'Courier New', monospace;
	font-size: 0.9rem;
	line-height: 1.5;
}

.docs-content code {
	font-family: 'Fira Code', 'Courier New', monospace;
	background-color: var(--code-bg);
	color: var(--code-color);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.9em;
	text-wrap: auto;
}

.docs-content pre code {
	background-color: transparent;
	padding: 0;
	border-radius: 0;
	color: var(--code-color);
}

.docs-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 0.95rem;
}

.docs-content th {
	background-color: #f8fafc;
	font-weight: 600;
	text-align: left;
	padding: 12px 15px;
	border-bottom: 2px solid var(--border-color);
}

.docs-content td {
	padding: 12px 15px;
	border-bottom: 1px solid var(--border-color);
}

.docs-content tr:last-child td {
	border-bottom: none;
}

.callout {
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
	display: flex;
	gap: 15px;
}

.callout-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.callout-content {
	flex: 1;
}

.callout-title {
	font-weight: 600;
	margin-bottom: 5px;
}

.callout-info {
	background-color: #eff6ff;
	border-left: 4px solid var(--info-color);
}

.callout-info .callout-icon {
	color: var(--info-color);
}

.callout-warning {
	background-color: #fffbeb;
	border-left: 4px solid var(--warning-color);
}

.callout-warning .callout-icon {
	color: var(--warning-color);
}

.callout-tip {
	background-color: #ecfdf5;
	border-left: 4px solid var(--secondary-color);
}

.callout-tip .callout-icon {
	color: var(--secondary-color);
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
	gap: 20px;
	margin: 30px 0;
}

.docs-card {
	background-color: #f8fafc;
	border-radius: 8px;
	padding: 20px;
	transition: all 0.2s;
	border: 1px solid var(--border-color);
}

.docs-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	border-color: var(--primary-light);
}

.docs-card-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	font-size: 1.3rem;
	color: var(--primary-color);
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.docs-card-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.docs-card-description {
	font-size: 0.95rem;
	color: var(--gray-color);
	margin-bottom: 15px;
}

.docs-card-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--primary-color);
	text-decoration: none;
}

.docs-card-link:hover {
	text-decoration: underline;
}

.steps {
	counter-reset: step;
	margin: 30px 0;
}

.step {
	position: relative;
	padding-left: 45px;
	margin-bottom: 30px;
}

.step::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	left: 0;
	top: 0;
	width: 30px;
	height: 30px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.9rem;
}

.docs-pagination {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
}

.pagination-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background-color: #f8fafc;
	border-radius: 8px;
	text-decoration: none;
	color: var(--dark-color);
	font-weight: 500;
	transition: all 0.2s;
}

.pagination-link:hover {
	background-color: #f1f5f9;
	color: var(--primary-color);
}

.pagination-link.next {
	margin-left: auto;
}

.sidebar-toggle {
	display: flex;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--primary-color);
	color: white;
	border: none;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	z-index: 100;
	cursor: pointer;
	font-size: 1.5rem;
	align-items: center;
	justify-content: center;
}

.app-container {
	height: 100vh;
	display: flex;
	overflow: hidden;
}

.sidebar {
	width: var(--sidebar-width);
	background: white;
	border-right: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	z-index: 1000;
}

.sidebar.collapsed {
	width: var(--sidebar-collapsed-width);
}

.sidebar-header {
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
}

.sidebar-title {
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--dark-color);
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	overflow: hidden;
}

.sidebar-title i {
	color: var(--primary-color);
	font-size: 1.5rem;
}

.sidebar.collapsed .sidebar-title span {
	display: none;
}

.search-container {
	padding: 15px 20px;
	border-bottom: 1px solid var(--border-color);
	transition: all 0.3s ease;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
}

.sidebar.collapsed .search-container {
	padding: 15px 10px;
	display: flex;
	justify-content: center;
}

.sidebar.collapsed .search-input {
	width: 40px;
	height: 40px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sidebar.collapsed .search-input::placeholder {
	opacity: 0;
}

.search-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray-color);
	pointer-events: none;
	left: 20px;
	font-size: 1.2rem;
}

.sidebar.collapsed .search-icon {
	position: static;
	transform: none;
	display: block;
	margin: 0;
}

.chat-list {
	flex: 1;
	overflow-y: auto;
	padding: 10px 0;
	transition: all 0.3s ease;
}

.chat-item {
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all 0.2s;
	border-left: 3px solid transparent;
}

.sidebar.collapsed .chat-item {
	padding: 12px;
	justify-content: center;
}

.chat-item:hover {
	background-color: #f8fafc;
}

.chat-item.active {
	background-color: #eff6ff;
	border-left: 3px solid var(--primary-color);
}

.chat-avatar {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	flex-shrink: 0;
}

.chat-avatar.ai {
	background: linear-gradient(45deg, var(--secondary-color), #34d399);
}

.chat-info {
	flex: 1;
	min-width: 0;
	transition: all 0.3s ease;
}

.sidebar.collapsed .chat-info {
	display: none;
}

.chat-name {
	font-weight: 600;
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.chat-preview {
	font-size: 0.85rem;
	color: var(--gray-color);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.chat-meta {
	font-size: 0.75rem;
	color: var(--gray-color);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
	transition: all 0.3s ease;
}

.sidebar.collapsed .chat-meta {
	display: none;
}

.chat-time {
	white-space: nowrap;
}

.chat-badge {
	background-color: var(--primary-color);
	color: white;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 600;
}

.sidebar-footer {
	padding: 15px 20px;
	border-top: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: white;
	transition: all 0.3s ease;
}

.sidebar.collapsed .sidebar-footer {
	padding: 15px 10px;
	justify-content: center;
}

.user-info {
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
}

.sidebar.collapsed .user-info > div:not(.user-avatar) {
	display: none;
}

.user-status {
	font-size: 0.75rem;
	color: var(--secondary-color);
	display: flex;
	align-items: center;
	gap: 4px;
}

.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--secondary-color);
}

.sidebar.collapsed .user-menu {
	display: none;
}

.user-menu-btn {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-color);
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
}

.user-menu-btn:hover {
	background-color: #f1f5f9;
	color: var(--dark-color);
}

.chat-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	background-color: #f8fafc;
	position: relative;
	overflow: hidden;
}

.chat-header {
	height: var(--header-height);
	padding: 0 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--border-color);
	background-color: white;
}

.chat-header-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.chat-header-title {
	font-weight: 700;
	font-size: 1.1rem;
}

.chat-header-subtitle {
	font-size: 0.85rem;
	color: var(--gray-color);
	display: flex;
	align-items: center;
	gap: 5px;
}

.chat-header-actions {
	display: flex;
	gap: 10px;
}

.header-btn {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-color);
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
}

.header-btn:hover {
	background-color: #f1f5f9;
	color: var(--dark-color);
}

.header-btn.active {
	color: var(--primary-color);
	background-color: #eff6ff;
}

.notification-badge {
	position: absolute;
	top: 5px;
	right: 5px;
	background-color: var(--danger-color);
	color: white;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	width: 200px;
	z-index: 1000;
	overflow: hidden;
	display: none;
	animation: fadeIn 0.2s ease-out;
}

.dropdown-menu.show {
	display: block;
}

.dropdown-item {
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.2s;
}

.dropdown-item:hover {
	background-color: #f1f5f9;
}

.dropdown-item i {
	font-size: 1.1rem;
	color: var(--gray-color);
}

.dropdown-divider {
	height: 1px;
	background-color: var(--border-color);
	margin: 5px 0;
}

.chat-messages {
	flex: 1;
	overflow-y: auto;
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.message-group {
	display: flex;
	flex-direction: column;
	gap: 2px;
	max-width: 80%;
}

.message-group.user {
	align-self: flex-end;
}

.message-group.ai {
	align-self: flex-start;
}

.message-bubble {
	padding: 12px 16px;
	border-radius: 18px;
	position: relative;
	font-size: 0.95rem;
	line-height: 1.5;
}

.message-group.user .message-bubble {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: white;
	border-bottom-right-radius: 4px;
}

.message-group.ai .message-bubble {
	background-color: white;
	border-bottom-left-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.message-info {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 5px;
}

.message-time {
	font-size: 0.75rem;
	color: var(--gray-color);
}

.message-status {
	display: flex;
	align-items: center;
	font-size: 0.75rem;
	color: var(--gray-color);
}

.message-group.user .message-info {
	justify-content: flex-end;
}

.typing-indicator {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 10px 16px;
	background-color: white;
	border-radius: 18px;
	width: fit-content;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.typing-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--gray-color);
	animation: typing 1.5s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
	animation-delay: 0s;
}

.typing-dot:nth-child(2) {
	animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
	animation-delay: 0.4s;
}

.chat-footer {
	padding: 20px 25px;
	background-color: white;
	border-top: 1px solid var(--border-color);
	height: var(--footer-height);
}

.chat-input-container {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: #f1f5f9;
	border-radius: 12px;
	padding: 5px 7px;
	transition: all 0.2s;
}

.chat-input-container:focus-within {
	background-color: white;
	box-shadow: 0 0 0 2px var(--primary-light);
}

.chat-input-actions {
	display: flex;
	gap: 10px;
}

.input-action-btn {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-color);
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
}

.input-action-btn:hover {
	background-color: rgba(0,0,0,0.05);
	color: var(--dark-color);
}

.input-action-btn.active {
	color: var(--primary-color);
	background-color: rgba(99,102,241,0.1);
}

.chat-input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 10px 0;
	font-size: 0.95rem;
	resize: none;
	max-height: 100px;
	min-height: 24px;
}

.chat-input:focus {
	outline: none;
}

.send-btn {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: white;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
}

.send-btn:hover {
	transform: scale(1.05);
}

.send-btn:active {
	transform: scale(0.95);
}

.quick-actions {
	position: absolute;
	bottom: 100px;
	right: 25px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 10;
}

.quick-action-btn {
	width: 50px;
	height: 50px;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	color: var(--gray-color);
	border: 1px solid var(--border-color);
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	cursor: pointer;
	transition: all 0.2s;
}

.quick-action-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.1);
	color: var(--primary-color);
}

.quick-action-btn.primary {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: white;
	border: none;
}

.quick-action-btn.primary:hover {
	transform: translateY(-3px) scale(1.05);
}

.tooltip {
	position: absolute;
	background-color: var(--dark-color);
	color: white;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 0.75rem;
	white-space: nowrap;
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.2s;
	z-index: 1000;
	width: max-content;
}

.tooltip.show {
	opacity: 1;
}

.tooltip.right {
	left: calc(100% + 10px);
	top: 50%;
	transform: translateY(-0%);
}

.tooltip.left {
	right: calc(100% + 10px);
	top: 50%;
	transform: translateY(-50%);
}

.tooltip.top {
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
}

.tooltip.bottom {
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
}

.tooltip::after {
	content: '';
	position: absolute;
	border: 5px solid transparent;
}

.tooltip.right::after {
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	border-right-color: var(--dark-color);
}

.tooltip.left::after {
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border-left-color: var(--dark-color);
}

.tooltip.top::after {
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-top-color: var(--dark-color);
}

.tooltip.bottom::after {
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-bottom-color: var(--dark-color);
}

.context-menu {
	position: fixed;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	width: 180px;
	z-index: 1000;
	overflow: hidden;
	display: none;
	animation: fadeIn 0.2s ease-out;
}

.context-menu.show {
	display: block;
}

.emoji-picker {
	position: absolute;
	bottom: 90px;
	left: 25px;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	width: 320px;
	height: 300px;
	z-index: 1000;
	overflow: hidden;
	display: none;
	animation: fadeIn 0.2s ease-out;
}

.emoji-picker.show {
	display: block;
}

.emoji-picker-header {
	padding: 15px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.emoji-picker-title {
	font-weight: 600;
	font-size: 0.9rem;
}

.emoji-picker-close {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-color);
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
}

.emoji-picker-close:hover {
	background-color: #f1f5f9;
	color: var(--dark-color);
}

.emoji-picker-content {
	padding: 15px;
	height: calc(100% - 60px);
	overflow-y: auto;
}

.emoji-category {
	margin-bottom: 15px;
}

.emoji-category-title {
	font-weight: 600;
	font-size: 0.8rem;
	margin-bottom: 10px;
	color: var(--gray-color);
}

.emoji-grid {
	display: grid;
	grid-template-columns: repeat(8,1fr);
	gap: 5px;
}

.emoji-item {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.2s;
}

.emoji-item:hover {
	background-color: #f1f5f9;
}

.mobile-toggle {
	display: none;
	margin-right: 15px;
}

.fade-in {
	animation: fadeIn 0.3s ease-in-out;
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: var(--gray-color);
	border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #64748b;
}

.settings-panel {
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100%;
	background-color: white;
	box-shadow: -5px 0 15px rgba(0,0,0,0.1);
	z-index: 1001;
	transition: all 0.3s ease;
	overflow-y: auto;
}

.settings-panel.show {
	right: 0;
}

.settings-header {
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.settings-title {
	font-weight: 700;
	font-size: 1.25rem;
}

.settings-close {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-color);
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
}

.settings-close:hover {
	background-color: #f1f5f9;
	color: var(--dark-color);
}

.settings-content {
	padding: 20px;
}

.settings-section {
	margin-bottom: 30px;
}

.settings-section-title {
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 15px;
	color: var(--dark-color);
}

.settings-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
}

.settings-item:last-child {
	border-bottom: none;
}

.settings-item-label {
	font-size: 0.9rem;
}

.settings-item-description {
	font-size: 0.8rem;
	color: var(--gray-color);
	margin-top: 5px;
}

.shortcuts-panel {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 500px;
	max-width: 90%;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	z-index: 1001;
	overflow: hidden;
	display: none;
}

.shortcuts-panel.show {
	display: block;
	animation: fadeIn 0.3s ease-out;
}

.shortcuts-header {
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.shortcuts-title {
	font-weight: 700;
	font-size: 1.25rem;
}

.shortcuts-close {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-color);
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
}

.shortcuts-close:hover {
	background-color: #f1f5f9;
	color: var(--dark-color);
}

.shortcuts-content {
	padding: 20px;
	max-height: 70vh;
	overflow-y: auto;
}

.shortcut-group {
	margin-bottom: 20px;
}

.shortcut-group-title {
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 10px;
	color: var(--gray-color);
}

.shortcut-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
}

.shortcut-description {
	font-size: 0.9rem;
}

.shortcut-keys {
	display: flex;
	gap: 5px;
}

.key {
	background-color: #f1f5f9;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	padding: 2px 6px;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--dark-color);
	min-width: 24px;
	text-align: center;
}

.notification-panel {
	position: fixed;
	top: var(--header-height);
	right: 20px;
	width: 320px;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	z-index: 1001;
	overflow: hidden;
	display: none;
	animation: fadeIn 0.2s ease-out;
}

.notification-panel.show {
	display: block;
}

.notification-header {
	padding: 15px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.notification-actions {
	display: flex;
	gap: 10px;
}

.notification-action {
	font-size: 0.8rem;
	color: var(--primary-color);
	cursor: pointer;
	transition: all 0.2s;
}

.notification-action:hover {
	text-decoration: underline;
}

.notification-content {
	max-height: 400px;
	overflow-y: auto;
}

.notification-item:hover {
	background-color: #f8fafc;
}

.notification-item.unread {
	background-color: #eff6ff;
}

.notification-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	flex-shrink: 0;
}

.notification-message {
	font-size: 0.85rem;
	margin-bottom: 5px;
}

.notification-time {
	font-size: 0.75rem;
	color: var(--gray-color);
}

.notification-empty {
	padding: 30px 15px;
	text-align: center;
	color: var(--gray-color);
	font-size: 0.9rem;
}

.toast-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1002;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.toast {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	padding: 15px;
	width: 300px;
	display: flex;
	align-items: center;
	gap: 12px;
	animation: slideIn 0.3s ease-out;
	position: relative;
	overflow: hidden;
}

.toast.success {
	border-left: 4px solid var(--secondary-color);
}

.toast.error {
	border-left: 4px solid var(--danger-color);
}

.toast.info {
	border-left: 4px solid var(--info-color);
}

.toast.warning {
	border-left: 4px solid var(--warning-color);
}

.toast-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.toast.success .toast-icon {
	background-color: rgba(16,185,129,0.1);
	color: var(--secondary-color);
}

.toast.error .toast-icon {
	background-color: rgba(239,68,68,0.1);
	color: var(--danger-color);
}

.toast.info .toast-icon {
	background-color: rgba(59,130,246,0.1);
	color: var(--info-color);
}

.toast.warning .toast-icon {
	background-color: rgba(245,158,11,0.1);
	color: var(--warning-color);
}

.toast-content {
	flex: 1;
}

.toast-title {
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 2px;
}

.toast-message {
	font-size: 0.8rem;
	color: var(--gray-color);
}

.toast-close {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-color);
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	flex-shrink: 0;
}

.toast-close:hover {
	background-color: #f1f5f9;
	color: var(--dark-color);
}

.toast-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	background-color: rgba(0,0,0,0.1);
	width: 100%;
}

.toast-progress-bar {
	height: 100%;
	width: 100%;
	animation: progress 5s linear forwards;
}

.toast.success .toast-progress-bar {
	background-color: var(--secondary-color);
}

.toast.error .toast-progress-bar {
	background-color: var(--danger-color);
}

.toast.info .toast-progress-bar {
	background-color: var(--info-color);
}

.toast.warning .toast-progress-bar {
	background-color: var(--warning-color);
}

.nav-link i {
	margin-right: 5px;
}

.header-buttons {
	display: flex;
	gap: 15px;
    align-items: center;
}

.hero-content {
	max-width: 540px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: rgba(99,102,241,0.1);
	color: var(--primary-color);
	padding: 8px 16px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 0.85rem;
	margin-bottom: 24px;
}

.hero-badge i {
	font-size: 1rem;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	margin-bottom: 32px;
}

.hero-stats {
	display: flex;
	gap: 32px;
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.hero-image {
	position: relative;
	z-index: 1;
}

.hero-image img {
	width: 100%;
	height: auto;
}

.hero-shape-1 {
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(99,102,241,0.1));
	border-radius: 50%;
	filter: blur(60px);
	z-index: 0;
}

.hero-shape-2 {
	position: absolute;
	bottom: -100px;
	left: -100px;
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.1));
	border-radius: 50%;
	filter: blur(60px);
	z-index: 0;
}

.clients-section {
	padding: 60px 0;
	background-color: white;
}

.clients-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.clients-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--gray-color);
	margin-bottom: 40px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.clients-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 60px;
}

.client-logo {
	height: 30px;
	opacity: 0.7;
	transition: all 0.3s;
}

.client-logo:hover {
	opacity: 1;
}

.features-section {
	padding: 100px 0;
	background-color: #f8fafc;
}

.features-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
	gap: 40px;
}

.feature-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	padding: 30px;
	transition: all 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 24px;
}

.feature-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--dark-color);
}

.feature-description {
	font-size: 1rem;
	color: var(--gray-color);
	line-height: 1.6;
}

.how-it-works-section {
	padding: 100px 0;
	background-color: white;
}

.steps-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 30px;
}

.step-card {
	text-align: center;
	padding: 30px;
	position: relative;
}

.step-arrow {
	position: absolute;
	top: 40px;
	right: -15px;
	color: var(--gray-color);
	font-size: 1.5rem;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
	gap: 30px;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.testimonial-rating {
	display: flex;
	gap: 4px;
	margin-top: 8px;
}

.rating-star {
	color: var(--warning-color);
}

.pricing-section {
	padding: 100px 0;
	background-color: white;
}

.pricing-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.pricing-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 60px;
}

.toggle-label {
	font-weight: 600;
	font-size: 1rem;
	color: var(--gray-color);
	cursor: pointer;
}

.toggle-label.active {
	color: var(--dark-color);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
	gap: 30px;
}

.pricing-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	padding: 40px 30px;
	transition: all 0.3s;
	border: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
}

.pricing-card.popular {
	border-color: var(--primary-color);
	transform: scale(1.05);
}

.pricing-card.popular::before {
	    content: 'Most Popular';
    position: absolute;
    top: 25px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 4px 30px;
    font-size: 11px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.pricing-card.popular:hover {
	transform: translateY(-5px) scale(1.05);
}

.pricing-header {
	text-align: center;
	margin-bottom: 30px;
}

.pricing-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 16px;
}

.pricing-price {
	font-size: 3rem;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 8px;
}

.pricing-price span {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--gray-color);
}

.pricing-description {
	font-size: 0.95rem;
	color: var(--gray-color);
}

.pricing-features {
	margin-bottom: 30px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 0.95rem;
}

.feature-icon-check {
	color: var(--secondary-color);
}

.feature-icon-cross {
	color: var(--gray-color);
}

.pricing-button {
	width: 100%;
}

.faq-section {
	padding: 60px 0;
	background-color: #f8fafc;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.accordion-item {
	background-color: white;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	margin-bottom: 15px;
	overflow: hidden;
}

.accordion-header {
	padding: 0;
}

.accordion-button {
	padding: 20px;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--dark-color);
	background-color: white;
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
	color: var(--primary-color);
	background-color: #f8fafc;
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: none;
	border-color: var(--border-color);
}

.accordion-body {
	padding: 20px;
	color: var(--gray-color);
	font-size: 0.95rem;
	line-height: 1.6;
}

.cta-shape-1 {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	z-index: 0;
}

.cta-shape-2 {
	position: absolute;
	bottom: -100px;
	left: -100px;
	width: 300px;
	height: 300px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	z-index: 0;
}

.cta-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.cta-description {
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 30px;
	line-height: 1.6;
}

.cta-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-white {
	background-color: white;
	color: var(--primary-color);
	border: none;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.btn-outline-white {
	background-color: transparent;
	color: white;
	border: 2px solid white;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-outline-white:hover {
	background-color: rgba(255,255,255,0.1);
	transform: translateY(-2px);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr repeat(3,1fr);
	gap: 60px;
	margin-bottom: 60px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--dark-color);
	text-decoration: none;
	margin-bottom: 15px;
}

.footer-logo i {
	color: var(--primary-color);
	font-size: 1.5rem;
}

.footer-description {
	font-size: 0.9rem;
	color: var(--gray-color);
	line-height: 1.6;
	margin-bottom: 20px;
}

.social-links {
	display: flex;
	gap: 10px;
}

.footer-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 20px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 40px;
	border-top: 1px solid var(--border-color);
}

.footer-bottom-links {
	display: flex;
	gap: 24px;
}

.footer-bottom-link {
	color: var(--gray-color);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.2s;
}

.footer-bottom-link:hover {
	color: var(--primary-color);
}

.mobile-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: white;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 99;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.login-section {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
}

.login-container {
	max-width: 420px;
	width: 100%;
}

.login-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	padding: 40px;
	margin-bottom: 24px;
	animation: fadeIn 0.5s ease-out;
}

.login-header {
	text-align: center;
	margin-bottom: 32px;
}

.login-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--dark-color);
}

.login-subtitle {
	font-size: 1rem;
	color: var(--gray-color);
}


.form-options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.remember-me {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	color: var(--gray-color);
}

.remember-me input[type="checkbox"] {
	width: 16px;
	height: 16px;
	border-radius: 4px;
	border: 1px solid var(--border-color);
	cursor: pointer;
}

.forgot-password {
	font-size: 0.9rem;
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.2s;
}

.forgot-password:hover {
	text-decoration: underline;
}

.social-login {
	margin-top: 24px;
}

.social-login-title {
	text-align: center;
	font-size: 0.9rem;
	color: var(--gray-color);
	margin-bottom: 16px;
	position: relative;
}

.social-login-title::before, .social-login-title::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 30%;
	height: 1px;
	background-color: var(--border-color);
}

.social-login-title::before {
	left: 0;
}

.social-login-title::after {
	right: 0;
}

.social-buttons {
	display: flex;
	gap: 12px;
}

.social-button {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	background-color: white;
	color: var(--dark-color);
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
}

.social-button:hover {
	background-color: #f8fafc;
	border-color: var(--gray-color);
}

.social-button i {
	font-size: 1.2rem;
}

.signup-prompt {
	text-align: center;
	font-size: 0.95rem;
	color: var(--gray-color);
}

.signup-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s;
}

.signup-link:hover {
	text-decoration: underline;
}

.signup-section {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
}

.signup-container {
	max-width: 480px;
	width: 100%;
}

.signup-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	padding: 40px;
	margin-bottom: 24px;
	animation: fadeIn 0.5s ease-out;
}

.signup-header {
	text-align: center;
	margin-bottom: 32px;
}

.signup-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--dark-color);
}

.signup-subtitle {
	font-size: 1rem;
	color: var(--gray-color);
}

.password-strength {
	height: 4px;
	background-color: #e2e8f0;
	border-radius: 2px;
	margin-top: 8px;
	overflow: hidden;
}

.password-strength-bar {
	height: 100%;
	width: 0;
	border-radius: 2px;
	transition: width 0.3s, background-color 0.3s;
}

.password-strength-text {
	font-size: 0.8rem;
	margin-top: 4px;
	color: var(--gray-color);
}

.terms-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 8px;
}

.terms-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	border: 1px solid var(--border-color);
	cursor: pointer;
	margin-top: 2px;
}

.terms-text {
	font-size: 0.9rem;
	color: var(--gray-color);
	line-height: 1.5;
}

.terms-link {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.2s;
}

.terms-link:hover {
	text-decoration: underline;
}

.social-signup {
	margin-top: 24px;
}

.social-signup-title {
	text-align: center;
	font-size: 0.9rem;
	color: var(--gray-color);
	margin-bottom: 16px;
	position: relative;
}

.social-signup-title::before, .social-signup-title::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 30%;
	height: 1px;
	background-color: var(--border-color);
}

.social-signup-title::before {
	left: 0;
}

.social-signup-title::after {
	right: 0;
}

.login-prompt {
	text-align: center;
	font-size: 0.95rem;
	color: var(--gray-color);
}

.login-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s;
}

.login-link:hover {
	text-decoration: underline;
}

.form-control.is-invalid {
	border-color: var(--danger-color);
}

.invalid-feedback {
	color: var(--danger-color);
	font-size: 0.85rem;
	margin-top: 4px;
}

.support-header {
	background-color: white;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.support-categories {
	padding: 60px 0;
}

.categories-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
	gap: 30px;
}

.category-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.category-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	align-items: center;
	gap: 5px;
}

.category-link:hover {
	text-decoration: underline;
}

.contact-section {
	padding: 60px 0;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
	gap: 40px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.contact-description {
	color: var(--gray-color);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 30px;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background-color: #eff6ff;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.contact-details {
	flex: 1;
}

.contact-method-title {
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.contact-method-description {
	color: var(--gray-color);
	font-size: 0.95rem;
	line-height: 1.6;
}

.contact-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
}

.contact-link:hover {
	text-decoration: underline;
}

.contact-form {
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	padding: 30px;
}

.form-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 20px;
}

textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

.resources-section {
	padding: 60px 0;
	background-color: #f8fafc;
}

.resources-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.resources-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
	gap: 30px;
}

.resource-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	overflow: hidden;
	transition: all 0.3s;
}

.resource-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.resource-image {
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.resource-content {
	padding: 20px;
}

.resource-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.resource-description {
	color: var(--gray-color);
	font-size: 0.9rem;
	margin-bottom: 15px;
	line-height: 1.6;
}

.resource-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.resource-link:hover {
	text-decoration: underline;
}

.btn-secondary {
	background-color: white;
	color: var(--primary-color);
	border: none;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s;
}

.btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.breadcrumbs {
	background-color: white;
	padding: 15px 0;
	border-bottom: 1px solid var(--border-color);
}

.breadcrumbs-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.breadcrumb-item {
	color: var(--gray-color);
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.breadcrumb-link {
	color: var(--gray-color);
	text-decoration: none;
	transition: all 0.2s;
}

.breadcrumb-link:hover {
	color: var(--primary-color);
}

.breadcrumb-item.active {
	color: var(--dark-color);
	font-weight: 500;
}
.breadcrumb-item+.breadcrumb-item::before{
	content: none;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes progress {
	from {
		width: 100%;
	}

	to {
		width: 0%;
	}
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOut {
	from {
		transform: translateX(0);
		opacity: 1;
	}

	to {
		transform: translateX(100%);
		opacity: 0;
	}
}

@keyframes typing {
	0%, 60%, 100% {
		transform: translateY(0);
		opacity: 0.6;
	}

	30% {
		transform: translateY(-5px);
		opacity: 1;
	}
}

@media (max-width: 1024px) {
	.hero-title {
		font-size: 3rem;
	}

	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.footer-grid {
		grid-template-columns: repeat(2,1fr);
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-stats {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}
}

@media (max-width: 992px) {
	.user-menu {
	margin-left: auto;
}
	.nav-links {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.form-row {
		grid-template-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.profile-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-container {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.footer-links {
		justify-content: center;
	}

	.mission-grid {
		grid-template-columns: 1fr;
	}

	.hero-title {
		font-size: 2rem;
		font-size: 2.5rem;
	}

	.section-title {
		font-size: 1.8rem;
		font-size: 2rem;
	}

	.job-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.job-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.process-steps::before {
		left: 20px;
	}

	.step-number {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.categories-grid {
		grid-template-columns: 1fr;
	}

	.discussion-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.discussion-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	.discussion-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.docs-title {
		font-size: 1.8rem;
	}

	.docs-pagination {
		flex-direction: column;
		gap: 15px;
	}

	.pagination-link.next {
		margin-left: 0;
	}

	.sidebar {
		position: fixed;
		left: -100%;
		height: 100%;
		box-shadow: 0 0 15px rgba(0,0,0,0.1);
	}

	.sidebar.show {
		left: 0;
	}

	.mobile-toggle {
		display: block !important;
	}

	.overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0,0,0,0.5);
		z-index: 999;
	}

	.overlay.show {
		display: block;
	}

	.quick-actions {
		bottom: 90px;
		right: 15px;
	}

	.emoji-picker {
		width: calc(100% - 50px);
		left: 25px;
	}

	.nav-links, .header-buttons {
		display: none;
	}

	.steps-grid {
		grid-template-columns: 1fr;
	}

	.step-arrow {
		display: none;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.cta-title {
		font-size: 2rem;
		font-size: 1.8rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.login-card {
		padding: 30px 20px;
	}

	.signup-card {
		padding: 30px 20px;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.contact-container {
		grid-template-columns: 1fr;
	}

	.cta-description {
		font-size: 1rem;
	}
}

@media (max-width: 992px) {
	.mission-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.community-grid {
		grid-template-columns: 1fr;
	}

	.categories-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
	}

	.docs-container {
		flex-direction: column;
	}

	.docs-sidebar {
		width: 100%;
		height: auto;
		position: relative;
		top: 0;
		border-right: none;
		border-bottom: 1px solid var(--border-color);
		padding: 20px;
		display: none;
	}

	.docs-sidebar.show {
		display: block;
	}

	.sidebar-toggle {
		display: flex;
	}

	.docs-content {
		padding: 30px 20px;
	}

	.card-grid {
		grid-template-columns: 1fr;
	}
}