/********** Template CSS **********/
:root {
  --primary: #607d8b;
  --secondary: #9b9b9b;
  --light: #f5f5f5;
  --dark: #161616;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand {
  height: 75px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: var(--dark);
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.navbar .btn:hover {
  color: #ffffff !important;
  background: var(--primary) !important;
}

/*** Header ***/
.header-carousel .carousel-inner {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgba(22, 22, 22, 0.7);
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item h5,
  .header-carousel .owl-carousel-item p {
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  .header-carousel .owl-carousel-item h1 {
    font-size: 30px;
    font-weight: 600;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  width: 200px;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.header-carousel .owl-dots {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 15px;
  transition: 0.5s;
}

.header-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: #ffffff;
  border-radius: 5px;
}

.header-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background:
    linear-gradient(rgba(22, 22, 22, 0.7), rgba(22, 22, 22, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** About ***/
@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }

  .about-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .about-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .about-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Service ***/
.service-row {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.service-item {
  border-color: rgba(0, 0, 0, 0.03) !important;
}

.service-item .btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 38px;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.5s;
}

.service-item:hover .btn {
  width: 140px;
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Project Portfolio ***/
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: #ffeb3b;
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: #ffc1078c;
  border-color: #ffc1078a;
}

.portfolio-inner {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.portfolio-inner img {
  transition: 0.5s;
}

.portfolio-inner:hover img {
  transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: 0.5s;
}

.portfolio-inner:hover .portfolio-text {
  bottom: 0;
  opacity: 1;
}

/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
    max-width: 100% !important;
  }

  .quote-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .quote-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .quote-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item .team-social {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 22, 22, 0.7);
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-social {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

.team-item .team-social .btn {
  opacity: 0;
}

.team-item:hover .team-social .btn {
  opacity: 1;
}

/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
    max-width: 100% !important;
  }

  .contact-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--secondary);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}
.text-gold {
  color: #d4af37;
}
/* =========================
   NOSOOR GOLD THEME
========================= */

:root {
  --gold: #d4af37;
  --gold-dark: #b8962e;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn {
  background-color: #d4af3756 !important;
  border-color: var(--gold) !important;
  color: #000 !important;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
  background-color: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  color: #000 !important;
}

/* Navbar links */
.navbar .nav-link {
  color: #fff !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold) !important;
}

/* Icons */
i,
.icon {
  color: var(--gold);
}

/* Headings highlights */
.text-primary {
  color: #ffc107 !important;
}

/* Section titles underline */
.section-title::after {
  background-color: var(--gold) !important;
}
/* FIX: Top bar text + icons visibility */
.top-bar,
.top-bar a,
.top-bar p,
.top-bar span,
.top-bar small {
  color: #fff !important; /* خلي النص واضح */
}

.top-bar a:hover {
  color: var(--gold) !important;
}

.top-bar i,
.top-bar .fa,
.top-bar .fas,
.top-bar .far,
.top-bar .fab {
  color: var(--gold) !important; /* الأيقونات ذهبية بالشريط العلوي */
}

/* FIX: Navbar links - لا نخليها بيضا بشكل عام */
.navbar .nav-link {
  color: inherit !important;
}

/* إذا المنيو عندك خلفيتها غامقة */
.navbar-dark .nav-link {
  color: #fff !important;
}
.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
  color: var(--gold) !important;
}

/* إذا المنيو عندك خلفيتها فاتحة */
.navbar-light .nav-link {
  color: #111 !important;
}
.navbar-light .nav-link:hover,
.navbar-light .nav-link.active {
  color: var(--gold) !important;
}

/* FIX: لا تلوّن كل أيقونات الموقع (كان يسبب مشاكل) */
i,
.icon {
  color: inherit;
}
/* ===== TOP BAR SOCIAL ICONS FIX ===== */
.topbar a,
.topbar a i {
  background-color: #d4af37 !important; /* ذهبي */
  color: #000 !important; /* الأيقونة سوداء وواضحة */
}

.topbar a:hover {
  background-color: #b8962e !important;
}

.topbar a:hover i {
  color: #000 !important;
}

/* لو الكلاس اسمه header-top بدل topbar */
.header-top a,
.header-top a i {
  background-color: #d4af37 !important;
  color: #000 !important;
}
/* ===== Top Bar (الشريط العلوي) ===== */
.top-bar,
.topbar,
.header-top {
  background-color: #0b0b0b !important;
  color: #ffffff;
}

.top-bar i,
.top-bar a {
  color: #d4af37 !important;
}

/* ===== Main Navbar (الشريط السفلي) ===== */
.navbar,
.main-navbar {
  background-color: #0f1b2d !important;
}

/* اسم الشركة */
.navbar-brand {
  color: #d4af37 !important;
  font-weight: 700;
}

/* روابط القائمة */
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #d4af37 !important;
}

/* أيقونات السوشيال */
.navbar .social a,
.top-bar .social a {
  background-color: #d4af37;
  color: #0b0b0b !important;
}

.navbar .social a:hover {
  background-color: #ffffff;
  color: #0f1b2d !important;
}
/* ===== Top Bar Icons Fix ===== */
.header-top i,
.top-bar i,
.header-top .icon,
.top-bar .icon {
  color: #d4af37 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* نصوص الشريط العلوي */
.header-top span,
.header-top p,
.header-top a {
  color: #ffffff !important;
}

/* منع أي hover يخفي الأيقونات */
.header-top i:hover,
.top-bar i:hover {
  color: #ffd966 !important;
}
.header-top i::before {
  color: #d4af37 !important;
}
:root {
  --gold: #d4af37;
  --navy: #0b1b33;
  --black: #0f0f0f;
}
/* Hero/Carousel polish (safe overrides) */
.header-carousel .owl-carousel-item {
  min-height: 85vh;
}

.header-carousel .owl-carousel-item img {
  height: 85vh;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

/* Make text sharper for Arabic */
.header-carousel .carousel-inner h1,
.header-carousel .carousel-inner p {
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
}

/* Buttons unified */
.header-carousel .btn.btn-primary {
  background: #d4af37;
  border-color: #d4af37;
  color: #0b1b33;
}

.header-carousel .btn.btn-primary:hover {
  background: #c79f2f;
  border-color: #c79f2f;
  color: #0b1b33;
}

.header-carousel .btn.btn-light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.header-carousel .btn.btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.lang-switch {
  background-color: transparent;
  border: 1px solid #f5c542;
  color: #f5c542;
  font-weight: 500;
}

.lang-switch:hover {
  background-color: #f5c542;
  color: #000;
}

/* ===== RTL QUICK FIX (NO BOOTSTRAP CHANGE) ===== */
.rtl {
  direction: rtl;
  text-align: right;
}

.rtl .text-center {
  text-align: center !important;
}

.rtl .ms-auto {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.rtl .me-2,
.rtl .me-3,
.rtl .me-4 {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}

.rtl .btn i {
  margin-left: 0.5rem;
  margin-right: 0;
}
body {
  font-family: "Cairo", sans-serif;
  font-weight: 500;
}

body,
button,
input,
select,
textarea,
label,
.btn,
.navbar-brand,
.navbar-nav .nav-link,
.dropdown-item,
.breadcrumb-item,
.form-control,
.form-select,
.form-floating > label {
  font-family: "Cairo", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: "Cairo", sans-serif !important;
}

.sidebar,
.nav,
.menu,
.list-group,
.nav-link {
  font-family: "Cairo", sans-serif;
  font-weight: 500;
}


.sidebar,
.nav,
.menu,
.list-group,
.nav-link {
  font-family: "Cairo", sans-serif;
  font-weight: 500;
}
.sidebar h6,
.sidebar .menu-title {
  font-weight: 700;
}
.portfolio-inner {
  height: 220px; /* تحكّم بالارتفاع */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff; /* خلفية موحّدة */
}
.logo-img {
  height: 75px; /* تحكم بحجم اللوجو */
  width: auto;
}
.social {
  transition: all 0.3s ease;
}

/* Facebook */
.social.facebook i {
  color: #1877f2;
}

/* TikTok */
.social.tiktok i {
  color: #000000;
}

/* Instagram (Gradient) */
.social.instagram i {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover effect (اختياري وجميل) */
.social:hover {
  transform: translateY(-2px);
}
.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}

.sound-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.sound-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

:root {
  --nosoor-gold: #d6b15e;
  --nosoor-navy: #071d2b;
}

/* ✅ RTL fix */
.rtl-block {
  direction: rtl;
  text-align: right;
  unicode-bidi: plaintext;
}
.rtl-block ul {
  padding-right: 1.2rem;
  padding-left: 0;
  margin-right: 0;
}
.rtl-block li {
  text-align: right;
}

/* ✅ Colors */
.title-gold {
  color: var(--nosoor-gold) !important;
  font-weight: 800;
}
.sub-navy {
  color: var(--nosoor-navy) !important;
  font-weight: 700;
}

/* ✅ Watermark logo behind text */
.about-watermark {
  position: relative;
  isolation: isolate;
}
.about-watermark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 340px;
  opacity: 0.06; /* خفيفة جداً */
  z-index: 0;
  pointer-events: none;
  filter: grayscale(100%);
}
.about-watermark > * {
  position: relative;
  z-index: 1;
}
/* Partners - Logo Wall */
.partners-wall {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.partner-logo {
  position: relative;
  background: #f7f7f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 14px;
  height: 110px; /* ✅ حجم صغير ومرتب */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(214, 177, 94, 0.45);
  background: #fff;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.05);
  opacity: 0.9;
  transition:
    filter 0.18s ease,
    opacity 0.18s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Tooltip */
.partner-logo::after {
  content: attr(data-name);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 29, 43, 0.95);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  transform: translateX(-50%) translateY(6px);
}

.partner-logo:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .partner-logo {
    height: 100px;
  }
}
@media (max-width: 420px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* =========================
   PROFESSIONAL TEAM SECTION
========================= */

.team-section {
  background: linear-gradient(
    180deg,
    rgba(11, 27, 51, 0.03) 0%,
    rgba(11, 27, 51, 0) 100%
  );
}

.team-line {
  width: 70px;
  height: 2px;
}

.team-kicker {
  display: inline-block;
  color: var(--gold, #d4af37);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.team-section .display-5 {
  color: #ffc107;
}

.team-section-text {
  max-width: 680px;
  color: #6c757d;
  line-height: 1.9;
}

.team-card {
  background: #ffffff;
  border: 1px solid rgba(11, 27, 51, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(212, 175, 55, 0.45);
}

.team-card-media {
  position: relative;
  overflow: hidden;
  background: #0b1b33;
}

/* هذا أهم جزء لتوحيد حجم الصور */
.team-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease;
}

.team-card:hover .team-card-img {
  transform: scale(1.05);
}

.team-card-body {
  padding: 24px 20px 22px;
}

.team-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: #b8962e;
  border: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.team-name {
  color: #0b1b33;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.team-role {
  color: #6c757d;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0;
  min-height: 58px;
}

/* تحسين المقاسات للموبايل */
@media (max-width: 991.98px) {
  .team-card-img {
    height: 300px;
  }
}

@media (max-width: 575.98px) {
  .team-card-img {
    height: 280px;
  }

  .team-card-body {
    padding: 20px 16px;
  }

  .team-role {
    min-height: auto;
  }
}
/* ===================================
   EXECUTIVE GENERAL MANAGER SECTION
=================================== */

.executive-message-section {
  position: relative;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, rgba(11, 27, 51, 0.02) 0%, rgba(11, 27, 51, 0) 100%);
}

.section-accent {
  width: 70px;
  height: 2px;
  background: linear-gradient(to left, #d4af37, #b8962e);
}

.section-kicker {
  display: inline-block;
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.section-description {
  max-width: 720px;
  color: #6c757d;
  line-height: 1.9;
}

.executive-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(11, 27, 51, 0.08);
  box-shadow: 0 20px 60px rgba(8, 15, 30, 0.1);
}

/* Left image panel */
.executive-image-panel {
  position: relative;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  background: #0b1b33;
}

.executive-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.executive-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 27, 51, 0.88) 0%,
    rgba(11, 27, 51, 0.35) 40%,
    rgba(11, 27, 51, 0.05) 100%
  );
}

.executive-image-caption {
  position: absolute;
  right: 28px;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  color: #fff;
}

.executive-label {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #f3d67a;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.executive-image-caption h3 {
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
}

.executive-image-caption p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}

/* Right content panel */
.executive-content {
  padding: 52px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.executive-quote-mark {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.16),
    rgba(212, 175, 55, 0.08)
  );
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.executive-title {
  color: #0b1b33;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 22px;
}

.executive-text {
  color: #5d6778;
  line-height: 2;
  font-size: 1rem;
  margin-bottom: 16px;
}

.executive-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 27, 51, 0.08);
  flex-wrap: wrap;
}

.executive-sign h5 {
  color: #0b1b33;
  font-weight: 800;
}

.executive-sign span {
  color: #8a94a6;
  font-size: 0.95rem;
}

.executive-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #0b1b33;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.executive-badge-box i {
  color: #d4af37 !important;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .executive-title {
    font-size: 1.7rem;
  }

  .executive-content {
    padding: 40px 30px;
  }
}

@media (max-width: 991.98px) {
  .executive-image-panel,
  .executive-image {
    min-height: 420px;
  }

  .executive-content {
    padding: 32px 24px;
  }

  .executive-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .executive-image-panel,
  .executive-image {
    min-height: 320px;
  }

  .executive-image-caption {
    right: 18px;
    left: 18px;
    bottom: 18px;
  }

  .executive-content {
    padding: 24px 18px;
  }

  .executive-title {
    font-size: 1.25rem;
  }

  .executive-text {
    font-size: 0.96rem;
    line-height: 1.9;
  }

  .executive-badge-box {
    width: 100%;
    justify-content: center;
  }
}
/* ===================================
   MODERN SERVICES SECTION
=================================== */

.services-modern-section {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, rgba(11, 27, 51, 0.02) 0%, rgba(11, 27, 51, 0) 100%);
}

.service-card-modern {
  background: #ffffff;
  border: 1px solid rgba(11, 27, 51, 0.08);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 14px 35px rgba(8, 15, 30, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to left, #d4af37, #b8962e);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(8, 15, 30, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
}

.service-card-modern:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.16),
    rgba(212, 175, 55, 0.07)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.service-icon-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.service-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 27, 51, 0.05);
  color: #0b1b33;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-title {
  color: #0b1b33;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.7;
  margin-bottom: 14px;
  min-height: 64px;
}

.service-text {
  color: #647084;
  line-height: 1.95;
  font-size: 0.96rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d4af37;
  font-weight: 700;
  text-decoration: none;
  transition:
    gap 0.25s ease,
    color 0.25s ease;
}

.service-link-modern i {
  color: #d4af37 !important;
  font-size: 0.9rem;
}

.service-link-modern:hover {
  color: #b8962e;
  gap: 14px;
}

.service-link-modern:hover i {
  color: #b8962e !important;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .service-title {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .service-card-modern {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .service-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .service-icon-img {
    width: 34px;
    height: 34px;
  }

  .service-title {
    font-size: 1.05rem;
  }

  .service-text {
    font-size: 0.93rem;
    line-height: 1.85;
  }
}
/* ===================================
   WHY CHOOSE US - MODERN SECTION
=================================== */

.why-us-modern-section {
  position: relative;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, rgba(11, 27, 51, 0.02) 0%, rgba(11, 27, 51, 0) 100%);
}

.why-us-wrapper {
  background: #ffffff;
  border: 1px solid rgba(11, 27, 51, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(8, 15, 30, 0.08);
}

/* Image side */
.why-us-image-panel {
  position: relative;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  background: #0b1b33;
}

.why-us-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.why-us-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 27, 51, 0.72) 0%,
    rgba(11, 27, 51, 0.18) 55%,
    rgba(11, 27, 51, 0.05) 100%
  );
}

.why-us-image-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 27, 51, 0.78);
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(4px);
  font-weight: 700;
}

.why-us-image-badge i {
  color: #d4af37 !important;
}

/* Content side */
.why-us-content {
  padding: 52px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us-intro {
  color: #5f6b7a;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 10px;
}

/* Feature items */
.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(11, 27, 51, 0.06);
  border-radius: 20px;
  padding: 18px 16px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.why-us-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(8, 15, 30, 0.08);
  border-color: rgba(212, 175, 55, 0.28);
}

.why-us-icon-box {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.16),
    rgba(212, 175, 55, 0.06)
  );
  border: 1px solid rgba(212, 175, 55, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.why-us-label {
  display: inline-block;
  color: #d4af37;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-us-title {
  color: #0b1b33;
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.why-us-text {
  color: #647084;
  line-height: 1.85;
  font-size: 0.93rem;
  margin-bottom: 0;
}

/* Footer */
.why-us-footer {
  margin-top: 10px;
}

.why-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0b1b33;
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.why-us-btn i {
  color: #d4af37 !important;
}

.why-us-btn:hover {
  background: #13284b;
  color: #fff;
  gap: 14px;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .why-us-content {
    padding: 40px 30px;
  }
}

@media (max-width: 991.98px) {
  .why-us-image-panel,
  .why-us-image {
    min-height: 380px;
  }

  .why-us-content {
    padding: 32px 24px;
  }
}

@media (max-width: 575.98px) {
  .why-us-image-panel,
  .why-us-image {
    min-height: 280px;
  }

  .why-us-content {
    padding: 24px 18px;
  }

  .why-us-item {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .why-us-icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
  }

  .why-us-title {
    font-size: 1rem;
  }

  .why-us-text {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .why-us-image-badge {
    right: 16px;
    left: 16px;
    bottom: 16px;
    justify-content: center;
    font-size: 0.9rem;
  }

  .why-us-btn {
    width: 100%;
    justify-content: center;
  }
}
.hero-video-section {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: #0b1b33;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 27, 51, 0.55),
    rgba(11, 27, 51, 0.72)
  );
}

.hero-video-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-kicker {
  display: inline-block;
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 2;
  max-width: 850px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sound-btn {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  border: none;
  background: rgba(11, 27, 51, 0.78);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.28);
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-video-section {
    min-height: 560px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-text {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .sound-btn {
    left: 16px;
    bottom: 16px;
    font-size: 0.9rem;
    padding: 10px 14px;
  }
}
/* ===================================
   MODERN FOOTER
=================================== */

.footer-modern {
  background: #091426;
  color: rgba(255, 255, 255, 0.82);
  padding: 70px 0 0;
  margin-top: 60px;
}

.footer-brand,
.footer-block {
  height: 100%;
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand-title {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-brand-text {
  color: rgba(255, 255, 255, 0.78);
  line-height: 2;
  margin-bottom: 0;
  max-width: 360px;
}

.footer-title {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(to left, #d4af37, #b8962e);
  border-radius: 2px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #d4af37;
  transform: translateX(-4px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact i {
  color: #d4af37 !important;
  min-width: 18px;
  margin-top: 4px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social a:hover {
  background: #d4af37;
  color: #000000;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 36px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-bottom a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom a:hover {
  color: #f0cb57;
}

/* Responsive */
@media (max-width: 991.98px) {
  .footer-modern {
    padding-top: 50px;
  }

  .footer-brand-text {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .footer-modern {
    padding-top: 42px;
    margin-top: 40px;
  }

  .footer-logo {
    height: 56px;
  }

  .footer-title {
    margin-top: 8px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding: 18px 0;
  }

  .footer-bottom p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}

/*///////logo css//////*/
/* ===== Navbar ===== */
.navbar {
  height: 80px;
  display: flex;
  align-items: center;
}

/* ===== Logo container ===== */
.navbar-brand {
  display: flex;
  align-items: center;
  position: relative;
}

/* ===== Logo ===== */
.logo-img {
  height: 72px; /* قريب من ارتفاع النافبار */
  width: auto;
  object-fit: contain;

  padding: 6px 16px;
  border-radius: 14px;

  background: #ffffff;

  /* إطار ذهبي أغمق */
  border: 2px solid #b8962e;

  position: relative;
  z-index: 1;

  /* توهج خفيف */
  box-shadow:
    0 0 8px rgba(184,150,46,0.35),
    0 0 20px rgba(184,150,46,0.25);

  overflow: hidden;
}

/* ===== اللمعة الذهبية المتحركة ===== */
.navbar-brand::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:70%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(184,150,46,0.55),
    transparent
  );

  transform:skewX(-25deg);
  animation:logoShine 3s infinite;
}

/* ===== Animation ===== */
@keyframes logoShine{
  0%{
    left:-120%;
  }
  100%{
    left:160%;
  }
}