:root {
	--main-color: #bca78c;
	--white-color: #ffffff;
	--black-color: #222222;
	--color-two: #333333;
	--margin-right-15: 15px;
	--margin-right-10: 10px;
	--padding-zero: 0;
	--font-16: 16px;
}

body {
	font-family: Arial, sans-serif;
	margin: 0;
}

.container, .auto-container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.d-flex {
	display: flex;
}

.justify-content-between {
	justify-content: space-between;
}

.align-items-center {
	align-items: center;
}

.flex-wrap {
	flex-wrap: wrap;
}

.me-3 {
	margin-right: 1rem;
}

.fs-5 {
	font-size: 1.25rem;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
	color: #333;
}

img {
	max-width: 100%;
}


/* ====================================================
           من ملف header.css (للهيدر والـ Sticky)
        ====================================================
        */
.main-header {
	position: absolute;
	left: 0px;
	right: 0px;
	z-index: 99;
}

.main-header .header-top {
	position: relative;
	padding: 5px 0px;
	background-color: #bca78cde;
	/* background-color: #bca78c; */
}

.main-header .header-top .social-box {
	position: relative;
}

.main-header .header-top .social-box li {
	position: relative;
	display: inline-block;
	margin-right: var(--margin-left-20, 20px);
}

.main-header .header-top .social-box li a {
	position: relative;
	color: var(--white-color);
	font-size: var(--font-16);
	transition: all 0.2s ease;
}

.main-header .header-top .social-box li a:hover, .main-header .header-top .social-box li a:hover span {
	color: #2a2a2a !important;
	opacity: 0.9;
}

.main-header .header-lower {
	position: relative;
	background-color: var(--white-color);
	/* خلفية بيضاء للهيدر السفلي */
}

.main-header .logo-box {
	position: relative;
	z-index: 10;
	padding: 15px 0px;
}

.main-header .logo-box .logo img {
	display: inline-block;
	max-width: 100%;
}

.main-header .main-menu {
	position: relative;
	float: left;
}

.main-header .main-menu .navbar-collapse {
	padding: 0px;
	float: left;
	display: block !important;
}

.main-header .main-menu .navigation {
	position: relative;
	margin: 0px;
}

.main-header .main-menu .navigation>li {
	position: relative;
	float: left;
	margin-right: var(--margin-right-15);
}

.main-header .main-menu .navigation>li>a {
	position: relative;
	display: block;
	line-height: 30px;
	padding: 25px 0px;
	/* زاد البادنج ليتناسب */
	font-size: 15px;
	color: var(--black-color);
	/* تم تغيير اللون للأسود ليظهر */
	text-transform: capitalize;
}

/* --- Sticky Header --- */
.main-header .sticky-header {
	position: fixed;
	opacity: 0;
	visibility: hidden;
	left: 0px;
	top: -100px;
	width: 100%;
	padding: 0px 0px;
	z-index: 0;
	transition: all 500ms ease;
	background-color: var(--white-color);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
}

.main-header .sticky-header .mobile-nav-toggler {
	display: none;
	cursor: pointer;
	color: var(--black-color);
	font-size: var(--font-30, 30px);
}

.main-header .sticky-header .logo {
	position: relative;
	padding: 10px 0px;
	/* تعديل البادنج */
}

.main-header.fixed-header .sticky-header {
	z-index: 999;
	opacity: 1;
	visibility: visible;
	top: 0px;
	animation-name: fadeInDown;
	animation-duration: 500ms;
}

.main-header .sticky-header .main-menu .navigation>li>a {
	padding: 20px 0px;
	color: var(--color-two);
}

.main-header .sticky-header .main-menu .navigation {
	list-style: none;
}

.main-header .sticky-header .main-menu .navigation>li {
	position: relative;
	float: left;
	margin-right: var(--margin-right-15);
}

/* --- Mobile Menu --- */
.main-header .mobile-nav-toggler {
	position: relative;
	float: right;
	padding: 2px 0 0px;
	font-size: var(--font-26, 26px);
	line-height: 44px;
	cursor: pointer;
	color: var(--black-color);
	/* تم تغييره للأسود */
	display: block;
	/* إظهاره للتجربة */
	margin-left: var(--margin-left-20, 20px);
}

.mobile-menu {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	padding-right: 0px;
	/* تم تعديله */
	max-width: 100%;
	height: 100%;
	visibility: hidden;
	z-index: 999999;
}

/* كلاس التفعيل للجافاسكريبت */
body.mobile-menu-visible .mobile-menu {
	visibility: visible;
}

.mobile-menu .menu-backdrop {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(0, 0, 0, 0.5);
	transform: translateX(101%);
	transition: all 900ms ease;
}

body.mobile-menu-visible .mobile-menu .menu-backdrop {
	transform: translateX(0%);
}

.mobile-menu .menu-box {
	position: absolute;
	right: -400px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	background: #ffffff;
	padding: 0px 0px;
	z-index: 5;
	transition: all 900ms ease;
}

body.mobile-menu-visible .mobile-menu .menu-box {
	right: 0px;
}

.mobile-menu .close-btn {
	position: absolute;
	right: 15px;
	top: 15px;
	line-height: 30px;
	width: 30px;
	text-align: center;
	font-size: 24px;
	color: #202020;
	cursor: pointer;
	z-index: 10;
}

.mobile-menu .navigation {
	position: relative;
	display: block;
	width: 100%;
	border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li {
	position: relative;
	display: block;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>a {
	position: relative;
	display: block;
	line-height: 24px;
	padding: 10px 20px;
	font-size: 15px;
	color: #404040;
}

.main-header .outer-box .nav-toggle-btn {
	position: relative;
	cursor: pointer;
	color: var(--white-color);
	font-size: var(--font-24, 24px);
	margin-right: var(--margin-right-25, 25px);
}

.language-dropdown {
	position: relative;
	top: 4px;
	line-height: 1em;
	margin-left: var(--margin-left-30, 30px);
}

.language-dropdown button {
	position: relative;
	background: none;
	border: none;
	font-size: var(--font-16);
	color: var(--white-color);
}


/* ====================================================
           من ملف owl.css (الجديد) - للـ Sidebar وغيرها
        ====================================================
        */
.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

/* ... (بقية خصائص owl carousel) ... */

/* !!! هذه هي الستايلات الأصلية للـ Sidebar !!!

        */
.sidebar-textwidget {
	padding: 40px;
}

.sidebar-info-contents {
	position: relative;
}

.xs-sidebar-group .xs-overlay {
	left: 100%;
	top: 0;
	position: fixed;
	z-index: 101;
	height: 100%;
	opacity: 0;
	width: 100%;
	visibility: hidden;
	-webkit-transition: all .4s ease-in .8s;
	-o-transition: all .4s ease-in .8s;
	transition: all .4s ease-in .8s;
	/* cursor: pointer; */
	cursor: url(../cross-out.png), pointer;
}

.xs-sidebar-group .widget-heading {
	position: absolute;
	top: 5px;
	right: 5px;
	padding: 10px;
	z-index: 10;
	/* border: 1px solid #bca78c; */
	background-color: #bca78c;

	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sidebar-info-contents {
	position: relative;
}

.sidebar-info-contents .content-inner {
	position: relative;
}

.sidebar-info-contents .content-inner .logo {
	padding-bottom: 40px;
}

.sidebar-info-contents .content-inner .content-box {
	position: relative;
}

.sidebar-info-contents .content-inner h6 {
	position: relative;
	color: var(--black-color);
	text-transform: uppercase;
	margin-bottom: 30px;
	padding-bottom: 15px;
}

.sidebar-info-contents .content-inner h6:before {
	position: absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	width: 30px;
	height: 6px;
	border-radius: 50px;
	background-color: var(--main-color);
}

.list-style-one {
	position: relative;
}

.sidebar-services-list {
	position: relative;
	margin-bottom: 60px;
}

.sidebar-services-list li {
	position: relative;
	margin-bottom: 15px;
}

.list-style-one li {
	position: relative;
	font-weight: 400;
	line-height: 1.8em;
	color: var(--black-color);
	font-size: 1rem;
	margin-bottom: 10px;
	padding-left: 40px;
}

.sidebar-services-list li a {
	position: relative;
	font-weight: 500;
	color: var(--black-color);
	font-size: 1rem;
	text-transform: uppercase;
}

.sidebar-info-contents .content-inner h6:after {
	position: absolute;
	content: '';
	left: 40px;
	bottom: 0px;
	width: 6px;
	height: 6px;
	border-radius: 50px;
	background-color: var(--main-color);
}

.xs-sidebar-group .widget-heading a {
	color: #fff !important;
	font-weight: bold !important;
}

.xs-sidebar-group .widget-heading a:hover {
	color: #fff !important;
}



.xs-sidebar-widget {
	position: fixed;
	right: -100%;
	/* يبدأ مخفياً تماماً من اليمين */
	top: 0;
	bottom: 0;
	width: 100%;
	max-width: 500px;
	z-index: 999999;
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background-color: #ffffff;
	-webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
	-o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
	transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
}

/* هذا هو الكلاس الذي يفعله الجافاسكريبت */
.xs-sidebar-group.isActive .xs-overlay {
	opacity: .9;
	visibility: visible;
	-webkit-transition: all .8s ease-out 0s;
	-o-transition: all .8s ease-out 0s;
	transition: all .8s ease-out 0s;
	left: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
	opacity: 1;
	visibility: visible;
	right: 0;
	/* يظهر السايدبار */
	-webkit-transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
	-o-transition: all 0.7s cubic-bezier(0.8, 0.03, 0, 0.96) 0.4s;
	transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s
}

.sidebar-textwidget {
	padding: 40px;
}

.close-side-widget {
	font-size: 15px;
	display: block;
	cursor: pointer;
	/* للتأكد أنه قابل للضغط */
	color: #333;
}

.sidebar-widget-container {
	position: relative;
	top: 0px;
	-webkit-transition: all .3s ease-in .3s;
	-o-transition: all .3s ease-in .3s;
	transition: all .3s ease-in .3s;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
	-webkit-transition: all 1s ease-out 1.2s;
	-o-transition: all 1s ease-out 1.2s;
	transition: all 1s ease-out 1.2s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.xs-overlay.xs-bg-black {
	background-color: #000000;
}

.list-style-one li strong {
	display: block;
}

.list-style-one li .icon {

	position: absolute;
	left: 0px;
	top: 8px;
	line-height: 1em;
	/* font-weight: 300; */
	/* font-family: "Flaticon"; */
	color: var(--main-color);
	font-size: 1.5rem;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;

}

/* --- بقية الستايلات من الملف الجديد --- */
/* ... (تم وضع كل ستايلات elementskit و megamenu هنا) ... */
/* ... (هذه الستايلات لن تؤثر طالما الـ HTML الخاص بها غير موجود) ... */


/* --- عناصر إضافية للتجربة --- */
.main-header .outer-box .button-box .theme-btn {
	background-color: var(--main-color);
	color: var(--white-color);
	padding: 15px 25px;
	text-decoration: none;
	border-radius: 5px;
}

.dummy-content {
	height: 2000px;
	padding-top: 300px;
	/* لإعطاء مساحة للهيدر */
	text-align: center;
	background-color: #f0f0f0;
}

/* لتصحيح أزرار الـ Sidebar والموبايل */
.nav-toggle-btn, .mobile-nav-toggler {
	cursor: pointer;
	padding: 5px 10px;
	border: 1px solid #fff;
	border-radius: 4px;
	margin-left: 10px;
}

.header-lower .mobile-nav-toggler {
	color: var(--black-color);
	border-color: #333;
}

.sticky-header .mobile-nav-toggler {
	color: var(--black-color);
	border: 1px solid #333;
	padding: 5px 10px;
	border-radius: 4px;
}