* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Nunito", sans-serif;
}

body {
	font-family: "Nunito", sans-serif;
}

.header {
	background: #f2f2f2;
	padding: 12px 0;
	position: relative;
}

.container {
	width: 90%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Logo */
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo img {
	width: 86px;
}

/* Toggle */
.menu-toggle {
	font-size: 26px;
	cursor: pointer;
	display: none;
}

/* DESKTOP NAV */
.nav {
	display: flex;
}

.nav ul {
	display: flex;
	gap: 25px;
	list-style: none;
}

/* 🔥 MOBILE FIX */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	/* FORCE HIDE */
	.nav {
		display: none !important;
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background: #c9a443;
	}

	/* SHOW ONLY WHEN CLICK */
	.nav.active {
		display: block !important;
	}

	.nav ul {
		flex-direction: column;
	}

	.nav ul li {
		padding: 18px;
		color: #fff;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
}

/* Hero Section Css */

.hero {
	position: relative;
	height: 100vh;
	background: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952")
		no-repeat center/cover;
	display: flex;
	align-items: center;
	margin-top: 100px;
}

/* dark overlay */
.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	top: 0;
	left: 0;
}

/* content */
.hero-content {
	position: relative;
	color: #fff;
	padding-left: 8%;
	max-width: 600px;
}

.hero-content h1 {
	font-size: 55px;
	font-weight: 600;
	line-height: 1.2;
}

.hero-content p {
	margin: 15px 0 25px;
	font-size: 16px;
	opacity: 0.9;
}

/* button */
.hero-btn {
	display: inline-block;
	background: #5fa463;
	color: #fff;
	padding: 14px 28px;
	text-decoration: none;
	font-weight: 500;
}

/* dots */
.dots {
	position: absolute;
	bottom: 80px;
	left: 8%;
}

.dots span {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #fff;
	opacity: 0.5;
	margin-right: 6px;
	border-radius: 50%;
}

/* bottom bar */
.bottom-bar {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	padding: 15px;
	text-align: center;
	color: #fff;
	font-size: 14px;
}

.bottom-bar span {
	color: #5fa463;
	font-weight: 600;
}

/* 🔥 RESPONSIVE */
@media (max-width: 768px) {
	.hero {
		height: 80vh;
	}

	.hero-content {
		padding-left: 5%;
	}

	.hero-content h1 {
		font-size: 30px;
	}

	.hero-btn {
		padding: 10px 18px;
		font-size: 13px;
	}

	.dots {
		bottom: 70px;
	}
}

/* Next Section */
.features {
	background: #5fa463;
	padding: 80px 0;
	position: relative;
	font-family: "Nunito", sans-serif;
}

/* subtle pattern */
.features::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: url("https://www.transparenttextures.com/patterns/hexellence.png");
	opacity: 0.1;
	top: 0;
	left: 0;
}

.containers {
	width: 90%;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	position: relative;
}

/* box */
.feature-box {
	text-align: center;
	color: #fff;
}

/* circle icon */
.icon {
	width: 120px;
	height: 120px;
	background: #fff;
	border-radius: 50%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon img {
	width: 50px;
}

/* title */
.feature-box h3 {
	margin-top: 25px;
	font-size: 18px;
	font-weight: 600;
}

/* underline */
.feature-box span {
	display: block;
	width: 40px;
	height: 3px;
	background: #d4a93d;
	margin: 12px auto;
}

/* text */
.feature-box p {
	font-size: 14px;
	line-height: 1.7;
	opacity: 0.95;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
	.containers {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.containers {
		grid-template-columns: 1fr;
	}

	.icon {
		width: 90px;
		height: 90px;
	}

	.icon img {
		width: 40px;
	}
}

/* Service Section Css */
.hover-services {
	width: 100%;
	background: #f5f5f5;
}

/* heading center */
.top-content {
	text-align: center;
	max-width: 800px;
	margin: auto;
	padding: 60px 20px;
}

.top-content h2 {
	font-size: 32px;
	font-weight: 700;
}

.line {
	width: 50px;
	height: 3px;
	background: #d4a93d;
	margin: 15px auto;
}

.top-content p {
	color: #777;
	line-height: 1.7;
}

/* 🔥 FULL WIDTH GRID */
.grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
	margin-bottom: 30px;
}

/* remove gaps */
.item {
	position: relative;
	height: 400px;
}

/* image */
.item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* overlay */
.overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;

	opacity: 0;
	transition: 0.3s;
}

.item:hover .overlay {
	opacity: 1;
}
.overlay h3 {
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
}
/* button */
.overlay a {
	margin-top: 10px;
	border: 1px solid #fff;
	padding: 8px 18px;
	color: #fff;
	text-decoration: none;
}

/* responsive */
@media (max-width: 992px) {
	.grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.grid {
		grid-template-columns: 1fr;
	}
}

/* Get Free estiate */
.estimate {
	position: relative;
	height: 100vh;
	background: url("https://avatars.mds.yandex.net/i?id=a7697f6bac74f8d89e6ece755cc1021ceb3e4701-6637734-images-thumbs&n=13")
		no-repeat center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* dark overlay */
.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
}
.overlays {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
}

/* content */
.content {
	position: relative;
	text-align: center;
	color: #fff;
}

.content h2 {
	font-size: 34px;
	font-weight: 700;
}

.line {
	width: 50px;
	height: 3px;
	background: #d4a93d;
	margin: 15px auto;
}

.content p {
	font-size: 14px;
	margin-bottom: 40px;
}

/* form box */
.form-box {
	background: rgba(0, 0, 0, 0.6);
	padding: 40px;
	width: 1200px;
	max-width: 100%;
}

/* form */
form {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: center;
}

form select,
form input {
	padding: 14px;
	border: none;
	width: 300px;
	outline: none;
}

/* button */
form button {
	background: #5fa463;
	color: #fff;
	border: none;
	padding: 14px 30px;
	cursor: pointer;
	font-weight: 600;
}

/* 🔥 responsive */
@media (max-width: 768px) {
	.content h2 {
		font-size: 22px;
	}
	.form-box {
		background: rgba(0, 0, 0, 0.6);
		padding: 40px;
		width: 302px;
		max-width: 100%;
	}
	.form-box {
		padding: 20px;
	}

	form {
		flex-direction: column;
	}

	form select,
	form input,
	form button {
		width: 100%;
	}
}

/* All service section css */
.circle-services {
	padding: 80px 20px;
	background: #f9f9f9;
	text-align: center;
}

/* heading */
.top {
	max-width: 800px;
	margin: auto;
}

.top h2 {
	font-size: 32px;
	font-weight: 700;
	color: #333;
}

.line {
	width: 50px;
	height: 3px;
	background: #5fa463;
	margin: 15px auto;
}

.top p {
	color: #777;
	line-height: 1.7;
}

/* grid */
.circle-grid {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

/* item */
.circle-item {
	text-align: center;
}

/* circle image */
.circle-img {
	width: 140px;
	height: 140px;
	margin: auto;
	border-radius: 50%;
	overflow: hidden;
	border: 5px solid #5fa463;
}

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

/* text */
.circle-item h3 {
	margin-top: 15px;
	font-size: 18px;
	color: #333;
}

.circle-item p {
	font-size: 14px;
	color: #777;
	margin-top: 8px;
}

/* hover */
.circle-item:hover .circle-img {
	transform: scale(1.1);
	transition: 0.3s;
}

/* responsive */
@media (max-width: 992px) {
	.circle-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.circle-grid {
		grid-template-columns: 1fr;
	}

	.top h2 {
		font-size: 22px;
	}
}

/* Testimonial section */
.testimonial {
	position: relative;
	padding: 100px 20px;
	background: #5fa463;
	text-align: center;
	overflow: hidden;
}

/* pattern */
.testimonial::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("https://www.transparenttextures.com/patterns/hexellence.png");
	opacity: 0.1;
}

/* overlay content */
.contents {
	position: relative;
	color: #fff;
	max-width: 900px;
	margin: auto;
}

.contents h2 {
	font-size: 36px;
}

.line {
	width: 50px;
	height: 3px;
	background: #d4a93d;
	margin: 15px auto 40px;
}

/* slider */
.slider {
	position: relative;
}

/* slide */
.slide {
	display: none;
}

.slide.active {
	display: block;
}

/* quote */
.quote {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 30px;
	text-transform: capitalize;
}

/* client */
.client img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 10px;
}

.client h4 {
	font-weight: 500;
	font-size: 14px;
}

/* arrows */
.prev,
.next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	color: #333;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
}

.prev {
	left: -70px;
}

.next {
	right: -70px;
}

/* responsive */
@media (max-width: 768px) {
	.contents h2 {
		font-size: 24px;
	}

	.quote {
		font-size: 14px;
	}

	.prev,
	.next {
		display: none;
	}
}

/* Contact Us Form Section css */

.contact-section {
	padding: 70px 20px;
	background: #fff;
}

.form-wrapper {
	max-width: 1100px;
	margin: auto;
	background: #e9e2e29a;
	padding: 20px;
}

/* 2 column layout */
.form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.form-group {
	width: calc(50% - 15px);
	position: relative;
}

/* full width textarea */
.form-group.full {
	width: 100%;
	margin-top: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	background: white;
	border: none;
	color: #ccc;
	font-size: 14px;
	padding: 20px 20px 20px 55px;
	outline: none;
}

/* heights */
.form-group input,
.form-group select {
	height: 65px;
}

.form-group textarea {
	height: 220px;
	resize: none;
	padding-top: 20px;
}

/* iconss */
.form-group .icons {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #5fa463;
	font-size: 16px;
}

/* textarea icons fix */
.form-group.full .icons {
	top: 20px;
	transform: none;
}

/* placeholder */
input::placeholder,
textarea::placeholder {
	color: #888;
}

/* button */
.btn-box {
	text-align: center;
	margin-top: 40px;
}

.btn-box button {
	background: #5fa463;
	border: none;
	padding: 18px 55px;
	font-size: 13px;
	letter-spacing: 2px;
	font-weight: bold;
	cursor: pointer;
	color: white;
}

.btn-box button:hover {
	background: #5fa463;
}

/* mobile */
@media (max-width: 768px) {
	.form-group {
		width: 100%;
	}
}

/* SECTION BACKGROUND (BLACK SIDES LIKE IMAGE) */
.map-section {
	background: #d3d2deaa;
	padding: 0 60px;
}

/* MAP WRAPPER */
.map-wrapper {
	width: 100%;
	height: 420px;
	overflow: hidden;
	padding: 20px;
}

/* IFRAME */
.map-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
	.map-section {
		padding: 0;
	}

	.map-wrapper {
		height: 350px;
	}
}

/* Mobile */
@media (max-width: 600px) {
	.map-wrapper {
		height: 280px;
	}
}

/* Fixed Buttons Css */
.fixed-contact {
	position: fixed;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
}

/* square buttons */
.fixed-contact a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: #25d366;
	/* green */
	color: #fff;
	margin: 8px 0;
	font-size: 20px;
	text-decoration: none;
	border-radius: 8px;
	transition: 0.3s;
}

/* hover */
.fixed-contact a:hover {
	background: #1ebe5d;
}

/* optional different color for call */
.fixed-contact .call {
	background: #2ecc71;
}

.fixed-contact .call:hover {
	background: #27ae60;
}

/* mobile adjust */
@media (max-width: 768px) {
	.fixed-contact {
		right: 10px;
	}

	.fixed-contact a {
		width: 40px;
		height: 40px;
	}
}
