:root {
  --primary: #ff8909;
  --dark: #00162e;
  --muted: #6c7a94;
}

body {
  font-family: "Cairo", sans-serif;
  color: var(--dark);
}

.section-badge {
  display: inline-block;
  background: rgba(30, 94, 255, 0.1);
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 17px;
}

.section-title::before {
  content: "";
  background: var(--primary);
  height: 2px;
  width: 40px;
  inset-inline-start: 0;
  position: absolute;
  bottom: 0;
}

.section-title.text-center::before {
  inset-inline: 0;
  margin-inline: auto;
}

.section-subtitle {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 0;
  padding: 0.75rem 2.5rem;
  border-radius: 0.6rem;
  font-weight: 700;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: var(--dark);
}

.btn-secondary {
  background: var(--dark);
  color: #fff;
  border: 0;
  padding: 0.75rem 2.5rem;
  border-radius: 0.6rem;
  font-weight: 700;
  transition:
    background 0.3s,
    color 0.3s;
}

::selection {
  background: var(--primary);
  color: #fff;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  color: var(--dark);
}

#masthead {
  background: #00162e;
}

#masthead .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
}

.mobile-menu-wrapper {
    display: flex;
    align-items: center;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 13px;
}

.main-navigation a.btn.btn-primary {
  margin-inline-start: auto;
}

p.site-title {
  display: none;
}

.main-navigation .menu-toggle,
.mobile-menu-header {
  display: none;
}

#primary-menu {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 45px;
  margin-inline-end: 80px;
}

#primary-menu a {
  color: #fff;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

#primary-menu li.current-menu-item > a,
#primary-menu li:hover a {
  color: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 991.98px) {
  .main-navigation .menu-toggle {
    display: inline-block;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
  }

  .menu-toggle-lines {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }

  .menu-toggle-lines span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      top 0.3s ease;
  }

  .menu-toggle-lines span:nth-child(1) {
    top: 0;
  }
  .menu-toggle-lines span:nth-child(2) {
    top: 10px;
  }
  .menu-toggle-lines span:nth-child(3) {
    top: 20px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
  }

  .main-navigation > #primary-menu {
    display: none;
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    max-width: 85%;
    background: #00162e;
    z-index: 1001;
    transform: translateX(100%); /* Ãƒâ„¢Ã¢â‚¬Â¦ÃƒËœÃ‚Â®Ãƒâ„¢Ã‚ÂÃƒâ„¢Ã…Â ÃƒËœÃ‚Â© ÃƒËœÃ‚Â®ÃƒËœÃ‚Â§ÃƒËœÃ‚Â±ÃƒËœÃ‚Â¬ ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾ÃƒËœÃ‚Â´ÃƒËœÃ‚Â§ÃƒËœÃ‚Â´ÃƒËœÃ‚Â© */
    transition: transform 0.35s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  #primary-menu{
    flex-direction: column;
    margin: 0;
    width: 100%;
}

  .custom-logo-link img {
    max-height: 40px;
    width: auto;
  }

  .menu-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #ffffff;
  }

  .mobile-cta {
    display: inline-block;
    margin-top: 20px;
    width: 100%;
    margin-block-start: auto;
  }

  body.mobile-menu-open {
    overflow: hidden; 
  }

  body.mobile-menu-open .mobile-menu-wrapper {
    transform: translateX(0);
  }

  body.mobile-menu-open .mobile-menu-overlay {
    display: block;
    opacity: 1;
  }
}

.home-slider .slide-bg {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.home-slider .slide-content {
  position: relative;
  z-index: 2;
  max-width: 490px;
  color: var(--dark);
  margin-inline: auto;
  text-align: center;
}
.home-slider .slide-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  display: grid;
  gap: 13px;
}

.home-slider .slide-title span {
  color: var(--primary);

  display: block;

  font-size: 39px;
}
.home-slider .slide-desc {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.home-slider .btn-lg {
  padding: 0.75rem 2rem;
  font-weight: 700;
}

.about-section .about-img {
  width: 100%;
  object-fit: cover;
}
.about-section .section-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2;
}

.features-section {
  background: #00162e;
  padding-block: 100px !important;
}
.features-section .feature-box {
  padding: 4rem 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 5px 25px rgba(18, 32, 58, 0.06);
  transition: transform 0.3s;
  border: 1px solid #383e57;
}
.features-section .feature-box:hover {
  transform: translateY(-6px);
}
.features-section .feature-icon img {
  object-fit: contain;
}
.features-section .feature-title {
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  margin-top: 40px;
}
.features-section .feature-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.services-section .service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s;
  border: 1px solid #d7d7d7;
  padding-block: 36px;
  text-align: center;
}
.services-section .service-card:hover {
  transform: translateY(-6px);
}
.services-section .service-img {
  width: 90px;
  height: 90px;
  overflow: hidden;
  background: #f8f8f8;
  padding: 14px;
  margin-inline: auto;
  border-radius: 110px;
}
.services-section .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-section .service-body {
  padding: 1.5rem;
  line-height: 1.8;
}
.services-section .service-body a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 300ms;
}

.services-section .service-body a:hover {
  color: var(--primary);
}
.services-section .service-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-size: 22px;
}
.services-section .service-desc {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.projects-section {
  background: #00162e;
}

.projects-section .section-title {
  color: #fff;
}
.projects-section .project-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(18, 32, 58, 0.06);
  transition: transform 0.3s;
  border: 1px solid #465079;
}
.projects-section .project-card:hover {
  transform: translateY(-6px);
}
.projects-section .project-img {
  display: block;
  overflow: hidden;
}
.projects-section .project-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s;
}
.projects-section .project-card:hover .project-img img {
  transform: scale(1.06);
}
.projects-section .project-body {
  padding: 1.5rem;
  text-align: center;
}
.projects-section .project-title a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 20px;
}
.projects-section .project-title a:hover {
  color: var(--primary);
}
.projects-section .project-desc {
  color: var(--muted);
  font-size: 0.99rem;
  margin: 0.5rem 0 0;
}

input[type="text"].wpcf7-form-control,
input[type="email"].wpcf7-form-control,
textarea.wpcf7-form-control,
select.wpcf7-form-control {
  width: 100%;
  background: #f5f6f8;
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  outline: 0;
  transition: all 0.3s;
}

input[type="email"].wpcf7-form-control {
  direction: rtl;
}

input[type="text"].wpcf7-form-control:focus,
input[type="email"].wpcf7-form-control:focus,
textarea.wpcf7-form-control:focus,
select.wpcf7-form-control:focus {
  border: 1px solid var(--primary);
  background: #fff;
}

.wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.75rem;
}

label {
  display: block;
}

.wpcf7-submit {
  background: var(--primary);
  color: #fff;
  border: 0;
  padding: 0.95rem 2.5rem;
  border-radius: 0.6rem;
  font-weight: 700;
  cursor: pointer;
  margin-inline: auto;
  min-width: 150px;
  display: block;
  transition: background 0.3s;
}

.wpcf7-submit:hover {
  background: var(--dark);
}

.map-section iframe {
  display: block;
  height: 175px;
}

#colophon {
  background-color: #00162e;
  background-image: url(../images/image-footer.png);
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 0 16px;
  color: #fff;
}

footer .wp-block-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
}

footer ul#menu-footer {
  display: flex;
  padding: 0;
  list-style-type: none;
  flex-wrap: wrap;
}

footer ul#menu-footer li {
  width: 50%;
  flex: 0 0 auto;
  margin-bottom: 12px;
}

footer a {
  color: #fff;
}

footer a:hover,
footer i {
  color: var(--primary);
}

.msk-contact-info {
  display: grid;
  gap: 9px;
}

.msk-item {
  display: flex;
  gap: 11px;
}

.container.py-5 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.entry-header {background: #ff8909;min-height: 180px;display: grid;place-content: center;}

.entry-title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
	margin-bottom: 0;
}

.entry-thumbnail {
	margin-bottom: 2rem;
	overflow: hidden;
	border-radius: 10px;
}

.entry-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.entry-content {
	font-size: 1rem;
	color: #333;
	line-height: 1.8;
}

.entry-content p {
	margin-bottom: 1.25rem;
}

.entry-content h2 {
	font-size: 1.6rem;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.entry-content h3 {
	font-size: 1.35rem;
	font-weight: 600;
	margin-top: 1.75rem;
	margin-bottom: 0.9rem;
	color: #1a1a1a;
}

.entry-content h4 {
	font-size: 1.15rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 1.5rem 0;
}

.entry-content a {
	color: #0d6efd;
	text-decoration: underline;
}

.entry-content a:hover {
	color: #084298;
}

.entry-content ul,
.entry-content ol {
	padding-right: 1.5rem;
	padding-left: 0;
	margin-bottom: 1.25rem;
}

.entry-content li {
	margin-bottom: 0.5rem;
}

.entry-content blockquote {
	border-right: 4px solid #0d6efd;
	border-left: none;
	background: #f8f9fa;
	padding: 1rem 1.5rem;
	margin: 1.5rem 0;
	border-radius: 6px;
	font-style: italic;
	color: #444;
}

.entry-content table {
	width: 100%;
	margin-bottom: 1.5rem;
	border-collapse: collapse;
}

.entry-content table th,
.entry-content table td {
	padding: 0.75rem;
	border: 1px solid #dee2e6;
	text-align: right;
}

.entry-content table th {
	background-color: #f8f9fa;
	font-weight: 600;
}

.entry-content hr {
	margin: 2rem 0;
	border-color: #dee2e6;
}

.page-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 2rem;
	font-weight: 600;
}

.page-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 8px;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	color: #333;
	text-decoration: none;
}

.page-links a:hover {
	background-color: #0d6efd;
	color: #fff;
	border-color: #0d6efd;
}

.page-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 8px;
	background-color: #0d6efd;
	color: #fff;
	border-radius: 6px;
}

.entry-footer {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid #e9ecef;
}

.edit-link {
	display: inline-block;
	padding: 0.35rem 0.9rem;
	font-size: 0.875rem;
	border: 1px solid #6c757d;
	border-radius: 6px;
	color: #6c757d;
	text-decoration: none;
}

.edit-link a{
	color:#333
}

.edit-link:hover {
	background-color: #6c757d;
	color: #fff;
}

@media (max-width: 991.98px) {
	.container.py-5 {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.entry-title {
		font-size: 1.6rem;
	}

	.entry-content {
		font-size: 0.95rem;
	}

	.entry-content h2 {
		font-size: 1.35rem;
	}

	.entry-content h3 {
		font-size: 1.2rem;
	}
}

@media (max-width: 575.98px) {
	.container.py-5 {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.entry-title {
		font-size: 1.4rem;
	}

	.entry-thumbnail {
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 768px) {
  .home-slider .slide-title {
    font-size: 2rem;
  }
  .home-slider .slide-bg {
    min-height: 480px;
  }
  .section-title {
    font-size: 1.7rem;
  }
}
