:root {
	--primary-color: #2C3E50;  /* Deep blue */
	--accent-color: #404040;   /* Gold */
	--text-color: #333333;
	--light-gray: #F5F5F5;
}

body, html {
	font-family: 'Playfair Display', serif;  /* More elegant font */
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	color: var(--text-color);
	font-weight: 400;
	width: 100% !important;
	height: 100% !important;
}
h2, h3, h4 {
	font-family: 'Raleway', sans-serif;
}
h2 {
	text-transform: uppercase;
	margin: 0 0 20px 0;
	font-weight: 800;
	font-size: 36px;
	color: #333;
}
h3 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
}
h4 {
	font-size: 18px;
	color: #333;
	font-weight: 600;
}
h5 {
	text-transform: uppercase;
	font-weight: 700;
	line-height: 20px;
}
p {
	font-size: 15px;
}
p.intro {
	margin: 12px 0 0;
	line-height: 24px;
}
a {
	color: #608dfd;
	font-weight: 400;
}
a:hover, a:focus {
	text-decoration: none;
	color: #608dfd;
}
ul, ol {
	list-style: none;
}
ul, ol {
	padding: 0;
	webkit-padding: 0;
	moz-padding: 0;
}
hr {
	height: 2px;
	width: 70px;
	text-align: center;
	position: relative;
	background: #1E7A46;
	margin-bottom: 20px;
	border: 0;
}
/* Navigation */
#menu {
	background-color: black;
	padding: 20px 0;
	transition: all 0.3s ease;
}
#menu.scrolled {
	padding: 10px 0;
	background-color: rgba(255, 255, 255, 0.98);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#menu a.navbar-brand {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	letter-spacing: 1px;
}
#menu.navbar-default {
	background-color: black;
	border-color: rgba(231, 231, 231, 0);
	box-shadow: 0 0 10px rgba(0,0,0,0.15)
}
#menu a.navbar-brand {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
}
#menu.navbar-default .navbar-nav > li > a {
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	color: #f2f2f2;
	font-size: 15px;
	font-weight: 400;
	padding: 8px 2px;
	border-radius: 0;
	margin: 9px 20px 0 20px;
}
#menu.navbar-default .navbar-nav > li > a:after {
	display: block;
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0;
	height: 2px;
	background: linear-gradient(to right, #f2f2f2 0%, #f2f2f2 100%);
	content: "";
	transition: width 0.2s;
}
#menu.navbar-default .navbar-nav > li > a:hover:after {
	width: 100%;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
	background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after, .navbar-default .navbar-nav > .active > a:hover:after, .navbar-default .navbar-nav > .active > a:focus:after {
	display: block !important;
	position: absolute !important;
	left: 0 !important;
	bottom: -1px !important;
	width: 100% !important;
	height: 2px !important;
	background: linear-gradient(to right, #f2f2f2 0%, #f2f2f2 100%) !important;
	content: "" !important;
	transition: width 0.2s !important;
}
.navbar-toggle {
	border-radius: 0;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
	background-color: #fff;
	border-color: #000;
}
.navbar-default .navbar-toggle:hover>.icon-bar {
	background-color: #000;
}
.section-title {
	text-align: center;
	position: relative;
	margin-bottom: 50px;
	width: 100%;
}
.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	position: relative;
	margin: 0 auto 15px;
	padding-bottom: 15px;
	display: inline-block;
}
.section-title h2::after {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 3px;
	background: #404040;
	bottom: 0;
	left: 0;
	right: 0;
}
.section-title p {
	font-size: 18px;
}
.btn-custom {
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	color: #fff;
	background-color: rgb(51, 45, 45);
	background-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
	padding: 14px 34px;
	letter-spacing: 1px;
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	border-radius: 25px;
	transition: all 0.5s linear;
	border: 0;
}
.btn-custom:hover, .btn-custom:focus, .btn-custom.focus, .btn-custom:active, .btn-custom.active {
	color: #fff;
	background-image: none;
	background-color: #000;
}
.btn:active, .btn.active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
a:focus, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
	outline: none;
	outline-offset: none;
}
/* Header Section */
.intro {
	display: table;
	width: 100%;
	height: 100vh;
	padding: 0;
	background: url('/img/intro-bg.jpeg') center center no-repeat;
	background-color: #000; /* Fallback */
	background-size: cover;
	position: relative;
}
.intro .overlay {
	background: rgba(0, 0, 0, 0.65);
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
}
.intro .container {
	position: relative;
	z-index: 1;
}
.intro-text {
	text-align: center;
	color: #fff;
}
.intro-text h1 {
	font-size: 52px;
	font-weight: 600;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.intro-text .subtitle {
	font-size: 26px;
	line-height: 1.5;
	margin: 0 0 20px;
}
.intro-text .description {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.btn-custom {
	color: #fff;
	background-color: transparent;
	border: 2px solid #fff;
	padding: 16px 40px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 50px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}
.btn-custom:hover {
	background-color: #fff;
	color: #000;
}
/* RTL Support */
[dir="rtl"] .intro-text h1 {
	font-family: 'Cairo', sans-serif;
	font-weight: 700;
	letter-spacing: 0;
}
[dir="rtl"] .intro-text .subtitle,
[dir="rtl"] .intro-text .description {
	font-family: 'Cairo', sans-serif;
	line-height: 1.8;
}
/* Mobile Responsive */
@media (max-width: 768px) {
	.intro-text h1 {
		font-size: 36px;
	}
	.intro-text .subtitle {
		font-size: 20px;
	}
	.intro-text .description {
		font-size: 16px;
		padding: 0 20px;
	}
	.btn-custom {
		padding: 12px 30px;
		font-size: 14px;
	}
}
/* Features Section */
#features {
	padding: 100px 0;
	background: #f6f6f6;
}
#features i.fa {
	font-size: 38px;
	margin-bottom: 20px;
	transition: all 0.5s;
	color: #fff;
	width: 100px;
	height: 100px;
	padding: 30px 0;
	border-radius: 50%;
	background: linear-gradient(to right, #000 0%, #000 100%);
	box-shadow: 10px 10px 10px rgba(0,0,0,.05);
}
/* About Section */
#about {
	padding: 100px 0;
	background: #f8f9fa;
}
#about h3 {
	font-size: 22px;
	margin: 0 0 20px 0;
}
#about h2 {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 15px;
}
#about h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--accent-color);
}
[dir="rtl"] #about h2::after {
	left: auto;
	right: 0;
}
#about h3 {
	font-size: 22px;
	margin-bottom: 20px;
	color: var(--primary-color);
}
#about p {
	line-height: 1.8;
	margin-bottom: 30px;
}
.about-text {
	padding-right: 60px;
}
.about-text h2 {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 30px;
}
.about-text h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 3px;
	background-color: #404040;
}
[dir="rtl"] .about-text h2::after {
	left: 50%;
	right: auto;
	transform: translateX(-50%);
}
.about-text h3 {
	font-size: 22px;
	margin-top: 20px;
	margin-bottom: 30px;
	color: var(--primary-color);
}
.about-text p {
	line-height: 1.8;
	margin-bottom: 30px;
}
.list-style li {
	margin-bottom: 15px;
	position: relative;
	padding-left: 25px;
}
[dir="rtl"] .list-style li {
	padding-left: 0;
	padding-right: 25px;
}
.list-style i {
	color: var(--accent-color);
	position: absolute;
	left: 0;
}
[dir="rtl"] .list-style i {
	left: auto;
	right: 0;
}
.about-image {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.stats-row {
	margin-top: 80px;
	text-align: center;
}
.stat-box {
	padding: 30px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}
.stat-box:hover {
	transform: translateY(-5px);
}
.stat-number {
	font-size: 36px;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 10px;
}
.stat-label {
	font-size: 16px;
	color: var(--primary-color);
	font-weight: 500;
}
/* goals section */

#goals {
	padding: 100px 0;
	width: 100%;
	padding-top: 150px;
}
#goals h3 {
	font-size: 22px;
	margin: 0 0 20px 0;
}
#goals h2 {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
#goals h2::after {
	position:absolute;
	content: "";
	background: linear-gradient(to right, #000 0%, #000 100%);
	height: 4px;
	width: 100%;
	bottom: 0;
	left: 0;
}
#goals .goals-text li {
	margin-bottom: 6px;
	margin-left: 6px;
	list-style: none;
	padding: 0;
}
#goals .goals-text li:before {
	content: '\f00c';
	font-family: 'FontAwesome';
	color: #000;
	font-size: 11px;
	font-weight: 300;
	padding-right: 8px;
	padding-left: 8px;
}
#goals img {
	width: 520px;
	margin-top: 10px;
	background: #fff;
	border-right: 0;
	box-shadow: 0 0 50px rgba(0,0,0,0.06);
}
#goals p {
	line-height: 24px;
	margin: 30px 0;
}
/* Services Section */
#services {
	padding: 80px 0;
	background: #666;
	color: #fff;
}

#services .row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

#services .col-md-3 {
	display: flex;
	padding: 0 15px;
	margin-bottom: 30px;
}

#services .service-item {
	background: #fff;
	padding: 30px 20px;
	border-radius: 15px;
	text-align: center;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

#services .service-icon {
	width: 80px;
	height: 80px;
	background: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

#services .service-icon i {
	font-size: 32px;
	color: #fff;
}

#services .service-item h3 {
	font-size: 20px;
	margin: 15px 0;
	color: #000;
	width: 100%;
}

#services .service-item p {
	font-size: 15px;
	line-height: 1.6;
	color: #666;
	margin: 0;
	flex-grow: 1;
	width: 100%;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
	#services .col-md-3 {
		margin-bottom: 20px;
	}
}

#services .service-desc {
	margin: 10px 10px 20px;
}
#services h2 {
	color: #fff;
}
#services .section-title h2::after {
	position: absolute;
	content: "";
	background: rgb(255, 255, 255);
	height: 4px;
	width: 60px;
	bottom: 0;
	margin-left: -30px;
	left: 50%;
}
#services i.fa {
	font-size: 42px;
	width: 120px;
	height: 120px;
	padding: 40px 0;
	background: linear-gradient(to right, #000 0%, #000 100%);
	border-radius: 50%;
	color: #fff;
	box-shadow: 10px 10px 10px rgba(0,0,0,.05);
}
#services h3 {
	font-weight: 500;
	padding: 5px 0;
	color: #fff;
}
#services p {
	color: rgba(255,255,255);
}
#services .service-desc {
	margin-bottom: 40px;
}
/* Portfolio Section */
#portfolio {
	padding: 100px 0;
	width: 100%;
}
.portfolio-item {
	margin: 15px;
	padding: 0;
}
.portfolio-item .hover-bg {
	overflow: hidden;
	position: relative;
	margin: 0;
}
.hover-bg .hover-text {
	position: absolute;
	text-align: center;
	margin: 0 auto;
	color: #000;
	background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
	padding: 30% 0 0 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: all 0.5s;
}
.hover-bg .hover-text>h4 {
	opacity: 0;
	color: #000;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	transition: all 0.3s;
	font-size: 18px;
	letter-spacing: 1px;
	font-weight: 500;
	text-transform: uppercase;
}
.hover-bg:hover .hover-text>h4 {
	opacity: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.hover-bg:hover .hover-text {
	opacity: 1;
}
/* Testimonials Section */
#testimonials {
	padding: 100px 0;
	background: #f6f6f6;
}
#testimonials i {
	color: #e6e6e6;
	font-size: 32px;
	margin-bottom: 20px;
}
.testimonial {
	position: relative;
	padding: 20px;
}
.testimonial-image {
	float: left;
	margin-right: 15px;
}
.testimonial-image, .testimonial-image img {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 50%;
}
.testimonial-content {
	position: relative;
	overflow: hidden;
}
.testimonial-content p {
	margin-bottom: 0;
	font-size: 14px;
	font-style: italic;
}
.testimonial-meta {
	margin-top: 10px;
	font-size: 15px;
	font-weight: 600;
	color: #666;
}
/* Team Section */
#team {
	padding: 100px 0;
}
#team h4 {
	margin: 5px 0;
}
#team .team-img {
	width: 240px;
}
#team .thumbnail {
	background: transparent;
	border: 0;
}
#team .thumbnail .caption {
	padding: 10px 0 0 0;
	color: #888;
}
/* Contact Section */
#contact {
	padding: 100px 0 60px 0;
	background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
	color: rgba(255,255,255,.75);
	width: 100%;
}
#contact .section-title {
	margin-bottom: 40px;
}
#contact .section-title p {
	font-size: 16px;
}
#contact h2 {
	color: #fff;
	margin-top: 10px;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
#contact .section-title h2::after {
}
#contact h3 {
	color: #fff;
	margin-top: 80px;
	margin-bottom: 25px;
	padding-bottom: 20px;
	font-weight: 400;
}
#contact form {
	padding-top: 20px;
}
#contact .text-danger {
	color: #cc0033;
	text-align: left;
}
#contact .btn-custom {
	margin: 30px 0;
	background: transparent;
	border: 2px solid #fff;
}
#contact .btn-custom:hover {
	color: #1f386e;
	background: #fff;
}
label {
	font-size: 12px;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	float: left;
}
#contact .form-control {
	display: block;
	width: 100%;
	padding: 6px 12px;
	font-size: 16px;
	line-height: 1.42857143;
	color: #444;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ddd;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}
#contact .form-control:focus {
	border-color: #999;
	outline: 0;
	-webkit-box-shadow: transparent;
	box-shadow: transparent;
}
.form-control::-webkit-input-placeholder {
color: #777;
}
.form-control:-moz-placeholder {
color: #777;
}
.form-control::-moz-placeholder {
color: #777;
}
.form-control:-ms-input-placeholder {
color: #777;
}
#contact .contact-item {
	margin: 20px 0;
}
#contact .contact-item span {
	color: rgba(255,255,255,1);
	margin-bottom: 10px;
	display: block;
}
#contact .contact-item i.fa {
	margin-right: 10px;
}
#contact .social {
	border-top: 1px solid rgb(255, 255, 255);
	padding-top: 50px;
	margin-top: 50px;
	text-align: center;
}
#contact .social ul li {
	display: inline-block;
	margin: 0 20px;
}
#contact .social i.fa {
	font-size: 22px;
	width: 48px;
	height: 48px;
	padding: 12px 0;
	border: 2px solid #fff;
	color: #fff;
	border-radius: 50%;
	transition: all 0.3s;
}
#contact .social i.fa:hover {
	color: #000;
	background: #fff;
}
/* Footer Section*/
#footer {
	background: #000;
	width: 100%;
}
#footer p {
	color: #fff;
	font-size: 14px;
}
#footer a {
	color: #608dfd;
}
#footer a:hover {
	border-bottom: 2px solid #608dfd;
}

@media (max-width: 768px) {
#about img {
	margin: 50px 0;
}
}

/* RTL Specific Styles for About Section */
[dir="rtl"] .about-text {
	padding-right: 0;
	padding-left: 60px;
}

[dir="rtl"] .list-style li {
	padding-left: 0;
	padding-right: 25px;
}

[dir="rtl"] .list-style i.fa {
	right: 0;
	left: auto;
}

[dir="rtl"] .about-text h2::after {
	right: 0;
	left: auto;
}

[dir="rtl"] .stat-box {
	text-align: center;
}

[dir="rtl"] .about-text p,
[dir="rtl"] .about-text h2,
[dir="rtl"] .about-text h3 {
	text-align: right;
}

/* Ensure flex order is correct in RTL */
[dir="rtl"] .flex-row-reverse {
	display: flex;
	flex-direction: row-reverse;
}

/* RTL Specific Styles */
[dir="rtl"] .about-text {
	text-align: right;
}

[dir="rtl"] .rtl-list {
	padding-right: 0;
	text-align: right;
}

[dir="rtl"] .rtl-list li {
	padding-right: 25px;
	padding-left: 0;
	position: relative;
}

[dir="rtl"] .rtl-list li i {
	position: absolute;
	right: 0;
	top: 4px;
}

[dir="rtl"] .about-text h2::after {
	right: 50%;
	left: auto;
	transform: translateX(50%);
}

[dir="rtl"] .flex-row-reverse {
	display: flex;
	flex-direction: row-reverse;
}

/* General About Styles */
.about-text {
	margin-bottom: 50px;
}

.about-text h2 {
	margin-bottom: 30px;
}

.list-style {
	margin-top: 30px;
}

.list-style li {
	margin-bottom: 10px;
}

.stat-box {
	text-align: center;
	margin-bottom: 30px;
}

/* Ensure proper spacing in both RTL and LTR */
.about-text h2,
.about-text h3 {
	margin-bottom: 20px;
	position: relative;
}

.about-text p {
	margin-bottom: 30px;
	line-height: 1.6;
}

/* RTL specific adjustments */
[dir="rtl"] .section-title {
	text-align: center;
}

[dir="rtl"] .section-title h2::after {
	left: 0;
	right: 0;
}
/* Services Section Specific Styles */
#services {
	padding: 80px 0;
}

#services .service-item {
	background: #fff;
	padding: 30px 20px;
	border-radius: 15px;
	margin-bottom: 30px;
	text-align: center;
}

#services .service-icon {
	width: 80px;
	height: 80px;
	background: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

#services .service-icon i {
	font-size: 32px;
	color: #fff;
}

#services .service-item h3 {
	font-size: 20px;
	margin: 15px 0;
	color: #000; /* Dark text for the title */
}

#services .service-item p {
	font-size: 15px;
	line-height: 1.6;
	color: #666; /* Gray text for the description */
	margin: 0;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
	#services .service-item {
		margin-bottom: 20px;
	}
}

/* Services RTL Support */
[dir="rtl"] #services .service-item {
	text-align: center;
}

/* Services Equal height cards */
#services .row {
	display: flex;
	flex-wrap: wrap;
}

/* Services Mobile Spacing */
@media screen and (max-width: 576px) {
	#services .service-item {
		margin-bottom: 20px;
	}

	#services .section-title {
		margin-bottom: 30px;
	}
}

/* Services Hover effects */
@media (hover: hover) {
	#services .service-item:hover {
		transform: translateY(-5px);
		box-shadow: 0 5px 20px rgba(0,0,0,0.15);
	}
}

/* Canvas section with fixed height */
#canvas-section {
	background: var(--bg-dark);
	padding: 0;
	margin: 0;
	position: relative;
	height: 200px; /* Fixed height instead of viewport units */
}

#about {
	background: linear-gradient(to bottom, var(--bg-dark) 0%, var(--bg-dark) 30%, #333 100%);
	margin-top: -2px; /* Remove any small gap */
	position: relative;
	z-index: 1;
}

/* Ensure canvas takes full width */
canvas {
	display: block;
	width: 100%;
	height: 200px; /* Match the container height */
	margin: 0;
	padding: 0;
}

/* Maintain smooth transition */
#canvas-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;
	background: linear-gradient(to bottom, transparent, var(--bg-dark));
	pointer-events: none;
}

/* Navigation mobile styles */
@media screen and (max-width: 768px) {
  .navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .navbar-brand {
    margin-right: auto; /* Push logo to the left */
  }

  .language-toggle {
    display: flex;
    align-items: center;
    margin-right: 15px; /* Space between language toggle and menu button */
    order: 2; /* Place after logo but before menu button */
  }

  .navbar-toggle {
    order: 3; /* Place menu button last */
    margin-left: 10px;
  }

  /* Ensure language toggle is visible */
  .language-toggle button {
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }

  /* Adjust header padding */
  .navbar {
    padding: 10px 15px;
  }
}

/* Additional RTL support for mobile */
[dir="rtl"] .navbar-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .language-toggle {
  margin-left: 15px;
  margin-right: 0;
}

[dir="rtl"] .navbar-toggle {
  margin-right: 10px;
  margin-left: 0;
}

/* Navigation Styles */
#menu {
	background-color: black;
	padding: 20px 0;
	transition: all 0.3s ease;
}

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

.logo-container {
	flex: 0 0 auto;
}

.navbar-brand {
	padding: 0;
	margin: 0;
	height: auto;
}

.navbar-brand img {
	width: 80px;  /* Increased from 60px to 80px */
	height: 80px; /* Increased from 60px to 80px */
	object-fit: contain;
	margin: 0;
	padding: 0;
}

/* Ensure proper spacing in navigation */
.navbar-header {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.navbar-brand img {
		width: 65px;  /* Increased from 50px to 65px */
		height: 65px; /* Increased from 50px to 65px */
	}
	
	.navbar-header {
		gap: 15px;
	}
}

/* Desktop Navigation */
@media (min-width: 769px) {
  .desktop-nav {
    margin-left: auto;
  }

  .desktop-nav .navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .desktop-nav .navbar-nav > li {
    display: inline-block;
  }

  .desktop-nav .navbar-nav > li > a {
    color: #fff !important;
    font-size: 14px;
    padding: 8px 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
  }

  .navbar-toggle {
    display: none;
  }

  .navbar-collapse {
    display: none !important;
  }
}

/* RTL Support for Desktop */
@media (min-width: 769px) {
  [dir="rtl"] .desktop-nav .navbar-nav {
    flex-direction: row-reverse;
  }

  [dir="rtl"] .desktop-nav {
    margin-right: auto;
    margin-left: 0;
  }
}

/* Mobile Styles - Keep your existing mobile styles */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  /* ... rest of your mobile styles ... */
}

.language-toggle a {
	color: #fff !important;
	text-transform: none !important;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.desktop-nav {
		display: none;
	}

	.navbar-toggle {
		display: block;
		border: none;
		background: transparent;
		padding: 9px 10px;
		margin: 0;
	}

	.navbar-toggle .icon-bar {
		background-color: #fff;
		width: 22px;
		height: 2px;
		margin: 4px 0;
	}

	.navbar-collapse {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: black;
		padding: 0;
		display: none;
	}

	.navbar-collapse.show {
		display: block;
	}

	.mobile-nav {
		margin: 0;
		padding: 10px 0;
	}

	.mobile-nav li a {
		padding: 12px 20px !important;
		display: block;
		text-align: center;
	}
}

/* RTL Support */
[dir="rtl"] .desktop-nav .navbar-nav {
	flex-direction: row-reverse;
}

[dir="rtl"] .navbar-nav > li > a {
	font-family: 'Cairo', sans-serif;
}

