/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Image optimization styles */
img {
	max-width: 100%;
	height: auto;
	display: block;
	/* Prevent layout shift during loading */
	aspect-ratio: attr(width) / attr(height);
}

/* Optimize image loading */
img[loading="lazy"] {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
	opacity: 1;
}

/* Placeholder for images while loading */
.image-placeholder {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
	border-radius: 8px;
}

@keyframes loading {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

@keyframes filmstrip-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Optimize critical images */
.logo-img,
.founder-photo,
.service-img,
.step-img {
	will-change: transform;
	backface-visibility: hidden;
	transform: translateZ(0);
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
header {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
	background: #000;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	font-size: 12px;
	letter-spacing: 1px;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	height: 60px;
	max-width: 300px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.logo-img {
	height: 100%;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	display: block;
}

.logo h1 {
	font-size: 18px;
	font-weight: bold;
	color: #000;
	letter-spacing: 2px;
}

.logo .script {
	font-style: italic;
	font-weight: normal;
	font-size: 16px;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 30px;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
	color: #000;
}

.contact-btn {
	background: #000;
	color: #fff;
	padding: 10px 25px;
	border-radius: 25px;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 1px;
	transition: background 0.3s;
}

.contact-btn:hover,
.contact-btn.active {
	background: #333;
}

/* Main Content Spacing */
main {
	margin-top: 80px;
}

/* Hero Section */
.hero {
	padding: 60px 0;
	text-align: center;
	background: #f8f9fa;
}

.hero h2 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 30px;
	color: #000;
}

.hero p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

/* Meet the Founder Section */
.meet-founder {
	padding: 80px 0;
	background: #fff;
}

.founder-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.founder-text h2 {
	font-size: 42px;
	font-weight: bold;
	margin-bottom: 30px;
	color: #000;
	letter-spacing: 2px;
}

.founder-text p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
	color: #555;
}

.founder-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.founder-image {
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 8px;
}

.founder-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

/* Image Styles */
.service-img,
.step-img,
.content-img,
.consulting-img,
.portfolio-img,
.about-hero-img,
.services-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	min-height: 200px;
}

.portfolio-main-img {
	width: 100%;
	height: 100%;
	max-height: 400px;
	object-fit: cover;
	border-radius: 8px;
}

.newsletter-cover,
.newsletter-main-cover {
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 12px;
	max-height: 400px;
}

.portfolio-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-photo:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.social-img:hover {
	transform: scale(1.1);
}

.footer-logo-img {
	height: 60px;
	width: auto;
	object-fit: contain;
}

/* Placeholder Images */
.placeholder-image {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #87CEEB 0%, #98D8C8 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	min-height: 200px;
}

.placeholder-image.laptop {
	background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
	border-radius: 12px;
	position: relative;
}

.placeholder-image.laptop::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 10px;
	background: #555;
	border-radius: 0 0 10px 10px;
}

.placeholder-image.landscape {
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, #87CEEB 0%, #98D8C8 100%);
}

/* Services Overview */
.services-overview {
	padding: 80px 0;
	background: #f8f9fa;
}

.services-overview h2 {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
	color: #000;
}

.services-overview > .container > p {
	text-align: center;
	font-size: 16px;
	margin-bottom: 60px;
	color: #666;
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.service-card h3 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
	color: #000;
	text-align: center;
}

.service-image {
	margin-bottom: 30px;
	height: 250px;
	overflow: hidden;
	border-radius: 8px;
}

.service-types {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.service-type h4 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #000;
	text-align: center;
}

/* Dropdown Styles */
.dropdown {
	position: relative;
	margin-bottom: 10px;
}

.dropdown-btn {
	width: 100%;
	padding: 12px 20px;
	background: #fff;
	border: 2px solid #000;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s;
}

.dropdown-btn:hover {
	background: #f8f9fa;
}

.dropdown-btn.active {
	background: #000;
	color: #fff;
}

.dropdown-content {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 2px solid #000;
	border-top: none;
	border-radius: 0 0 15px 15px;
	padding: 20px;
	z-index: 100;
}

.dropdown-content.show {
	display: block;
}

.dropdown-content p {
	font-size: 14px;
	line-height: 1.6;
	color: #555;
}

.arrow {
	transition: transform 0.3s;
}

.dropdown-btn.active .arrow {
	transform: rotate(180deg);
}

/* Starting Price */
.starting-price {
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	color: #000;
	margin-top: 15px;
}

/* How We Work */
.how-we-work {
	padding: 80px 0;
	background: #fff;
}

.how-we-work h2 {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 60px;
	color: #000;
}

.work-carousel {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.carousel-container {
	overflow: hidden;
	border-radius: 12px;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease;
	width: 500%;
}

.step {
	width: 20%;
	padding: 40px;
	text-align: center;
	background: #f8f9fa;
	border-radius: 12px;
	margin: 0 10px;
	opacity: 0.7;
	transform: scale(0.95);
	transition: all 0.3s ease;
}

.step.active {
	opacity: 1;
	transform: scale(1);
	background: #fff;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-image {
	margin-bottom: 30px;
	height: 200px;
	overflow: hidden;
	border-radius: 8px;
}

.step h3 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #000;
}

.step p {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

.carousel-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
	padding: 0 20px;
}

.carousel-btn {
	background: #000;
	color: #fff;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-btn:hover {
	background: #333;
	transform: scale(1.1);
}

.carousel-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: scale(1);
}

.step-indicators {
	display: flex;
	gap: 10px;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background: #000;
	transform: scale(1.2);
}

.indicator:hover {
	background: #666;
}

/* CTA Section */
.cta {
	padding: 80px 0;
	background: #f8f9fa;
	text-align: center;
}

.cta h2 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 30px;
	color: #000;
}

.cta-btn {
	background: #000;
	color: #fff;
	padding: 15px 40px;
	border-radius: 25px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: background 0.3s;
	display: inline-block;
}

.cta-btn:hover {
	background: #333;
}

/* Portfolio Teaser */
.portfolio-teaser {
	padding: 60px 0;
	background: #fff;
	text-align: center;
	border-bottom: 2px solid #000;
}

.portfolio-teaser h2 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
	color: #000;
}

.portfolio-btn {
	background: transparent;
	color: #000;
	padding: 12px 30px;
	border: 2px solid #000;
	border-radius: 25px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: all 0.3s;
	display: inline-block;
}

.portfolio-btn:hover {
	background: #000;
	color: #fff;
}

/* Newsletter Section */
.newsletter {
	padding: 80px 0;
	background: #f8f9fa;
}

.newsletter h2 {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
	color: #000;
}

.newsletter > .container > p {
	text-align: center;
	font-size: 16px;
	margin-bottom: 60px;
	color: #666;
}

.newsletter-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 40px;
}

.newsletter-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.newsletter-form input {
	padding: 15px 20px;
	border: 2px solid #000;
	border-radius: 0;
	font-size: 16px;
	background: #fff;
}

.newsletter-form input::placeholder {
	color: #999;
}

.newsletter-form button {
	padding: 15px 30px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 0;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	cursor: pointer;
	transition: background 0.3s;
}

.newsletter-form button:hover {
	background: #333;
}

.newsletter-description {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.newsletter-description p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
	color: #555;
} 