* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-blue: #2563a8;
	--primary-pink: #d89090;
	--primary-orange: #ff8c6b;
	--gradient-main: linear-gradient(135deg, #0066ff 0%, #2563a8 50%, #d89090 85%, #ff8c6b 100%);
	--gradient-reverse: linear-gradient(135deg, #ff8c6b 0%, #d89090 50%, #2563a8 100%);
	--text-dark: #1a1a1a;
	--text-light: #666;
	--white: #ffffff;
	--light-bg: #f8f9fa;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	overflow-x: hidden;
}

/* Navigation */
nav {
	position: fixed;
	width: 100%;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

nav.scrolled {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 3rem;
}

.logo-container {
	display: flex;
	align-items: center;
}

.logo-image {
	height: 50px;
	width: auto;
	transition: opacity 0.3s;
}

.logo-text {
	font-size: 1.8rem;
	font-weight: 700;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0;
	transition: opacity 0.3s;
	position: absolute;
}

nav.scrolled .logo-image {
	opacity: 0;
	pointer-events: none;
}

nav.scrolled .logo-text {
	opacity: 1;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 600;
	transition: all 0.3s;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--gradient-main);
	transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.mobile-toggle span {
	width: 25px;
	height: 3px;
	background: var(--primary-blue);
	transition: all 0.3s;
}

/* Hero Section */
.hero {
	height: 100vh;
	background: var(--gradient-main);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path fill="rgba(255,255,255,0.05)" d="M0 400l50-16.7c50-16.6 150-50 250-50 100 0 200 33.4 300 50 100 16.7 200 16.7 300 0 100-16.6 200-50 250-66.6l50-16.7V800H0z"/></svg>');
	background-size: cover;
	background-image: url('../img/banner.jpeg');
	opacity: 0.5;
}

.hero-content {
	max-width: 900px;
	padding: 2rem;
	animation: fadeInUp 1s ease;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 4.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.95);
}

.cta-button {
	display: inline-block;
	padding: 1.2rem 3rem;
	background: var(--primary-orange);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s;
	border: 2px solid var(--primary-orange);
	box-shadow: 0 5px 20px rgba(255, 140, 107, 0.4);
}

.cta-button:hover {
	background: transparent;
	color: var(--primary-orange);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 140, 107, 0.5);
}

.cta-button.cta-button-pro:hover {
	color: var(--primary-blue);
}

.cta-button-outline {
	background: transparent;
	border: 2px solid white;
	margin-left: 1rem;
}

.cta-button-outline:hover {
	background: white;
	color: var(--primary-blue);
}

/* Outline button on light backgrounds (e.g. blog post CTA box) */
.blog-post-cta .cta-button-outline {
	border-color: var(--primary-blue);
	color: var(--primary-blue);
}

.blog-post-cta .cta-button-outline:hover {
	background: var(--primary-blue);
	color: white;
}

.section {
	padding: 5rem 3rem;
	max-width: 1400px;
	margin: 0 auto;
}

.section-alt {
	background: var(--light-bg);
}

.section-title {
	font-size: 3rem;
	margin-bottom: 1rem;
	text-align: center;
	position: relative;
	padding-bottom: 1rem;
	font-weight: 700;
}

.section-title .highlight-blue {
	background: linear-gradient(135deg, #0066ff, #2563a8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-title .highlight-pink {
	background: linear-gradient(135deg, #d89090, #ff8c6b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	text-align: center;
	color: var(--text-light);
	margin-bottom: 3rem;
	font-size: 1.2rem;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: var(--gradient-main);
	border-radius: 2px;
}

/* Statistics Section */
.stats-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-top: 2rem;
}

.stat-card {
	text-align: center;
	padding: 3rem 2rem;
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	border: 2px solid transparent;
}

.stat-card:hover {
	transform: translateY(-10px);
	border: 2px solid var(--primary-blue);
	box-shadow: 0 15px 50px rgba(37, 99, 168, 0.2);
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 800;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.2rem;
	color: var(--text-light);
	font-weight: 600;
}

/* Product Showcase */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin-top: 2rem;
}

.product-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

.product-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 60px rgba(37, 99, 168, 0.2);
}

.product-image {
	height: 250px;
	background: var(--gradient-main);
	position: relative;
	overflow: hidden;
}

.product-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.1);
	opacity: 0;
	transition: opacity 0.3s;
}

.product-card:hover .product-image::after {
	opacity: 1;
}

.product-content {
	padding: 2rem;
}

.product-content h3 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-weight: 700;
}

.product-content p {
	color: var(--text-light);
	line-height: 1.8;
}

/* Why Choose Us */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin-top: 2rem;
}

.feature-card {
	text-align: center;
	padding: 3rem 2rem;
	background: white;
	border-radius: 20px;
	transition: all 0.3s;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
	box-shadow: 0 15px 50px rgba(37, 99, 168, 0.15);
	transform: translateY(-10px);
}

.feature-icon {
	width: 90px;
	height: 90px;
	background: var(--gradient-main);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2.5rem;
	color: white;
	box-shadow: 0 10px 30px rgba(37, 99, 168, 0.3);
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-weight: 700;
}

.feature-card p {
	color: var(--text-light);
	line-height: 1.8;
}

/* Recent Projects */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.project-card {
	position: relative;
	height: 400px;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
	width: 100%;
	height: 100%;
	background: var(--gradient-main);
	transition: transform 0.3s;
}

.project-card:hover .project-image {
	transform: scale(1.1);
}

.project-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2.5rem;
	color: white;
}

.project-overlay h3 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.project-overlay p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
	background: var(--gradient-main);
	padding: 5rem 3rem;
	text-align: center;
	color: white;
}

.cta-section h2 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.cta-section p {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-content-full {
	align-items: center;
}

.about-text p {
	margin-bottom: 1.5rem;
	color: var(--text-light);
	font-size: 1.15rem;
	line-height: 1.9;
}

.about-image {
	height: 450px;
	background: var(--gradient-main);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(37, 99, 168, 0.3);
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 2rem;
}

.service-card {
	background: white;
	padding: 3rem 2.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	border: 2px solid transparent;
}

.service-card:hover {
	transform: translateY(-10px);
	border: 2px solid var(--primary-blue);
	box-shadow: 0 20px 60px rgba(37, 99, 168, 0.2);
}

.service-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-main);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 2.2rem;
	color: white;
}

.service-card h3 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-weight: 700;
}

.service-card p {
	color: var(--text-light);
	line-height: 1.8;
}

/* Gallery Grid */
.gallery-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.gallery-tab {
	padding: 0.8rem 2rem;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s;
	color: var(--text-dark);
}

.gallery-tab.active {
	background: var(--gradient-main);
	color: white;
	border-color: var(--primary-blue);
}

.gallery-tab:hover {
	border-color: var(--primary-blue);
	transform: translateY(-2px);
}

.gallery-content {
	display: none;
}

.gallery-content.active {
	display: block;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.gallery-item {
	height: 320px;
	background: var(--gradient-main);
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: transform 0.3s;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.gallery-item:hover {
	transform: scale(1.05);
}

.gallery-item::after {
	content: '🔍';
	position: absolute;
	inset: 0;
	background: rgba(37, 99, 168, 0.9);
	opacity: 0;
	transition: opacity 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
}

.gallery-item:hover::after {
	opacity: 1;
}

/* Image Lightbox */
.lightbox {
	display: none;
	position: fixed;
	z-index: 3000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	animation: fadeIn 0.3s ease;
}

.lightbox.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-content {
	max-width: 90%;
	max-height: 90vh;
	position: relative;
	animation: zoomIn 0.3s ease;
}

.lightbox-content img {
	max-width: 100%;
	max-height: 90vh;
	border-radius: 10px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
	position: absolute;
	top: -50px;
	right: 0;
	font-size: 3rem;
	color: white;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.1);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	padding-bottom: 10px;
}

.lightbox-close:hover {
	background: var(--primary-orange);
	/* transform: rotate(90deg); */
}

/* Project Filters */
.project-filters {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 0.8rem 2rem;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s;
	color: var(--text-dark);
	font-size: 1rem;
}

.filter-btn.active {
	background: var(--gradient-main);
	color: white;
	border-color: var(--primary-blue);
}

.filter-btn:hover {
	border-color: var(--primary-blue);
	transform: translateY(-2px);
}

.project-tag {
	display: inline-block;
	padding: 0.4rem 1rem;
	background: var(--primary-orange);
	color: white;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-top: 0.5rem;
}

@keyframes zoomIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* FAQ Section */
.faq-container {
	max-width: 900px;
	margin: 4rem auto 0;
}

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
	padding: 1.5rem 2rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	color: var(--text-dark);
	transition: all 0.3s;
	user-select: none;
}

.faq-question:hover {
	background: var(--light-bg);
}

.faq-question.active {
	background: var(--gradient-main);
	color: white;
}

.faq-icon {
	font-size: 1.5rem;
	transition: transform 0.3s;
}

.faq-question.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 2rem;
}

.faq-answer.active {
	max-height: 500px;
	padding: 1.5rem 2rem;
}

.faq-answer p {
	color: var(--text-light);
	line-height: 1.8;
}

/* Testimonials Section */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-top: 2rem;
}

.testimonial-card {
	background: white;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	position: relative;
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(37, 99, 168, 0.15);
}

.testimonial-quote {
	font-size: 4rem;
	color: var(--primary-blue);
	opacity: 0.2;
	position: absolute;
	top: 1rem;
	left: 2rem;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-light);
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
	flex: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--gradient-main);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
}

.testimonial-info h4 {
	font-size: 1.2rem;
	color: var(--text-dark);
	margin-bottom: 0.3rem;
}

.testimonial-info p {
	color: var(--text-light);
	font-size: 0.95rem;
}

.testimonial-rating {
	color: #ffa500;
	font-size: 1.2rem;
	margin-top: 0.5rem;
}

/* Clients Section */
.clients-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
	align-items: center;
}

.client-logo {
	background: white;
	padding: 3rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	height: 150px;
}

.client-logo:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(37, 99, 168, 0.15);
}

.client-logo img {
	max-width: 100%;
	max-height: 80px;
	object-fit: contain;
	filter: grayscale(100%);
	transition: filter 0.3s;
}

.client-logo:hover img {
	filter: grayscale(0%);
}

.client-name {
	font-size: 1.3rem;
	font-weight: 700;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: center;
}

/* Calculator Section */
.calculator-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	max-width: 1200px;
	margin: 0 auto;
}

.calculator-container {
	background: white;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 15px 50px rgba(37, 99, 168, 0.15);
}

.calculator-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 2rem;
	text-align: center;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.calculator-input-group {
	margin-bottom: 2rem;
}

.calculator-input-group label {
	display: block;
	margin-bottom: 0.8rem;
	font-weight: 700;
	color: var(--text-dark);
	font-size: 1.1rem;
}

.calculator-input-group input {
	width: 100%;
	padding: 1.2rem;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 1.1rem;
	transition: all 0.3s;
}

.calculator-input-group input:focus {
	outline: none;
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 3px rgba(37, 99, 168, 0.1);
}

.calculate-btn {
	width: 100%;
	padding: 1.3rem;
	background: var(--primary-orange);
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 5px 20px rgba(37, 99, 168, 0.3);
}

.calculate-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(37, 99, 168, 0.4);
	background: var(--primary-blue);
}

.download-brochure-btn {
	width: 100%;
	padding: 1.3rem;
	background: white;
	color: var(--primary-blue);
	border: 2px solid var(--primary-blue);
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 1.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	text-decoration: none;
}

.download-brochure-btn:hover {
	background: var(--primary-blue);
	color: white;
	transform: translateY(-3px);
}

.calculator-result {
	margin-top: 3rem;
	padding: 3rem 2rem;
	background: var(--light-bg);
	border-radius: 15px;
	text-align: center;
	display: none;
}

.calculator-result.show {
	display: block;
	animation: fadeIn 0.5s ease;
}

.calculator-result h3 {
	font-size: 1.4rem;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.calculator-result .price {
	font-size: 3.5rem;
	font-weight: 800;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	animation: fadeIn 0.3s ease;
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: white;
	padding: 3rem;
	border-radius: 20px;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	animation: slideUp 0.3s ease;
}

.modal-close {
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
	font-size: 2rem;
	cursor: pointer;
	color: var(--text-light);
	transition: color 0.3s;
}

.modal-close:hover {
	color: var(--primary-blue);
}

.modal-title {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

.clients-carousel-wrapper {
	overflow: hidden;
	padding: 2rem 0;
	position: relative;
	background: white;
	border-radius: 15px;
}

.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	width: 100px;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.clients-carousel-wrapper::before {
	left: 0;
	background: linear-gradient(to right, white, transparent);
}

.clients-carousel-wrapper::after {
	right: 0;
	background: linear-gradient(to left, white, transparent);
}

.clients-carousel {
	display: flex;
	gap: 2rem;
	animation: scroll 40s linear infinite;
	width: fit-content;
}

.clients-carousel:hover {
	animation-play-state: paused;
}

.client-slide {
	flex-shrink: 0;
	width: 250px;
	height: 120px;
	background: var(--light-bg);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
}

.client-slide:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(37, 99, 168, 0.15);
}

.client-slide .client-name {
	font-size: 1.2rem;
	font-weight: 700;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: center;
}

.client-slide img {
	max-width: 100%;
	max-height: 80px;
	object-fit: contain;
	opacity: 0.7;
	transition: all 0.3s;
}

.client-slide:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Contact Form */
.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 0.5rem;
	font-weight: 700;
	color: var(--text-dark);
}

.form-group input,
.form-group textarea {
	padding: 1.2rem;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s;
	font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 3px rgba(37, 99, 168, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
}

.submit-btn {
	padding: 1.2rem 2.5rem;
	background: var(--gradient-main);
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 5px 20px rgba(37, 99, 168, 0.3);
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(37, 99, 168, 0.4);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.contact-item {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}

.contact-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-main);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.contact-details h3 {
	margin-bottom: 0.5rem;
	color: var(--text-dark);
	font-weight: 700;
}

.contact-details p {
	color: var(--text-light);
}

.contact-details a {
	text-decoration: none;
	color: var(--text-light);
}

/* Footer */
footer {
	background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
	color: white;
	padding: 4rem 3rem 2rem;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h3 {
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	font-weight: 700;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	display: block;
	margin-bottom: 0.8rem;
	transition: all 0.3s;
}

.footer-section a:hover {
	color: var(--primary-orange);
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.social-icon {
	width: 45px;
	height: 45px;
	background: var(--gradient-main);
	border-radius: 50%;
	display: flex !important;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s;
}

.social-icon:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(255, 140, 107, 0.4);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	max-width: 1400px;
	margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.nav-container {
		padding: 1rem 1.5rem;
	}

	nav.scrolled .logo-image {
		opacity: 1 !important;
		pointer-events: auto !important;
	}

	nav.scrolled .logo-text {
		opacity: 0 !important;
	}

	.logo-image {
		height: 35px;
	}

	.nav-links {
		position: fixed;
		top: 70px;
		left: -100%;
		flex-direction: column;
		background: white;
		width: 100%;
		padding: 2rem;
		gap: 1.5rem;
		transition: left 0.3s;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

	.nav-links.active {
		left: 0;
	}

	.mobile-toggle {
		display: flex;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.about-content,
	.contact-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.section {
		padding: 3rem 1.5rem;
	}

	.section-title {
		font-size: 2.2rem;
	}

	.calculator-wrapper {
		grid-template-columns: 1fr;
	}

	.services-grid,
	.gallery-grid,
	.products-grid,
	.projects-grid,
	.testimonials-grid,
	.clients-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.stat-number {
		font-size: 2.8rem;
	}

	.cta-section h2 {
		font-size: 2rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-button-outline {
		margin-left: 0;
	}

	.project-filters {
		gap: 0.5rem;
	}

	.filter-btn {
		padding: 0.6rem 1.5rem;
		font-size: 0.9rem;
	}

	.footer-section {
		font-size: 0.9rem;
	}

	.footer-section h3 {
		font-size: 1.2rem;
		margin-bottom: 1rem;
	}

	.footer-section p,
	.footer-section a {
		font-size: 0.85rem;
		margin-bottom: 0.6rem;
	}

	.social-links {
		gap: 0.8rem;
	}

	.social-icon {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}

	.client-slide {
		width: 200px;
		height: 100px;
	}

	.client-slide .client-name {
		font-size: 1rem;
	}

	.clients-carousel {
		animation: scroll 30s linear infinite;
	}


}

.clients-carousel {
	gap: 1rem;
	animation: scroll 25s linear infinite;
}

.product-image {
	height: 225px;
	background: var(--gradient-main);
	position: relative;
	overflow: hidden;
}

/* =============================================
   BLOG STYLES
============================================== */

/* Blog filters bar */
.blog-filters {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.blog-search-form {
	display: flex;
	align-items: center;
	background: white;
	border-radius: 50px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	max-width: 480px;
	width: 100%;
}

.blog-search-input {
	flex: 1;
	border: none;
	outline: none;
	padding: 0.9rem 1.5rem;
	font-size: 1rem;
	font-family: inherit;
	background: transparent;
	color: var(--text-dark);
}

.blog-search-btn {
	background: var(--gradient-main);
	border: none;
	color: white;
	padding: 0.9rem 1.4rem;
	cursor: pointer;
	font-size: 1.1rem;
	transition: opacity 0.2s;
}

.blog-search-btn:hover {
	opacity: 0.85;
}

.blog-category-tabs {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: center;
}

.blog-cat-btn {
	padding: 0.5rem 1.4rem;
	border-radius: 50px;
	background: white;
	border: 2px solid #e0e0e0;
	color: var(--text-dark);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.25s;
}

.blog-cat-btn:hover,
.blog-cat-btn.active {
	background: var(--gradient-main);
	border-color: transparent;
	color: white;
}

/* Blog grid */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 2.5rem;
	margin-top: 2rem;
}

.blog-grid--small {
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
}

/* Blog card */
.blog-card {
	background: white;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 50px rgba(37, 99, 168, 0.15);
}

.blog-card-image-link {
	display: block;
}

.blog-card-image {
	height: 220px;
	overflow: hidden;
	background: var(--gradient-main);
}

.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
	transform: scale(1.06);
}

.blog-card-content {
	padding: 1.8rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.blog-card-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.blog-tag {
	display: inline-block;
	padding: 0.25rem 0.9rem;
	background: var(--primary-orange, #d4a827);
	color: white;
	border-radius: 20px;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.blog-date {
	font-size: 0.85rem;
	color: var(--text-light);
}

.blog-card-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.8rem;
	line-height: 1.4;
}

.blog-card-title a {
	text-decoration: none;
	color: inherit;
	transition: color 0.2s;
}

.blog-card-title a:hover {
	color: var(--primary-blue);
}

.blog-card-excerpt {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.7;
	flex: 1;
	margin-bottom: 1.2rem;
}

.blog-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid #f0f0f0;
}

.blog-author {
	font-size: 0.85rem;
	color: var(--text-light);
	font-weight: 600;
}

.blog-read-more {
	color: var(--primary-blue);
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	transition: color 0.2s;
}

.blog-read-more:hover {
	color: var(--primary-orange);
}

/* Blog empty state */
.blog-empty {
	text-align: center;
	padding: 4rem 2rem;
	color: var(--text-light);
	font-size: 1.1rem;
}

/* Blog pagination */
.blog-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.pagination-btn {
	padding: 0.6rem 1.2rem;
	border-radius: 8px;
	background: white;
	border: 2px solid #e0e0e0;
	color: var(--text-dark);
	font-weight: 600;
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.25s;
}

.pagination-btn:hover,
.pagination-btn.active {
	background: var(--gradient-main);
	border-color: transparent;
	color: white;
}

/* Breadcrumb */
.blog-breadcrumb {
	background: var(--light-bg, #f8f8f8);
	border-bottom: 1px solid #eee;
}

.blog-breadcrumb .container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
}

.breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	padding: 0.9rem 0;
	font-size: 0.9rem;
	flex-wrap: wrap;
}

.breadcrumb-list a {
	color: var(--primary-blue);
	text-decoration: none;
}

.breadcrumb-list a:hover {
	text-decoration: underline;
}

.breadcrumb-list li:last-child {
	color: var(--text-light);
}

/* Blog post hero */
.blog-post-hero-inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.blog-post-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
	line-height: 1.3;
	margin-bottom: 1.5rem;
}

.blog-post-lead {
	font-size: 1.15rem;
	color: var(--text-light);
	line-height: 1.8;
	max-width: 680px;
	margin: 0 auto 1.5rem;
}

.blog-post-author-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	font-size: 0.95rem;
	color: var(--text-light);
	font-weight: 600;
}

.blog-author-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--gradient-main);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1rem;
}

/* Featured image */
.blog-post-featured-image {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
}

.blog-post-featured-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	display: block;
}

/* Blog post body */
.blog-post-body {
	max-width: 780px;
	margin: 0 auto;
	font-size: 1.08rem;
	line-height: 1.9;
	color: var(--text-dark);
}

.blog-post-body h2 {
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 2.5rem 0 1rem;
}

.blog-post-body h3 {
	font-size: 1.35rem;
	font-weight: 700;
	margin: 2rem 0 0.8rem;
}

.blog-post-body p {
	margin-bottom: 1.4rem;
}

.blog-post-body ul,
.blog-post-body ol {
	margin: 1rem 0 1.5rem 2rem;
}

.blog-post-body li {
	margin-bottom: 0.6rem;
}

.blog-post-body a {
	color: var(--primary-blue);
	font-weight: 600;
}

.blog-post-body a:hover {
	text-decoration: underline;
}

.blog-post-body strong {
	color: var(--text-dark);
}

/* In-post CTA */
.blog-post-cta {
	max-width: 780px;
	margin: 3rem auto 0;
	background: var(--light-bg, #f8f8f8);
	padding: 2.5rem;
	border-radius: 16px;
	border-left: 4px solid var(--primary-orange, #d4a827);
	text-align: center;
}

.blog-post-cta h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.blog-post-cta p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

/* Responsive blog */
@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.blog-grid--small {
		grid-template-columns: 1fr;
	}

	.blog-post-featured-image {
		padding: 0 1rem;
	}

	.blog-post-featured-image img {
		max-height: 260px;
		border-radius: 12px;
	}

	.blog-post-body {
		font-size: 1rem;
	}

	.blog-post-cta {
		padding: 1.5rem;
	}

	.blog-post-cta .cta-button {
		display: block;
		margin: 0.5rem 0 !important;
	}
}