/* Navbar */  
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	backdrop-filter: blur(10px);
	z-index: 9999;
	padding: 0.4rem 0;
	min-height: 60px;
}

.navbar-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	min-height: 52px;
}

.navbar-logo {
	display: flex;
	align-items: center;
}

.logo-image {
	height: 50px;
	width: auto;
	object-fit: contain;
}

.navbar-cta {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	z-index: 2;
}

.navbar-right {
	display: flex;
	align-items: center;
	margin-left: auto;
	z-index: 3;
}

.cta-button {
	background: transparent;
	border: none;
	color: transparent;
	background: linear-gradient(to right, #fff 0%, #00ff88 50%, #0088ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	display: inline-block;
	-webkit-tap-highlight-color: transparent;
	pointer-events: auto;
}

.cta-button:hover {
	background: linear-gradient(to right, #fff 0%, #00ff88 50%, #0088ff 100%);
	-webkit-background-clip: initial;
	-webkit-text-fill-color: initial;
	background-clip: initial;
	color: black;
	transform: translateY(-1px);
}

/* Fix sticky hover on touch devices */
@media (hover: none) and (pointer: coarse) {
	.cta-button:hover {
		background: transparent;
		background: linear-gradient(to right, #fff 0%, #00ff88 50%, #0088ff 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		color: transparent;
		transform: none;
	}
	
	.cta-button:active {
		background: linear-gradient(to right, #fff 0%, #00ff88 50%, #0088ff 100%);
		-webkit-background-clip: initial;
		-webkit-text-fill-color: initial;
		background-clip: initial;
		color: black;
		transform: translateY(-1px);
	}
}

.cta-button:active {
	background: linear-gradient(to right, #fff 0%, #00ff88 50%, #0088ff 100%);
	-webkit-background-clip: initial;
	-webkit-text-fill-color: initial;
	background-clip: initial;
	color: black;
	transform: translateY(-1px);
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

.navbar-menu {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	pointer-events: auto;
}

.hamburger {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 8px;
	transition: transform 0.3s ease;
	-webkit-tap-highlight-color: transparent;
	border-radius: 4px;
	cursor: pointer;
	pointer-events: auto;
}

.hamburger:hover {
	transform: scale(1.1);
}

/* Fix hamburger hover on touch devices */
@media (hover: none) and (pointer: coarse) {
	.hamburger:hover {
		transform: none;
	}
	
	.hamburger:active {
		transform: scale(0.95);
		background: rgba(255, 255, 255, 0.1);
	}
}

.hamburger-line {
	width: 25px;
	height: 2px;
	background-color: #fff;
	transition: all 0.3s ease;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	padding: 2rem 0 1.5rem 0;
	margin-top: 0;
	opacity: 0;
	transform: translateX(-50%) translateY(-10px);
	transition: all 0.3s ease;
	pointer-events: none;
	background: transparent; /* Ensure completely transparent */
	backdrop-filter: none; /* Remove any blur */
	border: none; /* Remove any border */
}

.dropdown-menu.open {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

.dropdown-item {
	color: #fff;
	text-decoration: none;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: normal;
	letter-spacing: 0.5px;
	padding: 0.8rem 1.5rem;
	transition: all 0.15s ease;
	white-space: nowrap;
	text-align: center;
}

.dropdown-item:hover {
	transform: translateX(-8px);
	color: #fff;
}

.dropdown-item:active,
.dropdown-item:focus {
	color: #fff;
	outline: none;
}

/* Responsive Navbar */
@media (max-width: 768px) {
	.navbar {
		padding: 0.3rem 0;
		min-height: 56px;
	}
	
	.navbar-container {
		padding: 0 1rem;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		min-height: 48px;
	}
	
	.navbar-logo {
		flex: 0 0 auto;
	}
	
	.navbar-cta {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		z-index: 2;
		pointer-events: auto;
	}
	
	.navbar-right {
		flex: 0 0 auto;
		margin-left: auto;
		z-index: 3;
		pointer-events: auto;
	}
	
	.logo-image {
		height: 42px;
	}
	
	.cta-button {
		font-size: 0.9rem;
		padding: 0.6rem 1.2rem;
		pointer-events: auto;
	}
	
	.hamburger {
		pointer-events: auto;
	}
	
	.hamburger-line {
		width: 20px;
	}
	
	.dropdown-item {
		font-size: 1.1rem;
		padding: 0.7rem 1.3rem;
	}
	
	/* Fix dropdown positioning on mobile */
	.dropdown-menu {
		left: auto;
		right: 0;
		transform: translateX(0) translateY(-10px);
		min-width: 180px;
		background: rgba(0, 0, 0, 0.95);
		backdrop-filter: blur(10px);
		border-radius: 10px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		margin-top: 5px;
		z-index: 999;
		pointer-events: none;
		padding: 1rem 0;
	}
	
	.dropdown-menu.open {
		transform: translateX(0) translateY(0);
		pointer-events: auto;
	}
}

@media (max-width: 480px) {
	.navbar {
		padding: 0.25rem 0;
		min-height: 52px;
	}
	
	.navbar-container {
		padding: 0 1rem;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		min-height: 44px;
	}
	
	.navbar-logo {
		flex: 0 0 auto;
	}
	
	.navbar-cta {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		z-index: 2;
		pointer-events: auto;
	}
	
	.navbar-right {
		flex: 0 0 auto;
		margin-left: auto;
		z-index: 3;
		pointer-events: auto;
	}
	
	.logo-image {
		height: 38px;
	}
	
	.cta-button {
		font-size: 0.8rem;
		padding: 0.5rem 1rem;
		pointer-events: auto;
	}
	
	.hamburger {
		pointer-events: auto;
	}
	
	.hamburger-line {
		width: 18px;
	}
	
	.dropdown-item {
		font-size: 1rem;
		padding: 0.6rem 1.2rem;
	}
	
	/* Further adjust dropdown for very small screens */
	.dropdown-menu {
		min-width: 160px;
		right: -10px;
		background: rgba(0, 0, 0, 0.95);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 255, 255, 0.1);
		z-index: 999;
		pointer-events: none;
		padding: 1rem 0;
	}
	
	.dropdown-menu.open {
		pointer-events: auto;
	}
}

body {
	background-color: #000;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	cursor: pointer;
}

.demo-1 {
	height: 100vh;
	position: relative;
	padding-top: 60px;
	scroll-margin-top: 80px; /* Scroll offset for fixed navbar */
}

/* WebGL Container - Full Page Background */
.container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1;
	pointer-events: none;
	
	/* Prevent any touch selection or highlighting */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	
	/* Allow scrolling through the container */
	touch-action: pan-y;
}

.container canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	pointer-events: auto;
	
	/* Prevent touch selection and visual feedback */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
	/* Control touch behavior */
	touch-action: pan-y pinch-zoom; /* Allow vertical scrolling and pinch zoom */
	-webkit-tap-highlight-color: transparent;
	
	/* Prevent text selection highlight */
	-webkit-highlight: none;
	-moz-highlight: none;
	highlight: none;
}

.text-overlay {
	position: absolute;
	left: 5%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1001;
	color: #fff;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	pointer-events: none;
	max-width: 35%;
}

.main-title {
	font-size: 4.5rem;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.05em;
	margin: 0 0 1.5rem 0;
	line-height: 1.1;
	text-transform: uppercase;
	word-wrap: break-word;
	hyphens: none;
	opacity: 0;
	transform: translateY(30px);
	animation: slideUpFadeIn 0.8s ease-out forwards;
	animation-delay: 0s;
}

.main-title::after {
	content: "";
	display: block;
	width: 100%;
	height: 0;
}

.tagline {
	font-size: 1.6rem;
	margin-top: 1.5rem;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 1px;
}

.highlight-excellence {
	background: linear-gradient(to right, #fff 0%, #00ff88 50%, #0088ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.highlight-gradient {
	background: linear-gradient(to right, #fff 0%, #00ff88 50%, #0088ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.regular-text {
	color: rgba(255, 255, 255, 0.8);
}

/* Engineering Excellence animates together first */
.engineering-excellence {
	opacity: 0;
	transform: translateY(30px);
	animation: slideUpFadeIn 0.8s ease-out forwards;
	animation-delay: 0.8s;
}

/* Individual word animations for Pixel by Pixel */
.pixel-word, .by-word, .pixel-word-2 {
	opacity: 0;
	transform: translateY(30px);
	animation: slideUpFadeIn 0.8s ease-out forwards;
}

/* Services Section - Background removed to use particles */
.services-section {
	position: relative;
	min-height: 60vh;
	padding: 3rem 0;
	z-index: 1002;
	scroll-margin-top: 80px; /* Scroll offset for fixed navbar */
}

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

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

.services-title {
	font-size: 3.5rem;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.05em;
	margin-bottom: 3rem;
	color: #fff;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	text-transform: uppercase;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1rem;
}

.service-card {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 1.5rem;
	text-align: center;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: #00ff88;
	box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.service-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.service-title {
	font-size: 1.4rem;
	font-weight: 300;
	font-style: italic;
	color: #fff;
	margin-bottom: 0.8rem;
	font-family: Futura, "futura-pt", Arial, sans-serif;
}

.service-description {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.4;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
		padding: 0 0.5rem;
	}
	
	.services-title {
		font-size: 2.5rem;
	}
	
	.service-card {
		padding: 1.2rem;
		min-height: 180px;
	}
	
	.service-title {
		font-size: 1.2rem;
	}

	.service-icon {
		font-size: 2rem;
	}

	.service-description {
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.services-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.service-card {
		padding: 1rem;
		min-height: 160px;
	}
}

@keyframes slideUpFadeIn {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Our Work Section */
.work-section {
	position: relative;
	min-height: 60vh;
	padding: 6rem 0 3rem 0;
	z-index: 1002;
	scroll-margin-top: 80px; /* Scroll offset for fixed navbar */
}

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

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

.work-title {
	font-size: 3.5rem;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.05em;
	margin-bottom: 4rem;
	color: #fff;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	text-transform: uppercase;
}

.work-carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.carousel-arrow {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	z-index: 10;
}

.carousel-arrow:hover {
	background: rgba(0, 255, 136, 0.2);
	border-color: #00ff88;
	transform: scale(1.1);
}

.work-cards-container {
	flex: 1;
	overflow: hidden;
	border-radius: 20px;
}

.work-cards-track {
	display: flex;
	transition: transform 0.5s ease;
}

.work-card {
	flex: 0 0 33.333%;
	padding: 0 1rem;
}

.work-card-image {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #000;
	cursor: pointer;
}

.work-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.work-card:hover .work-card-image img {
	transform: scale(1.1);
}

.work-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.8) 0%,
		rgba(0, 0, 0, 0.6) 30%,
		rgba(0, 0, 0, 0.3) 60%,
		rgba(0, 0, 0, 0) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2rem;
}

.work-card:hover .work-card-overlay {
	opacity: 1;
}

.work-card-content {
	transform: translateY(30px);
	transition: transform 0.3s ease;
}

.work-card:hover .work-card-content {
	transform: translateY(0);
}

.work-card-title {
	font-size: 1.8rem;
	font-weight: 300;
	font-style: italic;
	color: #fff;
	margin-bottom: 0.5rem;
	font-family: Futura, "futura-pt", Arial, sans-serif;
}

.work-card-description {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.4;
	margin-bottom: 1.5rem;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	font-weight: 300;
}

.work-card-button {
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 136, 255, 0.3));
	border: 2px solid #00ff88;
	border-radius: 25px;
	color: #fff;
	padding: 0.8rem 2rem;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 300;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.work-card-button:hover {
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.5), rgba(0, 136, 255, 0.5));
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Hide mobile title on desktop */
.work-card-title-mobile {
	display: none;
}

/* Responsive Design for Our Work */
@media (max-width: 1024px) {
	.work-card-image {
		aspect-ratio: 1 / 1;
	}
	
	.work-card-title {
		font-size: 1.5rem;
	}
	
	.carousel-arrow {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.work-carousel {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 1rem;
		justify-content: space-between;
	}
	
	.work-cards-container {
		flex: 1;
		margin: 0 1rem;
		max-width: 300px;
		position: relative;
		height: 350px;
	}
	
	.work-cards-track {
		position: relative;
		width: 100%;
		height: 100%;
	}
	
	.work-card {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		transition: opacity 0.5s ease-in-out;
		padding: 0;
	}
	
	.work-card.active {
		opacity: 1;
	}
	
	.work-card-image {
		aspect-ratio: 1 / 1;
		margin-bottom: 1rem;
	}
	
	.work-card-overlay {
		display: none;
	}
	
	.work-card-title-mobile {
		display: block;
		font-size: 1.4rem;
		font-weight: 300;
		font-style: italic;
		color: #fff;
		text-align: center;
		margin-bottom: 0.5rem;
		font-family: Futura, "futura-pt", Arial, sans-serif;
	}
	
	.work-title {
		font-size: 2.5rem;
		margin-bottom: 3rem;
	}
	
	.carousel-arrow {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
		flex-shrink: 0;
		margin-top: 125px;
	}
}

@media (max-width: 480px) {
	.work-cards-container {
		margin: 0 0.5rem;
		max-width: 250px;
		height: 300px;
	}
	
	.work-card-title-mobile {
		font-size: 1.2rem;
	}
	
	.carousel-arrow {
		width: 40px;
		height: 40px;
		font-size: 1rem;
		margin-top: 105px;
	}
}

/* Testimonials Section */
.testimonials-section {
	position: relative;
	min-height: 60vh;
	padding: 8rem 0 3rem 0;
	z-index: 1002;
	scroll-margin-top: 80px; /* Scroll offset for fixed navbar */
}

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

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

.testimonials-title {
	font-size: 3.5rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
	color: #fff;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	text-transform: uppercase;
}

.testimonials-subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 4rem;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	font-weight: 300;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 2.5rem;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 300px;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	border-color: #00ff88;
	box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.testimonial-quote {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	font-weight: 300;
	font-style: italic;
	margin-bottom: 2rem;
	flex-grow: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #00ff88 0%, #0088ff 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.avatar-initials {
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
	font-family: Futura, "futura-pt", Arial, sans-serif;
}

.author-info {
	text-align: left;
}

.author-name {
	font-size: 1.1rem;
	font-weight: 500;
	color: #fff;
	margin: 0 0 0.3rem 0;
	font-family: Futura, "futura-pt", Arial, sans-serif;
}

.author-title {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	font-weight: 300;
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
	.testimonials-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 1.5rem;
	}
	
	.testimonial-card {
		padding: 2rem;
		min-height: 280px;
	}
}

@media (max-width: 768px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.testimonials-title {
		font-size: 2.5rem;
	}
	
	.testimonials-subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
	
	.testimonial-card {
		padding: 1.5rem;
		min-height: 250px;
	}
	
	.testimonial-quote {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}
	
	.author-avatar {
		width: 50px;
		height: 50px;
	}
	
	.avatar-initials {
		font-size: 1rem;
	}
	
	.author-name {
		font-size: 1rem;
	}
	
	.author-title {
		font-size: 0.8rem;
	}
}

/* Contact Section */
.contact-section {
	position: relative;
	min-height: 70vh;
	padding: 8rem 0 6rem 0;
	z-index: 1002;
	scroll-margin-top: 80px; /* Scroll offset for fixed navbar */
}

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

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

.contact-title {
	font-size: 3rem;
	font-weight: 400;
	color: #fff;
	margin-bottom: 4rem;
	font-family: Futura, "futura-pt", Arial, sans-serif;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: start;
	text-align: left;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.contact-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-details h3 {
	font-size: 1.5rem;
	font-weight: 400;
	color: #fff;
	margin: 0 0 0.5rem 0;
	font-family: Futura, "futura-pt", Arial, sans-serif;
}

.contact-details p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	font-weight: 300;
	line-height: 1.5;
}

.contact-form {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 3rem;
	backdrop-filter: blur(10px);
}

.form-group {
	margin-bottom: 2rem;
}

.form-group label {
	display: block;
	font-size: 1.1rem;
	font-weight: 400;
	color: #fff;
	margin-bottom: 0.8rem;
	font-family: Futura, "futura-pt", Arial, sans-serif;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #fff;
	font-size: 1rem;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	font-weight: 300;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #a855f7;
	background: rgba(255, 255, 255, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-button {
	width: 100%;
	padding: 1.2rem 2rem;
	background: #00ff88;
	border: none;
	border-radius: 12px;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 500;
	font-family: Futura, "futura-pt", Arial, sans-serif;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.submit-button:hover {
	background: #00cc6a;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
	.contact-layout {
		gap: 4rem;
	}
	
	.contact-form {
		padding: 2.5rem;
	}
}

@media (max-width: 768px) {
	.contact-title {
		font-size: 2.5rem;
		margin-bottom: 3rem;
	}
	
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.contact-info {
		gap: 2rem;
	}
	
	.contact-item {
		gap: 1rem;
	}
	
	.contact-icon {
		width: 40px;
		height: 40px;
	}
	
	.contact-details h3 {
		font-size: 1.3rem;
	}
	
	.contact-details p {
		font-size: 0.9rem;
	}
	
	.contact-form {
		padding: 2rem;
	}
}

@media (max-width: 480px) {
	.contact-section {
		padding: 6rem 0 4rem 0;
	}
	
	.contact-title {
		font-size: 2rem;
	}
	
	.contact-container {
		padding: 0 1rem;
	}
	
	.contact-form {
		padding: 1.5rem;
	}
	
	.form-group input,
	.form-group textarea {
		padding: 0.8rem 1rem;
	}
	
	.submit-button {
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
}

/* Mobile scroll offset adjustments */
@media (max-width: 768px) {
	.demo-1,
	.services-section,
	.work-section,
	.testimonials-section,
	.contact-section {
		scroll-margin-top: 70px; /* Adjusted for mobile navbar height */
	}
}

@media (max-width: 480px) {
	.demo-1,
	.services-section,
	.work-section,
	.testimonials-section,
	.contact-section {
		scroll-margin-top: 65px; /* Further adjusted for smaller mobile navbar */
	}
}

/* Mobile styles for text overlay */
@media (max-width: 768px) {
	.text-overlay {
		left: 50%;
		top: 68%; /* Move down even further */
		transform: translate(-50%, -50%);
		max-width: 90%;
		text-align: center;
	}
	
	.main-title {
		font-size: 2.5rem;
		margin-bottom: 1rem;
		line-height: 1.2;
	}
	
	.tagline {
		font-size: 1.1rem;
		margin-top: 0.8rem;
		line-height: 1.4;
	}
}

@media (max-width: 480px) {
	.text-overlay {
		left: 50%;
		top: 72%; /* Move down even more for smaller screens */
		transform: translate(-50%, -50%);
		max-width: 95%;
		text-align: center;
	}
	
	.main-title {
		font-size: 2rem;
		margin-bottom: 0.8rem;
		line-height: 1.3;
	}
	
	.tagline {
		font-size: 1rem;
		margin-top: 0.5rem;
		line-height: 1.5;
	}
}