/* Font declarations */
@font-face {
	font-family: 'NebulaSans';
	src: url('/fonts/WOFF2/NebulaSans-Book.woff2') format('woff2'),
		 url('/fonts/TTF/NebulaSans-Book.ttf') format('truetype'),
		 url('/fonts/OTF/NebulaSans-Book.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'NebulaSans';
	src: url('/fonts/WOFF2/NebulaSans-BookItalic.woff2') format('woff2'),
		 url('/fonts/TTF/NebulaSans-BookItalic.ttf') format('truetype'),
		 url('/fonts/OTF/NebulaSans-BookItalic.otf') format('opentype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'NebulaSans';
	src: url('/fonts/WOFF2/NebulaSans-Light.woff2') format('woff2'),
		 url('/fonts/TTF/NebulaSans-Light.ttf') format('truetype'),
		 url('/fonts/OTF/NebulaSans-Light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'NebulaSans';
	src: url('/fonts/WOFF2/NebulaSans-LightItalic.woff2') format('woff2'),
		 url('/fonts/TTF/NebulaSans-LightItalic.ttf') format('truetype'),
		 url('/fonts/OTF/NebulaSans-LightItalic.otf') format('opentype');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'NebulaSans';
	src: url('/fonts/WOFF2/NebulaSans-Medium.woff2') format('woff2'),
		 url('/fonts/TTF/NebulaSans-Medium.ttf') format('truetype'),
		 url('/fonts/OTF/NebulaSans-Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'NebulaSans';
	src: url('/fonts/WOFF2/NebulaSans-MediumItalic.woff2') format('woff2'),
		 url('/fonts/TTF/NebulaSans-MediumItalic.ttf') format('truetype'),
		 url('/fonts/OTF/NebulaSans-MediumItalic.otf') format('opentype');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'NebulaSans';
	src: url('/fonts/WOFF2/NebulaSans-Semibold.woff2') format('woff2'),
		 url('/fonts/TTF/NebulaSans-Semibold.ttf') format('truetype'),
		 url('/fonts/OTF/NebulaSans-Semibold.otf') format('opentype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'NebulaSans';
	src: url('/fonts/WOFF2/NebulaSans-SemiboldItalic.woff2') format('woff2'),
		 url('/fonts/TTF/NebulaSans-SemiboldItalic.ttf') format('truetype'),
		 url('/fonts/OTF/NebulaSans-SemiboldItalic.otf') format('opentype');
	font-weight: 600;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'NebulaSans';
	src: url('/fonts/WOFF2/NebulaSans-Bold.woff2') format('woff2'),
		 url('/fonts/TTF/NebulaSans-Bold.ttf') format('truetype'),
		 url('/fonts/OTF/NebulaSans-Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'NebulaSans';
	src: url('/fonts/WOFF2/NebulaSans-BoldItalic.woff2') format('woff2'),
		 url('/fonts/TTF/NebulaSans-BoldItalic.ttf') format('truetype'),
		 url('/fonts/OTF/NebulaSans-BoldItalic.otf') format('opentype');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'NebulaSans';
	src: url('/fonts/WOFF2/NebulaSans-Black.woff2') format('woff2'),
		 url('/fonts/TTF/NebulaSans-Black.ttf') format('truetype'),
		 url('/fonts/OTF/NebulaSans-Black.otf') format('opentype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'NebulaSans';
	src: url('/fonts/WOFF2/NebulaSans-BlackItalic.woff2') format('woff2'),
		 url('/fonts/TTF/NebulaSans-BlackItalic.ttf') format('truetype'),
		 url('/fonts/OTF/NebulaSans-BlackItalic.otf') format('opentype');
	font-weight: 900;
	font-style: italic;
	font-display: swap;
}

:root {
	--primary-color: #3245ff;
	--secondary-color: #bc52ee;
	--text-color: #333;
	--light-text: #666;
	--background: #fff;
	--light-background: #f9f9f9;
	--border-color: #eaeaea;
	--header-height: 70px;
}

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

html,
body {
	font-family: 'NebulaSans', 'Inter', sans-serif;
	color: var(--text-color);
	background-color: var(--background);
	line-height: 1.6;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

body.menu-open {
	overflow: hidden;
}

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

header {
	height: var(--header-height);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 100;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.logo a {
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(83.21deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
}

.nav-container {
	display: flex;
	align-items: center;
}

@media (min-width: 769px) {
	.nav-container {
		flex: 1;
		justify-content: flex-end;
	}
}

.mobile-menu-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
}

.mobile-menu-toggle .bar {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--text-color);
	margin: 5px 0;
	transition: all 0.3s ease;
	border-radius: 3px;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 2rem;
}

nav a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: color 0.2s;
}

nav a:hover {
	color: var(--primary-color);
}

main {
	flex: 1;
}

footer {
	background-color: var(--light-background);
	padding: 3rem 0;
	margin-top: 3rem;
	border-top: 1px solid var(--border-color);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.footer-logo a {
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(83.21deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
}

.footer-links {
	display: flex;
	gap: 4rem;
}

.footer-section h3 {
	font-size: 1rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	text-decoration: none;
	color: var(--light-text);
	transition: color 0.2s;
}

.footer-section a:hover {
	color: var(--primary-color);
}

.copyright {
	text-align: center;
	color: var(--light-text);
	font-size: 0.875rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
}

/* Common Page Styles */
.page-header {
	padding: 5rem 0;
	background: linear-gradient(83.21deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	text-align: center;
}

.page-header h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: white;
	-webkit-text-fill-color: white;
}

.page-header p {
	font-size: 1.25rem;
	max-width: 800px;
	margin: 0 auto;
	opacity: 0.9;
}

.section-title {
	text-align: center;
	font-size: 2.25rem;
	margin-bottom: 3rem;
	color: var(--text-color);
}

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: linear-gradient(83.21deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	box-shadow: 0 4px 6px rgba(50, 69, 255, 0.2);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 8px rgba(50, 69, 255, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
	background: rgba(50, 69, 255, 0.05);
}

/* Home Page Styles */
.hero {
	padding: 5rem 0;
	background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.hero .container {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.hero-content {
	flex: 1;
}

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

.hero-image img {
	max-width: 100%;
	height: auto;
}

.hero h1 {
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(83.21deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: var(--light-text);
	max-width: 600px;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
}

.featured-apps, 
.services {
	padding: 5rem 0;
}

.services {
	background-color: var(--light-background);
}

.app-grid, 
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.app-card {
	background: white;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.app-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.app-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--light-background);
	border-radius: 1rem;
}

.app-icon img {
	width: 50px;
	height: 50px;
}

.app-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.app-card p {
	color: var(--light-text);
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.app-link {
	display: inline-block;
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.app-link:hover {
	color: var(--secondary-color);
}

.service-card {
	background: white;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

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

.service-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

.service-icon svg {
	width: 100%;
	height: 100%;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.service-card p {
	color: var(--light-text);
}

.cta {
	padding: 5rem 0;
	background: linear-gradient(83.21deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
}

.cta-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.cta h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: white;
}

.cta p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta .btn-primary {
	background: white;
	color: var(--primary-color);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* About Page Styles */
.about-story {
	padding: 5rem 0;
}

.about-story .container {
	display: flex;
	align-items: center;
	gap: 4rem;
}

.about-content {
	flex: 1;
}

.about-image {
	flex: 1;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 0.5rem;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
	font-size: 2.25rem;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

.about-content p {
	font-size: 1.125rem;
	color: var(--light-text);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.expertise {
	padding: 5rem 0;
	background-color: var(--light-background);
}

.expertise-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.expertise-card {
	background: white;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

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

.expertise-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

.expertise-icon svg {
	width: 100%;
	height: 100%;
}

.expertise-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.expertise-card p {
	color: var(--light-text);
	line-height: 1.7;
}

.approach {
	padding: 5rem 0;
}

.approach-content h2 {
	text-align: center;
	font-size: 2.25rem;
	margin-bottom: 3rem;
	color: var(--text-color);
}

.approach-steps {
	max-width: 800px;
	margin: 0 auto;
}

.approach-step {
	display: flex;
	margin-bottom: 2.5rem;
	position: relative;
}

.approach-step:last-child {
	margin-bottom: 0;
}

.approach-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 3.5rem;
	left: 1.5rem;
	width: 2px;
	height: calc(100% - 1rem);
	background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.step-number {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: linear-gradient(83.21deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	margin-right: 1.5rem;
	flex-shrink: 0;
	z-index: 1;
}

.step-content {
	flex: 1;
}

.step-content h3 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
	color: var(--text-color);
}

.step-content p {
	color: var(--light-text);
	line-height: 1.7;
}

/* Apps Page Styles */
.apps-showcase {
	padding: 5rem 0;
}

.app-showcase-item {
	display: flex;
	align-items: center;
	gap: 4rem;
	margin-bottom: 6rem;
	padding-bottom: 6rem;
	border-bottom: 1px solid var(--border-color);
}

.app-showcase-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.app-showcase-item.reverse {
	flex-direction: row-reverse;
}

.app-showcase-content {
	flex: 1;
	max-width: 60%;
}

.app-showcase-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 40%;
}

.app-showcase-image img {
	max-width: 100%;
	max-height: 450px;
	height: auto;
	border-radius: 0.5rem;
	object-fit: contain;
}

.app-showcase-content h2 {
	font-size: 2.25rem;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

.app-description {
	font-size: 1.125rem;
	color: var(--light-text);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.app-features {
	margin-bottom: 2rem;
}

.app-features h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.app-features ul {
	list-style-type: none;
	padding-left: 0;
}

.app-features li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	color: var(--light-text);
}

.app-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
}

.app-cta {
	margin-top: 2rem;
}

.custom-solutions {
	padding: 5rem 0;
	background-color: var(--light-background);
	text-align: center;
}

.section-description {
	font-size: 1.125rem;
	color: var(--light-text);
	max-width: 800px;
	margin: 0 auto 2rem;
	line-height: 1.7;
}

.custom-solutions-cta {
	margin-top: 2rem;
}

/* Contact Page Styles */
.contact-section {
	padding: 5rem 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 4rem;
}

.contact-form-container h2,
.contact-info h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: var(--text-color);
}

.contact-form {
	display: grid;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	font-weight: 500;
	color: var(--text-color);
}

.form-group input,
.form-group textarea {
	padding: 0.75rem;
	border: 1px solid var(--border-color);
	border-radius: 0.5rem;
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.3s;
	width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

.contact-info {
	background-color: var(--light-background);
	padding: 2rem;
	border-radius: 1rem;
}

.info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
}

.info-icon {
	width: 2rem;
	height: 2rem;
	margin-right: 1rem;
	color: var(--primary-color);
	flex-shrink: 0;
}

.info-icon svg {
	width: 100%;
	height: 100%;
}

.info-content h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--text-color);
}

.info-content p {
	color: var(--light-text);
}

.info-content a {
	color: var(--light-text);
	text-decoration: none;
	transition: color 0.2s;
}

.info-content a:hover {
	color: var(--primary-color);
}

.social-links {
	margin-top: 2rem;
}

.social-links h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.social-icons {
	display: flex;
	gap: 1rem;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: var(--border-color);
	color: var(--light-text);
	transition: all 0.3s ease;
}

.social-icon:hover {
	background-color: var(--primary-color);
	color: white;
	transform: translateY(-2px);
}

.faq-section {
	padding: 5rem 0;
	background-color: var(--light-background);
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
}

.faq-item {
	background: white;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.faq-item p {
	color: var(--light-text);
	line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.container {
		padding: 0 1.5rem;
	}
	
	.page-header h1,
	.hero h1 {
		font-size: 2.5rem;
	}

	.about-content h2,
	.approach-content h2,
	.app-showcase-content h2,
	.section-title {
		font-size: 2rem;
	}

	.cta h2 {
		font-size: 2rem;
	}
	
	.about-story .container,
	.app-showcase-item {
		gap: 3rem;
	}
	
	.contact-form-container h2,
	.contact-info h2 {
		font-size: 1.75rem;
	}
	
	.hero,
	.about-story,
	.expertise,
	.approach,
	.cta,
	.apps-showcase,
	.contact-section,
	.faq-section,
	.featured-apps,
	.services,
	.custom-solutions {
		padding: 4rem 0;
	}
	
	.app-showcase-item {
		margin-bottom: 4rem;
		padding-bottom: 4rem;
	}

	.app-showcase-content,
	.app-showcase-image {
		max-width: 100%;
	}
	
	.app-showcase-image img {
		max-height: 300px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 1.5rem;
	}
	
	.footer-content {
		flex-direction: column;
		gap: 2rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 2rem;
	}

	/* Mobile menu styles */
	.mobile-menu-toggle {
		display: block;
		margin-left: auto;
	}
	
	.nav-container {
		position: static;
	}
	
	.main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background-color: var(--background);
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
		transition: right 0.3s ease;
		z-index: 1000;
		padding: 80px 2rem 2rem;
		overflow-y: auto;
		display: none;
	}
	
	.main-nav.active {
		right: 0;
		display: block;
	}
	
	.main-nav ul {
		flex-direction: column;
		gap: 1.5rem;
		width: 100%;
	}
	
	.main-nav a {
		display: block;
		font-size: 1.2rem;
		padding: 0.5rem 0;
	}
	
	.hero .container,
	.about-story .container {
		flex-direction: column;
		text-align: center;
	}

	.hero-content {
		order: 2;
	}

	.hero-image,
	.about-image {
		order: 1;
		margin-bottom: 2rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.page-header h1,
	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		margin: 0 auto 2rem;
	}

	.about-content h2,
	.approach-content h2,
	.app-showcase-content h2,
	.section-title {
		font-size: 1.75rem;
	}

	.expertise-card h3,
	.step-content h3,
	.service-card h3 {
		font-size: 1.25rem;
	}
	
	.app-grid, 
	.services-grid,
	.expertise-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}
	
	.app-showcase-item,
	.app-showcase-item.reverse {
		flex-direction: column;
		gap: 2rem;
	}

	.app-showcase-image {
		order: -1;
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
	
	.app-showcase-image img {
		max-height: 250px;
	}
	
	.faq-grid {
		grid-template-columns: 1fr;
	}
	
	.contact-info {
		order: -1;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 1.25rem;
	}
	
	.hero,
	.about-story,
	.expertise,
	.approach,
	.cta,
	.apps-showcase,
	.contact-section,
	.faq-section,
	.featured-apps,
	.services,
	.custom-solutions {
		padding: 3rem 0;
	}
	
	.expertise-card,
	.faq-item,
	.contact-info {
		padding: 1.5rem;
	}
	
	.approach-step {
		margin-bottom: 2rem;
	}
	
	.step-number {
		width: 2.5rem;
		height: 2.5rem;
		margin-right: 1rem;
	}
	
	.approach-step:not(:last-child)::after {
		top: 3rem;
	}
	
	.app-showcase-item {
		padding-bottom: 3rem;
		margin-bottom: 3rem;
	}
	
	.page-header {
		padding: 3rem 0;
	}
	
	.page-header h1 {
		font-size: 1.75rem;
	}
	
	.page-header p {
		font-size: 1rem;
	}
	
	.hero h1 {
		font-size: 1.75rem;
	}
	
	.hero p {
		font-size: 1rem;
	}
	
	.hero-buttons {
		flex-direction: column;
		width: 100%;
	}
	
	.hero-buttons .btn {
		width: 100%;
		text-align: center;
		margin-bottom: 1rem;
	}
	
	.btn {
		padding: 0.75rem 1rem;
		font-size: 0.9rem;
	}
}

/* Extra small devices */
@media (max-width: 360px) {
	.container {
		padding: 0 1rem;
	}
	
	.logo a {
		font-size: 1.25rem;
	}
	
	.main-nav {
		width: 85%;
	}
	
	.page-header h1,
	.hero h1,
	.section-title {
		font-size: 1.5rem;
	}
	
	.footer-section {
		width: 100%;
	}
}

/* Image Carousel Styles */
.image-carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-bottom: 25px;
	border-radius: 12px;
}

.carousel-container {
	width: 100%;
	overflow: hidden;
	border-radius: 12px;
	position: relative;
}

.carousel-slide {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-image {
	width: 100%;
	height: auto;
	flex-shrink: 0;
	flex-grow: 0;
	object-fit: cover;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.carousel-navigation {
	display: flex;
	justify-content: center;
	margin-top: 15px;
	margin-bottom: 10px;
	padding: 5px 0;
	gap: 10px;
}

.radio-btn {
	position: relative;
	cursor: pointer;
	transition: transform 0.2s ease;
	padding: 5px;
}

.radio-btn:hover {
	transform: scale(1.1);
}

.radio-btn input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.radio-dot {
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #ddd;
	transition: all 0.3s ease;
}

.radio-btn.active .radio-dot,
.radio-btn:hover .radio-dot {
	background-color: var(--primary-color);
	transform: scale(1.2);
}

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	opacity: 0;
}

.carousel-container:hover .carousel-arrow {
	opacity: 1;
}

.carousel-arrow:hover {
	background-color: rgba(255, 255, 255, 0.9);
	transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
	left: 15px;
}

.carousel-arrow.next {
	right: 15px;
}

.carousel-arrow::before {
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--primary-color);
	border-right: 2px solid var(--primary-color);
	display: block;
}

.carousel-arrow.prev::before {
	transform: rotate(-135deg);
	margin-left: 5px;
}

.carousel-arrow.next::before {
	transform: rotate(45deg);
	margin-right: 5px;
}

@media (max-width: 768px) {
	.carousel-navigation {
		margin-top: 10px;
		margin-bottom: 10px;
		padding: 5px 0;
	}
	
	.radio-dot {
		width: 12px;
		height: 12px;
	}
	
	.carousel-arrow {
		width: 30px;
		height: 30px;
	}
}

/* Prompt Helper Styles */
.prompt-helper-section {
	padding: 3rem 0;
}

.form-container {
	background-color: #f7f9fb;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 2rem;
}

.form-container label {
	display: block;
	margin-top: 15px;
	font-weight: bold;
	color: var(--text-color);
}

.form-container select, 
.form-container textarea, 
.form-container input,
.prompt-name-container input {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	border: 1px solid #d8dde6;
	border-radius: 4px;
	font-family: inherit;
}

.form-container textarea {
	min-height: 100px;
	resize: vertical;
}

.tab-container {
	margin-top: 20px;
}

.tab-buttons {
	display: flex;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 20px;
}

.tab-button {
	background-color: #f7f9fb;
	border: 1px solid var(--border-color);
	border-bottom: none;
	padding: 10px 20px;
	cursor: pointer;
	margin-right: 5px;
	border-radius: 4px 4px 0 0;
}

.tab-button.active {
	background-color: #fff;
	border-bottom: 1px solid #fff;
	margin-bottom: -1px;
	font-weight: bold;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

#generatedPrompt {
	white-space: pre-wrap;
	background-color: #f7f9fb;
	padding: 15px;
	border-radius: 4px;
	border: 1px solid #d8dde6;
	margin-bottom: 15px;
}

.prompt-name-container {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-top: 15px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #d8dde6;
}

.prompt-name-container input {
	flex-grow: 1;
}

.result-container {
	background-color: #fff;
	padding: 20px;
	border: 1px solid #d8dde6;
	border-radius: 4px;
	margin-top: 30px;
}

.result-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #d8dde6;
}

.result-header h2 {
	margin: 0;
	font-size: 1.5rem;
}

.prompt-name-container {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 0;
	padding: 0;
	border: none;
}

.save-button {
	background-color: #ffb75d !important;
	color: #16325c !important;
	border: none !important;
}

.save-button:hover {
	background-color: #f99221 !important;
}

.copy-button {
	background-color: #04844b !important;
	color: white !important;
	border: none !important;
}

.copy-button:hover {
	background-color: #036c3c !important;
}

.saved-prompts {
	margin-top: 20px;
}

.saved-prompt-item {
	background-color: #fff;
	padding: 15px;
	margin-bottom: 10px;
	border: 1px solid #d8dde6;
	border-radius: 4px;
	position: relative;
}

.saved-prompt-title {
	font-weight: bold;
	margin-bottom: 5px;
}

.saved-prompt-cloud {
	color: #706e6b;
	font-size: 0.9em;
	margin-bottom: 10px;
}

.saved-prompt-question {
	margin-bottom: 10px;
}

.action-buttons {
	display: flex;
	gap: 10px;
}

.load-button {
	background-color: var(--primary-color) !important;
	color: white !important;
	border: none !important;
}

.load-button:hover {
	background-color: #2835cc !important;
}

.delete-button {
	background-color: #c23934 !important;
	color: white !important;
	border: none !important;
}

.delete-button:hover {
	background-color: #a61a14 !important;
}

@media (max-width: 768px) {
	.result-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.prompt-name-container {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}
	
	.tab-buttons {
		flex-direction: column;
		border-bottom: none;
	}
	.tab-button {
		border-radius: 4px;
		margin-bottom: 5px;
		border: 1px solid var(--border-color);
	}
	.tab-button.active {
		border-bottom: 1px solid var(--border-color);
		margin-bottom: 5px;
	}
}

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

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	min-width: 200px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	padding: 0.5rem 0;
	z-index: 1000;
}

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

.dropdown-menu li {
	padding: 0;
}

.dropdown-menu a {
	display: block;
	padding: 0.5rem 1rem;
	color: var(--text-color);
	text-decoration: none;
	transition: background-color 0.2s;
}

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

@media (max-width: 768px) {
	.dropdown-menu {
		position: static !important;
		box-shadow: none !important;
		background: transparent !important;
		padding: 0 !important;
		margin-left: 1rem !important;
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	.dropdown-menu a {
		padding: 0.5rem 0;
	}

	.dropdown-menu a:hover {
		background-color: transparent;
	}
}

/* Toast Notification Styles */
.toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
	pointer-events: none;
}

.toast {
	background: white;
	border-radius: 8px;
	padding: 16px 24px;
	margin-bottom: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	gap: 12px;
	transform: translateX(120%);
	transition: transform 0.3s ease-in-out;
	max-width: 300px;
	pointer-events: auto;
}

.toast.show {
	transform: translateX(0);
}

.toast.success {
	border-left: 4px solid #04844b;
}

.toast-icon {
	color: #04844b;
	font-size: 20px;
}

.toast-message {
	color: #16325c;
	font-size: 14px;
	margin: 0;
}

/* Custom Confirmation Dialog Styles */
.confirm-dialog {
	position: absolute;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	padding: 16px;
	z-index: 1000;
	display: none;
	min-width: 200px;
	border: 1px solid #d8dde6;
}

.confirm-dialog.show {
	display: block;
}

.confirm-dialog-message {
	color: #16325c;
	font-size: 14px;
	margin: 0 0 12px 0;
}

.confirm-dialog-buttons {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}

.confirm-dialog-buttons button {
	padding: 6px 12px;
	border-radius: 4px;
	border: none;
	font-size: 13px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.confirm-dialog-buttons .confirm-yes {
	background-color: #c23934;
	color: white;
}

.confirm-dialog-buttons .confirm-yes:hover {
	background-color: #a61a14;
}

.confirm-dialog-buttons .confirm-no {
	background-color: #f4f6f9;
	color: #16325c;
}

.confirm-dialog-buttons .confirm-no:hover {
	background-color: #e1e5ee;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
	position: relative;
	background-color: #fefefe;
	margin: 5% auto;
	padding: 20px;
	width: 90%;
	max-width: 800px;
	border-radius: 8px;
}

.close-modal {
	position: absolute;
	right: 10px;
	top: 5px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	color: #666;
}

.close-modal:hover {
	color: #000;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Form Layout Styles */
.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

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

.form-column label {
	margin-bottom: 5px;
}

.form-column select,
.form-column textarea {
	width: 100%;
	margin-bottom: 15px;
}

.form-column textarea {
	height: 150px;
}

@media (max-width: 768px) {
	.form-row {
		flex-direction: column;
		gap: 0;
	}
}

/* App Detail Page Styles */
.app-detail {
	padding: 4rem 0;
}

.app-hero {
	margin-bottom: 3rem;
	text-align: center;
}

.app-hero-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.app-content {
	max-width: 800px;
	margin: 0 auto;
}

.app-description {
	margin-bottom: 3rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.feature-card {
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

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

.app-benefits {
	margin: 3rem 0;
}

.app-benefits ul {
	list-style-type: none;
	padding: 0;
}

.app-benefits li {
	margin: 1rem 0;
	padding-left: 2rem;
	position: relative;
}

.app-benefits li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #4caf50;
}

.app-cta {
	text-align: center;
	padding: 3rem 0;
}

/* Tab Interface Styles */
.tab-container {
	margin-top: 20px;
}

.tab-buttons {
	display: flex;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 20px;
}

.tab-button {
	background-color: #f7f9fb;
	border: 1px solid var(--border-color);
	border-bottom: none;
	padding: 10px 20px;
	cursor: pointer;
	margin-right: 5px;
	border-radius: 4px 4px 0 0;
}

.tab-button.active {
	background-color: #fff;
	border-bottom: 1px solid #fff;
	margin-bottom: -1px;
	font-weight: bold;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
} 