@font-face {
  font-family: "GEDinarOne";
  src: url("../fonts/alfont_com_AlFont_com_GE-Dinar-One-Medium.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "GEDinarOne", sans-serif;
  overflow-x: hidden;
  font-weight: 400;
}
:root {
  --primary-color: #ec8c28;
  --secoundry-color: #363d45;
}
/* Navbar Styles */
.navbar {
  background-color: #f8f9fa;
  /* padding: 20px; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-brand img {
  height: 100px;
}
.navbar-nav {
  gap: 2rem;
}
.nav-link {
  color: var(--secoundry-color) !important;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.3s;
  position: relative;
}
.dropdown-toggle::after {
  content: "\f107";
  margin: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  border: none !important;
  vertical-align: middle;
}
.nav-link:hover {
  color: var(--primary-color) !important;
}
.nav-link.active {
  color: var(--primary-color) !important;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 1000;
  float: right;
  min-width: 10rem;
  padding: 25px 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: right;
  list-style: none;
  background-color: var(--secoundry-color);
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  width: 100%;
  clear: both;
  color: #ffffff !important;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  padding: 8px 40px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}
.dropdown-item:hover {
  color: #cbcbcb !important;
  background-color: rgba(0, 0, 0, 0.25);
}
/* ============== Submenu (سكني → قايمة جانبية) ============== */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-toggle-submenu::after {
  content: "\f053"; /* سهم لليسار (لأننا RTL) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8em;
  margin-right: 8px;
  float: left;
}

.dropdown-submenu-menu {
  display: none;
  position: absolute;
  top: 0;
  right: 100%; /* تفتح لليسار (لأن RTL) */
  min-width: 10rem;
  background-color: var(--secoundry-color);
  box-shadow: -8px 0 25px rgba(0,0,0,0.3);
  padding: 10px 0;
  border-radius: 0;
  z-index: 1100;
  list-style-type: none;
}

.dropdown-submenu:hover > .dropdown-submenu-menu {
  display: block;
}

/* تحسين الشكل في الموبايل */
@media (max-width: 992px) {
  .dropdown-submenu-menu {
    position: static;
    box-shadow: none;
    background-color: rgba(0,0,0,0.3);
    padding-left: 20px;
  }
  .dropdown-submenu:hover > .dropdown-submenu-menu {
    display: block !important;
  }
}
.lang-switch {
  color: var(--secoundry-color) !important;
  transition: all 0.3s;
}
.lang-switch:hover {
  color: var(--primary-color) !important;
}
.primary-color {
  color: var(--primary-color) !important;
}
.secoundry-color {
  color: var(--secoundry-color) !important;
}
.separetor {
  color: white;
  font-size: 16px;
  margin-left: 2px;
}
/* Hero Slider */
.hero-slider {
  position: relative;
  height: calc(100vh - 0px);
  overflow: hidden;
}
.slider-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-item.active {
  opacity: 1;
  transform: translateX(0);
}
.slider-item.prev {
  transform: translateX(-100%);
}
.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-content {
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 1200px;
  animation: slideInRightToLeft 1s ease-out;
}
@keyframes slideInRightToLeft {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slider-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.slider-content .year {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
}
.slider-content p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.branches {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.social-links a {
  color: white;
  font-size: 2rem;
  transition: transform 0.3s, opacity 0.3s;
}
.social-links a:hover {
  transform: scale(1.2);
  opacity: 0.8;
}
.social-handle {
  font-size: 1.5rem;
  margin-right: 1rem;
  font-weight: 600;
}
/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 10;
}
.slider-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
}
/* About Section */
.about-section {
  padding: 100px 0;
  background: #f8f9fa;
}
.about-content {
  padding: 0 20px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.3;
}
.about-text {
  margin-bottom: 30px;
}
.about-text p {
  line-height: 1.9;
  color: var(--secoundry-color);
  margin-bottom: 20px;
  text-align: justify;
}
.read-more-btn {
  display: inline-block;
  padding: 12px 40px;
  background: #d4d4d4;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 0px;
  font-weight: 400;
  transition: all 0.3s;
  font-size: 1.1rem;
}
.read-more-btn:hover {
  background: var(--primary-color);
  color: white;
}
/* Video Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Services Section */
.services-section {
  padding: 100px 0 0 0;
  background: white;
}
.services-section .section-title {
  margin-bottom: 60px;
}
.service-card {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease;
}
.service-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.4s ease;
}
.service-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 50px 40px;
}
/* Blue Service Card */
.service-blue {
  background: linear-gradient(135deg, #3b5998 0%, #2c4a7c 100%);
  padding: 50px 40px;
}
.service-content {
  text-align: center;
  color: white;
}
.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.service-icon i {
  font-size: 3rem;
  color: white;
}
.service-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: white;
}
.service-description {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  min-height: 120px;
}
.service-link {
  display: inline-block;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #2c3e50;
  text-decoration: none;
  border-radius: 0px;
  transition: all 0.3s ease;
}
.service-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(-5px);
}
.service-blue .service-link {
  background: rgba(255, 255, 255, 0.95);
}
.service-blue .service-link:hover {
  background: white;
}
/* Achievements Section */
.achievements-section {
  direction: rtl;
  position: relative;
  background-image: url("https://www.shjengcon.com/ar/wp-content/uploads/2020/11/home-bgd-1-2.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 150px 0;
}
.achievements-overlay {
  position: relative;
  width: 100%;
}
.achievements-content {
  padding-left: 40px;
}
.achievements-title {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}
.achievements-description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #2c3e50;
  margin-bottom: 25px;
  text-align: justify;
}
.achievements-note {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Digital-serial-bold", sans-serif;
}
/* Projects Section */
.projects-section {
  padding: 100px 0;
  background: white;
}
.projects-section .section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
}
.projects-filter {
  font-size: 1.2rem;
  padding: 0 20px;
}
.filter-link {
  color: var(--secoundry-color);
  font-weight: 400 !important;
  text-decoration: none;
  padding: 8px 15px;
  transition: color 0.3s ease;
  display: inline-block;
}
.filter-link:hover,
.filter-link.active {
  color: var(--primary-color);
}
.filter-separator {
  margin: 0 5px;
}
.owl-carousel .owl-stage {
  display: flex;
}
.owl-carousel .owl-item {
  display: flex;
}
.project-item {
  overflow: hidden;
  width: 100%;
}
.project-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  height: 400px;
}
.project-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-image img {
  transform: scale(1.1);
}
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.project-info {
  padding: 20px;
  position: relative;
}
.project-overlay:before {
  content: "";
  position: absolute;
  height: 80%;
  left: 0;
  bottom: 0;
  right: -1px;
  z-index: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.project-title {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}
.project-title:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.project-category {
  color: #b4bbc2;
  font-size: 0.7rem;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}
.project-category:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent !important;
  border: none;
  color: #333 !important;
  font-size: 3rem !important;
  width: 60px;
  height: 60px;
  margin: 0 !important;
  transition: all 0.3s;
}
.owl-carousel .owl-nav button.owl-prev {
  right: -30px;
}
.owl-carousel .owl-nav button.owl-next {
  left: -30px;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  color: var(--primary-color) !important;
}
/* Partners Section */
.partners-section {
  direction: rtl;
  padding-bottom: 100px;
  background: white;
}
.partners-section .section-title {
  font-size: 2.5rem;
}
.partners-slider-wrapper {
  position: relative;
}
.swiper-container {
  width: 100%;
  padding: 40px 0;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 120px;
}
.partner-logo img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color) !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: bold;
}
/* Contact Section */
.contact-section {
  padding: 50px 100px;
  background: #d1d1d1;
}
.contact-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: right;
}
.contact-subtitle {
  font-size: 1.2rem;
  color: #555;
  font-weight: 400;
  text-align: right;
  line-height: 1.8;
}
.contact-form {
  background: transparent;
}
.contact-form .form-control {
  background: #f6f6f6;
  border: 1px solid transparent;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 0px;
  text-align: right;
  transition: all 0.3s ease, border-color 0.3s ease;
}

.contact-form .form-control:focus {
  background: white;
  outline: none;
  box-shadow: none;
  border-color: var(--primary-color);
}
.contact-form .form-control::placeholder {
  font-weight: 200 !important;
  transition: opacity 0.8s ease;
}
.contact-form .form-control:focus::placeholder {
  opacity: 0;
}
.contact-form textarea.form-control {
  resize: none;
}
.submit-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.submit-btn:hover {
  transform: scale(1.02);
}
/* Pre-Footer */
.pre-footer {
  background: #363d45cc;
  color: white;
  padding: 70px;
}
.pre-footer-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
/* Footer */
.footer {
  background: var(--secoundry-color);
  color: white;
  padding: 30px 50px;
  font-size: 1rem;
}
.footer .navbar-nav .nav-item .nav-link {
  color: white !important;
}
.footer-right {
  text-align: right;
  flex: 1;
}
[dir="ltr"] .achievements-title,
[dir="ltr"] .achievements-description,
[dir="ltr"] .achievements-note,
[dir="ltr"] .footer-right,
[dir="ltr"] .contact-title,
[dir="ltr"] .contact-subtitle,
[dir="ltr"] .contact-form .form-control,
[dir="ltr"] .dropdown-menu {
    text-align: left;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer-social a {
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover {
  color: #cbcbcb;
}
.footer-copyright {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-top: 20px;
}
/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #d1d1d1;
  color: black;
  width: 50px;
  height: 50px;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
}
.scroll-top:hover {
  background: var(--primary-color);
  color: white;
}
.scroll-top.show {
  display: flex;
}
/* Responsive */
@media (max-width: 992px) {
  .navbar-nav {
    gap: 1rem;
    text-align: center;
  }
  .header.navbar-nav {
    gap: 0;
    background-color: var(--primary-color);
    text-align: start;
  }
  .header.navbar-nav .nav-item .nav-link {
    color: white !important;
    padding: 8px 40px;
  }
  .header.navbar-nav .nav-item .nav-link:hover {
    color: #cbcbcb !important;
  }
  .header.navbar-nav .nav-item.dropdown {
    background-color: var(--secoundry-color);
  }
  .header.navbar-nav .nav-item.dropdown .nav-link {
    display: flex;
    justify-content: space-between;
  }
  #navbarNav {
    margin: 0 -20px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-collapse {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    z-index: 1050;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 0;
  }
  .navbar-collapse .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: var(--primary-color);
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .navbar-collapse .dropdown-item {
    padding: 8px 40px;
    color: white !important;
    background-color: transparent;
  }
  .navbar-collapse .dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.25);
    color: #cbcbcb !important;
  }
  .slider-content h1 {
    font-size: 2.5rem;
  }
  .slider-content .year {
    font-size: 5rem;
  }
  .slider-content p {
    font-size: 1.2rem;
  }
  .branches {
    font-size: 1rem;
  }
  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 2rem;
  }
}
@media (max-width: 1440px) {
  .hero-slider {
    height: 85vh;
  }
}
@media (max-width: 768px) {
  .hero-slider {
    height: 50vh;
  }
  .slider-content h1 {
    font-size: 2rem;
  }
  .slider-content .year {
    font-size: 4rem;
  }
  .slider-content p {
    font-size: 1rem;
  }
  .branches {
    font-size: 0.9rem;
  }
  .social-links a {
    font-size: 1.5rem;
  }
  .social-handle {
    font-size: 1.2rem;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .slider-controls {
    padding: 0 1rem;
  }
  .about-section {
    padding: 0;
  }
  .about-content {
    padding: 0;
    margin-top: 50px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .about-text p {
    font-size: 1rem;
  }
  .play-button {
    width: 60px;
    height: 60px;
  }
  .play-button i {
    font-size: 1.5rem;
  }
  .service-card {
    min-height: 450px;
  }
  .service-content {
    padding: 30px 20px;
  }
  .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  .service-icon i {
    font-size: 2.5rem;
  }
  .service-title {
    font-size: 1.5rem;
  }
  .service-description {
    font-size: 0.95rem;
    min-height: auto;
  }
  .achievements-section {
    background-attachment: scroll;
  }
  .achievements-content {
    padding-left: 0;
    margin-bottom: 40px;
  }
  .achievements-title {
    font-size: 2.2rem;
    text-align: center;
  }
  .achievements-description,
  .achievements-note {
    font-size: 1rem;
  }
  .stats-container {
    padding: 0 20px;
    gap: 30px;
  }
  .stat-number {
    font-size: 3rem;
  }
  .stat-label {
    font-size: 1.1rem;
  }
  .projects-section .section-title {
    font-size: 2rem;
  }
  .projects-filter {
    font-size: 1rem;
  }
  .filter-link {
    padding: 5px 10px;
    font-size: 0.95rem;
  }
  .project-card {
    height: 350px;
  }
  .project-title {
    font-size: 1.4rem;
  }
  .project-category {
    font-size: 0.9rem;
  }
  .project-overlay {
    padding: 20px;
  }
}
@media (max-width: 530px) {
  .hero-slider {
    height: 35vh;
  }
  .stats-container {
    flex-direction: column;
  }
  .scroll-top.show {
    display: none;
  }
  .achievements-section,
  .projects-section {
    padding: 50px 0;
  }
  .pre-footer,
  .contact-section {
    padding: 50px 30px;
  }
  .footer {
    padding: 30px;
  }
}
.ceo-message-section {
  padding-right: 40px;
}
.ceo-message-section2{
  border-right: 4px solid var(--primary-color);
  padding-right: 25px;
}
.border-photo {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-color);
  z-index: 1;
}
html[dir="ltr"] .ceo-message-section {
  padding-right: 0;
  padding-left: 40px;
}
html[dir="ltr"] .ceo-message-section2 {
  border-right: none;
  padding-right: 0;
  border-left: 4px solid var(--primary-color);
  padding-left: 25px;
}
html[dir="ltr"] .border-photo {
  left: -20px;
  right: unset;
}
      .awards-gallery {
        padding-bottom: 80px;
        background: #f8f9fa;
      }
      .awards-gallery .section-title {
        font-size: 2.8rem;
        margin-bottom: 50px;
        color: var(--secoundry-color);
      }
      .award-item img {
        width: 100%;
        object-fit: contain;
      }

      /* تخصيص Fancybox ليبقى زي الصورة بالضبط */
      .fancybox__backdrop {
        background: rgba(0, 0, 0, 0.92) !important;
      }
      .fancybox__toolbar {
        background: transparent !important;
      }
      .fancybox__button {
        background: rgba(0, 0, 0, 0.6) !important;
        color: white !important;
        border-radius: 50% !important;
        width: 44px !important;
        height: 44px !important;
      }
      .fancybox__button:hover {
        background: var(--primary-color) !important;
      }
      .fancybox__button--close {
        background: rgba(255, 0, 0, 0.7) !important;
        font-size: 1.5rem !important;
      }
      .fancybox__caption {
        background: transparent !important;
        color: white !important;
        font-size: 1.2rem !important;
        padding: 10px !important;
      }
      /* Hero Section مع Overlay */
      .inner-hero-section {
        position: relative;
        background-image: url('https://www.shjengcon.com/ar/wp-content/uploads/2020/11/home-bgd-1-2.jpg');
        background-size: cover;
        background-position: center;
        padding: 150px 0 100px;
        color: white;
      }
      .inner-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
      }
      .inner-hero-content h1 {
        font-size: 3rem;
        font-weight: 500;
        margin-bottom: 20px;
      }
      .breadcrumb-nav a,
      .breadcrumb-nav span {
        color: white;
        font-size: 1.1rem;
        text-decoration: none;
      }
      .breadcrumb-nav .separator {
        color: var(--primary-color);
        margin: 0 10px;
      }
      .breadcrumb-nav .current {
        color: var(--primary-color);
      }

      /* Leadership Content */
      .leadership-section {
        padding: 100px 0;
        background: white;
      }
      .leadership-title {
        color: var(--primary-color);
        font-size: 2.5rem;
        font-weight: 500;
        margin-bottom: 15px;
      }
      .leadership-intro {
        color: var(--secoundry-color);
        font-size: 1.1rem;
        margin-bottom: 30px;
      }
      .leadership-body {
        line-height: 1.9;
        color: var(--secoundry-color);
        font-size: 1.05rem;
        text-align: justify;
      }
      .leadership-body h5 {
        color: var(--primary-color);
        margin: 25px 0 20px;
      }
      .leadership-body p {
        margin-bottom: 20px;
      }
      .leadership-body p:last-child {
        margin-top: 20px;
      }

      /* CEO Message Style (الخط الأيمن) */
      .ceo-message-section2 {
        border-right: 4px solid var(--primary-color);
        padding-right: 25px;
      }

      /* Responsive */
      @media (max-width: 992px) {
        .inner-hero-content h1 { font-size: 2.5rem; }
        .ceo-message-section2 {
          border-right: none;
          border-left: 4px solid var(--primary-color);
          padding-right: 0;
          padding-left: 25px;
        }
      }
      @media (max-width: 768px) {
        .inner-hero-section { padding: 120px 0 80px; }
        .inner-hero-content h1 { font-size: 2.2rem; }
        .leadership-title { font-size: 2rem; }
      }

      /* Hero Section مع Overlay */
      .hero-section-services ,
      .hero-section-career ,
      .hero-section-contact ,
      .hero-section-leadership {
        position: relative;
        background-size: cover;
        background-position: center;
        padding: 150px 0 100px;
        color: white;
      }
      .hero-section-leadership::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(54, 61, 69, 0.7);
        z-index: 1;
      }
      .hero-section-leadership {
        background-image: url('https://www.shjengcon.com/ar/wp-content/uploads/2020/11/home-bgd-1-2.jpg');
      }
      .hero-section-career {
        background-image: url('https://www.shjengcon.com/ar/wp-content/uploads/2020/11/career-banner.jpg');
      }
      .hero-section-contact {
        background-image: url('https://www.shjengcon.com/ar/wp-content/uploads/2020/11/contact-header-2.jpg');
      }
      .inner-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
      }
      .inner-hero-content h1 {
        font-size: 3rem;
        font-weight: 500;
        margin-bottom: 20px;
      }
      .breadcrumb-nav a,
      .breadcrumb-nav span {
        color: white;
        font-size: 1.1rem;
        text-decoration: none;
      }
      .breadcrumb-nav .separator {
        color: var(--primary-color);
        margin: 0 10px;
      }
      .breadcrumb-nav .current {
        color: var(--primary-color);
      }

      /* Leadership Content */
      .leadership-section {
        padding: 100px 0;
        background: white;
      }
      .leadership-title {
        color: var(--primary-color);
        font-size: 2.5rem;
        font-weight: 500;
        margin-bottom: 15px;
      }
      .leadership-intro {
        color: var(--secoundry-color);
        font-size: 1.1rem;
        margin-bottom: 30px;
      }
      .leadership-body {
        line-height: 1.9;
        color: var(--secoundry-color);
        font-size: 1.05rem;
        text-align: justify;
      }
      .leadership-body h5 {
        color: var(--primary-color);
        margin: 25px 0 20px;
      }
      .leadership-body p {
        margin-bottom: 20px;
      }
      .leadership-body p:last-child {
        margin-top: 20px;
      }

      /* CEO Message Style (الخط الأيمن) */
      .ceo-message-section2 {
        border-right: 4px solid var(--primary-color);
        padding-right: 25px;
      }

      /* Responsive */
      @media (max-width: 992px) {
        .inner-hero-content h1 { font-size: 2.5rem; }
        .ceo-message-section2 {
          border-right: none;
          border-left: 4px solid var(--primary-color);
          padding-right: 0;
          padding-left: 25px;
        }
      }
      @media (max-width: 768px) {
        .hero-section-leadership { padding: 120px 0 80px; }
        .inner-hero-content h1 { font-size: 2.2rem; }
        .leadership-title { font-size: 2rem; }
      }
      /* Inner Hero */
      .hero-section-aboutUs {
        background-image: url("https://www.shjengcon.com/ar/wp-content/uploads/2020/11/top-banner-9.jpg");
        background-size: cover;
        background-position: center;
        height: 85vh;
      }

      /* Vision & Mission Section */
      .vision-mission-section {
        padding: 100px 0;
        background: #f8f9fa;
        position: relative;
        overflow: hidden;
      }
      .vision-mission-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("https://www.shjengcon.com/ar/wp-content/uploads/2020/10/about-bgd-1.jpg");
        background-size: cover;
        opacity: 0.15;
      }
      .vision-mission-content {
        position: relative;
        z-index: 2;
      }
      .vision-mission-card {
        background: white;
        padding: 60px 40px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        height: 100%;
        text-align: center;
      }
      .vision-mission-card.mission {
        border-top: 5px solid var(--secoundry-color);
      }
      .vision-mission-card.vision {
        border-top: 5px solid var(--primary-color);
      }
      .vision-mission-card .icon-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
      }
      .vision-mission-card.mission .icon-circle {
        background: var(--secoundry-color);
      }
      .vision-mission-card.vision .icon-circle {
        background: var(--primary-color);
      }
      .vision-mission-card i {
        color: white;
        font-size: 2.5rem;
      }
      .vision-mission-card h3 {
        color: var(--secoundry-color);
        font-size: 2rem;
        margin-bottom: 20px;
      }
      .vision-mission-card p {
        line-height: 1.9;
        color: var(--secoundry-color);
        font-size: 1.05rem;
        text-align: justify;
        margin: 0;
      }

      /* CEO Message Section */
      .ceo-message-section {
        padding: 100px 0;
        background: white;
      }
      .ceo-photo-wrapper {
        position: relative;
        display: inline-block;
      }
      .border-photo {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 100%;
        height: 100%;
        border: 3px solid var(--primary-color);
        z-index: 1;
      }
      .ceo-photo-wrapper img {
        position: relative;
        z-index: 2;
        width: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      }
      .ceo-message-title {
        color: var(--primary-color);
        font-size: 2.5rem;
        font-weight: 500;
        margin-bottom: 15px;
      }
      .ceo-message-subtitle {
        color: var(--secoundry-color);
        font-weight: 500;
        margin-bottom: 15px;
      }
      .ceo-message-byline {
        color: var(--secoundry-color);
        font-size: 1.1rem;
        font-style: italic;
        margin-bottom: 30px;
      }
      .ceo-message-body {
        line-height: 1.9;
        color: var(--secoundry-color);
        font-size: 1.05rem;
        text-align: justify;
      }
      .ceo-message-body p {
        margin-bottom: 20px;
      }
      .ceo-message-body p:last-child {
        margin-bottom: 0;
      }
      .ceo-signature {
        margin-top: 30px;
      }
      .ceo-name {
        color: var(--secoundry-color);
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 5px;
      }
      .ceo-title {
        color: var(--primary-color);
        font-size: 1rem;
      }

      /* Responsive */
      @media (max-width: 992px) {
        .hero-section-aboutUs {
          height: 60vh;
        }
        .border-photo {
          right: unset;
          left: -20px;
        }
        .ceo-message-title {
          font-size: 2.2rem;
        }
      }
      @media (max-width: 768px) {
        .hero-section-aboutUs {
          height: 50vh;
        }
        .vision-mission-section,
        .ceo-message-section {
          padding: 80px 0;
        }
        .vision-mission-card {
          padding: 40px 25px;
        }
      }
      /* Hero */
      .hero-section-services {
        background-image: url("https://www.shjengcon.com/ar/wp-content/uploads/2020/11/services-header-3.jpg");
        background-size: cover;
        background-position: center;
        height: 85vh;
      }

      /* القسم الجديد - خدماتنا بالتدفق */
      .services-flow-section {
        padding: 120px 0;
        background: #f8f9fa;
      }

      .service-img {
        height: 450px;
      }

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

      .service-content-services {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px 20px;
      }

      .service-title-services {
        font-size: 2rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 20px;
        text-align: start;
      }

      .service-title span {
        color: var(--secoundry-color);
      }

      .service-text {
        font-size: 1.05rem;
        line-height: 2;
        color: #444;
        text-align: justify;
      }

      /* أزرار التنقل */
      .service-nav-buttons {
        text-align: center;
        margin-top: 50px;
      }

      .service-nav-btn {
        display: inline-block;
        padding: 14px 40px;
        background: #ddd;
        color: #333;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .service-nav-btn:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-3px);
      }

      /* Responsive تحسينات */
      @media (max-width: 992px) {
        .service-img {
          height: 300px;
        }
        .service-title {
          font-size: 1.8rem;
        }
      }

      @media (max-width: 768px) {
        .services-flow-section {
          padding: 0 0 80px 0;
          background: transparent;
        }
        .service-card {
          text-align: center;
        }
        .service-img {
          height: 280px;
          margin-bottom: 30px;
        }
      }
      .breadcrumb-nav .separator {
        color: var(--primary-color);
        margin: 0 12px;
      }

      /* Media Tabs */
      .media-tabs {
        padding: 100px 0;
        background: #f8f9fa;
      }

      .media-tabs .nav-tabs {
        border-bottom: 3px solid #ddd;
        justify-content: center;
        margin-bottom: 60px;
      }

      .media-tabs .nav-tabs .nav-link {
        padding: 15px 60px;
        font-size: 1.4rem;
        font-weight: 600;
        color: #666;
        border: none;
        border-bottom: 4px solid transparent;
        border-radius: 0;
      }

      .media-tabs .nav-tabs .nav-link.active {
        color: var(--secoundry-color);
        background: transparent;
        border-bottom-color: var(--primary-color);
      }

      .media-tabs .nav-tabs .nav-link:hover {
        color: var(--secoundry-color);
      }

      /* News & Videos Cards (نفس الشكل) */
      .media-card {
        margin-bottom: 70px;
      }

      .media-img {
        height: 380px;
        overflow: hidden;
      }

      .media-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .media-body {
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .media-body h4 {
        font-size: 1.6rem;
        color: var(--primary-color);
        margin-bottom: 20px;
        font-weight: 600;
      }

      .media-body p {
        font-size: 1.1rem;
        line-height: 2;
        color: #444;
        text-align: justify;
      }

      /* Responsive */
      @media (max-width: 992px) {
        .media-img {
          height: 300px;
        }
        .media-body {
          padding: 30px;
        }
        .media-body h4 {
          font-size: 1.4rem;
        }
      }

      @media (max-width: 768px) {
        .media-tabs {
          padding: 70px 0;
        }
        .inner-hero-content h1 {
          font-size: 2.6rem;
        }
        .media-card .row {
          flex-direction: column !important;
        }
        .media-img {
          height: 250px;
        }
        .media-body {
          text-align: center;
        }
      }
      .dropdown-item.active, .dropdown-item:active{
        background-color: var(--primary-color);
      }
      ::selection{
        background: var(--primary-color);
        color: white;
      }
      /* خلفية المودال الداكنة مع fade ناعم */
      .modal.fade .modal-dialog {
        transition: transform 0.4s ease-out, opacity 0.4s ease-out;
        transform: translateY(50px);
        opacity: 0;
      }
      .modal.show .modal-dialog {
        transform: translateY(0);
        opacity: 1;
      }

      /* تصميم المودال بالضبط زي الصورة */
      .career-modal .modal-content {
        border: none;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      }

      .career-modal .modal-header {
        background: var(--secoundry-color);
        color: white;
        border-bottom: none;
        padding: 1.5rem;
      }

      .career-modal .modal-title {
        font-weight: bold;
        font-size: 1.5rem;
      }

      .career-modal .btn-close {
        filter: invert(1);
        opacity: 0.8;
      }

      .career-modal .modal-body {
        padding: 2rem;
      }

      .file-upload-wrapper {
        position: relative;
        display: inline-block;
        width: 100%;
      }

      .file-upload-wrapper input[type=file] {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
      }

      .file-upload-btn {
        background: #e9ecef;
        border: 2px dashed #adb5bd;
        border-radius: 8px;
        padding: 2rem;
        text-align: center;
        color: #6c757d;
        transition: all 0.3s;
      }

      .file-upload-btn:hover {
        background: #dee2e6;
        border-color: #0d6efd;
        color: #0d6efd;
      }

      .file-name {
        margin-top: 0.5rem;
        font-size: 0.9rem;
        color: #495057;
      }

      .text-danger small {
        font-size: 0.85rem;
      }

      .career-modal .btn-primary {
        background: var(--secoundry-color);
        border: none;
        border-radius: 8px;
        padding: 0.75rem 2rem;
        font-weight: 600;
      }

      .career-modal .btn-primary:hover {
        background: #091526;
      }
      .map-container {
        height: 500px;
        overflow: hidden;
      }
      /* ========== أنيميشن Fade In للعناصر عند الظهور في الشاشة ========== */
/*
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title,
.about-text p,
.read-more-btn,
.service-title,
.service-description,
.service-link,
.achievements-title,
.achievements-description,
.achievements-note,
.stat-item,
.project-title,
.project-category,
.vision-mission-card h3,
.vision-mission-card p,
.ceo-message-title,
.ceo-message-body p,
.leadership-title,
.leadership-body p,
.service-title-services,
.service-text,
.media-body h4,
.media-body p,
.pre-footer-text,
.contact-title,
.contact-subtitle {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fade-in.visible,
.section-title.visible,
.about-text p.visible,
.read-more-btn.visible,
.service-title.visible,
.service-description.visible,
.service-link.visible,
.achievements-title.visible,
.achievements-description.visible,
.achievements-note.visible,
.stat-item.visible,
.project-title.visible,
.project-category.visible,
.vision-mission-card h3.visible,
.vision-mission-card p.visible,
.ceo-message-title.visible,
.ceo-message-body p.visible,
.leadership-title.visible,
.leadership-body p.visible,
.service-title-services.visible,
.service-text.visible,
.media-body h4.visible,
.media-body p.visible,
.pre-footer-text.visible,
.contact-title.visible,
.contact-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top,
.whatsapp-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease;
}

.scroll-top.show,
.whatsapp-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.visible:nth-child(1) { transition-delay: 0.1s; }
.fade-in.visible:nth-child(2) { transition-delay: 0.2s; }
.fade-in.visible:nth-child(3) { transition-delay: 0.3s; }
.fade-in.visible:nth-child(4) { transition-delay: 0.4s; }
.fade-in.visible:nth-child(5) { transition-delay: 0.5s; } */
