* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
	--primary: #1a3a5f;
	--secondary: #2c5c8a;
	--accent: rgb(0, 128, 128) /*#4a90e2*/;
	--accentvictory: #4a90e2;
	--light: #f5f9ff;
	--dark: #0f253f;
	--success: #28a745;
	--accentmark: #ffd166 /*#ffd166*/;
	--warning: #ffc107;
	--enterprise: #6f42c1;
}

.logo-accent {
	/*color: var(--secondary);*/
		color: var(--accentmark);
}

body {
	background-color: var(--light);
	color: var(--dark);
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Language Selector */
.language-selector {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1001;
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.9);
	padding: 8px 15px;
	border-radius: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.language-selector i {
	color: var(--accent);
}

.language-selector select {
	border: none;
	background: transparent;
	font-weight: 500;
	color: var(--dark);
	cursor: pointer;
	outline: none;
}

/* Mobile language menu */
.mobile-language-selector {
	position: fixed;
	z-index: 1001;
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.9);
	padding: 8px 15px;
	border-radius: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin-top: 30px;
}

.mobile-language-selector i {
	color: var(--accent);
}

.mobile-language-selector select {
	border: none;
	background: transparent;
	font-weight: 500;
	color: var(--dark);
	cursor: pointer;
	outline: none;
}

/* Header Styles */
header {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	background: #005c80;
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 60%, #2c8a81);
	background: linear-gradient(135deg, #6a11cb 0%, #0c2857 60%, #2c8a81);
	color: white;
	padding: 20px 0;
	position: fixed;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.8rem;
	font-weight: 700;
}

.logo i {
	color: var(--accent);
	font-size: 2rem;
}

/* Desktop Navigation */
.desktop-nav {
	display: flex;
}

.desktop-nav ul {
	display: flex;
	list-style: none;
	gap: 30px;
}

.desktop-nav a {
	color: white;
	text-decoration: none;
	font-weight: 800;
	transition: color 0.3s;
	position: relative;
}

.desktop-nav a:hover {
	color: var(--accent);
}

.desktop-nav a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: var(--accent);
	transition: width 0.3s;
}

.desktop-nav a:hover::after {
	width: 100%;
}


/* Mobile Navigation */
.mobile-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.mobile-nav-toggle span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: white;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 400px;
	height: 100vh;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	background: #005c80;
	padding: 100px 30px 30px;
	transition: right 0.3s ease;
	z-index: 999;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
	right: 0;
}

.mobile-nav ul {
	list-style: none;
}

.mobile-nav li {
	margin-bottom: 20px;
}

.mobile-nav a {
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: 500;
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: color 0.3s;
}

.mobile-nav a:hover {
	color: var(--accent);
}

.mobile-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
	opacity: 1;
	visibility: visible;
}

.auth-buttons {
	display: flex;
	gap: 15px;
}

.mobile-auth-buttons {
	display: none;
	flex-direction: column;
	gap: 15px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
}

.btn-outline {
	background: transparent;
	border: 2px solid white;
	color: white;
}

.btn-outline:hover {
	background: white;
	color: var(--primary);
}

.btn-primary {
	background: var(--accent);
	color: white;
}

.btn-primary:hover {
	background: #3a7fd8;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.auth-buttons {
	display: flex;
	gap: 15px;
}

.btn {
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
}

.btn-primary {
	background: var(--accent);
	color: white;
}

.btn-primary:hover {
	background: #3a7fd8;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Top banner image */
.top-promo-banner {
	background-color: #f8f9fa;
	text-align: center;
	padding: 90px 0 0 0;
	border-bottom: 1px solid #eaeaea;
}

.top-promo-banner img {
	max-width: 100%;
	max-height: 500px;
	height: auto;
}

@media (max-width: 768px) {
	/*.top-promo-banner img {
		max-height: 60px;
	}*/
	.top-promo-banner{
		display:none;
	}
}

/*******************************************************************/	
/* Hero Section */
.hero {
	padding: 180px 0 100px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	background: linear-gradient(135deg, #151217 0%, #2575fc 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
	background-size: cover;
}

.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.hero-text {
	flex: 1;
	animation: fadeInUp 1s ease-out;
}

.hero-text h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-text p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.9;
	max-width: 600px;
}

.hero-buttons {
	display: flex;
	gap: 15px;
	margin-bottom: 40px;
	
	font-size: 1.2rem;
	padding: 15px 30px;
	transform: translateY(0px);
}


.hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: float 6s ease-in-out infinite;
}

.dashboard-preview {
	width: 100%;
	max-width: 600px;
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
	transition: transform 0.5s;
}

.dashboard-preview:hover {
	transform: perspective(1000px) rotateY(0) rotateX(0);
}

/*******************************************************************/
/* Industries Section */
.industries {
	padding: 100px 0;
	background-color: white;
}

.industries .section-title {
	text-align: center;
	margin-bottom: 60px;
}

.industries .section-title h2 {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 15px;
	background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
}

.industries .section-title p {
	font-size: 1.1rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.industry-card {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	box-shadow: 0px 0px 10px 9px rgb(225, 247, 167) !important;
}

industry-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.industry-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-icon {
	width: 70px;
	height: 70px;
	background: var(--light);
	background: var(--bs-code-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--bs-cyan);
	font-size: 1.8rem;
}

.industry-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--bs-blue) !important;
}

.industry-card p {
	color: #666;
	line-height: 1.6;
}

/*******************************************************************/
/* Features Section */
.features {
	padding: 100px 0;
	background-color: white;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 15px;
	background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
}

.section-title p {
	font-size: 1.1rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.feature-card {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	box-shadow: 0px 0px 10px 9px rgb(194, 159, 230);
}

.feature-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background: var(--light);
	background: var(--accentmark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--accent);
	font-size: 1.8rem;
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--primary);
}

.feature-card p {
	color: #666;
	line-height: 1.6;
}

/*******************************************************************/
/* How It Works */
.how-it-works {
	padding: 100px 0;
	background: var(--light);
}

.steps {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	position: relative;
}

.steps::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 10%;
	width: 80%;
	height: 3px;
	background: var(--accent);
	z-index: 1;
}

.step {
	text-align: center;
	position: relative;
	z-index: 2;
	opacity: 0;
	transform: translateY(20px);
}

.step.visible {
	opacity: 1;
	transform: translateY(0);
}

.step-number {
	width: 80px;
	height: 80px;
	background: var(--accent);
	background: linear-gradient(135deg,#2a273e 2%,rgb(48, 100, 125) 58%,#152020 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: bold;
	margin: 0 auto 20px;
	box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.step h3 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: var(--primary);
}

.step p {
	color: #666;
	max-width: 250px;
	margin: 0 auto;
}

/*******************************************************************/
/* CTA Section */
.cta {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	color: white;
	text-align: center;
}

.cta h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.cta p {
	font-size: 1.2rem;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.9;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2000;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.modal.active {
	display: flex;
	opacity: 1;
}

.modal-content {
	background: white;
	border-radius: 15px;
	width: 90%;
	max-width: 800px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	transform: translateY(-20px);
	transition: transform 0.3s;
	overflow: hidden;
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.modal.active .modal-content {
	transform: translateY(0);
}

.modal-header {
	padding: 10px 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
}

.close-modal {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #777;
	cursor: pointer;
	transition: color 0.3s;
}

.close-modal:hover {
	color: var(--error);
}

.modal-body {
	padding: 25px 30px 30px;
}

/* Auth Styles */
.auth-container {
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	width: 100%;
	max-width: 600px;
	text-align: center;
	margin: auto;
}

@media screen and (max-width: 768px) {
  .auth-container {
	padding: 6px;
  }
  
  .modal-body {
	padding: 6px;
  }
  
  .section-title h2, .cta h2{
	font-size: 2rem;
  }
  
  .features-grid, .industries-grid {
	grid-template-columns: auto
  }
}

.auth-container h1 {
	color: #4a00e0;
	margin-bottom: 10px;
}

.auth-container p {
	color: #666;
	margin-bottom: 30px;
}

.auth-tabs {
	display: flex;
	margin-bottom: 20px;
	border-bottom: 1px solid #e0e0e0;
}

.auth-tab {
	flex: 1;
	padding: 15px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	color: #666;
	transition: all 0.3s ease;
}

.auth-tab.active {
	color: #4a00e0;
	border-bottom: 3px solid #4a00e0;
}

.auth-form {
	display: none;
}

.auth-form.active {
	display: block;
}

.form-group {
	margin-bottom: 20px;
	text-align: left;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	color: #333;
}

.form-group input {
	width: 100%;
	/*padding: 12px;*/
	padding: 12px 40px;
	border: 1px solid rgb(3, 128, 128);
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus {
	outline: none;
	border-color: #4a00e0;
	box-shadow: 0 0 0 2px rgba(74, 0, 224, 0.2);
}

.input-with-icon {
	position: relative;
}

.input-with-icon i:first-child {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: rgb(3, 128, 128);
}

.form-control {
	width: 100%;
	padding: 15px 15px 15px 45px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s;
}

.form-control:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
	outline: none;
}

.password-toggle {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #777;
	cursor: pointer;
}

.form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.remember-me {
	display: flex;
	align-items: center;
	gap: 8px;
}

.remember-me input {
	accent-color: var(--accent);
}

.forgot-password {
	color: var(--accentvictory);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.forgot-password:hover {
	color: var(--secondary);
}

.auth-btn {
	width: 100%;
	padding: 12px;
	background: linear-gradient(to right, #4a00e0, #8e2de2);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.auth-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.auth-message {
	margin-top: 15px;
	padding: 10px;
	border-radius: 5px;
	font-size: 0.9rem;
}

.auth-message.error {
	background-color: #ffebee;
	color: #c62828;
	border: 1px solid #ffcdd2;
}

.auth-message.success {
	background-color: #e8f5e8;
	color: #2e7d32;
	border: 1px solid #c8e6c9;
}

/* Recover password-toggle */
.recovery-container {
	display: none;
	max-width: 400px;
	margin: 50px auto;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background: white;
}

.password-recovery-step{
	display: none;
}
.password-recovery-step.active {
	display: block;
}
.resend-link {
	text-align: center;
	margin-top: 15px;
}
.timer {
	color: #666;
	font-size: 14px;
}

/* Footer */
footer {
	background: var(--dark);
	background: #06113c;
	color: white;
	color: #94a3b8;
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	font-size: 1.3rem;
	margin-bottom: 20px;
	/*color: var(--accent);*/
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column a {
	color: #ccc;
	color: aqua;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-column a:hover {
	color: var(--accent);
}

.footer-thinkai {
	background: linear-gradient(135deg, #06113c 0%, #0f4175 60%, #114848 100%);
	color: white;
	padding: 3rem 2rem 1.5rem;
	margin-top: 4rem;
	background: #06113c;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.6fr 2fr;
	gap: 3rem;
	max-width: 1100px;
	margin: 0 auto;
}
.footer-logo-block {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.2rem;
}
.footer-logo-icon {
	width: 104px; 
	height: 104px;
	background: linear-gradient(135deg, teal, #0f4175);
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.5rem; color: #5ce1e6;
	border: 1px solid rgba(92,225,230,0.3);
	flex-shrink: 0;
}
.footer-brand h2 {
	margin: 0; font-size: 1rem;
	letter-spacing: 3px; color: #5ce1e6;
}
.footer-brand span {
	font-size: 0.72rem; color: #a0c4ff;
	letter-spacing: 1px; text-transform: uppercase;
}
.footer-brand-desc {
	font-size: 0.88rem; line-height: 1.7;
	color: #c0d8f0; margin-bottom: 1.5rem;
}
.footer-brand-desc strong { color: #5ce1e6; }
.footer-stats {
	display: flex; gap: 1.5rem; margin-bottom: 1.5rem;
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
	color: #7090b0; text-decoration: none;
	display: flex; align-items: center; gap: 0.3rem;
	transition: color 0.2s;
}
.footer-legal a:hover { color: #5ce1e6; }		


.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: all 0.3s;
}

.social-links a:hover {
	background: var(--accent);
	transform: translateY(-3px);
}

.copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #999;
	font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0% {
		transform: translateY(0) rotateY(-5deg) rotateX(5deg);
	}
	50% {
		transform: translateY(-20px) rotateY(-5deg) rotateX(5deg);
	}
	100% {
		transform: translateY(0) rotateY(-5deg) rotateX(5deg);
	}
}

/* Responsive Design */
@media (max-width: 992px) {
	.hero-content {
		flex-direction: column;
		text-align: center;
	}
	
	.hero-text h1 {
		font-size: 2.8rem;
	}
	
	.steps {
		flex-direction: column;
		gap: 40px;
	}
	
	.steps::before {
		display: none;
	}
	
	.form-group{
	  margin-bottom: 10px;
	}
	
	.auth-container h1{
	  font-size: 1.6rem;
	}
	
	.modal-header{
	  padding-top: 5px;
	}
	
	.auth-container p {
		margin-bottom: 0 !important;
	}

}

@media (max-width: 1200px) {
	.desktop-nav {
		display: none;
	}
	
	.desktop-auth-buttons {
		display: none;
	}
	
	.mobile-nav-toggle {
		display: flex;
	}
	
	.mobile-auth-buttons {
		display: flex;
	}
	
	.hero-text h1 {
		font-size: 2.2rem;
	}
	
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.btn {
		width: 200px;
	}
	
	.language-selector {
		display: none;
		top: 80px;
		right: 10px;
	}
	
	#languageSelect {
		display: none;
	}
	
	.hero-image {
	  width: 100%;
	}
}

@media (min-width: 1201px) and (max-width: 1500px) {
	
	.auth-buttons.desktop-auth-buttons{
		margin-left: 20px;
		margin-right: 140px;
	}
	
	.top-login-btn, .top-signup-btn{
		padding: 10px 6px;
	}
}
	
@media (max-width: 480px) {
	.hero-text h1 {
		font-size: 1.8rem;
	}
	
	.hero-text p {
		font-size: 1rem;
	}
	
	.mobile-nav {
		width: 85%;
	}
	
	.mobile-nav ul {
	  margin-bottom: 0;
	}

	.mobile-nav li{
		margin-bottom: 0;
	}
	
	.mobile-nav li a{
		padding: 3px 0;
	}
	
	.mobile-auth-buttons {
	  padding-top: 6px;
	  margin-top: 0;
	}
	
	.mobile-language-selector{
		position: relative;
	}
	
	.modal-body{
		overflow-y: auto;
		max-height: 100dvh;
		/*height: fit-content;*/
	}
	
	.modal{
		height: 100dvh;
	}
}



/* **********************Modal overlay for contact form *******************/

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

/* Modal content */
.modal-overlay .modal-content {
	background-color: white;
	width: 90%;
	max-width: 700px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	max-height: 90vh;
	overflow-y: auto;
}

/* Modal header */
.modal-overlay .modal-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color:white;
	text-align:center;
}

.modal-overlay .modal-header h2 {
	color: white;
	font-size: 24px;
	font-weight: 600;
}

.modal-overlay .close-btn {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #777;
	transition: color 0.3s;
}

.modal-overlay .close-btn:hover {
	color: #333;
}

/* Form styles */
.modal-overlay .modal-body {
	padding: 20px;
	background: #fdfdfd;
}

.modal-overlay .form-row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.modal-overlay .form-field {
	flex: 1 0 100%;
	margin-bottom: 15px;
}

@media (min-width: 768px) {
	.modal-overlay .form-field {
		flex: 1 0 calc(50% - 10px);
		margin-right: 20px;
	}
	
	.modal-overlay .form-field:nth-child(2n) {
		margin-right: 0;
	}
	
	.modal-overlay .form-row {
		margin-bottom: 6px;
	}
}

.input-container {
	position: relative;
	margin-bottom: 5px;
}

.input-container input, 
.input-container select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid black;
	border-radius: 4px;
	font-size: 16px;
	background-color: white;
	transition: border-color 0.3s;
}

.input-container input:focus, 
.input-container select:focus {
	outline: none;
	border-color: #4a6ee0;
}

.input-container label, .phone-input-wrapper label {
	position: absolute;
	top: 12px;
	left: 16px;
	color: #777;
	font-size: 16px;
	pointer-events: none;
	transition: all 0.3s;
	background-color: white;
	padding: 0 4px;
}

.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label,
.input-container .phone-input-wrapper:focus + label,
.input-container .phone-input-wrapper:not(input:placeholder-shown) + label {
	top: -8px;
	font-size: 12px;
	color: #4a6ee0;
	font-weight:800;
	font-size: 14px;
	color: #1546dd;
}

.input-container select:focus  + label,
.input-container select:valid  + label {
	top: -8px;
	font-size: 12px;
	color: #4a6ee0;
	font-weight:800;
	font-size: 14px;
	color: #1546dd;
}

.error-message {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 5px;
	display: none;
}

/* Phone input styles */
.phone-input-wrapper {
	display: flex;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
	
	align-items: center;
	padding: 8px 10px;
	position: relative;
	transition: border-color 0.2s;
}

.phone-input-wrapper:focus-within {
  border-color: #4a6ee0;
}

.country-select {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 6px;
  user-select: none;
  position: relative;
  background: #e8e2db;
}

.country-select img.flag-icon {
  width: 20px;
  height: 14px;
}


.country-select .dropdown {
  /*position: absolute;
  top: 120%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 160px;
  max-height: 160px;
  overflow-y: auto;
  z-index: 10;*/
  
  position: fixed;
  top: 34dvh;
  overflow-y: auto;
  z-index: 4000;
  width: 160px;
  max-height: 160px;
  left: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #e8e2db;
  padding: 8px 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 768px) {
	.country-select .dropdown {
		top: 54dvh;
	}
}


.country-select .dropdown div {
  padding: 6px 10px;
  cursor: pointer;
}

.country-select .dropdown div:hover {
  background: #f4f6ff;
}

.country-select .dropdown.hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.country-select .dropdown:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
}

.phone-input-wrapper input[type="tel"] {
  border: none;
  flex: 1;
  outline: none;
  padding: 5px 8px;
  font-size: 15px;
}


.country-option {
	display: flex;
	align-items: center;
	padding: 8px 12px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.country-option:hover {
	background-color: #f5f5f5;
}

.country-option img {
	width: 20px;
	height: 15px;
	margin-right: 8px;
}

.phone-input {
	flex: 1;
	border: none;
	padding: 12px 16px;
	font-size: 16px;
}

/* Checkbox styles */
.checkbox-container {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.checkbox-container input {
	margin-right: 10px;
	margin-top: 4px;
}

.checkbox-label {
	font-size: 14px;
	color: #555;
}

/* Submit button */
.submit-btn {
	background-color: #4a6ee0;
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	width: 100%;
	transition: background-color 0.3s;
}

.submit-btn:hover {
	background-color: #3a5bc7;
}

/* Legal text */
.legal-text {
	font-size: 12px;
	color: #777;
	margin-top: 15px;
	text-align: center;
}

.legal-text a {
	color: #4a6ee0;
	text-decoration: none;
}

.legal-text a:hover {
	text-decoration: underline;
}

/**************Spinne wait cusor ******************/
.export-wait-cursor {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.9);
	color: white;
	padding: 35px;
	border-radius: 12px;
	z-index: 1000;
	text-align: center;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	min-width: 250px;
	z-index: 2000;
}
.spinner {
	border: 5px solid #0c7d7d;
	border-top: 5px solid orange;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


/******************Currency selector style*****************************/
.currency-selector-container {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
	width: fit-content;
	margin: 0 auto 40px auto;
}

.currency-selector-container label {
    font-weight: bold;
    margin-right: 0.5rem;
    color: #333;
}

.currency-selector {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    cursor: pointer;
}

.currency-selector:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}


/*****************Chat-bot container************************/
#chat-container{
	max-width: min(425px, 100%); 
	max-height: calc(100% - var(--qualified-offer-footer-height, 0px) - var(--qualified-offer-header-height, 0px) - 100px);
	border-radius: 16px; 
	overflow: hidden; 
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	position: fixed;
	bottom: 0;
	right:0;
	/*z-index: 2000;*/
	/*pointer-events: none !important;*/
	width: 100px;
	height: 100px;
}


/* STYLES DU CHATBOT */
.spai-chat-button {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #1a5f7a 0%, #0d3b4f 100%);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.25);
	transition: all 0.3s ease;
	z-index: 9999;
	border: none;
}

.spai-chat-button:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* Icône produit dans le bouton (logo SmartProcurAI) */
.spai-product-icon {
	width: 40px;
	height: 40px;
	background: aquamarine;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 20px;
	font-family: 'Segoe UI', Arial, sans-serif;
	color: #1a5f7a;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}