:root {
	--primary: #1e88c8;
	--primary-dark: #0b4f7d;
	--secondary: #2e8b57;
	--accent: #e53935;
	--text: #1f2937;
	--muted: #6b7280;
	--light: #f5f8fb;
	--white: #fff;
	--border: #d9e2ec;
	--shadow: 0 15px 40px rgba(11, 79, 125, .12);
	--radius: 18px;
	--transition: all .3s ease;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Tahoma", "Segoe UI", Arial, sans-serif;
	background: var(--white);
	color: var(--text);
	line-height: 1.7;
}

body.lang-en {
	font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.container {
	width: min(1180px, 92%);
	margin: 0 auto;
}

.en-only {
	display: none;
}

body.lang-ar .en-only {
	display: none !important;
}

body.lang-en .ar-only {
	display: none !important;
}

body.lang-ar .ar-only {
	display: inline-block;
}

body.lang-en .en-only {
	display: inline-block;
}

body.lang-ar h1.ar-only, body.lang-ar h2.ar-only, body.lang-ar h3.ar-only, body.lang-ar p.ar-only, body.lang-ar a.ar-only, body.lang-ar div.ar-only {
	display: block !important;
}

body.lang-en h1.en-only, body.lang-en h2.en-only, body.lang-en h3.en-only, body.lang-en p.en-only, body.lang-en a.en-only, body.lang-en div.en-only {
	display: block !important;
}

body.lang-en li .en-only, body.lang-ar li .ar-only, body.lang-en span.en-only, body.lang-ar span.ar-only {
	display: inline !important;
}

body.lang-en {
	direction: ltr;
}

body.lang-ar {
	direction: rtl;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(217, 226, 236, .8);
}

.header-wrap {
	display: grid;
	align-items: center;
	gap: 18px;
	min-height: 108px;
	grid-template-columns: 82px minmax(260px, 360px) minmax(0, 1fr) auto;
	grid-template-areas: "logo brand nav actions";
	column-gap: 18px;
}

.site-logo {
	grid-area: logo;
	width: 82px;
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.site-brand {
	grid-area: brand;
	color: inherit;
	min-width: 0;
	max-width: 360px;
}

.main-nav {
	grid-area: nav;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-nav {
	grid-area: nav;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

body.lang-en .main-nav {
	justify-content: flex-start;
}

body.lang-ar .main-nav {
	justify-content: flex-end;
}

.header-actions {
	grid-area: actions;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

body.lang-en .header-actions {
	justify-content: flex-end;
}

body.lang-ar .header-actions {
	justify-content: flex-start;
}

.nav-profile-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, #1e88c8, #0b4f7d);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(11, 79, 125, 0.18);
	transition: all .3s ease;
	flex-shrink: 0;
}

.nav-profile-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(11, 79, 125, 0.24);
}

.nav-profile-btn .pdf-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nav-profile-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(11, 79, 125, 0.24);
}

.nav-profile-btn .pdf-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 991px) {
	.main-nav {
		display: block;
	}

	.nav-profile-btn {
		display: none;
	}
}



@media (max-width: 991px) {
	.nav-profile-item {
		display: none;
	}
}
.brand-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

body.lang-en .site-brand {
	text-align: left;
}

body.lang-ar .site-brand {
	text-align: right;
}

.brand-title {
	margin: 0;
	font-size: 1.15rem;
	color: var(--primary-dark);
	line-height: 1.3;
	font-weight: 800;
}
body.lang-en .brand-title {
	font-size: 0.98rem;
	white-space: nowrap;
}

.brand-subtitle {
	margin: 4px 0 0;
	font-size: .92rem;
	color: var(--muted);
	line-height: 1.4;
}

.main-nav ul {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: nowrap;
}

body.lang-en .main-nav ul {
	justify-content: flex-start;
}

body.lang-ar .main-nav ul {
	justify-content: flex-end;
}

.main-nav a {
	font-weight: 700;
	color: var(--text);
	transition: var(--transition);
	white-space: nowrap;
}

.main-nav a:hover {
	color: var(--primary);
}

.lang-toggle {
	border: 1px solid var(--primary);
	background: var(--white);
	color: var(--primary);
	padding: 10px 14px;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 800;
	transition: var(--transition);
}

.lang-toggle:hover {
	background: var(--primary);
	color: var(--white);
}

.menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	border: none;
	background: #eef6fb;
	border-radius: 12px;
	cursor: pointer;
	padding: 10px;
}

.menu-toggle span {
	display: block;
	height: 3px;
	background: var(--primary-dark);
	margin: 5px 0;
	border-radius: 3px;
}

.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #eef7fc 0%, #fff 40%, #edf6f0 100%);
	padding: 70px 0 40px;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(30, 136, 200, .12), transparent 32%), radial-gradient(circle at bottom right, rgba(46, 139, 87, .1), transparent 28%);
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	align-items: center;
	gap: 40px;
}

body.lang-ar .hero-grid {
	grid-template-columns: 1.15fr .85fr;
}

.hero-badge {
	display: inline-block !important;
	background: rgba(30, 136, 200, .08);
	color: var(--primary-dark);
	border: 1px solid rgba(30, 136, 200, .18);
	padding: 8px 14px;
	border-radius: 999px;
	font-weight: 700;
	margin-bottom: 16px;
}

body.lang-ar .hero-badge.en-only {
	display: none !important;
}

body.lang-en .hero-badge.ar-only {
	display: none !important;
}

.hero-title {
	margin: 0 0 18px;
	font-size: clamp(2.2rem, 3vw, 4rem);
	line-height: 1.25;
	color: var(--primary-dark);
	font-weight: 900;
}

body.lang-ar .hero-title {
	max-width: 720px;
}

body.lang-en .hero-title {
	max-width: 760px;
}

.hero-text {
	margin: 0 0 28px;
	font-size: 1.08rem;
	color: var(--text);
	max-width: 760px;
}

.hero-buttons {
	display: flex;
	gap: 14px;
	flex-wrap: nowrap;
	align-items: center;
}

.hero-buttons .btn {
	min-width: 210px;
	text-align: center;
}

.btn {
	display: inline-block;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 800;
	transition: var(--transition);
	border: 2px solid transparent;
}

.btn-primary {
	background: var(--primary);
	color: var(--white);
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

.btn-outline {
	border-color: var(--primary);
	color: var(--primary);
	background: transparent;
}

.btn-outline:hover {
	background: var(--primary);
	color: var(--white);
}

.btn-light {
	background: var(--white);
	color: var(--primary-dark);
}

.btn-light:hover {
	transform: translateY(-2px);
}

.hero-card {
	background: var(--white);
	padding: 14px;
	border-radius: 28px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(217, 226, 236, .7);
}

.hero-card img {
	border-radius: 20px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section {
	padding: 90px 0;
}

.section-kicker {
	margin: 0 0 10px;
	color: var(--secondary);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.section-title {
	margin: 0 0 18px;
	color: var(--primary-dark);
	font-size: clamp(1.8rem, 2.4vw, 2.6rem);
	line-height: 1.25;
}

.section-text {
	margin: 0 0 18px;
	color: var(--text);
	font-size: 1.02rem;
}

.section-heading.center {
	text-align: center;
	max-width: 1100px;
	margin: 0 auto 50px;
}

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 42px;
	align-items: center;
}

.section-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.text-link {
	color: var(--primary);
	font-weight: 800;
	display: inline-block;
	margin-top: 6px;
}

.text-link:hover {
	color: var(--primary-dark);
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.service-card {
	background: var(--white);
	padding: 28px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	box-shadow: 0 10px 25px rgba(2, 24, 43, .05);
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

.service-icon {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: var(--white);
	display: grid;
	place-items: center;
	font-weight: 900;
	margin-bottom: 18px;
}

.service-card h3 {
	margin: 0 0 10px;
	color: var(--primary-dark);
	font-size: 1.15rem;
}

.service-card p {
	margin: 0;
	color: var(--muted);
}

.feature-list {
	display: grid;
	gap: 10px;
	margin-top: 22px;
}

.feature-list li {
	background: #f7fbff;
	border: 1px solid #d8ebf7;
	padding: 12px 16px;
	border-radius: 12px;
	font-weight: 700;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.project-card {
	background: linear-gradient(180deg, #fff, #f7fbff);
	padding: 28px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	box-shadow: 0 10px 22px rgba(2, 24, 43, .05);
}

.project-card h3 {
	margin: 0 0 10px;
	color: var(--primary-dark);
	font-size: 1.15rem;
}

.project-card p {
	margin: 0;
	color: var(--muted);
}

.center {
	text-align: center;
}

.top-space {
	margin-top: 34px;
}

.contact-strip {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary));
	color: var(--white);
	padding: 48px 0;
}

.contact-strip-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.contact-strip h2 {
	margin: 0 0 10px;
	font-size: 2rem;
}

.contact-strip p {
	margin: 0;
	opacity: .95;
}

.contact-strip-buttons {
	flex-shrink: 0;
}

.site-footer {
	background: #0f172a;
	color: #dbe4ee;
	padding-top: 60px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr 1fr;
	gap: 34px;
}

.footer-logo {
	width: 90px;
	margin-bottom: 12px;
	background: #fff;
	border-radius: 14px;
	padding: 6px;
}

.footer-company {
	margin: 0;
	font-weight: 700;
	color: #fff;
}

.footer-title {
	margin: 0 0 14px;
	color: #fff;
	font-size: 1.1rem;
}

.footer-links li, .footer-contact li {
	margin-bottom: 10px;
}

.footer-links a, .footer-contact a {
	color: #dbe4ee;
	transition: var(--transition);
}

.footer-links a:hover, .footer-contact a:hover {
	color: #7fd0ff;
}

.contact-number, .contact-email {
	display: inline-block;
	unicode-bidi: bidi-override;
	direction: ltr;
}

.contact-number {
	font-variant-numeric: tabular-nums;
	letter-spacing: .3px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .08);
	margin-top: 34px;
	padding: 18px 0;
	text-align: center;
	color: #9fb0c2;
}

@media (max-width: 1024px) {
	.header-wrap {
		grid-template-columns: 70px 1fr auto;
		grid-template-areas: "logo brand actions" "nav nav nav";
		gap: 14px;
		min-height: 96px;
	}

	.hero-grid, body.lang-ar .hero-grid, .two-col, .footer-grid {
		grid-template-columns: 1fr;
	}

	.cards-grid, .projects-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.main-nav {
		justify-content: flex-start;
	}

	body.lang-ar .main-nav {
		justify-content: flex-end;
	}

	.main-nav ul {
		flex-wrap: wrap;
		gap: 16px;
		justify-content: flex-start;
	}

	body.lang-ar .main-nav ul {
		justify-content: flex-end;
	}

	.contact-strip-wrap {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-brand {
		min-width: 0;
		max-width: none;
	}
}
@media (max-width: 768px) {
	.header-wrap {
		grid-template-columns: 60px 1fr auto;
		grid-template-areas: "logo brand actions" "nav nav nav";
		min-height: 90px;
	}

	.site-logo {
		width: 60px;
		height: 60px;
	}

	.brand-title {
		font-size: 0.92rem;
		line-height: 1.2;
	}

	body.lang-en .brand-title {
		font-size: 0.82rem;
		white-space: nowrap;
	}

	.brand-subtitle {
		font-size: .78rem;
		line-height: 1.3;
	}

	.header-actions {
		gap: 8px;
	}

	.lang-toggle {
		padding: 8px 12px;
		font-size: 14px;
	}

	.nav-profile-btn {
		display: none;
	}

	.menu-toggle {
		display: inline-block;
	}

	.main-nav {
		position: relative;
		justify-content: stretch;
	}

	.main-nav ul {
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		background: var(--white);
		border: 1px solid var(--border);
		border-radius: 18px;
		box-shadow: var(--shadow);
		padding: 18px;
		margin-top: 10px;
	}

	body.lang-ar .main-nav ul {
		margin-left: 18px;
	}

	.main-nav.open ul {
		display: flex;
	}

	.cards-grid, .projects-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 40px;
	}

	.section {
		padding: 70px 0;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
		flex-wrap: wrap;
	}

	.hero-buttons .btn, .btn {
		width: 100%;
		text-align: center;
		min-width: unset;
	}
}
.floating-btn {
	position: fixed;
	right: 20px;
	z-index: 9999;
	padding: 12px 18px;
	border-radius: 40px;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
}

.floating-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.whatsapp-btn {
	bottom: 40px;
	background: #25d366;
}

.whatsapp-btn:hover {
	background: #1ebe5d;
}






.hero-badge span {
	font-weight: 1500;
	font-size: 30px;
	transition: all .4s ease;
}

.word-blue {
	color: #1e88c8;
}

.word-green {
	color: #2e8b57;
}

.word-dark {
	color: #0b4f7d;
}

.floating-nwc {
	position: fixed;
	right: 20px;
	bottom: 140px;
	background: #fff;
	border-radius: 14px;
	padding: 10px 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
	z-index: 9999;
	transition: all .3s ease;
	border: 1px solid #e5e7eb;
}

.floating-nwc img {
	width: 40px;
	height: auto;
}

.floating-nwc span {
	font-size: 12px;
	font-weight: 700;
	color: #0b4f7d;
	text-align: center;
}

.floating-nwc:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
}

/* projects page */
/* projects page */
.projects-page {
  padding: 90px 0;
  background: #f8fbff;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.project-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  align-items: center;
}

.project-image img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 14px;
}

.project-image {
  width: 100%;
}

.project-info h3 {
  margin: 0 0 14px;
  color: #0b4f7d;
  font-size: 1.4rem;
}

.project-info p {
  margin-bottom: 18px;
  color: #444;
}

.project-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: #1e88c8;
}

.footer-bottom a{
  color:#7fd0ff;
  font-weight:700;
}

.footer-bottom a:hover{
  text-decoration: underline;
}

@media (max-width: 900px) {
  .project-item {
    grid-template-columns: 1fr;
  }
}



@media screen and (max-width: 991px) {
  .floating-nwc {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}