.site-logo {
	width: 150px;
	height: 52px;
}

.site-navigation a {
	color: #000;
}

.site-navigation li.current-menu-item a {
	border-bottom: 1px solid #000;
}

.type-page .page-header h1 {
	display: none;
}

.home-service-box .elementor-image-box-title i {
	font-size: 18px;
	position: relative;
	top: -6px;
	left: 10px;
}

.home-service-box .elementor-image-box-title {
	padding-bottom: 20px;
}

.home-service-box .service-content {
	border-bottom: 1px solid #D7D7D7;
	padding-bottom: 12px;
}

.home-service-box .bot-cont {
	padding-top: 20px;
}

.home-service-box .bot-cont span {
	font-weight: 500;
}

.home-service-box .service-content {
	height: 200px;
}

.before-line-title h2 {
	position: relative;
	display: inline-block;
	padding-left: 60px;
}

.before-line-title h2::before {
	content: '';
	position: absolute;
	left: -65%;
	top: 50%;
	width: 376px;
	height: 1px;
	background-color: #000;
	transform: translateY(3%);
	right: 95%;
}

.about-white-section .about-inner {
	font-size: 16px;
}

.hero-section {
	position: relative;
	height: 420px;
	overflow: hidden;
	display: flex;
	align-items: center;
	margin: 0 100px 0 100px;
	top: -75px;
}

.hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.content-overlay {
	position: absolute;
	background: rgba(96, 85, 72, 0.85);
	color: white;
	padding: 60px 80px;
	margin-left: auto;
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: calc(420px - 120px);
	top: 121px;
	bottom: 0;
	right: 0;
}

h1 {
	font-size: 48px;
	font-weight: 300;
	letter-spacing: 1px;
}

.features {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
}

.cta-button {
	display: inline-block;
	padding: 12px 40px;
	border: 2px solid white;
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	background: transparent;
	cursor: pointer;
	width: fit-content;
}

.cta-button:hover {
	background: white;
	color: #605548;
	transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-section {
		height: 500px;
	}

	.content-overlay {
		width: 100%;
		padding: 40px 30px;
		background: rgba(96, 85, 72, 0.9);
	}

	h1 {
		font-size: 36px;
	}

	.features {
		font-size: 18px;
	}

	body.home .e-con-inner {
		display: none;
	}
}


.about-white-section .about-inner h6 {
	color: #000 !important;
	font-weight: 600;
}

.about-white-section .about-inner p {
	color: #5D6939 !important;
	font-weight: 400;

}

.about-white-section .about-inner h6:nth-of-type(2),
.about-white-section .about-inner h6:last-of-type {
	padding: 20px 0;
}

#space-title h2::before {
	left: -56%;
	top: 50%;
	width: 140px;

}

.cf7-form-wrapper {

	margin: 0 auto;
	padding: 20px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Grid Layout for Form Fields */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.form-row.full-width {
	grid-template-columns: 1fr;
}

/* Label Styles */
.cf7-form-wrapper label {
	display: block;
	margin-bottom: 8px;
	color: #666;
	font-size: 14px;
	font-weight: 400;
}

/* Input Field Styles */
.cf7-form-wrapper input[type="text"],
.cf7-form-wrapper input[type="tel"],
.cf7-form-wrapper input[type="email"],
.cf7-form-wrapper input[type="date"],
.cf7-form-wrapper textarea {
	width: 100%;
	padding: 10px 12px;
	border-bottom: 1px solid #ddd !important;
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
	transition: border-color 0.3s;
	box-sizing: border-box;
	border: none;
}

.cf7-form-wrapper textarea {
	min-height: 100px;
	resize: vertical;
}

.cf7-form-wrapper input:focus,
.cf7-form-wrapper textarea:focus {
	outline: none;
	border-color: #999;
}

/* Button Group Styles */
.button-group {
	display: flex;
	gap: 12px;
	margin-top: 24px;
	justify-content: flex-end;
}

/* Button Styles */
.button-group button,
.button-group input[type="submit"] {
	padding: 10px 24px;
	border: 1px solid #ddd;
	background-color: #fff;
	color: #333;
	font-size: 14px;
	font-family: inherit;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s;
	white-space: nowrap;
}

/* Send Button Style */
.button-group input[type="submit"] {
	background-color: #e8f5e9;
	border-color: #c8e6c9;
	color: #2e7d32;
}

.button-group button:hover {
	background-color: #f5f5f5;
	border-color: #999;
}

.button-group input[type="submit"]:hover {
	background-color: #c8e6c9;
	border-color: #a5d6a7;
}

/* Responsive Design */
@media (max-width: 600px) {
	.form-row {
		grid-template-columns: 1fr;
	}

	.button-group {
		flex-direction: column;
		width: 100%;
	}

	.button-group button,
	.button-group input[type="submit"] {
		width: 100%;
	}
}

/* Contact Form 7 Specific Overrides */
.wpcf7-form {
	margin: 0;
	padding: 0;
}

.wpcf7-form p {
	margin: 0;
}

.wpcf7-spinner {
	display: none;
}

.services-box-row img {
	width: 100%;
}

.button-group button {
	margin: 0px 15px;
}

.callback-btn,
.whatsapp-btn {
	border-color: #000 !important;
	font-weight: 600;
}

.wpcf7-form-control.wpcf7-submit.has-spinner {
	background-color: #5D69391A;
	border-color: #5D6939;
	padding: 10px 50px;
	font-size: 16px;
	border-radius: 0;
}

@media (max-width: 600px) {
	.button-group button {
		margin: 15px 0;
		border-radius: 0;
	}

	.site-header {
		padding-inline-end: 15px;
		padding-inline-start: 15px;
	}
}

@media screen and (max-width: 480px) {
	h1 {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.features {
		font-size: 16px;
		line-height: 1.6;
	}

	.cta-button {
		padding: 10px 30px;
		font-size: 14px;
	}

	.hero-section {
		position: static;
		margin: 0 30px 0 30px;
		top: -0;
		margin: 0;
	}

	.content-overlay {
		position: relative;
		top: 109px;

	}

	.site-header {
		padding-inline-end: 0;
		padding-inline-start: 0px;
	}

	.site-logo {
		width: 100px;
		height: 35px;
	}

	#site-header {
		padding: 15px 0;
	}

	.site-navigation-dropdown ul.menu li a {
		box-shadow: none;
		text-align: center;
	}

	.site-navigation-dropdown ul.menu li.current-menu-item a {
		background: #fff;
		color: #292525;
		border-bottom: 1px solid #000;

	}

	.site-navigation-dropdown ul.menu li {
		padding: 0 130px;
	}

	.before-line-title h2 {
		padding-left: 0 !important;
	}

	#space-title h2::before {
		left: -125% !important;
		top: 50% !important;
		width: 72px !important;
	}

	.overlay1img.elementor-widget.elementor-widget-image img, .overlay2img img {
		width: 115px !important;
	}

	.before-line-title h2::before {
		left: -7% !important;
		width: 67px;
	}

	.before-line-title h2 {
		padding-left: 65px !important;
		font-size: 14px !important;
	}
}
#grad-text{
  background: linear-gradient(90deg, #5D6939 0%, #FFFFFF 94.57%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
}