/* Base Styles */
:root {
	--primary-color: #d4af37;
	--secondary-color: #333;
	--accent-color: #f8f8f8;
	--text-color: #333;
	--text-light: #777;
	--text-white: #fff;
	--bg-light: #f8f8f8;
	--bg-dark: #222;
	--transition: all 0.3s ease;
	--shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	--border-radius: 5px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	/* font-family: "Montserrat", sans-serif; */
	font-family: "Poppins", sans-serif !important;
	line-height: 1.6;
	color: var(--text-color);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 15px;
}

p {
	margin-bottom: 15px;
}

a {
	text-decoration: none;
	color: var(--text-color);
	transition: var(--transition);
}

ul {
	list-style: none;
}

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

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

section {
	padding: 80px 0;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border: none;
	border-radius: var(--border-radius);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: var(--transition);
	font-size: 14px;
}

.btn:hover {
	background-color: #e9cc6b;
	color: white;
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

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

.btn-light:hover {
	background-color: var(--primary-color);
	color: var(--text-white);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 36px;
	color: var(--secondary-color);
	position: relative;
	display: inline-block;
}

.separator {
	width: 80px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 15px auto;
}

.section-header p {
	font-size: 18px;
	color: var(--text-light);
}

/* Preloader */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bg-light);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.loader {
	text-align: center;
}

.loader svg {
	width: 100px;
	height: 100px;
}

#loader-circle {
	fill: none;
	stroke: var(--primary-color);
	stroke-width: 4;
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
	animation: dash 2s linear infinite;
}

@keyframes dash {
	0% {
		stroke-dashoffset: 200;
	}
	50% {
		stroke-dashoffset: 0;
	}
	100% {
		stroke-dashoffset: -200;
	}
}

.loader-text {
	margin-top: 20px;
	font-size: 24px;
	color: var(--primary-color);
	letter-spacing: 2px;
}

/* Header */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	padding: 20px 0;
	z-index: 1000;
	transition: var(--transition);
}

#header.sticky {
	background-color: var(--bg-light);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
}

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

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

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

.logo img {
	height: 50px;
	margin-right: 15px;
}

.logo-text h1 {
	font-size: 24px;
	margin-bottom: 0;
	color: var(--primary-color);
}

.logo-text p {
	font-size: 12px;
	margin-bottom: 0;
	color: white;
}

#header.sticky .logo-text p {
	font-size: 12px;
	margin-bottom: 0;
	color: black;
}

.nav-menu {
	display: flex;
}

.nav-menu li {
	margin-left: 30px;
	position: relative;
}

.nav-menu li a {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 5px 0;
	position: relative;
	color: var(--accent-color);
}

#header.sticky .nav-menu li a {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 5px 0;
	position: relative;
	color: var(--text-color);
}

.nav-menu li a:hover,
.nav-menu li a.active {
	color: var(--primary-color);
}

.nav-menu li a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

.nav-menu li a:hover:after,
.nav-menu li a.active:after {
	width: 100%;
}

.dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 220px;
	background-color: var(--bg-light);
	box-shadow: var(--shadow);
	padding: 15px 0;
	border-radius: var(--border-radius);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--transition);
	z-index: 100;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li {
	margin: 0;
}

.dropdown-menu li a {
	display: block;
	padding: 8px 20px;
	font-size: 13px;
}

.dropdown-menu li a:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn {
	display: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--primary-color);
}

/* Quick Inquiry Button */
.quick-inquiry {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 900;
}

.quick-inquiry button {
	background-color: var(--primary-color);
	color: var(--text-white);
	border: none;
	padding: 15px;
	cursor: pointer;
	transform: rotate(-90deg);
	transform-origin: right bottom;
	position: relative;
	right: -65px;
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	font-weight: 600;
	letter-spacing: 1px;
	transition: var(--transition);
}

.quick-inquiry button:hover {
	right: -60px;
	background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.hero-slider {
	height: 100%;
	width: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
	opacity: 1;
	visibility: visible;
}

.slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

.slide-bg:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.slide-content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: var(--text-white);
	padding: 0 20px;
	text-align: center;
}

.badge {
	margin-right: 50px;
}

.badge img {
	width: 150px;
	height: 150px;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0);
	}
}

.text-content {
	max-width: 800px;
}

.text-content h1 {
	font-size: 48px;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.text-content h2 {
	font-size: 24px;
	margin-bottom: 10px;
}

.text-content p {
	font-size: 18px;
	margin-bottom: 30px;
}

.animate-text {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s forwards;
}

.animate-text:nth-child(1) {
	animation-delay: 0.3s;
}

.animate-text:nth-child(2) {
	animation-delay: 0.6s;
}

.animate-text:nth-child(3) {
	animation-delay: 0.9s;
}

.animate-text:nth-child(4) {
	animation-delay: 1.2s;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.slider-controls {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	z-index: 10;
}

.slider-dots {
	display: flex;
	margin-right: 30px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	margin: 0 5px;
	cursor: pointer;
	transition: var(--transition);
}

.dot.active {
	background-color: var(--primary-color);
}

.slider-arrows {
	display: flex;
}

.arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.2);
	border: none;
	color: var(--text-white);
	font-size: 16px;
	cursor: pointer;
	margin: 0 5px;
	transition: var(--transition);
}

.arrow:hover {
	background-color: var(--primary-color);
}

/* About Section */
.about-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.about-image {
	flex: 1;
	padding-right: 30px;
}

.about-image img {
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}

.about-text {
	flex: 1;
	padding-left: 30px;
}

.about-text h3 {
	font-size: 28px;
	color: var(--secondary-color);
	margin-bottom: 20px;
}

.stats-container {
	display: flex;
	flex-wrap: wrap;
	margin: 30px 0;
}

.stat-item {
	flex: 1;
	min-width: 120px;
	text-align: center;
	margin-bottom: 20px;
}

.stat-number {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.stat-label {
	font-size: 14px;
	color: var(--text-light);
}

/* Services Section */
.services {
	background-color: var(--bg-light);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background-color: var(--text-white);
	border-radius: var(--border-radius);
	padding: 30px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	width: 70px;
	height: 70px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
	font-size: 28px;
}

.service-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

.service-card p {
	color: var(--text-light);
	margin-bottom: 20px;
}

.service-link {
	color: var(--primary-color);
	font-weight: 600;
	display: inline-block;
}

.service-link i {
	margin-left: 5px;
	transition: var(--transition);
}

.service-link:hover i {
	transform: translateX(5px);
}

/* Process Section */
.process-timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.process-timeline:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background-color: var(--primary-color);
}

.timeline-item {
	display: flex;
	align-items: center;
	margin-bottom: 50px;
	position: relative;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-number {
	width: 60px;
	height: 60px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	font-weight: 700;
	z-index: 1;
	flex-shrink: 0;
}

.timeline-content {
	background-color: var(--text-white);
	border-radius: var(--border-radius);
	padding: 25px;
	box-shadow: var(--shadow);
	margin-left: 30px;
	flex: 1;
}

.timeline-content h3 {
	font-size: 22px;
	margin-bottom: 10px;
	color: var(--primary-color);
}

/* Gallery Section */
.gallery {
	background-color: var(--bg-light);
}

.gallery-filter {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.filter-btn {
	background-color: transparent;
	border: none;
	padding: 8px 20px;
	margin: 5px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	border-radius: 30px;
}

.filter-btn.active,
.filter-btn:hover {
	background-color: var(--primary-color);
	color: var(--text-white);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.gallery-item {
	border-radius: var(--border-radius);
	overflow: hidden;
	position: relative;
}

.gallery-image {
	position: relative;
	overflow: hidden;
	height: 250px;
}

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

.gallery-item:hover .gallery-image img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-info {
	text-align: center;
	color: var(--text-white);
	padding: 20px;
	transform: translateY(20px);
	transition: var(--transition);
}

.gallery-item:hover .gallery-info {
	transform: translateY(0);
}

.gallery-info h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.gallery-info p {
	font-size: 14px;
	margin-bottom: 15px;
	color: var(--primary-color);
}

.gallery-zoom {
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: var(--transition);
}

.gallery-zoom:hover {
	background-color: var(--text-white);
	color: var(--primary-color);
}

.gallery-more {
	text-align: center;
	margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
	background-color: var(--bg-dark);
	color: var(--text-white);
}

.testimonials .section-header h2 {
	color: var(--text-white);
}

.testimonials .section-header p {
	color: rgba(255, 255, 255, 0.7);
}

.testimonial-slider {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.testimonial-slide {
	display: none;
	animation: fadeIn 1s ease;
}

.testimonial-slide.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.testimonial-content {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: var(--border-radius);
	padding: 30px;
	margin-bottom: 30px;
}

.testimonial-quote {
	position: relative;
	padding-left: 40px;
	margin-bottom: 20px;
}

.testimonial-quote i {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 24px;
	color: var(--primary-color);
}

.testimonial-quote p {
	font-size: 16px;
	line-height: 1.8;
}

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

.author-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}

.author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	font-size: 18px;
	margin-bottom: 5px;
}

.author-info p {
	font-size: 14px;
	color: var(--primary-color);
	margin-bottom: 0;
}

.testimonial-controls {
	text-align: center;
	margin-top: 30px;
}

.testimonial-dots {
	display: inline-flex;
}

.testimonial-dots .dot {
	background-color: rgba(255, 255, 255, 0.3);
}

.testimonial-dots .dot.active {
	background-color: var(--primary-color);
}

/* Clients Section */
.clients-slider {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.client-logo {
	padding: 20px;
	margin: 10px;
	background-color: var(--text-white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	width: 180px;
	transition: var(--transition);
}

.client-logo:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.client-logo img {
	max-width: 120px;
	max-height: 60px;
	filter: grayscale(100%);
	transition: var(--transition);
}

.client-logo:hover img {
	filter: grayscale(0%);
}

/* CTA Section */
.cta {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
		url("https://placehold.co/800x60");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: var(--text-white);
	text-align: center;
	padding: 100px 0;
}

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

.cta-content h2 {
	font-size: 36px;
	margin-bottom: 20px;
}

.cta-content p {
	font-size: 18px;
	margin-bottom: 30px;
}

/* Contact Section */
.contact-content {
	display: flex;
	flex-wrap: wrap;
}

.contact-info {
	flex: 1;
	padding-right: 30px;
	min-width: 300px;
}

.contact-form {
	flex: 1;
	padding-left: 30px;
	min-width: 300px;
}

.contact-item {
	display: flex;
	margin-bottom: 30px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	margin-right: 20px;
	flex-shrink: 0;
}

.contact-text h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.contact-text p {
	color: var(--text-light);
	margin-bottom: 0;
}

.contact-social {
	margin-top: 40px;
}

.contact-social h3 {
	font-size: 18px;
	margin-bottom: 15px;
}

.social-icons {
	display: flex;
}

.social-icon {
	width: 40px;
	height: 40px;
	background-color: var(--bg-light);
	color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	transition: var(--transition);
}

.social-icon:hover {
	background-color: var(--primary-color);
	color: var(--text-white);
}

.form-group {
	margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	font-size: 14px;
	transition: var(--transition);
}

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

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

.btn-submit {
	width: 100%;
}

/* Map Section */
.map-container {
	height: 450px;
}

.map-container iframe {
	border: none;
}

/* Footer */
.footer {
	background-color: var(--bg-dark);
	color: var(--text-white);
	padding: 80px 0 30px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
}

.footer-logo {
	flex: 1;
	min-width: 250px;
	margin-bottom: 30px;
}

.footer-logo img {
	height: 50px;
	margin-bottom: 15px;
}

.footer-logo h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: var(--primary-color);
}

.footer-logo p {
	color: rgba(255, 255, 255, 0.7);
}

.footer-links,
.footer-services,
.footer-newsletter {
	flex: 1;
	min-width: 200px;
	margin-bottom: 30px;
}

.footer h3 {
	font-size: 18px;
	margin-bottom: 20px;
	color: var(--text-white);
}

.footer ul li {
	margin-bottom: 10px;
}

.footer ul li a {
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition);
}

.footer ul li a:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

.newsletter-form {
	position: relative;
	margin-top: 20px;
}

.newsletter-form input {
	width: 100%;
	padding: 12px 15px;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--border-radius);
	color: var(--text-white);
}

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

.newsletter-form button {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	padding: 0 15px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border: none;
	border-radius: 0 var(--border-radius) var(--border-radius) 0;
	cursor: pointer;
	transition: var(--transition);
}

.newsletter-form button:hover {
	background-color: var(--secondary-color);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0;
}

.copyright a {
	color: #d4af37 !important;
}

.footer-social {
	display: flex;
}

.footer-social .social-icon {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--text-white);
}

.footer-social .social-icon:hover {
	background-color: var(--primary-color);
}

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

.modal-content {
	background-color: var(--bg-light);
	margin: 50px auto;
	padding: 30px;
	width: 90%;
	max-width: 600px;
	border-radius: var(--border-radius);
	position: relative;
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 28px;
	cursor: pointer;
	color: var(--text-light);
}

.modal-content h2 {
	text-align: center;
	margin-bottom: 30px;
	color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: var(--secondary-color);
}

/* Animation Classes */
.reveal-left,
.reveal-right,
.reveal-up {
	opacity: 0;
	transition: all 1s ease;
}

.reveal-left {
	transform: translateX(-50px);
}

.reveal-right {
	transform: translateX(50px);
}

.reveal-up {
	transform: translateY(50px);
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
	opacity: 1;
	transform: translateX(0) translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
	.text-content h1 {
		font-size: 36px;
	}

	.text-content h2 {
		font-size: 20px;
	}

	.badge {
		margin-right: 30px;
	}

	.badge img {
		width: 120px;
		height: 120px;
	}

	.about-content {
		flex-direction: column;
	}

	.about-image {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.about-text {
		padding-left: 0;
	}

	.process-timeline:before {
		left: 30px;
	}

	.timeline-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.timeline-content {
		margin-left: 0;
		margin-top: 20px;
		width: 100%;
	}

	.contact-content {
		flex-direction: column;
	}

	.contact-info {
		padding-right: 0;
		margin-bottom: 50px;
	}

	.contact-form {
		padding-left: 0;
	}
}

@media screen and (max-width: 768px) {
	section {
		padding: 60px 0;
	}

	.section-header {
		margin-bottom: 40px;
	}

	.section-header h2 {
		font-size: 28px;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -300px;
		width: 280px;
		height: 100vh;
		background-color: var(--bg-light);
		flex-direction: column;
		padding: 80px 20px 30px;
		transition: var(--transition);
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
		z-index: 1001;
	}

	.nav-menu.active {
		right: 0;
	}

	.nav-menu li {
		margin: 0 0 15px;
	}

	.dropdown-menu {
		position: static;
		width: 100%;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding: 10px 0 0 20px;
		display: none;
	}

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

	.mobile-menu-btn {
		display: block;
		z-index: 1002;
	}

	.mobile-menu-btn.active i:before {
		content: "\f00d";
	}

	.slide-content {
		flex-direction: column;
	}

	.badge {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.text-content h1 {
		font-size: 28px;
	}

	.text-content h2 {
		font-size: 18px;
	}

	.text-content p {
		font-size: 16px;
	}

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

	.copyright {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 576px) {
	.services-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.stat-item {
		min-width: 50%;
	}
}

@media only screen and (max-width: 600px) {
	body {
		overflow-x: hidden;
	}
	#header,
	.container {
		width: 100%;
	}

	.nav-menu li a:hover,
	.nav-menu li a.active {
		color: var(--primary-color);
	}

	.nav-menu li a {
		color: black;
	}
}
.footer ol,
ul {
	padding-left: 0%;
}
