/* ==========================================================================
   CAST Theme - Main CSS
   Premium, Modern, and Dynamic Corporate Style
   ========================================================================== */

/* Variables are dynamically loaded from functions.php inline styles.
   Fallbacks are defined here in case variables fail to load. */
:root {
	--primary-color: #0f4a36;
	--secondary-color: #0b3b2b;
	--accent-color: #bf9c60;
	--accent-dark: #a17f46;
	--text-color: #333333;
	--text-light: #666666;
	--light-bg: #f7f9fa;
	--white: #ffffff;
	--dark-bg: #0d1e1a;
	--border-color: #e5e9ec;
	--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Base Styles */
* {
	box-sizing: border-box;
}

body {
	font-family: 'Cairo', Tajawal, sans-serif;
	color: var(--text-color);
	background-color: var(--light-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.3;
	color: var(--secondary-color);
}

p {
	line-height: 1.8;
	color: var(--text-light);
	font-size: 0.95rem;
}

/* Sections General */
section {
	padding: 25px 0;
	position: relative;
	overflow: hidden;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 15px;
	position: relative;
	padding-bottom: 15px;
	display: inline-block;
	color: var(--primary-color);
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 60px;
	height: 3px;
	background-color: var(--accent-color);
	border-radius: 2px;
}

.section-title-page::after {
	right: 0;
	left: 0;
	margin: auto;
}

.section-title-alt {
	font-size: 2.2rem;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.section-desc {
	font-size: 1.1rem;
	color: var(--text-light);
	margin-bottom: 50px;
	max-width: 700px;
}

.text-center {
	text-align: center !important;
}


/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 30px;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 4px;
	transition: var(--transition);
	cursor: pointer;
	border: 2px solid transparent;
	gap: 10px;
}

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

.btn-primary:hover {
	background-color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.btn-outline {
	background-color: transparent;
	border-color: var(--white);
	color: var(--white);
}

.btn-outline:hover {
	background-color: var(--white);
	color: var(--primary-color);
	transform: translateY(-2px);
}

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

.btn-accent:hover {
	background-color: var(--accent-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.btn-accent-dark {
	background-color: var(--accent-dark);
	color: var(--white);
}

.btn-accent-dark:hover {
	background-color: var(--secondary-color);
	transform: translateY(-2px);
}

.btn-light-accent {
	background-color: var(--white);
	color: var(--accent-dark);
}

.btn-light-accent:hover {
	background-color: var(--accent-color);
	color: var(--white);
	transform: translateY(-2px);
}

/* ==========================================
   HEADER
   ========================================== */
.top-bar {
	background-color: var(--secondary-color);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.85rem;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-left {
	display: flex;
	gap: 20px;
}

.top-bar-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.top-bar-item i {
	color: var(--accent-color);
}

.top-bar-right {
	display: flex;
	align-items: center;
	gap: 25px;
}

.top-bar-socials {
	display: flex;
	gap: 15px;
}

.top-bar-socials a {
	color: rgba(255, 255, 255, 0.8);
	transition: var(--transition);
}

.top-bar-socials a:hover {
	color: var(--accent-color);
}

/* Language Switcher Capsule Slider */
.lang-slider-toggle {
	position: relative;
	display: flex;
	width: 76px;
	height: 28px;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 2px;
	align-items: center;
	user-select: none;
	direction: ltr !important;
	/* Ensure capsule switcher layout flows left-to-right (AR on left, EN on right or vice versa consistently) */
}

.lang-slider-toggle .slider-pill {
	position: absolute;
	top: 2px;
	bottom: 2px;
	width: 34px;
	background: var(--accent-color);
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	z-index: 1;
}

/* If AR is active (left side when forced LTR) */
.lang-slider-toggle.ar .slider-pill {
	left: 2px;
}

/* If EN is active (right side when forced LTR) */
.lang-slider-toggle.en .slider-pill {
	left: 38px;
	/* 76px width - 34px pill width - 4px padding = 38px */
}

.lang-slider-toggle .lang-option {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 100%;
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	z-index: 2;
	transition: color 0.3s ease;
}

.lang-slider-toggle .lang-option.active {
	color: var(--secondary-color) !important;
}

.lang-slider-toggle .lang-option:hover:not(.active) {
	color: var(--white);
}

/* Main Navbar */
.site-header {
	background-color: var(--white);
	box-shadow: var(--shadow-sm);
	position: sticky;
	top: 0;
	z-index: 999951;
	transition: var(--transition);
	height: 70px;
	display: flex;
	align-items: center;
}

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

.site-branding img {
	max-height: 60px;
	width: auto;
}

.main-navigation ul {
	display: flex;
	gap: 25px;
	justify-content: center;
	align-items: center;
}

.main-navigation li a {
	color: var(--secondary-color);
	font-weight: 600;
	font-size: 0.95rem;
	position: relative;
	padding: 10px 0;
}

.main-navigation li {
	position: relative;
}

.main-navigation li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent-color);
	transition: var(--transition);
}

.main-navigation li a:hover::after,
.main-navigation li.current-menu-item>a::after {
	width: 100%;
}

/* Desktop Dropdown (Sub-menu) */
.main-navigation li.menu-item-has-children>a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.main-navigation li.menu-item-has-children>a::before {
	content: "\f107";
	/* FontAwesome caret-down */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 0.75rem;
	margin-right: 5px;
	/* Space between text and icon */
	transition: transform 0.3s ease;
}

.main-navigation ul.sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	/* Align right for RTL */
	width: 220px;
	background-color: var(--white);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	padding: 10px 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--transition);
	border: 1px solid var(--border-color);
	z-index: 1000;
}

.main-navigation .sub-menu li {
	position: relative;
	display: flex;
	justify-content: start;
	align-items: start;
	width: 100%;
}

[dir="ltr"] .main-navigation ul.sub-menu {
	right: auto;
	left: 0;
}

.main-navigation li:hover>ul.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation ul.sub-menu li a {
	padding: 10px 20px;
	display: block;
	width: 100%;
	color: var(--text-color) !important;
	font-size: 0.9rem;
	border-bottom: 1px solid var(--border-color);
}

.main-navigation ul.sub-menu li:last-child>a {
	border-bottom: none;
}

.main-navigation ul.sub-menu li a::after {
	display: none;
	/* Hide underline on dropdown links */
}

.main-navigation ul.sub-menu li a:hover {
	background-color: var(--light-bg);
	color: var(--primary-color);
	padding-right: 25px;
	/* Slight indent on hover for RTL */
}

[dir="ltr"] .main-navigation ul.sub-menu li a:hover {
	padding-right: 20px;
	padding-left: 25px;
}

/* Multi-level Dropdowns (Sub-sub-menu) */
.main-navigation ul.sub-menu ul.sub-menu {
	top: 0;
	right: 100%;
	transform: translateX(-10px);
}

[dir="ltr"] .main-navigation ul.sub-menu ul.sub-menu {
	right: auto;
	left: 100%;
	transform: translateX(10px);
}

.main-navigation ul.sub-menu li:hover>ul.sub-menu {
	transform: translateX(0);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

.search-toggle-btn,
.menu-toggle-btn {
	background: none;
	border: none;
	font-size: 1.2rem;
	color: var(--secondary-color);
	cursor: pointer;
	padding: 8px;
	transition: var(--transition);
}

.search-toggle-btn:hover {
	color: var(--accent-color);
}

.menu-toggle-btn {
	display: none;
}

/* Search Dropdown Overlay */
.search-dropdown-overlay {
	position: absolute;
	top: 100%;
	right: 0;
	width: 100%;
	background-color: var(--white);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
	padding: 15px 0;
	display: none;
	border-top: 1px solid var(--border-color);
	z-index: 99;
}

.search-form-header {
	display: flex;
	width: 100%;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	overflow: hidden;
}

.search-form-header .search-field {
	flex-grow: 1;
	border: none;
	padding: 12px 20px;
	font-family: inherit;
	font-size: 0.95rem;
	outline: none;
}

.search-form-header .search-submit {
	background-color: var(--primary-color);
	border: none;
	color: var(--white);
	padding: 0 25px;
	cursor: pointer;
	transition: var(--transition);
}

.search-form-header .search-submit:hover {
	background-color: var(--accent-color);
}

/* Mobile Nav Styles */
.mobile-navigation-menu {
	position: fixed;
	top: 0;
	bottom: 0;
	right: -300px;
	width: 300px;
	background-color: var(--white);
	box-shadow: var(--shadow-lg);
	z-index: 9999;
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	transition: right 0.4s ease-in-out;
}

.mobile-navigation-menu.open {
	right: 0;
}

.mobile-menu-close {
	position: absolute;
	top: 20px;
	left: 20px;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--secondary-color);
	cursor: pointer;
}

.mobile-logo img {
	max-height: 75px;
	width: auto;
	margin: 0 auto;
}

.mobile-navigation-menu ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.mobile-navigation-menu ul li a {
	display: block;
	padding: 10px 0;
	font-weight: 600;
	color: var(--secondary-color);
	border-bottom: 1px solid var(--border-color);
}

/* Mobile Dropdown (Sub-menu) */
.mobile-navigation-menu li.menu-item-has-children>a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-navigation-menu li.menu-item-has-children>a::after {
	content: "\f107";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	transition: transform 0.3s ease;
	font-size: 0.8rem;
}

.mobile-navigation-menu li.menu-item-has-children.active-toggle>a::after {
	transform: rotate(180deg);
}

.mobile-navigation-menu ul.sub-menu {
	display: none;
	padding-right: 20px;
	/* Indent for RTL */
	background: rgba(0, 0, 0, 0.02);
	border-radius: 4px;
	margin-top: 10px;
}

[dir="ltr"] .mobile-navigation-menu ul.sub-menu {
	padding-right: 0;
	padding-left: 20px;
}

.mobile-navigation-menu ul.sub-menu li a {
	border-bottom: none;
	padding: 8px 10px;
	font-size: 0.9rem;
	color: var(--text-light);
}

.mobile-navigation-menu ul.sub-menu li a:hover {
	color: var(--primary-color);
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	display: none;
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-slider-section {
	padding: 0;
	height: 650px;
	position: relative;
}

.hero-slider-wrapper {
	height: 100%;
	position: relative;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
	display: flex;
	align-items: center;
	z-index: 1;
}

.hero-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.hero-slide-container {
	display: flex;
	align-items: center;
}

.hero-content-box {
	max-width: 750px;
	color: var(--white);
	transform: translateY(20px);
	opacity: 0;
	transition: transform 0.8s ease, opacity 0.8s ease;
	transition-delay: 0.3s;
}

.hero-slide.active .hero-content-box {
	transform: translateY(0);
	opacity: 1;
}

.hero-title {
	font-size: 3.2rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 20px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 35px;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 15px;
}

/* Slider Controls */
.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--white);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	transition: var(--transition);
}

.slider-arrow:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.prev-arrow {
	right: 30px;
}

.next-arrow {
	left: 30px;
}

.slider-dots {
	position: absolute;
	bottom: 30px;
	right: 50%;
	transform: translateX(50%);
	display: flex;
	gap: 10px;
	z-index: 5;
}

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

.slider-dot.active {
	background-color: var(--accent-color);
	width: 25px;
	border-radius: 6px;
}

/* ==========================================
   ABOUT US
   ========================================== */
.about-section {
	background-color: var(--white);
}

.about-row {
	display: flex;
	align-items: center;
	gap: 50px;
}

.about-text-column {
	flex: 1;
}

.about-content p {
	font-size: 1.05rem;
	margin-bottom: 25px;
	text-align: justify;
}

/* About Features List */
.features {
	margin: 0 0 35px 0;
}

.features ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 30px;
}

.features li {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--secondary-color);
}

.features li::before {
	content: "\f00c";
	/* FontAwesome check */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	background-color: var(--white);
	color: var(--secondary-color);
	border-radius: 50%;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
	.features ul {
		grid-template-columns: 1fr;
		gap: 15px;
	}
}

.about-image-column {
	flex: 1;
}

.about-image-wrapper {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.about-image-wrapper img {
	width: 100%;
	display: block;
	transition: var(--transition);
}

.about-image-wrapper:hover img {
	transform: scale(1.05);
}

.manager_words h2 {
	position: relative;
	font-size: 30px !important;
	font-weight: 900;
	margin-bottom: 30px;
}

.manager_words h2::before {
	content: '';
	position: absolute;
	bottom: -10px;
	right: 0px;
	width: 100px;
	height: 3px;
	background-color: var(--accent-color);
}

.manager_words .wp-block-columns:last-child {
	background: #0f4735;
	padding: 35px;
	border-radius: 25px;
	color: white;
}

.manager_words .wp-block-column .wp-block-column img {
	width: auto;
	height: 400px;
	border-radius: 25px;
	overflow: hidden;
}

.manager_words .wp-block-column .wp-block-column p {
	color: #fff;
	margin-bottom: 15px;
}

/* ==========================================
   VALUES BANNER
   ========================================== */
.values-banner-section {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 50px 0;
	position: relative;
}

.values-banner-section::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 20px 20px;
}

.values-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	position: relative;
	z-index: 2;
}

.values-text-col {
	flex: 2;
}

.values-slogan {
	font-size: 1.3rem;
	color: var(--white);
	font-weight: 700;
	line-height: 1.8;
}

.values-logo-col {
	flex: 1;
	text-align: left;
}

.values-logo-col img {
	filter: invert(1);
	height: 75px;
	margin-inline-start: auto;
}

.glowing-logo {
	max-height: 70px;
	filter: drop-shadow(0 0 8px rgba(191, 156, 96, 0.6));
}

.placeholder-glowing-logo {
	display: inline-block;
	font-size: 2rem;
	font-weight: 900;
	color: var(--accent-color);
	text-shadow: 0 0 10px rgba(191, 156, 96, 0.8);
	letter-spacing: 2px;
}

.main-pages article {
	padding: 10px 0;
}

/* ==========================================
   FIELDS OF WORK
   ========================================== */
.fields-section {
	background-color: var(--light-bg);
}

.fields-row {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.fields-grid-column {
	flex: 2;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

.service-card {
	background-color: var(--white);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

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

.service-img {
	height: 180px;
	overflow: hidden;
}

.service-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.service-card:hover .service-img img {
	transform: scale(1.08);
}

.service-info {
	padding: 20px;
}

.service-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.service-text {
	font-size: 0.88rem;
	color: var(--text-light);
	margin-bottom: 15px;
	line-height: 1.6;
}

.service-link {
	color: var(--accent-color);
	font-weight: 700;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.service-link:hover {
	color: var(--primary-color);
}

.fields-image-column {
	flex: 1;
	position: sticky;
	top: 110px;
}

.fields-side-image-wrapper {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.side-building-img {
	width: 100%;
	display: block;
}

/* ==========================================
   REPORTS BANNER
   ========================================== */
.reports-banner-section {
	background-color: var(--accent-color);
	color: var(--white);
	padding: 40px 0;
}

.reports-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.reports-title {
	font-size: 1.45rem;
	max-width: 70%;
	line-height: 1.5;
	color: var(--white);
	font-weight: 700;
}

/* ==========================================
   PARTNERS
   ========================================== */
.partners-section {
	background-color: var(--white);
}

.partners-row {
	display: flex;
	align-items: center;
	gap: 50px;
}

.partners-image-col {
	flex: 1;
}

.crane-img {
	width: 100%;
	border-radius: 8px;
}

.partners-content-col {
	flex: 1.5;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.partner-logo-box {
	height: 90px;
	background-color: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	transition: var(--transition);
}

.partner-logo-box:hover {
	background-color: var(--white);
	box-shadow: var(--shadow-sm);
	border-color: var(--accent-color);
}

.partner-logo-box img {
	max-height: 50px;
	max-width: 100%;
	object-fit: contain;
}

.mock-logo {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-light);
	text-align: center;
}

/* ==========================================
   PROJECTS
   ========================================== */
.projects-section {
	background-color: var(--light-bg);
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.project-card {
	background-color: var(--white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

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

.project-card-image {
	position: relative;
	height: 240px;
	overflow: hidden;
}

.project-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.project-card:hover .project-card-image img {
	transform: scale(1.05);
}

.project-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(15, 74, 54, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
}

.project-card:hover .project-overlay {
	opacity: 1;
}

.project-view-btn {
	color: var(--white);
	border: 1px solid var(--white);
	padding: 10px 20px;
	font-size: 0.88rem;
	font-weight: 600;
	border-radius: 4px;
	transition: var(--transition);
}

.project-view-btn:hover {
	background-color: var(--white);
	color: var(--primary-color);
}

.project-card-info {
	padding: 25px;
}

.project-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.project-text {
	font-size: 0.9rem;
	line-height: 1.6;
}

.projects-more-btn-wrapper {
	text-align: center;
	margin-top: 50px;
}

/* ==========================================
   CAREERS
   ========================================== */
.careers-section {
	background-color: var(--white);
}

.careers-row {
	display: flex;
	align-items: center;
	gap: 50px;
}

.careers-content-col {
	flex: 1.2;
}

.careers-description {
	font-size: 1.05rem;
	margin-bottom: 30px;
}

.careers-image-col {
	flex: 1;
}

.careers-image-wrapper {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.careers-image-wrapper img {
	width: 100%;
	display: block;
}

/* ==========================================
   CLIENTS
   ========================================== */
.clients-section {
	background-color: var(--white);
	border-top: 1px solid var(--border-color);
}

.clients-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.client-logo-box {
	width: 170px;
	height: 80px;
	background-color: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	transition: var(--transition);
}

.client-logo-box img {
	max-height: 75px;
	max-width: 100%;
	filter: grayscale(100%);
	opacity: 0.75;
	transition: var(--transition);
}

.client-logo-box:hover {
	border-color: var(--accent-color);
	background-color: var(--white);
}

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

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter-section {
	background-color: var(--light-bg);
	padding: 60px 0;
}

.newsletter-box {
	background-color: var(--primary-color);
	border-radius: 8px;
	padding: 50px 40px;
	color: var(--white);
	text-align: center;
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.newsletter-box::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.02);
	top: -150px;
	right: -100px;
}

.newsletter-title {
	color: var(--white);
	font-size: 1.8rem;
	margin-bottom: 10px;
}

.newsletter-desc {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 30px;
}

.newsletter-form {
	max-width: 750px;
	margin: 0 auto;
}

.form-row {
	display: flex;
	gap: 15px;
}

.newsletter-form input {
	flex: 1;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	padding: 12px 20px;
	color: var(--white);
	font-family: inherit;
	outline: none;
	transition: var(--transition);
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
	background-color: var(--white);
	color: var(--text-color);
	border-color: var(--accent-color);
}

.form-feedback-message {
	margin-top: 15px;
	font-size: 0.95rem;
	font-weight: 600;
}

.form-feedback-message.success {
	color: #4cd137;
}

.form-feedback-message.error {
	color: #ff7675;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
	background-color: var(--dark-bg);
	color: rgba(255, 255, 255, 0.7);
	padding: 70px 0 0;
	border-top: 4px solid var(--accent-color);
}

.footer-widgets-container {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1.2fr 1.2fr;
	gap: 40px;
	margin-bottom: 50px;
}

.footer-widget-col h3.footer-widget-title {
	color: var(--white);
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer-widget-col h3.footer-widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 35px;
	height: 2px;
	background-color: var(--accent-color);
}

.logo-desc-col .footer-logo img {
	filter: brightness(0) invert(1);
	margin-bottom: 20px;
}

.footer-description {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.88rem;
	margin-bottom: 25px;
	line-height: 1.7;
}

.footer-socials {
	display: flex;
	gap: 12px;
}

.footer-socials a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.8);
	transition: var(--transition);
}

.footer-socials a:hover {
	background-color: var(--accent-color);
	color: var(--white);
	transform: translateY(-2px);
}

/* Quick Links Col */
.quick-links-col ul li {
	margin-bottom: 12px;
}

.quick-links-col ul li a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.88rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.quick-links-col ul li a::before {
	content: '\f104';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 0.8rem;
	color: var(--accent-color);
	transition: var(--transition);
}

.quick-links-col ul li a:hover {
	color: var(--white);
	padding-right: 5px;
}

/* Contact Info Col */
.footer-contact-details li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 15px;
	font-size: 0.88rem;
}

.footer-contact-details li i {
	color: var(--accent-color);
	margin-top: 5px;
	font-size: 0.95rem;
}

.footer-contact-details li a {
	color: inherit;
}

.footer-contact-details li a:hover {
	color: var(--white);
}

/* Map Col */
.footer-map-wrapper {
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: var(--shadow-sm);
}

/* Bottom Bar */
.footer-bottom-bar {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.85rem;
}

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

.copyright-text {
	color: rgba(255, 255, 255, 0.5);
}

.copyright-text a {
	color: #a17f46;
}

#footer-bottom-links-menu {
	display: flex;
	align-items: center;
	gap: 20px;
}

#footer-bottom-links-menu li a {
	color: rgba(255, 255, 255, 0.5);
}

#footer-bottom-links-menu li a:hover {
	color: var(--white);
}

#footer-bottom-links-menu .separator {
	margin: 0 10px;
	color: rgba(255, 255, 255, 0.2);
}

/* ==========================================
   SECTORS SLIDER
   ========================================== */
.sectors-slider-container {
	padding-bottom: 40px;
}

.sector-slide {
	padding: 0 10px;
	/* spacing between slides */
}

.sector-card {
	background: var(--white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.sector-img {
	height: 180px;
	overflow: hidden;
}

.sector-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.sector-card:hover .sector-img img {
	transform: scale(1.05);
}

.sector-info {
	padding: 20px;
	flex-grow: 1;
}

.sector-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--secondary-color);
}

/* Slick Slider Custom Dots */
.sectors-slider .slick-dots {
	bottom: -40px;
}

.sectors-slider .slick-dots li button:before {
	font-size: 12px;
	color: var(--accent-color);
}

.sectors-slider .slick-dots li.slick-active button:before {
	color: var(--secondary-color);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

@media (max-width: 1024px) {
	.footer-widgets-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.about-row,
	.partners-row,
	.careers-row {
		gap: 30px;
	}

	.values-slogan {
		font-size: 1.5rem;
	}
}

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

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

	.main-navigation {
		display: none;
	}

	.menu-toggle-btn {
		display: block;
	}

	.top-bar-left {
		gap: 12px;
	}

	.hide-mobile {
		display: none !important;
	}

	/* Hero */
	.hero-slider-section {
		height: 500px;
	}

	.hero-title {
		font-size: 2.2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
		margin-bottom: 25px;
	}

	.slider-arrow {
		width: 40px;
		height: 40px;
	}

	.prev-arrow {
		right: 10px;
	}

	.next-arrow {
		left: 10px;
	}

	/* Grid layout changes */
	.about-row,
	.partners-row,
	.careers-row,
	.fields-row,
	.values-row {
		flex-direction: column;
	}

	.fields-image-column {
		display: none;
		/* Hide sticky overlapping img on mobile */
	}

	.partners-content-col {
		order: 1;
	}

	.partners-image-col {
		order: 2;
		max-width: 400px;
		margin: 0 auto;
	}

	.values-logo-col {
		text-align: center;
		margin-top: 15px;
	}

	.values-slogan {
		text-align: center;
		font-size: 1.3rem;
	}

	.reports-box {
		flex-direction: column;
		text-align: center;
	}

	.form-row {
		flex-direction: column;
		gap: 10px;
	}

	.newsletter-box {
		padding: 30px 20px;
	}

	.footer-widgets-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-bottom-container {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
}

/* ==========================================
   SERVICES SECTION (GRID)
   ========================================== */
.services-section {
	padding: 80px 0;
	background-color: var(--light-bg, #f9f9f9);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.service-box {
	position: relative;
	height: 250px;
	overflow: hidden;
	border-radius: 4px;
	background-color: var(--dark-bg);
}

.service-box-link {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
}

.service-box-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.service-box-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.service-box:hover .service-box-bg img {
	transform: scale(1.05);
}

.service-box-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.service-box-title {
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 2;
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	transition: bottom 0.3s ease;
}

.service-box-icon {
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	color: var(--primary-color, #0f4a36);
	font-size: 1.5rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease;
}

.service-box:hover .service-box-icon {
	background-color: #fff;
	color: var(--accent-color, #bf9c60);
}

/* Specific for "View More" box */
.service-box-more .service-box-bg {
	background-color: #333;
}

.service-box-more .service-box-pattern {
	width: 100%;
	height: 100%;
	background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 0l20 20L0 40zm40 0L20 20l20 20z" fill="rgba(255,255,255,0.05)" fill-rule="evenodd"/></svg>');
	opacity: 0.5;
}

.service-box-more .more-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.service-box-more .more-icon {
	width: 60px;
	height: 60px;
	background-color: #fff;
	color: #b28235;
	font-size: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	transform: rotate(45deg);
	transition: transform 0.3s ease;
}

.service-box-more .more-icon i {
	transform: rotate(-45deg);
}

.service-box-more:hover .more-icon {
	transform: rotate(135deg);
}

.service-box-more .service-box-title {
	position: static;
	font-size: 1.25rem;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.projects-section {
	padding: 80px 0;
	background-color: var(--light-bg, #f9f9f9);
}

.projects-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.projects-slider {
	margin: 0 -15px;
}

.project-slide {
	padding: 0 10px;
}

.projects-more-btn-wrapper {
	text-align: center;
	margin-top: 40px;
}

@media (max-width: 991px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.projects-content{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
	.projects-content{
		grid-template-columns: repeat(1, 1fr);
	}
	.project-row{display: block;}
}

.page-header {
	min-height: 250px;
	padding-bottom: 50px;
	display: flex;
	align-items: end;
	justify-content: center;
	background-size: cover;
	background-position: bottom;
	position: relative;
	text-align: center;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 11;
	background-color: rgba(15, 74, 54, 0.85);
}

.page-header h1 {
	color: var(--white);
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0;
	color: #fff;
	position: relative;
	z-index: 999;
}

/* ==========================================
   SINGLE PROJECT PAGE
   ========================================== */
.project-single-hero {
	height: auto;
	min-height: 400px;
	position: relative;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
}

.project-single-hero::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgb(6 64 42 / 77%);
}

.project-hero-container {
	position: relative;
	z-index: 2;
}

.project-hero-title {
	color: #fff;
	font-size: 3rem;
	font-weight: 700;
	margin: 0;
}

.project-top-bar {
	background-color: #fff;
	border-bottom: 1px solid #eaeaea;
	padding: 15px 0;
}

.project-top-bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.project-breadcrumb {
	font-size: 0.95rem;
	color: #666;
}

.project-breadcrumb a {
	color: var(--primary-color, #0f4a36);
	text-decoration: none;
	font-weight: 600;
}

.project-breadcrumb .current {
	color: #999;
}

.project-share .share-btn {
	color: #666;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
}

.project-share .share-btn:hover {
	color: var(--accent-color, #bf9c60);
}

.project-content-section {
	padding: 60px 0;
	background-color: #fff;
}

.project-row {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.project-desc-col {
	flex: 1.6;
	min-width: 300px;
}

.project-details-col {
	flex: 1.3;
	min-width: 300px;
}

.project-section-title {
	font-size: 1.5rem;
	color: var(--secondary-color, #0b3b2b);
	margin-bottom: 30px;
	font-weight: 700;
	position: relative;
}

.project-section-title:after {
	content: '';
	height: 1px;
	width: 50px;
	background-color: #b38437;
	margin-bottom: 20px;
	position: absolute;
	bottom: -30px;
	right: 0;
}

.project-description-content p {
	font-size: 1.05rem;
	line-height: 1.9;
	color: #555;
	margin-bottom: 20px;
}

.project-details-box {
	background-color: transparent;
}

.project-details-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.project-details-list li {
	display: flex;
	align-items: center;
	background-color: #f5f5f5;
	margin-bottom: 10px;
	padding: 10px 20px;
}

.project-details-list .detail-icon {
	color: #b38437;
	font-size: 1.4rem;
	margin-left: 15px;
	width: 30px;
	text-align: center;
}

.project-details-list .detail-text {
	display: flex;
	gap: 5px;
	font-size: 0.9rem;
}

.project-details-list .detail-label {
	color: #b38437;
	font-weight: 700;
}

.project-details-list .detail-value {
	color: #333;
	font-weight: 600;
}

/* Gallery */
.project-gallery-section {
	padding: 0 0 80px 0;
	background-color: #fff;
	overflow: hidden;
}

.gallery-main-slider {
	margin-bottom: 20px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.gallery-main-item img {
	width: 100%;
	height: 600px;
	object-fit: cover;
	display: block;
}

.gallery-main-slider .slick-prev,
.gallery-main-slider .slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.gallery-main-slider .slick-prev:hover,
.gallery-main-slider .slick-next:hover {
	background-color: var(--primary-color, #0f4a36);
}

.gallery-main-slider .slick-next {
	left: 20px;
}

.gallery-main-slider .slick-prev {
	right: 20px;
}

.gallery-thumb-slider {
	margin: 0 -10px;
}

.gallery-thumb-item {
	padding: 0 10px;
	cursor: pointer;
}

.gallery-thumb-item img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 4px;
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

.gallery-thumb-slider .slick-current .gallery-thumb-item img,
.gallery-thumb-item:hover img {
	opacity: 1;
}

@media (max-width: 768px) {
	.project-row {
		flex-direction: column;
	}

	.gallery-main-item img {
		height: 400px;
	}
}

body:not(.home):not(.front-page) .top-bar {
	display: none !important;
}

body:not(.home):not(.front-page) .site-header {
	position: fixed;
	right: 0;
	left: 0;
	background-color: transparent;
	box-shadow: none;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Make header links white on transparent header */
body:not(.home):not(.front-page) .site-header:not(.header-scrolled) .main-navigation li a,
body:not(.home):not(.front-page) .site-header:not(.header-scrolled) .site-title a,
body:not(.home):not(.front-page) .site-header:not(.header-scrolled) .header-actions button,
body:not(.home):not(.front-page) .site-header:not(.header-scrolled) .lang-option {
	color: #ffffff;
}

body:not(.home):not(.front-page) .site-header:not(.header-scrolled) .site-branding img {
	filter: brightness(0) invert(1);
}

/* Scroll State */
body:not(.home):not(.front-page) .site-header.header-scrolled {
	background-color: rgba(15, 74, 54, 1);
	box-shadow: var(--shadow-sm);
}

body:not(.home):not(.front-page) .site-header.header-scrolled .main-navigation li a,
body:not(.home):not(.front-page) .site-header.header-scrolled .site-title a,
body:not(.home):not(.front-page) .site-header.header-scrolled .header-actions button,
body:not(.home):not(.front-page) .site-header.header-scrolled .lang-option {
	color: #ffffff;
}

body:not(.home):not(.front-page) .site-header.header-scrolled .site-branding img {
	filter: brightness(0) invert(1);
}

.about_section .heads {
	margin-top: 25px;
	margin-bottom: 25px;
	text-align: center;
}

.about_section .heads h2 {
	margin-bottom: 10px;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--secondary-color);
}

.about_section .heads h3 {
	color: var(--primary-color);
}

.about_section .desc {
	max-width: 70%;
	margin: 0 auto;
	padding: 25px 15px;
	border-radius: 15px;
}

.about_section .desc p {
	font-size: 18px;
	margin-bottom: 20px;
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.contact-section {
	padding: 60px 0;
	background-color: var(--light-bg, #f9f9f9);
}

.contact-intro {
	text-align: right;
	margin-bottom: 40px;
}

.contact-subtitle {
	font-size: 1.1rem;
	color: #666;
	margin-top: 10px;
}

.contact-box-wrapper {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-box-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgb(15 74 54 / 90%);
}

.contact-box-content {
	position: relative;
	z-index: 2;
	padding: 50px;
}

.contact-row {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.contact-info-col,
.contact-form-col {
	flex: 1;
	min-width: 300px;
}

.contact-info-col h3,
.contact-form-col h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 25px;
	color: #fff;
}

/* Contact Info List */
.contact-details-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-details-list li {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
	font-size: 0.95rem;
	line-height: 1.6;
}

.contact-details-list li i {
	margin-top: 5px;
	font-size: 1.1rem;
	width: 20px;
	text-align: center;
}

/* Contact Form */
.custom-contact-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.form-group-row {
	display: flex;
	gap: 15px;
}

.form-group-row input {
	flex: 1;
}

.custom-contact-form input,
.custom-contact-form textarea {
	width: 100%;
	padding: 12px 15px;
	background-color: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	font-family: inherit;
	font-size: 0.95rem;
	outline: none;
	border-radius: 4px;
	transition: background-color 0.3s, border-color 0.3s;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
	color: #e0e0e0;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
	background-color: rgba(255, 255, 255, 0.3);
	border-color: #fff;
}

.custom-contact-form textarea {
	resize: vertical;
}

.form-submit {
	text-align: left;
	/* Align button to left like in the image */
}

.form-submit .btn {
	background-color: #d8b07e;
	/* Gold color from the theme */
	color: #fff;
	border: none;
	padding: 10px 30px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.3s;
}

.form-submit .btn:hover {
	background-color: #c49a62;
}

/* Map Section */
.map-section {
	padding: 60px 0;
	background-color: #fff;
}

.map-container {
	margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.contact-box-content {
		padding: 30px 20px;
	}

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

	.form-group-row {
		flex-direction: column;
	}
}

.vision_mission {
	margin-top: 25px;
	padding: 0 15px;
}

.our_goals {
	margin-top: 25px;
	min-height: 300px;
	background-size: cover;
	background-position: center;
	background-repeat: repeat-y;
	position: relative;
}

.our_goals::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(15, 74, 54, 0.7);
}

.our_goals .titles h3 {
	position: relative;
}

.our_goals .titles h3::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	height: 2px;
	width: 50px;
	background-color: #fff;
}

.vision_mission .mission,
.vision_mission .vision {
	background: rgb(27 83 64);
	max-width: 100%;
	margin: 0 auto;
	padding: 20px;
	color: #fff;
	border-radius: 10px;
}

.vision_mission .mission p,
.vision_mission .vision p {
	color: #f4f4f4;
}

.our_values i {
	font-size: 3rem;
	color: rgb(191 156 96 / var(--tw-text-opacity, 1));
}

.our_values .titles h3 {
	position: relative;
}

.our_values .titles h3::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	height: 2px;
	width: 50px;
	background-color: #1c7457;
}

.why_us .titles h2 {
	position: relative;
}

.why_us .titles h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	height: 2px;
	width: 50px;
	background-color: #1c7457;
}

.why_us .grid h3 {
	position: relative;
}

.why_us .grid h3::after {
	content: '';
	position: absolute;
	top: 0;
	right: -29px;
	height: 25px;
	width: 25px;
	background-color: #1a523f;
	border-radius: 50%;
}

/* Sectors Section Styles */
.sectors-section {
	background-color: var(--light-bg);
	padding: 80px 0;
}

.sectors-row {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
}

.sectors-text-column {
	flex: 1;
	min-width: 300px;
}

.sectors-text-column .section-desc {
	margin-bottom: 30px;
}

.sectors-slider-column {
	flex: 2;
	min-width: 0;
	position: relative;
}

/* Responsiveness for Sectors */
@media (max-width: 991px) {
	.sectors-row {
		flex-direction: column;
		gap: 30px;
	}

	.clients-grid {
		gap: 0;
	}

	.sectors-slider-column {
		width: 100%;
		flex: none;
	}

	.sectors-text-column {
		width: 100%;
		text-align: center;
	}

	.sectors-section {
		padding: 60px 0;
	}

	.reports-title {
		max-width: 100%;
	}

	.about_section .desc {
		max-width: 100%;
	}

	.page .page-content {
		padding: 0 !important;
	}

	.manager_words .wp-block-columns:last-child {
		padding: 15px;
	}

	.manager_words .wp-block-column .wp-block-column img {
		height: auto;
	}

	.main-pages article {
		padding: 0;
	}
}

/* Back to Top Button */
.move_to_top {
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 45px;
	height: 45px;
	background-color: #b38437;
	color: #fff;
	text-align: center;
	line-height: 45px;
	border-radius: 5px;
	cursor: pointer;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.move_to_top.show {
	opacity: 1;
	visibility: visible;
}

.move_to_top:hover {
	background-color: #1a1a1a;
}

.move_to_top i {
	font-size: 1.2rem;
	line-height: 45px;
}

.langs {
	display: none;
}

.langs .lang-item {
	list-style: none;
}

.langs .lang-item::marker {
	display: none !important;
}

.header-scrolled .langs {
	display: flex;
}

/* =============================================
   SERVICE EXECUTION APPROACH SECTION
   ============================================= */
.service-approach-section {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.service-approach-section .container {
	position: relative;
	z-index: 2;
}

/* Section Header */
.approach-header {
	margin-bottom: 60px;
}

.approach-sub {
	display: inline-block;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--accent-color);
	letter-spacing: 0.04em;
	margin-bottom: 6px;
	padding-bottom: 6px;
	border-bottom: 3px solid #1a5e43;
}

.approach-title {
	position: relative;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 800;
	color: #0f4a36;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0;
	text-align: center;
}

.approach-title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	height: 2px;
	width: 50px;
	background-color: #d8b07e;
}

/* Steps Grid */
.approach-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}

/* Connecting line behind steps */
.approach-steps::before {
	content: '';
	position: absolute;
	top: 44px;
	right: 12.5%;
	left: 12.5%;
	height: 2px;
	background: repeating-linear-gradient(to left,
			var(--accent-color) 0px,
			var(--accent-color) 8px,
			transparent 8px,
			transparent 18px);
	z-index: 0;
}

/* Single Step */
.approach-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 16px;
	position: relative;
	z-index: 1;
	cursor: default;
}

/* Step Number Badge */
.approach-step-number {
	position: absolute;
	top: -10px;
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--accent-color);
	background: #0a1f18;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

/* Icon Circle */
.approach-icon {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(191, 156, 96, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	transition: all 0.35s ease;
	position: relative;
}

.approach-icon::before {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1px dashed rgba(191, 156, 96, 0.2);
	transition: all 0.35s ease;
}

.approach-icon i {
	font-size: 2rem;
	color: var(--accent-color);
	transition: transform 0.35s ease;
}

.approach-step:hover .approach-icon {
	background: rgba(191, 156, 96, 0.12);
	border-color: var(--accent-color);
	box-shadow: 0 0 30px rgba(191, 156, 96, 0.15);
}

.approach-step:hover .approach-icon i {
	transform: scale(1.15);
}

/* Step Text */
.approach-step-name-ar {
	display: block;
	font-size: 1.15rem;
	font-weight: 700;
	color: #0b3b2b;
	margin-bottom: 4px;
	line-height: 1.3;
}

.approach-step-name-en {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--accent-color);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
	.approach-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 20px;
	}

	.approach-steps::before {
		display: none;
	}
}

@media (max-width: 520px) {
	.approach-steps {
		grid-template-columns: 1fr 1fr;
		gap: 32px 12px;
	}

	.approach-icon {
		width: 70px;
		height: 70px;
	}

	.approach-icon i {
		font-size: 1.6rem;
	}

	.service-approach-section {
		padding: 55px 0;
	}
}
/* ======================================
   WHATSAPP CHAT WIDGET
   ====================================== */
.wa-chat-widget {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99950;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	height: 50px;
}
.wa-chat-widget.open{height:auto;}
/* Floating Button */
.wa-float-btn {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: linear-gradient(135deg, #25D366, #128C7E);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
	transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.3s ease;
	position: fixed;
	bottom: 20px;
	right: 25px;
	outline: none;
}

.wa-float-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.wa-float-btn:active {
	transform: scale(0.95);
}

/* Pulse ring animation */
.wa-pulse {
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 2.5px solid rgba(37, 211, 102, 0.6);
	animation: wa-pulse-ring 2s ease-out infinite;
}

@keyframes wa-pulse-ring {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}

	80%,
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

/* Icon switching */
.wa-icon-open,
.wa-icon-close {
	position: absolute;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.wa-icon-close {
	opacity: 0;
	transform: rotate(-90deg);
}

.wa-chat-widget.open .wa-icon-open {
	opacity: 0;
	transform: rotate(90deg);
}

.wa-chat-widget.open .wa-icon-close {
	opacity: 1;
	transform: rotate(0deg);
}

.wa-chat-widget.open .wa-pulse {
	animation: none;
	opacity: 0;
}

/* Chat Box Container */
.wa-chat-box {
	width: 320px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
	background: #f0f0f0;
	transform-origin: bottom right;
	transform: scale(0.85) translateY(12px);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1), opacity 0.25s ease;
}

.wa-chat-widget.open .wa-chat-box {
	transform: scale(1) translateY(0);
	opacity: 1;
	pointer-events: all;
}

/* Header */
.wa-chat-header {
	background: linear-gradient(135deg, #075E54, #128C7E);
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}

.wa-header-avatar {
	position: relative;
	flex-shrink: 0;
}

.wa-header-avatar img,
.wa-avatar-fallback {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.wa-avatar-fallback {
    display: flex;
	background: rgba(255, 255, 255, 0.15);
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.wa-online-dot {
	position: absolute;
	bottom: 1px;
	right: 1px;
	width: 11px;
	height: 11px;
	background: #4ade80;
	border-radius: 50%;
	border: 2px solid #075E54;
}

.wa-header-info {
	flex: 1;
}

.wa-agent-name {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 2px;
	line-height: 1.2;
}

.wa-agent-status {
	color: rgba(255, 255, 255, 0.85);
	font-size: 12px;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 5px;
}

.wa-status-dot {
	width: 8px;
	height: 8px;
	background: #4ade80;
	border-radius: 50%;
	display: inline-block;
	animation: wa-blink 1.8s ease-in-out infinite;
}

@keyframes wa-blink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

.wa-close-btn {
	background: rgba(255, 255, 255, 0.15);
	border: none;
	color: #fff;
	cursor: pointer;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	flex-shrink: 0;
}

.wa-close-btn:hover {
	background: rgba(255, 255, 255, 0.28);
}

/* Chat Body */
.wa-chat-body {
	padding: 14px 12px;
	min-height: 160px;
	max-height: 220px;
	overflow-y: auto;
	background: #ece5dd url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8b8a2' fill-opacity='0.18'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	scrollbar-width: thin;
	scrollbar-color: #ccc transparent;
}

.wa-chat-body::-webkit-scrollbar {
	width: 4px;
}

.wa-chat-body::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 4px;
}

.wa-date-label {
	text-align: center;
	font-size: 11px;
	color: #888;
	background: rgba(255, 255, 255, 0.7);
	display: inline-block;
	padding: 3px 10px;
	border-radius: 10px;
	margin: 0 auto 10px;
	display: block;
	width: fit-content;
	left: 50%;
}

.wa-message {
	display: flex;
	margin-bottom: 6px;
}

.wa-incoming {
	justify-content: flex-start;
}

.wa-outgoing {
	justify-content: flex-end;
}

.wa-bubble {
	background: #fff;
	border-radius: 0 10px 10px 10px;
	padding: 10px 12px 6px;
	max-width: 88%;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	position: relative;
}

.wa-outgoing .wa-bubble {
	background: #dcf8c6;
	border-radius: 10px 0 10px 10px;
}

.wa-bubble p {
	font-size: 13.5px;
	color: #1a1a1a;
	margin: 0 0 4px;
	line-height: 1.5;
}

.wa-bubble p:last-of-type {
	margin-bottom: 0;
}

.wa-time {
	font-size: 10.5px;
	color: #999;
	display: block;
	text-align: left;
	margin-top: 4px;
}

/* Chat Footer */
.wa-chat-footer {
	background: #f0f0f0;
	padding: 10px 12px 12px;
	border-top: 1px solid #ddd;
}

.wa-input-wrap {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 24px;
	padding: 6px 6px 6px 14px;
	gap: 8px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.wa-input {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	font-size: 13.5px;
	color: #1a1a1a;
	font-family: inherit;
	direction: rtl;
	min-width: 0;
}

.wa-input::placeholder {
	color: #aaa;
}

.wa-send-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, #25D366, #128C7E);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}

.wa-send-btn:hover {
	transform: scale(1.08);
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
}

.wa-send-btn:active {
	transform: scale(0.94);
}

.wa-footer-note {
	font-size: 11px;
	color: #888;
	text-align: center;
	margin: 8px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

/* Mobile */
@media (max-width: 480px) {
	.wa-chat-widget {
		right: 14px;
		bottom: 20px;
	}

	.wa-chat-box {
		width: calc(100vw - 28px);
	}
}

.langs {
	display: none;
}

.langs .lang-item {
	list-style: none;
}

.langs .lang-item::marker {
	display: none !important;
}

.header-scrolled .langs {
	display: flex;
}

/* =============================================
   SERVICE EXECUTION APPROACH SECTION
   ============================================= */
.service-approach-section {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.service-approach-section .container {
	position: relative;
	z-index: 2;
}

/* Section Header */
.approach-header {
	margin-bottom: 60px;
}

.approach-sub {
	display: inline-block;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--accent-color);
	letter-spacing: 0.04em;
	margin-bottom: 6px;
	padding-bottom: 6px;
	border-bottom: 3px solid #1a5e43;
}

.approach-title {
	position: relative;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 800;
	color: #0f4a36;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0;
	text-align: center;
}

.approach-title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	height: 2px;
	width: 50px;
	background-color: #d8b07e;
}

/* Steps Grid */
.approach-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}

/* Connecting line behind steps */
.approach-steps::before {
	content: '';
	position: absolute;
	top: 44px;
	right: 12.5%;
	left: 12.5%;
	height: 2px;
	background: repeating-linear-gradient(to left,
			var(--accent-color) 0px,
			var(--accent-color) 8px,
			transparent 8px,
			transparent 18px);
	z-index: 0;
}

/* Single Step */
.approach-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 16px;
	position: relative;
	z-index: 1;
	cursor: default;
}

/* Step Number Badge */
.approach-step-number {
	position: absolute;
	top: -10px;
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--accent-color);
	background: #0a1f18;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

/* Icon Circle */
.approach-icon {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(191, 156, 96, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	transition: all 0.35s ease;
	position: relative;
}

.approach-icon::before {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1px dashed rgba(191, 156, 96, 0.2);
	transition: all 0.35s ease;
}

.approach-icon i {
	font-size: 2rem;
	color: var(--accent-color);
	transition: transform 0.35s ease;
}

.approach-step:hover .approach-icon {
	background: rgba(191, 156, 96, 0.12);
	border-color: var(--accent-color);
	box-shadow: 0 0 30px rgba(191, 156, 96, 0.15);
}

.approach-step:hover .approach-icon i {
	transform: scale(1.15);
}

/* Step Text */
.approach-step-name-ar {
	display: block;
	font-size: 1.15rem;
	font-weight: 700;
	color: #0b3b2b;
	margin-bottom: 4px;
	line-height: 1.3;
}

.approach-step-name-en {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--accent-color);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
	.approach-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 20px;
	}

	.approach-steps::before {
		display: none;
	}
}

@media (max-width: 520px) {
	.approach-steps {
		grid-template-columns: 1fr 1fr;
		gap: 32px 12px;
	}

	.approach-icon {
		width: 70px;
		height: 70px;
	}

	.approach-icon i {
		font-size: 1.6rem;
	}

	.service-approach-section {
		padding: 55px 0;
	}
}