/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700;800;900&display=swap');

/* Google Icons Import */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* Modern Deck Building Company Theme */
:root {
	/* Primary Colors - Professional Blue/Gray */
	--primary-blue: #1e40af;
	--primary-blue-light: #3b82f6;
	--primary-blue-dark: #1e3a8a;
	--gray-900: #111827;
	--gray-800: #1f2937;
	--gray-100: #f3f4f6;
	--gray-50: #f9fafb;
	--white: #ffffff;

	/* Gradients */
	--gradient-primary: linear-gradient(to right, var(--gray-900), var(--primary-blue-dark));
	--gradient-hero: linear-gradient(to bottom, transparent, rgba(17, 24, 39, 0.7));

	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

	/* Transitions */
	--transition: all 0.3s ease;
	--transition-slow: all 0.5s ease;
}

/* Reset and base styles */
* {
	box-sizing: border-box;
}

html {
	scroll-padding-top: 80px; /* Account for fixed navbar */
}

a:hover{
	text-decoration:none;
}

body, html {
	overflow-x: hidden;
}

body {
	font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Avenir Next', 'Helvetica Neue', 'Segoe UI', Roboto, Arial, sans-serif;
	background: var(--gray-50);
	color: var(--gray-900);
	line-height: 1.6;
	margin: 0;
	padding-top: 80px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -0.01em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 600;
	color: var(--gray-900);
	margin: 0 0 1rem 0;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

/* Special styling for main headings using Gabarito */
h1, h2 {
	font-family: 'Gabarito', 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

h1 { 
	font-size: 3.5rem; 
	font-weight: 800;
	letter-spacing: -0.03em;
}
h2 { 
	font-size: 2.5rem; 
	font-weight: 700;
	letter-spacing: -0.025em;
}
h3 { 
	font-size: 1.875rem; 
	font-weight: 600;
}
h4 { 
	font-size: 1.5rem; 
	font-weight: 500;
}
h5 { 
	font-size: 1.25rem; 
	font-weight: 500;
}
h6 { 
	font-size: 1rem; 
	font-weight: 500;
}

p {
	margin: 0 0 1rem 0;
	color: #6b7280;
}

/* Container */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeIn 1s ease-out forwards;
}

/* Premium Navbar Design - Architect/Designer Level */
.navbar.navbar {
	background: rgba(8, 12, 20, 0.98) !important;
	backdrop-filter: blur(20px) saturate(150%);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	box-shadow: 
		0 1px 3px rgba(0, 0, 0, 0.12),
		0 1px 2px rgba(0, 0, 0, 0.05),
		0 8px 32px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Override Bootstrap navbar defaults */
.navbar.navbar * {
	box-sizing: border-box;
}

.navbar.navbar .container,
.navbar.navbar .container-fluid {
	padding: 0 !important;
	margin: 0 auto !important;
	max-width: 100% !important;
}

.navbar.scrolled {
	background: rgba(8, 12, 20, 0.99);
	box-shadow: 
		0 2px 8px rgba(0, 0, 0, 0.15),
		0 1px 2px rgba(0, 0, 0, 0.1),
		0 16px 64px rgba(0, 0, 0, 0.15);
}

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

.navbar-brand.navbar-brand {
	font-family: 'Gabarito', 'Inter', sans-serif !important;
	font-size: 1.75rem !important;
	font-weight: 600 !important;
	color: white !important;
	text-decoration: none !important;
	letter-spacing: -0.02em;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	position: relative;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 1 !important;
	text-transform: none;
}

.brand-text {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.brand-text::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
	transition: width 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.navbar-brand:hover .brand-text::after {
	width: 100%;
}

.navbar-brand:hover {
	transform: translateY(-1px);
}

.navbar-nav {
	display: flex !important;
	align-items: center;
	flex-direction: row;
	padding: 0 !important;
	margin: 0;
	list-style: none !important;
	width: -webkit-fill-available;
	justify-content: space-between;
	margin-left: 3rem;
	max-width: 41rem;
}

.nav-link {
	color: rgba(248, 250, 252, 0.85) !important;
	font-family: 'Inter', sans-serif !important;
	font-weight: 500 !important;
	font-size: 0.9rem !important;
	text-decoration: none !important;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	position: relative;
	text-transform: none;
	letter-spacing: -0.01em;
	border: none !important;
	background: none !important;
	margin: 0 !important;
	display: flex !important;
	align-items: center !important;
	padding: 0.5rem 0 !important;
	line-height: 1.2;
}

.nav-link .material-symbols-outlined {
	font-size: 20px !important;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	opacity: 0.7;
}

.nav-link:hover .material-symbols-outlined {
	color: #f1f5f9 !important;
	transform: translateY(-1px);
	opacity: 1;
}

.nav-link:hover {
	color: #f1f5f9 !important;
	transform: translateY(-1px);
}

.nav-link::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(241, 245, 249, 0.8), transparent);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	transform: translateX(-50%);
}

.nav-link:hover::before {
	width: 100%;
}

.contact-cta.contact-cta {
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%) !important;
	color: white !important;
	padding: 0.875rem 2rem !important;
	border-radius: 8px !important;
	margin-left: 2rem;
	box-shadow: 
		0 4px 12px rgba(30, 64, 175, 0.25),
		0 2px 4px rgba(30, 64, 175, 0.1) !important;
	border: 1px solid rgba(59, 130, 246, 0.3) !important;
	text-transform: none !important;
	font-family: 'Inter', sans-serif !important;
	font-weight: 600 !important;
	font-size: 0.9rem !important;
	letter-spacing: -0.01em;
	text-decoration: none !important;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	position: relative;
	overflow: hidden;
}

.contact-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.contact-cta:hover::before {
	left: 100%;
}

.contact-cta:hover {
	background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
	transform: translateY(-2px) scale(1.02);
	box-shadow: 
		0 8px 24px rgba(30, 64, 175, 0.35),
		0 4px 8px rgba(30, 64, 175, 0.15);
	color: white !important;
	border-color: rgba(147, 197, 253, 0.4);
}
#navbar-nav.active {
		max-width: 100%;
}
#navbar-nav.active .nav-link {
		width: 100%;
	font-size: larger!important;
}

.navbar-toggler {
	display: none;
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 0.5rem;
	position: relative;
	width: 40px;
	height: 40px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: var(--transition);
}

.hamburger-line {
	width: 25px;
	height: 2px;
	background: white;
	margin: 3px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.navbar-toggler:hover .hamburger-line {
	background: #93c5fd;
}

.navbar-toggler.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.navbar-toggler.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
	height: 100vh;
	width: 100vw;
	background: linear-gradient(var(--gradient-hero)), url('https://images.unsplash.com/photo-1589939705384-5185137a7f0f?auto=format&fit=crop&w=1920&q=80');
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	max-width: none;
}

.hero-video {
		position: absolute;
		top: 50%;
		left: 50%;
		min-width: 100%;
		min-height: 100%;
		transform: translate(-50%, -50%);
		z-index: -1;
		object-fit: cover;
}

.hero-content h1 {
	font-size: clamp(3rem, 8vw, 7rem);
	font-weight: 800;
	margin-bottom: 2rem;
	color: white;
	animation: fadeIn 1s ease-out 0.2s both;
}

.hero-content p {
	font-size: clamp(1.25rem, 4vw, 3rem);
	margin-bottom: 3rem;
	color: rgba(255, 255, 255, 0.9);
	animation: fadeIn 1s ease-out 0.4s both;
}

.hero-cta {
	background: linear-gradient(135deg, #ff6b6b, #ff8e53, #ff6b9d);
	color: white;
	padding: 1.25rem 2.5rem;
	border-radius: 50px;
	font-size: 1.25rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	display: inline-block;
	animation: fadeIn 1s ease-out 0.6s both;
	box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	width: max-content;
}

.hero-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.hero-cta:hover::before {
	left: 100%;
}

.hero-cta:hover {
	background: linear-gradient(135deg, #ff5252, #ff7043, #ff4081);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
	color: white;
	border-color: rgba(255, 255, 255, 0.3);
}

/* Services Section */
.services {
	padding: 6rem 0;
	background: white;
}

.section-title {
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 800;
	text-align: center;
	margin-bottom: 4rem;
	color: var(--gray-900);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(38vw, 10rem));
	grid-template-rows: max-content;
	gap: 2rem;
	justify-content: center;
}

.service-card {
	background: var(--gray-50);
	padding: 2rem;
	border-radius: 0.75rem;
	box-shadow: var(--shadow-lg);
	transition: var(--transition-slow);
	text-align: left;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
	border-radius: 50%;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.service-card-icon .material-symbols-outlined {
	color: white;
	font-size: 32px;
}

.service-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary-blue-dark);
	margin-bottom: 1rem;
	align-items: center;
	gap: 0.75rem;
}

.service-card p {
	color: #6b7280;
	line-height: 1.6;
}

/* Portfolio/Projects Section */
.portfolio {
	padding: 6rem 0;
	background: var(--gray-100);
	position: relative;
	z-index: 1;
}

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

.portfolio-item {
	background: white;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	transition: var(--transition-slow);
	position: relative;
	cursor: pointer;
}

.portfolio-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
}

.portfolio-image {
	height: 280px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, black, transparent);
	opacity: 0;
	transition: var(--transition);
	display: flex;
	align-items: end;
	justify-content: center;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 0.9;
}

.portfolio-overlay p {
	color: white;
	font-size: 1.25rem;
	font-weight: 600;
	padding: 1rem;
	margin: 0;
	transform: translateY(10px);
	transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay p {
	transform: translateY(0);
}

.portfolio-content {
	padding: 1.5rem;
}

.portfolio-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--gray-900);
}

.portfolio-title a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

.portfolio-title a:hover {
	color: var(--primary-blue);
}

.portfolio-description {
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.portfolio-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.portfolio-category {
	background: var(--gray-100);
	color: var(--gray-900);
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
}

.portfolio-tag {
	background: var(--primary-blue);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 500;
}

.portfolio-date {
	color: #9ca3af;
	font-size: 0.875rem;
	margin-left: auto;
}

/* Hero Background Images */
.hero-bg-images {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.hero-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 2s ease-in-out;
}

.hero-bg-image.active {
	opacity: 1;
}

/* Static background starts visible */
.hero-bg-image.static-bg {
	opacity: 1;
	z-index: 1;
}

/* Google Drive backgrounds start hidden and layer above static */
.hero-bg-image.gdrive-bg {
	opacity: 0;
	z-index: 2;
}

/* About Section */
.about {
	padding: 6rem 0;
	background: white;
	position: relative;
	z-index: 1;
}

/* Ensure gallery sections maintain proper flow */
.gallery-modal {
	z-index: 10000;
}

.gallery-section,
[id*="gallery"],
[class*="gallery"]:not(.gallery-modal) {
	position: relative;
	z-index: 1;
	/* clear: both;
	display: block; */
}

/* Specifically target gdrive gallery */
.gdrive-gallery {
	position: relative !important;
	z-index: 1 !important;
	clear: both !important;
	display: block !important;
}
 
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.about-image {
	border-radius: 0.75rem;
	box-shadow: var(--shadow-lg);
	width: 100%;
	height: auto;
}

.about-text p {
	font-size: 1.125rem;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}
.about-content div:has(img) {
	height: -webkit-fill-available;
	overflow:hidden;
	display: flex;
	justify-content: center;
	border-radius: 0.6rem;
}

.about-content div img {
	height: -webkit-fill-available;
	width:auto;
	margin-left:auto;
	margin-right:auto;
}
/* Contact Section */
.contact {
	padding: 6rem 0;
	background: var(--gray-100);
}

.contact-form {
	margin: 0 auto;
	background: white;
	padding: 2rem;
	border-radius: 0.75rem;
	box-shadow: var(--shadow-lg);
	width: -webkit-fill-available;
	height: -webkit-fill-available;
}

.contact-info {
	background: white;
	padding: 2rem;
	border-radius: 0.75rem;
	box-shadow: var(--shadow-lg);
	margin-bottom: 2rem;
}

.contact-info h3 {
	color: var(--primary-blue-dark);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: var(--gray-50);
	border-radius: 0.5rem;
}

.contact-item .material-symbols-outlined {
	color: var(--primary-blue);
	font-size: 24px;
	margin-top: 0.25rem;
}

.contact-item div p {
	margin: 0.25rem 0;
}

.contact-item a {
	color: var(--primary-blue);
	text-decoration: none;
	font-weight: 500;
}

.contact-item a:hover {
	color: var(--primary-blue-dark);
	text-decoration: underline;
}

@media (min-width: 768px) {
	.contact .about-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}
	.services-grid {
		grid-template-columns: repeat(auto-fill, minmax(30vw, 10rem));
	}
	.contact-info {
		margin-bottom: 0;
	}
}
@media (min-width: 2000px) {
.services-grid {
	grid-template-columns: repeat(auto-fill, minmax(20vw, 10rem));
}
}
@media (max-width: 1400px) {
.services-grid {
	grid-template-columns: repeat(auto-fill, minmax(38vw, 10rem));
}
}
.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	color: var(--gray-900);
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.form-label .material-symbols-outlined {
	font-size: 20px;
	color: var(--primary-blue);
}

.form-input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #d1d5db;
	border-radius: 0.5rem;
	transition: var(--transition);
	font-size: 1rem;
	padding-left: 3rem;
}

.form-group {
	position: relative;
}

.form-input-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	font-size: 20px;
	transition: var(--transition);
	z-index: 1;
	pointer-events: none;
}

.form-group:focus-within .form-input-icon {
	color: var(--primary-blue);
}

.form-input:focus {
	outline: none;
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
}

.form-textarea {
	padding-left: 1rem;
}

.form-textarea + .form-input-icon {
	top: 1rem;
	transform: none;
}

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

.form-button {
	width: 100%;
	background: var(--primary-blue);
	color: white;
	padding: 0.75rem;
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.form-button:hover {
	background: var(--primary-blue-light);
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.form-button .material-symbols-outlined {
	font-size: 18px;
}

/* Footer */
.footer {
	background: var(--gradient-primary);
	color: white;
	padding: 2rem 0;
}

.footer-content {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-text {
	font-size: 1.125rem;
	margin: 0;
}

.footer-social {
	display: flex;
	gap: 1.5rem;
}

.social-link {
	color: white;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
	color: #93c5fd;
	background: rgba(147, 197, 253, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(147, 197, 253, 0.3);
}

.social-icon {
	width: 1.5rem;
	height: 1.5rem;
}

.social-link .material-symbols-outlined {
	font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
	body {
		padding-top: 76px;
	}

	.navbar-container {
		height: 76px;
		padding: 0 1.5rem;
	}

	.navbar-brand {
		font-size: 1.5rem;
	}

	.navbar-nav {
		display: none !important;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(8, 12, 20, 0.98) !important;
		backdrop-filter: blur(20px) saturate(150%);
		flex-direction: column !important;
		padding: 2.5rem 1.5rem !important;
		box-shadow: 
			0 16px 64px rgba(0, 0, 0, 0.25),
			0 8px 32px rgba(0, 0, 0, 0.15);
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		animation: slideDown 0.4s cubic-bezier(0.23, 1, 0.320, 1);
		width: 100% !important;
		margin: 0 !important;
		gap: 2rem !important;
		opacity: 0;
		transform: translateY(-10px);
		transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	}

	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.navbar-nav.active {
		display: flex !important;
		flex-direction: column !important;
		opacity: 1 !important;
		transform: translateY(0) !important;
	}

	.navbar-toggler {
		display: flex;
	}

	.nav-link {
		padding: 1rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
		text-align: center;
		font-size: 1rem;
		width: 100%;
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
	}

	.nav-link:last-child {
		border-bottom: none;
	}

	.contact-cta {
		margin: 1rem 0 0 0 !important;
		padding: 1rem 2rem !important;
		align-self: center;
		width: 100% !important;
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		text-align: center !important;
	}

	.hero-content h1 {
		font-size: 3rem;
	}

	.hero-content p {
		font-size: 1.25rem;
	}

	.services {
		padding: 4rem 0;
	}

	.portfolio {
		padding: 4rem 0;
	}

	.about {
		padding: 4rem 0;
	}

	.contact {
		padding: 4rem 0;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 1rem;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.service-card,
	.contact-form {
		padding: 1.5rem;
	}
}

/* Scroll to top button */
.scroll-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: var(--primary-blue);
	color: white;
	border: none;
	border-radius: 50%;
	font-size: 1.5rem;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scroll-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-to-top:hover {
	background: var(--primary-blue-light);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.scroll-to-top:active {
	transform: translateY(0);
}

.scroll-to-top .material-symbols-outlined {
	font-size: 24px;
}

/* Google Icons Utility Classes */
.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	vertical-align: middle;
}

.material-symbols-outlined {
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	vertical-align: middle;
	font-variation-settings:
		'FILL' 0,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24;
}

/* Icon sizes */
.material-icons.md-18, .material-symbols-outlined.md-18 { font-size: 18px; }
.material-icons.md-24, .material-symbols-outlined.md-24 { font-size: 24px; }
.material-icons.md-36, .material-symbols-outlined.md-36 { font-size: 36px; }
.material-icons.md-48, .material-symbols-outlined.md-48 { font-size: 48px; }

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-track {
	background: var(--gray-100);
	border-radius: 6px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
	border-radius: 6px;
	border: 2px solid var(--gray-100);
	transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
	border-color: var(--gray-50);
}

::-webkit-scrollbar-corner {
	background: var(--gray-100);
}

/* Firefox scrollbar styling */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--primary-blue) var(--gray-100);
}

/* Dark mode scrollbar for modal content */
.gallery-modal ::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.3);
}

.gallery-modal ::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(0, 0, 0, 0.3);
}

.gallery-modal ::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.5);
}

/* Utility Classes */
.text-center {
	text-align: center;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.mt-4 {
	margin-top: 1rem;
}

.hidden {
	display: none;
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: var(--primary-blue);
	color: white;
}

.btn-primary:hover {
	background: var(--primary-blue-light);
	color: white;
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

/* Filter Controls */
.filter-controls {
	text-align: center;
	margin-bottom: 3rem;
}

.filter-btn {
	background: white;
	border: 2px solid #d1d5db;
	color: var(--gray-900);
	padding: 0.5rem 1rem;
	margin: 0.25rem;
	border-radius: 9999px;
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--primary-blue);
	border-color: var(--primary-blue);
	color: white;
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}
.container {
		display: block !important;
}
#modalTitle {
		color: white;
}


.hero-content {
	width: 100vw; /* Full width */
	height: -webkit-fill-available; /* Available height */
	background-attachment: fixed !important;
	display: flex; /* Flex display */
	flex-direction: column; /* Column layout */
	justify-content: center; /* Center content vertically */
	position: relative; /* Position relative for inner elements */
	z-index: 1; /* Ensure content appears above the background */
	align-items: center;
}



